docsforge 9.7.6__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- docsforge/__init__.py +11 -0
- docsforge/__main__.py +313 -0
- docsforge/_vendor/mkdocs/__init__.py +5 -0
- docsforge/_vendor/mkdocs/__main__.py +370 -0
- docsforge/_vendor/mkdocs/commands/__init__.py +0 -0
- docsforge/_vendor/mkdocs/commands/build.py +369 -0
- docsforge/_vendor/mkdocs/commands/gh_deploy.py +169 -0
- docsforge/_vendor/mkdocs/commands/new.py +53 -0
- docsforge/_vendor/mkdocs/commands/serve.py +112 -0
- docsforge/_vendor/mkdocs/config/__init__.py +3 -0
- docsforge/_vendor/mkdocs/config/base.py +392 -0
- docsforge/_vendor/mkdocs/config/config_options.py +1226 -0
- docsforge/_vendor/mkdocs/config/defaults.py +218 -0
- docsforge/_vendor/mkdocs/contrib/__init__.py +0 -0
- docsforge/_vendor/mkdocs/contrib/search/__init__.py +120 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.ar.js +381 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.da.js +284 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.de.js +384 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.du.js +450 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.es.js +599 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.fi.js +541 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.fr.js +703 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.hi.js +123 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.hu.js +565 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.hy.js +98 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.it.js +617 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.ja.js +188 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.jp.js +5 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.kn.js +110 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.ko.js +114 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.multi.js +79 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.nl.js +448 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.no.js +258 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.pt.js +570 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.ro.js +558 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.ru.js +391 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.sa.js +110 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.stemmer.support.js +304 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.sv.js +256 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.ta.js +123 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.te.js +122 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.th.js +99 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.tr.js +1087 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.vi.js +84 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.zh.js +145 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/tinyseg.js +206 -0
- docsforge/_vendor/mkdocs/contrib/search/prebuild-index.js +56 -0
- docsforge/_vendor/mkdocs/contrib/search/search_index.py +225 -0
- docsforge/_vendor/mkdocs/contrib/search/templates/search/lunr.js +3475 -0
- docsforge/_vendor/mkdocs/contrib/search/templates/search/main.js +109 -0
- docsforge/_vendor/mkdocs/contrib/search/templates/search/worker.js +133 -0
- docsforge/_vendor/mkdocs/exceptions.py +41 -0
- docsforge/_vendor/mkdocs/livereload/__init__.py +381 -0
- docsforge/_vendor/mkdocs/localization.py +92 -0
- docsforge/_vendor/mkdocs/plugins.py +697 -0
- docsforge/_vendor/mkdocs/py.typed +0 -0
- docsforge/_vendor/mkdocs/structure/__init__.py +36 -0
- docsforge/_vendor/mkdocs/structure/files.py +626 -0
- docsforge/_vendor/mkdocs/structure/nav.py +251 -0
- docsforge/_vendor/mkdocs/structure/pages.py +569 -0
- docsforge/_vendor/mkdocs/structure/toc.py +80 -0
- docsforge/_vendor/mkdocs/templates/sitemap.xml +11 -0
- docsforge/_vendor/mkdocs/theme.py +166 -0
- docsforge/_vendor/mkdocs/themes/__init__.py +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/404.html +12 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/__init__.py +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/base.html +251 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/content.html +9 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/css/base.css +366 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/css/bootstrap.min.css +12 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/css/bootstrap.min.css.map +1 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/css/brands.min.css +6 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/css/fontawesome.min.css +9 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/css/solid.min.css +6 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/css/v4-font-face.min.css +6 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/img/favicon.ico +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/img/grid.png +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/js/base.js +287 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/js/bootstrap.bundle.min.js +7 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/js/bootstrap.bundle.min.js.map +1 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/js/darkmode.js +65 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/keyboard-modal.html +40 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/de/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/es/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/fa/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/fr/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/id/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/it/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/ja/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/nb/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/nl/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/nn/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/pl/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/pt_BR/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/ru/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/tr/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/uk/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/zh_CN/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/zh_TW/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/main.html +10 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/mkdocs_theme.yml +28 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/nav-sub.html +14 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/search-modal.html +21 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/toc.html +26 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/webfonts/fa-brands-400.ttf +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/webfonts/fa-brands-400.woff2 +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/webfonts/fa-regular-400.ttf +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/webfonts/fa-regular-400.woff2 +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/webfonts/fa-solid-900.ttf +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/webfonts/fa-solid-900.woff2 +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/webfonts/fa-v4compatibility.ttf +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/webfonts/fa-v4compatibility.woff2 +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/404.html +9 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/__init__.py +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/base.html +199 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/breadcrumbs.html +44 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/Roboto-Slab-Bold.woff +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/Roboto-Slab-Bold.woff2 +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/Roboto-Slab-Regular.woff +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/Roboto-Slab-Regular.woff2 +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/fontawesome-webfont.eot +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/fontawesome-webfont.svg +2671 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/fontawesome-webfont.ttf +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/fontawesome-webfont.woff +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/fontawesome-webfont.woff2 +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/lato-bold-italic.woff +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/lato-bold-italic.woff2 +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/lato-bold.woff +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/lato-bold.woff2 +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/lato-normal-italic.woff +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/lato-normal-italic.woff2 +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/lato-normal.woff +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/lato-normal.woff2 +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/theme.css +13 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/theme_extra.css +197 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/footer.html +26 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/img/favicon.ico +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/js/html5shiv.min.js +4 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/js/jquery-3.6.0.min.js +2 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/js/theme.js +2 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/js/theme_extra.js +8 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/de/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/es/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/fa/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/fr/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/id/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/it/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/ja/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/nl/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/pl/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/pt_BR/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/ru/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/tr/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/uk/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/zh_CN/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/zh_TW/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/main.html +10 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/mkdocs_theme.yml +25 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/nav.html +22 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/search.html +16 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/searchbox.html +5 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/toc.html +12 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/versions.html +27 -0
- docsforge/_vendor/mkdocs/utils/__init__.py +410 -0
- docsforge/_vendor/mkdocs/utils/babel_stub.py +29 -0
- docsforge/_vendor/mkdocs/utils/cache.py +36 -0
- docsforge/_vendor/mkdocs/utils/filters.py +1 -0
- docsforge/_vendor/mkdocs/utils/meta.py +100 -0
- docsforge/_vendor/mkdocs/utils/rendering.py +104 -0
- docsforge/_vendor/mkdocs/utils/templates.py +55 -0
- docsforge/_vendor/mkdocs/utils/yaml.py +150 -0
- docsforge/_vendor/properdocs/__init__.py +1 -0
- docsforge/_vendor/properdocs/__main__.py +382 -0
- docsforge/_vendor/properdocs/commands/__init__.py +0 -0
- docsforge/_vendor/properdocs/commands/build.py +379 -0
- docsforge/_vendor/properdocs/commands/get_deps.py +250 -0
- docsforge/_vendor/properdocs/commands/gh_deploy.py +169 -0
- docsforge/_vendor/properdocs/commands/new.py +53 -0
- docsforge/_vendor/properdocs/commands/serve.py +125 -0
- docsforge/_vendor/properdocs/config/__init__.py +3 -0
- docsforge/_vendor/properdocs/config/base.py +381 -0
- docsforge/_vendor/properdocs/config/config_options.py +1226 -0
- docsforge/_vendor/properdocs/config/defaults.py +222 -0
- docsforge/_vendor/properdocs/contrib/__init__.py +0 -0
- docsforge/_vendor/properdocs/contrib/search/__init__.py +120 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.ar.js +381 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.da.js +284 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.de.js +384 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.du.js +450 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.es.js +599 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.fi.js +541 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.fr.js +703 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.hi.js +123 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.hu.js +565 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.hy.js +98 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.it.js +617 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.ja.js +188 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.jp.js +5 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.kn.js +110 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.ko.js +114 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.multi.js +79 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.nl.js +448 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.no.js +258 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.pt.js +570 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.ro.js +558 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.ru.js +391 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.sa.js +110 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.stemmer.support.js +304 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.sv.js +256 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.ta.js +123 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.te.js +122 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.th.js +99 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.tr.js +1087 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.vi.js +84 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.zh.js +145 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/tinyseg.js +206 -0
- docsforge/_vendor/properdocs/contrib/search/prebuild-index.js +56 -0
- docsforge/_vendor/properdocs/contrib/search/search_index.py +225 -0
- docsforge/_vendor/properdocs/contrib/search/templates/search/lunr.js +3475 -0
- docsforge/_vendor/properdocs/contrib/search/templates/search/main.js +109 -0
- docsforge/_vendor/properdocs/contrib/search/templates/search/worker.js +133 -0
- docsforge/_vendor/properdocs/exceptions.py +44 -0
- docsforge/_vendor/properdocs/livereload/__init__.py +382 -0
- docsforge/_vendor/properdocs/localization.py +93 -0
- docsforge/_vendor/properdocs/plugins.py +707 -0
- docsforge/_vendor/properdocs/py.typed +0 -0
- docsforge/_vendor/properdocs/replacement.py +42 -0
- docsforge/_vendor/properdocs/replacement_warning.py +91 -0
- docsforge/_vendor/properdocs/structure/__init__.py +36 -0
- docsforge/_vendor/properdocs/structure/files.py +628 -0
- docsforge/_vendor/properdocs/structure/nav.py +259 -0
- docsforge/_vendor/properdocs/structure/pages.py +582 -0
- docsforge/_vendor/properdocs/structure/toc.py +82 -0
- docsforge/_vendor/properdocs/templates/sitemap.xml +11 -0
- docsforge/_vendor/properdocs/theme.py +167 -0
- docsforge/_vendor/properdocs/themes/__init__.py +0 -0
- docsforge/_vendor/properdocs/utils/__init__.py +419 -0
- docsforge/_vendor/properdocs/utils/babel_stub.py +29 -0
- docsforge/_vendor/properdocs/utils/cache.py +75 -0
- docsforge/_vendor/properdocs/utils/filters.py +1 -0
- docsforge/_vendor/properdocs/utils/meta.py +101 -0
- docsforge/_vendor/properdocs/utils/rendering.py +104 -0
- docsforge/_vendor/properdocs/utils/templates.py +57 -0
- docsforge/_vendor/properdocs/utils/yaml.py +165 -0
- docsforge/_vendor_shims/__init__.py +5 -0
- docsforge/commands/__init__.py +0 -0
- docsforge/commands/build.py +377 -0
- docsforge/commands/get_deps.py +246 -0
- docsforge/commands/gh_deploy.py +169 -0
- docsforge/commands/new.py +53 -0
- docsforge/commands/serve.py +126 -0
- docsforge/config/__init__.py +3 -0
- docsforge/config/base.py +379 -0
- docsforge/config/config_options.py +1228 -0
- docsforge/config/defaults.py +222 -0
- docsforge/contrib/__init__.py +0 -0
- docsforge/contrib/search/__init__.py +121 -0
- docsforge/contrib/search/lunr-language/lunr.ar.js +381 -0
- docsforge/contrib/search/lunr-language/lunr.da.js +284 -0
- docsforge/contrib/search/lunr-language/lunr.de.js +384 -0
- docsforge/contrib/search/lunr-language/lunr.du.js +450 -0
- docsforge/contrib/search/lunr-language/lunr.es.js +599 -0
- docsforge/contrib/search/lunr-language/lunr.fi.js +541 -0
- docsforge/contrib/search/lunr-language/lunr.fr.js +703 -0
- docsforge/contrib/search/lunr-language/lunr.hi.js +123 -0
- docsforge/contrib/search/lunr-language/lunr.hu.js +565 -0
- docsforge/contrib/search/lunr-language/lunr.hy.js +98 -0
- docsforge/contrib/search/lunr-language/lunr.it.js +617 -0
- docsforge/contrib/search/lunr-language/lunr.ja.js +188 -0
- docsforge/contrib/search/lunr-language/lunr.jp.js +5 -0
- docsforge/contrib/search/lunr-language/lunr.kn.js +110 -0
- docsforge/contrib/search/lunr-language/lunr.ko.js +114 -0
- docsforge/contrib/search/lunr-language/lunr.multi.js +79 -0
- docsforge/contrib/search/lunr-language/lunr.nl.js +448 -0
- docsforge/contrib/search/lunr-language/lunr.no.js +258 -0
- docsforge/contrib/search/lunr-language/lunr.pt.js +570 -0
- docsforge/contrib/search/lunr-language/lunr.ro.js +558 -0
- docsforge/contrib/search/lunr-language/lunr.ru.js +391 -0
- docsforge/contrib/search/lunr-language/lunr.sa.js +110 -0
- docsforge/contrib/search/lunr-language/lunr.stemmer.support.js +304 -0
- docsforge/contrib/search/lunr-language/lunr.sv.js +256 -0
- docsforge/contrib/search/lunr-language/lunr.ta.js +123 -0
- docsforge/contrib/search/lunr-language/lunr.te.js +122 -0
- docsforge/contrib/search/lunr-language/lunr.th.js +99 -0
- docsforge/contrib/search/lunr-language/lunr.tr.js +1087 -0
- docsforge/contrib/search/lunr-language/lunr.vi.js +84 -0
- docsforge/contrib/search/lunr-language/lunr.zh.js +145 -0
- docsforge/contrib/search/lunr-language/tinyseg.js +206 -0
- docsforge/contrib/search/prebuild-index.js +56 -0
- docsforge/contrib/search/search_index.py +225 -0
- docsforge/contrib/search/templates/search/lunr.js +3475 -0
- docsforge/contrib/search/templates/search/main.js +109 -0
- docsforge/contrib/search/templates/search/worker.js +133 -0
- docsforge/exceptions.py +44 -0
- docsforge/extensions/__init__.py +30 -0
- docsforge/extensions/emoji.py +108 -0
- docsforge/extensions/preview.py +234 -0
- docsforge/livereload/__init__.py +381 -0
- docsforge/overrides/assets/javascripts/custom.f46acd93.min.js +5 -0
- docsforge/overrides/assets/javascripts/custom.f46acd93.min.js.map +7 -0
- docsforge/overrides/assets/javascripts/iconsearch_index.json +1 -0
- docsforge/overrides/assets/stylesheets/custom.f120bdc6.min.css +1 -0
- docsforge/overrides/assets/stylesheets/custom.f120bdc6.min.css.map +1 -0
- docsforge/overrides/home.html +29 -0
- docsforge/overrides/hooks/shortcodes.py +305 -0
- docsforge/overrides/hooks/translations.html +23 -0
- docsforge/overrides/hooks/translations.py +208 -0
- docsforge/overrides/main.html +27 -0
- docsforge/plugins/__init__.py +46 -0
- docsforge/plugins/blog/__init__.py +44 -0
- docsforge/plugins/blog/author.py +51 -0
- docsforge/plugins/blog/config.py +113 -0
- docsforge/plugins/blog/plugin.py +1094 -0
- docsforge/plugins/blog/readtime/__init__.py +62 -0
- docsforge/plugins/blog/readtime/parser.py +85 -0
- docsforge/plugins/blog/structure/__init__.py +348 -0
- docsforge/plugins/blog/structure/config.py +50 -0
- docsforge/plugins/blog/structure/markdown.py +72 -0
- docsforge/plugins/blog/structure/options.py +139 -0
- docsforge/plugins/group/__init__.py +30 -0
- docsforge/plugins/group/config.py +42 -0
- docsforge/plugins/group/plugin.py +172 -0
- docsforge/plugins/info/__init__.py +30 -0
- docsforge/plugins/info/config.py +46 -0
- docsforge/plugins/info/patterns.py +27 -0
- docsforge/plugins/info/plugin.py +574 -0
- docsforge/plugins/meta/__init__.py +30 -0
- docsforge/plugins/meta/config.py +44 -0
- docsforge/plugins/meta/plugin.py +133 -0
- docsforge/plugins/minify/__init__.py +0 -0
- docsforge/plugins/minify/plugin.py +240 -0
- docsforge/plugins/offline/__init__.py +30 -0
- docsforge/plugins/offline/config.py +41 -0
- docsforge/plugins/offline/plugin.py +80 -0
- docsforge/plugins/optimize/__init__.py +30 -0
- docsforge/plugins/optimize/config.py +63 -0
- docsforge/plugins/optimize/plugin.py +399 -0
- docsforge/plugins/privacy/__init__.py +30 -0
- docsforge/plugins/privacy/config.py +89 -0
- docsforge/plugins/privacy/parser.py +52 -0
- docsforge/plugins/privacy/plugin.py +691 -0
- docsforge/plugins/projects/__init__.py +30 -0
- docsforge/plugins/projects/builder/__init__.py +331 -0
- docsforge/plugins/projects/builder/log.py +111 -0
- docsforge/plugins/projects/builder/watcher/__init__.py +109 -0
- docsforge/plugins/projects/builder/watcher/handler.py +116 -0
- docsforge/plugins/projects/config.py +75 -0
- docsforge/plugins/projects/plugin.py +303 -0
- docsforge/plugins/projects/structure/__init__.py +252 -0
- docsforge/plugins/search/__init__.py +30 -0
- docsforge/plugins/search/config.py +74 -0
- docsforge/plugins/search/plugin.py +605 -0
- docsforge/plugins/social/__init__.py +30 -0
- docsforge/plugins/social/config.py +79 -0
- docsforge/plugins/social/layout.py +164 -0
- docsforge/plugins/social/plugin.py +1138 -0
- docsforge/plugins/social/templates/__init__.py +40 -0
- docsforge/plugins/social/templates/default/accent.yml +234 -0
- docsforge/plugins/social/templates/default/invert.yml +244 -0
- docsforge/plugins/social/templates/default/only/image.yml +77 -0
- docsforge/plugins/social/templates/default/variant.yml +255 -0
- docsforge/plugins/social/templates/default.yml +244 -0
- docsforge/plugins/tags/__init__.py +57 -0
- docsforge/plugins/tags/config.py +99 -0
- docsforge/plugins/tags/plugin.py +324 -0
- docsforge/plugins/tags/renderer/__init__.py +110 -0
- docsforge/plugins/tags/structure/__init__.py +30 -0
- docsforge/plugins/tags/structure/listing/__init__.py +234 -0
- docsforge/plugins/tags/structure/listing/config.py +126 -0
- docsforge/plugins/tags/structure/listing/manager/__init__.py +532 -0
- docsforge/plugins/tags/structure/listing/manager/toc.py +145 -0
- docsforge/plugins/tags/structure/listing/tree/__init__.py +176 -0
- docsforge/plugins/tags/structure/mapping/__init__.py +109 -0
- docsforge/plugins/tags/structure/mapping/manager/__init__.py +265 -0
- docsforge/plugins/tags/structure/mapping/storage/__init__.py +222 -0
- docsforge/plugins/tags/structure/tag/__init__.py +189 -0
- docsforge/plugins/tags/structure/tag/options.py +119 -0
- docsforge/plugins/tags/structure/tag/reference/__init__.py +91 -0
- docsforge/plugins/typeset/__init__.py +30 -0
- docsforge/plugins/typeset/config.py +41 -0
- docsforge/plugins/typeset/plugin.py +134 -0
- docsforge/structure/__init__.py +36 -0
- docsforge/structure/files.py +623 -0
- docsforge/structure/nav.py +260 -0
- docsforge/structure/pages.py +582 -0
- docsforge/structure/toc.py +82 -0
- docsforge/theme.py +37 -0
- docsforge/themes/material/templates/.icons/fontawesome/LICENSE.txt +165 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/11ty.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/42-group.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/500px.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/accessible-icon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/accusoft.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/adn.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/adversal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/affiliatetheme.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/airbnb.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/algolia.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/alipay.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/amazon-pay.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/amazon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/amilia.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/android.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/angellist.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/angrycreative.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/angular.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/app-store-ios.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/app-store.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/apper.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/apple-pay.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/apple.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/artstation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/asymmetrik.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/atlassian.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/audible.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/autoprefixer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/avianex.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/aviato.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/aws.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/bandcamp.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/battle-net.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/behance-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/behance.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/bilibili.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/bimobject.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/bitbucket.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/bitcoin.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/bity.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/black-tie.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/blackberry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/blogger-b.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/blogger.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/bluesky.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/bluetooth-b.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/bootstrap.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/bots.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/brave-reverse.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/brave.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/btc.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/buffer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/buromobelexperte.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/buy-n-large.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/buysellads.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/canadian-maple-leaf.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cash-app.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cc-amazon-pay.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cc-amex.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cc-apple-pay.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cc-diners-club.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cc-discover.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cc-jcb.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cc-mastercard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cc-paypal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cc-stripe.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cc-visa.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/centercode.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/centos.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/chrome.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/chromecast.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cloudflare.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cloudscale.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cloudsmith.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cloudversify.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cmplid.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/codepen.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/codiepie.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/confluence.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/connectdevelop.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/contao.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cotton-bureau.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cpanel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-by.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-nc-eu.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-nc-jp.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-nc.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-nd.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-pd-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-pd.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-remix.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-sa.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-sampling-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-sampling.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-share.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-zero.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/critical-role.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/css.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/css3-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/css3.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cuttlefish.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/d-and-d-beyond.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/d-and-d.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/dailymotion.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/dart-lang.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/dashcube.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/debian.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/deezer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/delicious.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/deploydog.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/deskpro.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/dev.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/deviantart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/dhl.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/diaspora.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/digg.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/digital-ocean.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/discord.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/discourse.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/disqus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/dochub.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/docker.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/draft2digital.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/dribbble-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/dribbble.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/dropbox.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/drupal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/duolingo.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/dyalog.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/earlybirds.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/ebay.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/edge-legacy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/edge.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/elementor.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/eleventy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/ello.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/ember.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/empire.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/envira.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/erlang.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/ethereum.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/etsy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/evernote.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/expeditedssl.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/facebook-f.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/facebook-messenger.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/facebook-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/facebook.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/fantasy-flight-games.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/fedex.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/fedora.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/figma.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/files-pinwheel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/firefox-browser.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/firefox.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/first-order-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/first-order.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/firstdraft.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/flickr.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/flipboard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/flutter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/fly.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/font-awesome-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/font-awesome-flag.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/font-awesome-logo-full.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/font-awesome.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/fonticons-fi.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/fonticons.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/fort-awesome-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/fort-awesome.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/forumbee.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/foursquare.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/free-code-camp.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/freebsd.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/fulcrum.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/galactic-republic.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/galactic-senate.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/get-pocket.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/gg-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/gg.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/git-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/git-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/git.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/github-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/github-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/github.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/gitkraken.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/gitlab-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/gitlab.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/gitter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/glide-g.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/glide.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/gofore.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/golang.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/goodreads-g.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/goodreads.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/google-drive.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/google-pay.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/google-play.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/google-plus-g.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/google-plus-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/google-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/google-scholar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/google-wallet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/google.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/gratipay.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/grav.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/gripfire.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/grunt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/guilded.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/gulp.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/hacker-news-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/hacker-news.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/hackerrank.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/hashnode.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/hips.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/hire-a-helper.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/hive.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/hooli.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/hornbill.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/hotjar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/houzz.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/html5.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/hubspot.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/ideal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/imdb.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/innosoft.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/instagram-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/instagram.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/instalod.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/intercom.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/internet-explorer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/invision.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/ioxhost.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/itch-io.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/itunes-note.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/itunes.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/java.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/jedi-order.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/jenkins.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/jira.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/joget.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/joomla.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/js-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/js.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/jsfiddle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/jxl.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/kaggle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/kakao-talk.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/keybase.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/keycdn.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/kickstarter-k.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/kickstarter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/korvue.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/laravel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/lastfm-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/lastfm.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/leanpub.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/less.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/letterboxd.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/line.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/linkedin-in.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/linkedin.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/linktree.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/linode.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/linux.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/lumon-drop.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/lumon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/lyft.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/magento.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/mailchimp.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/mandalorian.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/markdown.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/mastodon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/maxcdn.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/mdb.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/medapps.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/medium-m.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/medium.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/medrt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/meetup.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/megaport.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/mendeley.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/meta.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/microblog.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/microsoft.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/mintbit.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/mix.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/mixcloud.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/mixer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/mizuni.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/modx.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/monero.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/napster.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/neos.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/nfc-directional.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/nfc-symbol.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/nimblr.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/node-js.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/node.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/notion.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/npm.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/ns8.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/nutritionix.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/octopus-deploy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/odnoklassniki-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/odnoklassniki.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/odysee.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/old-republic.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/openai.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/opencart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/openid.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/opensuse.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/opera.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/optin-monster.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/orcid.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/osi.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/padlet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/page4.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/pagelines.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/palfed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/pandora.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/patreon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/paypal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/perbyte.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/periscope.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/phabricator.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/phoenix-framework.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/phoenix-squadron.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/php.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/pied-piper-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/pied-piper-hat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/pied-piper-pp.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/pied-piper-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/pied-piper.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/pinterest-p.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/pinterest-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/pinterest.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/pix.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/pixelfed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/pixiv.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/playstation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/product-hunt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/pushed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/python.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/qq.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/quinscape.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/quora.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/r-project.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/raspberry-pi.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/ravelry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/react.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/reacteurope.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/readme.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/rebel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/red-river.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/reddit-alien.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/reddit-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/reddit.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/redhat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/rendact.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/renren.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/replyd.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/researchgate.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/resolving.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/rev.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/rocketchat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/rockrms.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/rust.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/safari.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/salesforce.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/sass.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/schlix.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/screenpal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/scribd.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/searchengin.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/sellcast.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/sellsy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/servicestack.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/shirtsinbulk.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/shoelace.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/shopify.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/shopware.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/signal-messenger.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/simplybuilt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/sistrix.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/sith.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/sitrox.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/sketch.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/skyatlas.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/skype.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/slack-hash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/slack.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/slideshare.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/snapchat-ghost.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/snapchat-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/snapchat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/soundcloud.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/sourcetree.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/space-awesome.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/speakap.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/speaker-deck.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/spotify.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-behance.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-bluesky.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-dribbble.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-facebook.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-figma.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-font-awesome-stroke.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-font-awesome.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-git.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-github.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-gitlab.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-google-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-hacker-news.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-instagram.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-js.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-kickstarter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-lastfm.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-letterboxd.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-linkedin.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-odnoklassniki.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-pied-piper.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-pinterest.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-reddit.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-snapchat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-steam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-threads.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-tumblr.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-twitter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-upwork.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-viadeo.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-vimeo.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-web-awesome-stroke.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-web-awesome.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-whatsapp.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-x-twitter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-xing.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-youtube.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/squarespace.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/stack-exchange.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/stack-overflow.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/stackpath.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/staylinked.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/steam-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/steam-symbol.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/steam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/sticker-mule.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/strava.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/stripe-s.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/stripe.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/stubber.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/studiovinari.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/stumbleupon-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/stumbleupon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/superpowers.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/supple.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/suse.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/swift.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/symfony.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/teamspeak.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/telegram-plane.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/telegram.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/tencent-weibo.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/tex.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/the-red-yeti.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/themeco.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/themeisle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/think-peaks.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/threads.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/tidal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/tiktok.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/trade-federation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/trello.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/tumblr-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/tumblr.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/twitch.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/twitter-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/twitter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/typo3.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/uber.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/ubuntu.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/uikit.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/umbraco.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/uncharted.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/uniregistry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/unity.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/unsplash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/untappd.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/ups.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/upwork.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/usb.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/usps.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/ussunnah.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/vaadin.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/viacoin.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/viadeo-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/viadeo.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/viber.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/vimeo-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/vimeo-v.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/vimeo.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/vine.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/vk.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/vnv.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/vsco.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/vuejs.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/w3c.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/watchman-monitoring.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/waze.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/web-awesome.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/webflow.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/weebly.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/weibo.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/weixin.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/whatsapp-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/whatsapp.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/whmcs.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/wikipedia-w.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/windows.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/wirsindhandwerk.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/wix.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/wizards-of-the-coast.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/wodu.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/wolf-pack-battalion.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/wordpress-simple.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/wordpress.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/wpbeginner.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/wpexplorer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/wpforms.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/wpressr.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/wsh.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/x-twitter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/xbox.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/xing-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/xing.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/y-combinator.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/yahoo.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/yammer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/yandex-international.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/yandex.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/yarn.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/yelp.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/yoast.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/youtube-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/youtube.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/zhihu.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/address-book.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/address-card.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/alarm-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/angry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/arrow-alt-circle-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/arrow-alt-circle-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/arrow-alt-circle-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/arrow-alt-circle-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/bar-chart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/bell-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/bell.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/bookmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/building.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/calendar-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/calendar-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/calendar-days.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/calendar-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/calendar-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/calendar-times.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/calendar-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/calendar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/camera-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/camera.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/caret-square-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/caret-square-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/caret-square-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/caret-square-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/chart-bar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/check-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/check-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/chess-bishop.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/chess-king.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/chess-knight.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/chess-pawn.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/chess-queen.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/chess-rook.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/circle-dot.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/circle-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/circle-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/circle-pause.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/circle-play.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/circle-question.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/circle-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/circle-stop.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/circle-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/circle-user.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/clipboard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/clock-four.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/clock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/clone.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/closed-captioning.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/cloud.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/comment-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/comment-dots.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/comment.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/commenting.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/comments.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/compass.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/contact-book.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/contact-card.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/copy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/copyright.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/credit-card-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/credit-card.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/dizzy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/dot-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/drivers-license.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/edit.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/envelope-open.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/envelope.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/eye-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/eye.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-angry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-dizzy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-flushed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-frown-open.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-frown.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-grimace.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-beam-sweat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-hearts.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-squint-tears.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-squint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-stars.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-tears.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-tongue-squint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-tongue-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-tongue.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-wide.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-kiss-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-kiss-wink-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-kiss.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-laugh-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-laugh-squint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-laugh-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-laugh.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-meh-blank.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-meh.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-rolling-eyes.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-sad-cry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-sad-tear.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-smile-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-smile-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-smile.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-surprise.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-tired.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file-archive.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file-audio.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file-clipboard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file-code.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file-excel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file-image.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file-lines.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file-pdf.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file-powerpoint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file-text.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file-video.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file-word.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file-zipper.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/flag.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/floppy-disk.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/flushed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/folder-blank.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/folder-closed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/folder-open.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/folder.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/font-awesome-flag.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/font-awesome-logo-full.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/font-awesome.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/frown-open.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/frown.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/futbol-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/futbol.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/gem.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/grimace.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/grin-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/grin-beam-sweat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/grin-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/grin-hearts.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/grin-squint-tears.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/grin-squint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/grin-stars.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/grin-tears.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/grin-tongue-squint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/grin-tongue-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/grin-tongue.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/grin-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/grin.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hand-back-fist.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hand-lizard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hand-paper.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hand-peace.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hand-point-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hand-point-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hand-point-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hand-point-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hand-pointer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hand-rock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hand-scissors.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hand-spock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hand.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/handshake-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/handshake-simple.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/handshake.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hard-drive.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hdd.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/headphones-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/headphones-simple.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/headphones.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/heart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/home-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/home-lg-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/home.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hospital-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hospital-wide.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hospital.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hourglass-2.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hourglass-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hourglass-half.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hourglass.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/house.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/id-badge.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/id-card.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/image.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/images.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/keyboard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/kiss-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/kiss-wink-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/kiss.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/laugh-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/laugh-squint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/laugh-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/laugh.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/lemon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/life-ring.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/lightbulb.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/list-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/map.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/meh-blank.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/meh-rolling-eyes.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/meh.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/message.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/minus-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/money-bill-1.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/money-bill-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/moon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/newspaper.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/note-sticky.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/object-group.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/object-ungroup.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/paper-plane.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/paste.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/pause-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/pen-to-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/play-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/plus-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/question-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/rectangle-list.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/rectangle-times.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/rectangle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/registered.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/sad-cry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/sad-tear.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/save.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/share-from-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/share-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/smile-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/smile-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/smile.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/snowflake.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/soccer-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/square-caret-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/square-caret-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/square-caret-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/square-caret-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/square-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/square-full.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/square-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/square-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/star-half-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/star-half-stroke.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/star-half.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/star.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/sticky-note.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/stop-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/sun.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/surprise.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/thumbs-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/thumbs-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/times-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/times-rectangle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/tired.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/trash-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/trash-can.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/truck.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/user-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/user-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/user-large.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/user.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/vcard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/window-close.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/window-maximize.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/window-minimize.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/window-restore.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/xmark-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/0.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/1.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/2.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/3.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/4.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/5.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/6.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/7.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/8.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/9.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/a.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ad.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/add.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/address-book.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/address-card.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/adjust.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/air-freshener.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/alarm-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/align-center.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/align-justify.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/align-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/align-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/allergies.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ambulance.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/american-sign-language-interpreting.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/anchor-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/anchor-circle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/anchor-circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/anchor-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/anchor.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/angle-double-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/angle-double-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/angle-double-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/angle-double-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/angle-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/angle-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/angle-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/angle-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/angles-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/angles-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/angles-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/angles-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/angry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ankh.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/apple-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/apple-whole.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/archive.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/archway.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/area-chart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-alt-circle-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-alt-circle-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-alt-circle-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-alt-circle-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-circle-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-circle-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-circle-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-circle-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-1-9.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-9-1.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-a-z.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-long.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-short-wide.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-up-across-line.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-up-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-wide-short.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-z-a.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-left-long.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-left-rotate.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-pointer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right-from-bracket.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right-from-file.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right-long.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right-rotate.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right-to-bracket.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right-to-city.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right-to-file.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-rotate-back.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-rotate-backward.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-rotate-forward.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-rotate-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-rotate-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-trend-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-trend-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-turn-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-turn-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-1-9.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-9-1.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-a-z.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-from-bracket.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-from-ground-water.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-from-water-pump.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-long.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-right-dots.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-right-from-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-short-wide.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-wide-short.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-z-a.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-alt-h.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-alt-v.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-down-to-line.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-down-to-people.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-h.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-left-right-to-line.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-left-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-rotate.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-spin.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-split-up-and-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-to-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-to-dot.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-to-eye.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-turn-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-turn-to-dots.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-up-down-left-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-up-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-up-to-line.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-v.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/asl-interpreting.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/assistive-listening-systems.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/asterisk.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/at.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/atlas.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/atom.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/audio-description.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/austral-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/automobile.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/award.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/b.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/baby-carriage.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/baby.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/backspace.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/backward-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/backward-step.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/backward.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bacon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bacteria.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bacterium.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bag-shopping.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bahai.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/baht-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/balance-scale-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/balance-scale-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/balance-scale.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ban-smoking.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ban.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/band-aid.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bandage.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bangladeshi-taka-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bank.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bar-chart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/barcode.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bars-progress.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bars-staggered.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bars.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/baseball-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/baseball-bat-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/baseball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/basket-shopping.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/basketball-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/basketball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bath.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bathtub.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/battery-0.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/battery-2.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/battery-3.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/battery-4.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/battery-5.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/battery-car.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/battery-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/battery-full.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/battery-half.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/battery-quarter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/battery-three-quarters.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/battery.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bed-pulse.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/beer-mug-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/beer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bell-concierge.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bell-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bell.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bezier-curve.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bible.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bicycle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/biking.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/binoculars.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/biohazard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/birthday-cake.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bitcoin-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/blackboard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/blender-phone.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/blender.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/blind.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/blog.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bold.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bolt-lightning.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bolt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bomb.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bone.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bong.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/book-atlas.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/book-bible.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/book-bookmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/book-dead.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/book-journal-whills.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/book-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/book-open-reader.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/book-open.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/book-quran.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/book-reader.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/book-skull.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/book-tanakh.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/book.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bookmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/border-all.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/border-none.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/border-style.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/border-top-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bore-hole.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bottle-droplet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bottle-water.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bowl-food.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bowl-rice.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bowling-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/box-archive.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/box-open.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/box-tissue.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/box.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/boxes-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/boxes-packing.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/boxes-stacked.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/boxes.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/braille.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/brain.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/brazilian-real-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bread-slice.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bridge-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bridge-circle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bridge-circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bridge-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bridge-water.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bridge.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/briefcase-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/briefcase-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/briefcase.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/broadcast-tower.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/broom-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/broom.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/brush.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bucket.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bug-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bug.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bugs.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/building-circle-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/building-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/building-circle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/building-circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/building-columns.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/building-flag.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/building-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/building-ngo.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/building-shield.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/building-un.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/building-user.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/building-wheat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/building.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bullhorn.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bullseye.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/burger.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/burn.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/burst.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bus-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bus-side.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bus-simple.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/business-time.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/c.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cab.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cable-car.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cake-candles.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cake.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/calculator.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-day.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-days.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-times.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-week.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/calendar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/camera-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/camera-retro.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/camera-rotate.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/camera.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/campground.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/candy-cane.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cannabis.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/capsules.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/car-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/car-battery.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/car-burst.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/car-crash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/car-on.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/car-rear.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/car-side.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/car-tunnel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/car.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/caravan.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/caret-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/caret-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/caret-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/caret-square-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/caret-square-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/caret-square-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/caret-square-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/caret-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/carriage-baby.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/carrot.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cart-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cart-flatbed-suitcase.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cart-flatbed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cart-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cart-shopping.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cash-register.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cedi-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cent-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/certificate.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chain-broken.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chain-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chain.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chair.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chalkboard-teacher.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chalkboard-user.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chalkboard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/champagne-glasses.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/charging-station.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chart-area.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chart-bar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chart-column.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chart-diagram.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chart-gantt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chart-line.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chart-pie.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chart-simple.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/check-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/check-double.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/check-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/check-to-slot.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cheese.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chess-bishop.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chess-board.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chess-king.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chess-knight.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chess-pawn.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chess-queen.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chess-rook.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chess.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chevron-circle-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chevron-circle-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chevron-circle-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chevron-circle-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chevron-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chevron-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chevron-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chevron-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/child-combatant.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/child-dress.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/child-reaching.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/child-rifle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/child.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/children.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/church.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-chevron-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-chevron-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-chevron-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-chevron-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-dollar-to-slot.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-dot.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-h.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-half-stroke.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-info.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-nodes.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-notch.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-pause.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-play.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-question.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-radiation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-stop.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-user.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/city.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/clapperboard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/clinic-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/clipboard-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/clipboard-list.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/clipboard-question.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/clipboard-user.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/clipboard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/clock-four.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/clock-rotate-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/clock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/clone.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/close.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/closed-captioning.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-bolt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-download-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-download.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-meatball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-moon-rain.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-moon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-rain.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-showers-heavy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-showers-water.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-sun-rain.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-sun.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-upload-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-upload.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/clover.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cny.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cocktail.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/code-branch.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/code-commit.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/code-compare.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/code-fork.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/code-merge.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/code-pull-request.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/code.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/coffee.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cog.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cogs.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/coins.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/colon-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/columns.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/comment-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/comment-dollar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/comment-dots.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/comment-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/comment-nodes.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/comment-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/comment-sms.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/comment.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/commenting.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/comments-dollar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/comments.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/compact-disc.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/compass-drafting.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/compass.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/compress-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/compress-arrows-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/compress.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/computer-mouse.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/computer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/concierge-bell.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/contact-book.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/contact-card.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cookie-bite.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cookie.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/copy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/copyright.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/couch.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cow.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/credit-card-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/credit-card.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/crop-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/crop-simple.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/crop.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cross.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/crosshairs.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/crow.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/crown.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/crutch.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cruzeiro-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cube.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cubes-stacked.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cubes.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cut.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cutlery.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/d.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dashboard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/database.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/deaf.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/deafness.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dedent.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/delete-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/democrat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/desktop-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/desktop.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dharmachakra.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/diagnoses.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/diagram-next.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/diagram-predecessor.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/diagram-project.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/diagram-successor.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/diamond-turn-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/diamond.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dice-d20.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dice-d6.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dice-five.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dice-four.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dice-one.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dice-six.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dice-three.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dice-two.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dice.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/digging.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/digital-tachograph.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/directions.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/disease.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/display.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/divide.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dizzy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dna.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dog.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dollar-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dollar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dolly-box.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dolly-flatbed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dolly.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/donate.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dong-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/door-closed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/door-open.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dot-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dove.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/down-left-and-up-right-to-center.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/down-long.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/download.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/drafting-compass.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dragon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/draw-polygon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/drivers-license.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/droplet-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/droplet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/drum-steelpan.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/drum.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/drumstick-bite.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dumbbell.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dumpster-fire.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dumpster.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dungeon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/e.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ear-deaf.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ear-listen.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/earth-africa.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/earth-america.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/earth-americas.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/earth-asia.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/earth-europe.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/earth-oceania.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/earth.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/edit.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/egg.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/eject.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/elevator.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ellipsis-h.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ellipsis-v.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ellipsis-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ellipsis.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/envelope-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/envelope-open-text.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/envelope-open.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/envelope-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/envelope.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/envelopes-bulk.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/equals.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/eraser.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ethernet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/eur.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/euro-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/euro.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/exchange-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/exchange.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/exclamation-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/exclamation-triangle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/expand-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/expand-arrows-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/expand.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/explosion.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/external-link-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/external-link-square-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/external-link-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/external-link.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/eye-dropper-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/eye-dropper.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/eye-low-vision.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/eye-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/eye.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/eyedropper.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/f.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-angry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-dizzy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-flushed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-frown-open.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-frown.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-grimace.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-beam-sweat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-hearts.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-squint-tears.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-squint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-stars.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-tears.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-tongue-squint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-tongue-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-tongue.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-wide.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-kiss-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-kiss-wink-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-kiss.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-laugh-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-laugh-squint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-laugh-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-laugh.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-meh-blank.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-meh.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-rolling-eyes.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-sad-cry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-sad-tear.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-smile-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-smile-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-smile.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-surprise.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-tired.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fan.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fast-backward.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fast-forward.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/faucet-drip.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/faucet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fax.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/feather-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/feather-pointed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/feather.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/feed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/female.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ferry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fighter-jet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-archive.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-audio.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-circle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-circle-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-circle-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-circle-question.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-clipboard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-code.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-contract.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-csv.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-download.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-excel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-export.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-fragment.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-half-dashed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-image.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-import.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-invoice-dollar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-invoice.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-lines.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-medical-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-pdf.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-pen.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-powerpoint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-prescription.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-shield.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-signature.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-text.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-upload.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-video.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-waveform.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-word.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-zipper.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fill-drip.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fill.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/film-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/film-simple.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/film.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/filter-circle-dollar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/filter-circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/filter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fingerprint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fire-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fire-burner.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fire-extinguisher.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fire-flame-curved.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fire-flame-simple.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fire.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/first-aid.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fish-fins.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fish.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fist-raised.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/flag-checkered.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/flag-usa.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/flag.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/flask-vial.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/flask.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/floppy-disk.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/florin-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/flushed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/folder-blank.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/folder-closed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/folder-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/folder-open.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/folder-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/folder-tree.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/folder.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/font-awesome-flag.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/font-awesome-logo-full.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/font-awesome.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/font.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/football-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/football.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/forward-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/forward-step.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/forward.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/franc-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/frog.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/frown-open.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/frown.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/funnel-dollar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/futbol-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/futbol.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/g.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gamepad.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gas-pump.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gauge-high.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gauge-med.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gauge-simple-high.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gauge-simple-med.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gauge-simple.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gauge.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gavel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gbp.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gear.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gears.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gem.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/genderless.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ghost.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gift.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gifts.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/glass-cheers.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/glass-martini-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/glass-martini.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/glass-water-droplet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/glass-water.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/glass-whiskey.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/glasses.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/globe-africa.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/globe-americas.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/globe-asia.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/globe-europe.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/globe-oceania.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/globe.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/golf-ball-tee.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/golf-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gopuram.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/graduation-cap.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/greater-than-equal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/greater-than.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grid-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grid-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grimace.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grin-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grin-beam-sweat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grin-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grin-hearts.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grin-squint-tears.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grin-squint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grin-stars.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grin-tears.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grin-tongue-squint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grin-tongue-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grin-tongue.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grin-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grin.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grip-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grip-lines-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grip-lines.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grip-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grip.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/group-arrows-rotate.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/guarani-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/guitar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gun.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/h-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/h.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hamburger.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hammer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hamsa.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-back-fist.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-dots.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-fist.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-holding-dollar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-holding-droplet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-holding-hand.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-holding-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-holding-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-holding-usd.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-holding-water.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-holding.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-lizard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-middle-finger.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-paper.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-peace.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-point-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-point-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-point-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-point-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-pointer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-rock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-scissors.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-sparkles.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-spock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/handcuffs.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hands-american-sign-language-interpreting.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hands-asl-interpreting.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hands-bound.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hands-bubbles.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hands-clapping.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hands-helping.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hands-holding-child.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hands-holding-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hands-holding.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hands-praying.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hands-wash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hands.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/handshake-alt-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/handshake-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/handshake-angle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/handshake-simple-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/handshake-simple.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/handshake-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/handshake.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hanukiah.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hard-drive.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hard-hat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hard-of-hearing.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hashtag.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hat-cowboy-side.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hat-cowboy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hat-hard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hat-wizard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/haykal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hdd.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/head-side-cough-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/head-side-cough.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/head-side-mask.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/head-side-virus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/header.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/heading.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/headphones-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/headphones-simple.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/headphones.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/headset.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/heart-broken.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/heart-circle-bolt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/heart-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/heart-circle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/heart-circle-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/heart-circle-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/heart-circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/heart-crack.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/heart-music-camera-bolt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/heart-pulse.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/heart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/heartbeat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/helicopter-symbol.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/helicopter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/helmet-safety.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/helmet-un.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/heptagon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hexagon-nodes-bolt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hexagon-nodes.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hexagon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/highlighter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hiking.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hill-avalanche.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hill-rockslide.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hippo.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/history.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hockey-puck.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/holly-berry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/home-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/home-lg-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/home-lg.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/home-user.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/home.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/horse-head.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/horse.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hospital-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hospital-symbol.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hospital-user.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hospital-wide.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hospital.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hot-tub-person.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hot-tub.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hotdog.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hotel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hourglass-1.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hourglass-2.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hourglass-3.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hourglass-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hourglass-end.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hourglass-half.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hourglass-start.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hourglass.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-chimney-crack.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-chimney-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-chimney-user.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-chimney-window.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-chimney.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-circle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-crack.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-damage.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-fire.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-flag.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-flood-water-circle-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-flood-water.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-laptop.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-medical-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-medical-circle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-medical-circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-medical-flag.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-signal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-tsunami.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-user.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hryvnia-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hryvnia.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hurricane.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/i-cursor.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/i.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ice-cream.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/icicles.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/icons.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/id-badge.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/id-card-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/id-card-clip.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/id-card.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/igloo.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ils.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/image-portrait.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/image.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/images.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/inbox.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/indent.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/indian-rupee-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/indian-rupee.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/industry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/infinity.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/info-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/info.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/inr.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/institution.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/italic.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/j.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/jar-wheat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/jar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/jedi.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/jet-fighter-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/jet-fighter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/joint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/journal-whills.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/jpy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/jug-detergent.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/k.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/kaaba.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/key.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/keyboard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/khanda.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/kip-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/kiss-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/kiss-wink-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/kiss.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/kit-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/kitchen-set.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/kiwi-bird.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/krw.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/l.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ladder-water.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/land-mine-on.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/landmark-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/landmark-dome.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/landmark-flag.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/landmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/language.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/laptop-code.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/laptop-file.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/laptop-house.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/laptop-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/laptop.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/lari-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/laugh-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/laugh-squint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/laugh-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/laugh.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/layer-group.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/leaf.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/left-long.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/left-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/legal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/lemon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/less-than-equal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/less-than.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/level-down-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/level-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/level-up-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/level-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/life-ring.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/lightbulb.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/line-chart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/lines-leaning.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/link-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/link.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/lira-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/list-1-2.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/list-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/list-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/list-dots.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/list-numeric.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/list-ol.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/list-squares.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/list-ul.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/list.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/litecoin-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/location-arrow.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/location-crosshairs.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/location-dot.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/location-pin-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/location-pin.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/location.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/lock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/locust.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/long-arrow-alt-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/long-arrow-alt-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/long-arrow-alt-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/long-arrow-alt-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/long-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/long-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/long-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/long-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/low-vision.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/luggage-cart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/lungs-virus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/lungs.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/m.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/magic-wand-sparkles.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/magic.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/magnet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/magnifying-glass-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/magnifying-glass-chart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/magnifying-glass-dollar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/magnifying-glass-location.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/magnifying-glass-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/magnifying-glass-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/magnifying-glass.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mail-bulk.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mail-forward.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mail-reply-all.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mail-reply.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/male.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/manat-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/map-location-dot.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/map-location.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/map-marked-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/map-marked.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/map-marker-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/map-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/map-pin.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/map-signs.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/map.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/marker.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mars-and-venus-burst.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mars-and-venus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mars-double.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mars-stroke-h.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mars-stroke-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mars-stroke-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mars-stroke-v.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mars-stroke.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mars.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/martini-glass-citrus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/martini-glass-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/martini-glass.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mask-face.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mask-ventilator.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mask.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/masks-theater.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mattress-pillow.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/maximize.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/medal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/medkit.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/meh-blank.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/meh-rolling-eyes.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/meh.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/memory.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/menorah.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mercury.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/message.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/meteor.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/microchip.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/microphone-alt-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/microphone-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/microphone-lines-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/microphone-lines.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/microphone-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/microphone.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/microscope.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mill-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/minimize.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/minus-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/minus-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mitten.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-android-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-android.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-button.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-phone.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-retro.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-screen-button.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-screen.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-vibrate.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mobile.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill-1-wave.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill-1.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill-transfer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill-trend-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill-wave-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill-wave.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill-wheat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/money-bills.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/money-check-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/money-check-dollar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/money-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/monument.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/moon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mortar-board.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mortar-pestle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mosque.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mosquito-net.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mosquito.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/motorcycle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mound.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mountain-city.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mountain-sun.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mountain.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mouse-pointer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mouse.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mug-hot.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mug-saucer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/multiply.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/museum.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/music.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/n.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/naira-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/navicon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/network-wired.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/neuter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/newspaper.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/non-binary.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/not-equal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/notdef.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/note-sticky.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/notes-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/o.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/object-group.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/object-ungroup.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/octagon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/oil-can.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/oil-well.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/om.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/otter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/outdent.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/p.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pager.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/paint-brush.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/paint-roller.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/paintbrush.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/palette.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pallet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/panorama.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/paper-plane.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/paperclip.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/parachute-box.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/paragraph.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/parking.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/passport.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pastafarianism.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/paste.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pause-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pause.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/paw.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/peace.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pen-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pen-clip.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pen-fancy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pen-nib.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pen-ruler.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pen-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pen-to-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pen.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pencil-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pencil-ruler.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pencil-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pencil.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pentagon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/people-arrows-left-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/people-arrows.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/people-carry-box.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/people-carry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/people-group.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/people-line.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/people-pulling.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/people-robbery.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/people-roof.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pepper-hot.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/percent.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/percentage.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-arrow-down-to-line.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-arrow-up-from-line.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-biking.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-booth.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-breastfeeding.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-burst.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-cane.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-chalkboard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-circle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-circle-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-circle-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-circle-question.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-digging.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-dots-from-line.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-dress-burst.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-dress.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-drowning.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-falling-burst.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-falling.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-half-dress.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-harassing.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-hiking.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-military-pointing.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-military-rifle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-military-to-person.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-praying.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-pregnant.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-rays.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-rifle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-running.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-shelter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-skating.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-skiing-nordic.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-skiing.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-snowboarding.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-swimming.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-through-window.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-walking-arrow-loop-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-walking-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-walking-dashed-line-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-walking-luggage.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-walking-with-cane.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-walking.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/peseta-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/peso-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/phone-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/phone-flip.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/phone-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/phone-square-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/phone-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/phone-volume.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/phone.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/photo-film.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/photo-video.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pie-chart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/piggy-bank.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pills.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ping-pong-paddle-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pizza-slice.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/place-of-worship.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plane-arrival.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plane-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plane-circle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plane-circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plane-departure.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plane-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plane-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plane-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plane.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plant-wilt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plate-wheat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/play-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/play.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plug-circle-bolt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plug-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plug-circle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plug-circle-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plug-circle-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plug-circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plug.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plus-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plus-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plus-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/podcast.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/poll-h.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/poll.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/poo-bolt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/poo-storm.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/poo.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/poop.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/portrait.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pound-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/power-off.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pray.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/praying-hands.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/prescription-bottle-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/prescription-bottle-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/prescription-bottle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/prescription.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/print.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/procedures.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/project-diagram.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pump-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pump-soap.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/puzzle-piece.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/q.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/qrcode.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/question-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/question.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/quidditch-broom-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/quidditch.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/quote-left-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/quote-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/quote-right-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/quote-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/quran.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/r.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/radiation-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/radiation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/radio.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rainbow.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/random.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ranking-star.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/receipt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/record-vinyl.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rectangle-ad.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rectangle-list.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rectangle-times.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rectangle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/recycle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/redo-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/redo.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/registered.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/remove-format.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/remove.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/reorder.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/repeat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/reply-all.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/reply.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/republican.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/restroom.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/retweet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ribbon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/right-from-bracket.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/right-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/right-long.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/right-to-bracket.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ring.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rmb.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/road-barrier.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/road-bridge.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/road-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/road-circle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/road-circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/road-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/road-spikes.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/road.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/robot.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rocket.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rod-asclepius.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rod-snake.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rotate-back.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rotate-backward.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rotate-forward.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rotate-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rotate-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rotate.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rouble.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/route.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rss-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rss.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rub.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ruble-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ruble.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rug.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ruler-combined.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ruler-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ruler-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ruler.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/running.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rupee-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rupee.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rupiah-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/s.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sack-dollar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sack-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sad-cry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sad-tear.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sailboat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/satellite-dish.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/satellite.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/save.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/scale-balanced.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/scale-unbalanced-flip.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/scale-unbalanced.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/school-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/school-circle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/school-circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/school-flag.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/school-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/school.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/scissors.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/screwdriver-wrench.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/screwdriver.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/scroll-torah.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/scroll.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sd-card.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/search-dollar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/search-location.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/search-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/search-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/search.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/section.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/seedling.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/septagon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/server.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shapes.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/share-alt-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/share-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/share-from-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/share-nodes.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/share-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/share.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sheet-plastic.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shekel-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shekel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sheqel-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sheqel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shield-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shield-blank.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shield-cat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shield-dog.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shield-halved.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shield-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shield-virus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shield.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ship.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shipping-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shirt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shoe-prints.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shop-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shop-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shop.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shopping-bag.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shopping-basket.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shopping-cart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shower.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shrimp.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shuffle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shuttle-space.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shuttle-van.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sign-hanging.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sign-in-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sign-in.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sign-language.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sign-out-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sign-out.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/signal-5.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/signal-perfect.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/signal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/signature.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/signing.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/signs-post.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sim-card.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/single-quote-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/single-quote-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sitemap.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/skating.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/skiing-nordic.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/skiing.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/skull-crossbones.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/skull.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sleigh.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sliders-h.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sliders.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/smile-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/smile-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/smile.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/smog.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/smoking-ban.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/smoking.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sms.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/snowboarding.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/snowflake.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/snowman.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/snowplow.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/soap.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/soccer-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/socks.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/solar-panel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-alpha-asc.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-alpha-desc.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-alpha-down-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-alpha-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-alpha-up-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-alpha-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-amount-asc.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-amount-desc.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-amount-down-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-amount-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-amount-up-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-amount-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-asc.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-desc.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-numeric-asc.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-numeric-desc.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-numeric-down-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-numeric-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-numeric-up-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-numeric-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/spa.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/space-shuttle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/spaghetti-monster-flying.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/spell-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/spider.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/spinner.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/spiral.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/splotch.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/spoon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/spray-can-sparkles.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/spray-can.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sprout.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-arrow-up-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-binary.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-caret-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-caret-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-caret-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-caret-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-envelope.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-full.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-h.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-nfi.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-parking.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-pen.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-person-confined.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-phone-flip.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-phone.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-poll-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-poll-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-root-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-root-variable.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-rss.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-share-nodes.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-up-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-virus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/staff-aesculapius.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/staff-snake.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/stairs.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/stamp.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/stapler.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/star-and-crescent.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/star-half-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/star-half-stroke.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/star-half.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/star-of-david.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/star-of-life.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/star.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/step-backward.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/step-forward.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sterling-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/stethoscope.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sticky-note.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/stop-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/stop.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/stopwatch-20.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/stopwatch.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/store-alt-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/store-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/store-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/store.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/stream.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/street-view.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/strikethrough.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/stroopwafel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/subscript.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/subtract.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/subway.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/suitcase-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/suitcase-rolling.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/suitcase.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sun-plant-wilt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sun.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/superscript.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/surprise.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/swatchbook.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/swimmer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/swimming-pool.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/synagogue.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sync-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sync.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/syringe.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/t-shirt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/t.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/table-cells-column-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/table-cells-large.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/table-cells-row-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/table-cells-row-unlock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/table-cells.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/table-columns.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/table-list.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/table-tennis-paddle-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/table-tennis.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/table.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tablet-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tablet-android.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tablet-button.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tablet-screen-button.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tablet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tablets.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tachograph-digital.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tachometer-alt-average.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tachometer-alt-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tachometer-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tachometer-average.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tachometer-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tachometer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tag.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tags.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tanakh.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tape.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tarp-droplet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tarp.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tasks-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tasks.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/taxi.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/teeth-open.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/teeth.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/teletype.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/television.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-0.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-1.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-2.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-3.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-4.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-full.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-half.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-high.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-low.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-quarter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-three-quarters.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tenge-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tenge.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tent-arrow-down-to-line.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tent-arrow-left-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tent-arrow-turn-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tent-arrows-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tent.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tents.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/terminal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/text-height.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/text-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/text-width.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/th-large.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/th-list.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/th.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/theater-masks.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-0.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-1.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-2.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-3.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-4.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-full.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-half.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-quarter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-three-quarters.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thumb-tack-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thumb-tack.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thumbs-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thumbs-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thumbtack-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thumbtack.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thunderstorm.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ticket-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ticket-simple.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ticket.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/timeline.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/times-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/times-rectangle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/times-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/times.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tint-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tired.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/toggle-off.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/toggle-on.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/toilet-paper-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/toilet-paper-blank.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/toilet-paper-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/toilet-paper.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/toilet-portable.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/toilet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/toilets-portable.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/toolbox.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tools.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tooth.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/torah.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/torii-gate.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tornado.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tower-broadcast.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tower-cell.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tower-observation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tractor.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/trademark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/traffic-light.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/trailer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/train-subway.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/train-tram.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/train.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tram.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/transgender-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/transgender.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/trash-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/trash-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/trash-can-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/trash-can.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/trash-restore-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/trash-restore.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/trash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tree-city.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tree.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/triangle-circle-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/triangle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/trophy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/trowel-bricks.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/trowel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/truck-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/truck-droplet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/truck-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/truck-field-un.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/truck-field.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/truck-front.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/truck-loading.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/truck-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/truck-monster.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/truck-moving.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/truck-pickup.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/truck-plane.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/truck-ramp-box.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/truck.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/try.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tshirt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tty.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/turkish-lira-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/turkish-lira.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/turn-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/turn-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tv-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tv.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/u.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/umbrella-beach.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/umbrella.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/underline.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/undo-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/undo.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/universal-access.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/university.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/unlink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/unlock-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/unlock-keyhole.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/unlock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/unsorted.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/up-down-left-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/up-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/up-long.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/up-right-and-down-left-from-center.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/up-right-from-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/upload.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/usd.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-alt-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-astronaut.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-doctor.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-friends.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-gear.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-graduate.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-group.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-injured.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-large-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-large.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-md.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-ninja.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-nurse.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-pen.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-secret.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-shield.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-tag.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-tie.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-times.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/users-between-lines.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/users-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/users-gear.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/users-line.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/users-rays.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/users-rectangle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/users-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/users-viewfinder.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/users.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/utensil-spoon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/utensils.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/v.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/van-shuttle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/vault.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/vcard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/vector-polygon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/venus-double.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/venus-mars.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/venus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/vest-patches.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/vest.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/vial-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/vial-virus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/vial.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/vials.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/video-camera.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/video-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/video.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/vihara.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/virus-covid-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/virus-covid.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/virus-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/virus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/viruses.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/voicemail.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/volcano.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/volleyball-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/volleyball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/volume-control-phone.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/volume-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/volume-high.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/volume-low.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/volume-mute.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/volume-off.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/volume-times.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/volume-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/volume-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/vote-yea.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/vr-cardboard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/w.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/walkie-talkie.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/walking.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wallet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wand-magic-sparkles.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wand-magic.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wand-sparkles.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/warehouse.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/warning.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/water-ladder.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/water.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wave-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/web-awesome.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/weight-hanging.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/weight-scale.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/weight.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wheat-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wheat-awn-circle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wheat-awn.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wheelchair-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wheelchair-move.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wheelchair.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/whiskey-glass.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wifi-3.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wifi-strong.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wifi.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wind.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/window-close.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/window-maximize.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/window-minimize.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/window-restore.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wine-bottle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wine-glass-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wine-glass-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wine-glass.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/won-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/won.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/worm.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wrench.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/x-ray.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/x.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/xmark-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/xmark-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/xmarks-lines.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/y.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/yen-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/yen.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/yin-yang.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/z.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/zap.svg +1 -0
- docsforge/themes/material/templates/.icons/logo-monochrome.svg +3 -0
- docsforge/themes/material/templates/.icons/logo.svg +6 -0
- docsforge/themes/material/templates/.icons/material/LICENSE +20 -0
- docsforge/themes/material/templates/.icons/material/ab-testing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/abacus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/abjad-arabic.svg +1 -0
- docsforge/themes/material/templates/.icons/material/abjad-hebrew.svg +1 -0
- docsforge/themes/material/templates/.icons/material/abugida-devanagari.svg +1 -0
- docsforge/themes/material/templates/.icons/material/abugida-thai.svg +1 -0
- docsforge/themes/material/templates/.icons/material/access-point-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/access-point-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/access-point-network-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/access-point-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/access-point-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/access-point-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/access-point-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/access-point.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-arrow-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-arrow-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-arrow-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-badge-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-badge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-box-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-box-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-box-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-cancel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-card-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-card.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-cash-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-cash.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-child-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-child-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-child.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-convert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-convert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-cowboy-hat-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-cowboy-hat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-credit-card-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-credit-card.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-details-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-details.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-eye-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-eye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-file-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-file-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-file-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-file.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-filter-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-filter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-group-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-group.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-hard-hat-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-hard-hat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-injury-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-injury.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-key-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-key.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-lock-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-multiple-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-multiple-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-multiple-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-multiple-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-multiple-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-multiple-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-multiple-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-multiple-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-music-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-music.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-network-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-network-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-reactivate-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-reactivate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-school-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-school.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-supervisor-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-supervisor-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-supervisor-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-supervisor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-switch-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-switch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-tag-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-tag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-tie-hat-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-tie-hat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-tie-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-tie-voice-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-tie-voice-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-tie-voice-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-tie-voice.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-tie-woman.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-tie.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-voice-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-voice.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-wrench-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-wrench.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/adjust.svg +1 -0
- docsforge/themes/material/templates/.icons/material/advertisements-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/advertisements.svg +1 -0
- docsforge/themes/material/templates/.icons/material/air-conditioner.svg +1 -0
- docsforge/themes/material/templates/.icons/material/air-filter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/air-horn.svg +1 -0
- docsforge/themes/material/templates/.icons/material/air-humidifier-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/air-humidifier.svg +1 -0
- docsforge/themes/material/templates/.icons/material/air-purifier-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/air-purifier.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airbag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airballoon-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airballoon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane-landing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane-takeoff.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airport.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm-bell.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm-light-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm-light-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm-light-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm-light.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm-note-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm-note.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm-panel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm-panel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm-snooze.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm.svg +1 -0
- docsforge/themes/material/templates/.icons/material/album.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-circle-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-decagram-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-decagram.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-octagon-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-octagon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-octagram-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-octagram.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-rhombus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-rhombus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alien-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alien.svg +1 -0
- docsforge/themes/material/templates/.icons/material/align-horizontal-center.svg +1 -0
- docsforge/themes/material/templates/.icons/material/align-horizontal-distribute.svg +1 -0
- docsforge/themes/material/templates/.icons/material/align-horizontal-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/align-horizontal-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/align-vertical-bottom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/align-vertical-center.svg +1 -0
- docsforge/themes/material/templates/.icons/material/align-vertical-distribute.svg +1 -0
- docsforge/themes/material/templates/.icons/material/align-vertical-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/all-inclusive-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/all-inclusive-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/all-inclusive.svg +1 -0
- docsforge/themes/material/templates/.icons/material/allergy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-a-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-a-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-a-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-a-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-a.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-b-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-b-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-b-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-b-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-b.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-c-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-c-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-c-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-c-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-c.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-d-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-d-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-d-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-d-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-d.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-e-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-e-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-e-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-e-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-e.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-f-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-f-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-f-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-f-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-f.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-g-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-g-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-g-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-g-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-g.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-h-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-h-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-h-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-h-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-h.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-i-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-i-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-i-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-i-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-i.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-j-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-j-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-j-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-j-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-j.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-k-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-k-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-k-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-k-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-k.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-l-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-l-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-l-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-l-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-l.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-m-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-m-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-m-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-m-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-m.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-n-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-n-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-n-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-n-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-n.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-o-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-o-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-o-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-o-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-o.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-p-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-p-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-p-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-p-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-p.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-q-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-q-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-q-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-q-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-q.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-r-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-r-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-r-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-r-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-r.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-s-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-s-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-s-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-s-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-s.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-t-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-t-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-t-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-t-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-t.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-u-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-u-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-u-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-u-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-u.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-v-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-v-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-v-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-v-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-v.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-w-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-w-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-w-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-w-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-w.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-x-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-x-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-x-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-x-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-x.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-y-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-y-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-y-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-y-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-y.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-z-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-z-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-z-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-z-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-z.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alphabet-aurebesh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alphabet-cyrillic.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alphabet-greek.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alphabet-latin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alphabet-piqad.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alphabet-tengwar.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alphabetical-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alphabetical-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alphabetical-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alphabetical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/altimeter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ambulance.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ammunition.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ampersand.svg +1 -0
- docsforge/themes/material/templates/.icons/material/amplifier-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/amplifier.svg +1 -0
- docsforge/themes/material/templates/.icons/material/anchor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/android-studio.svg +1 -0
- docsforge/themes/material/templates/.icons/material/android.svg +1 -0
- docsforge/themes/material/templates/.icons/material/angle-acute.svg +1 -0
- docsforge/themes/material/templates/.icons/material/angle-obtuse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/angle-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/angular.svg +1 -0
- docsforge/themes/material/templates/.icons/material/angularjs.svg +1 -0
- docsforge/themes/material/templates/.icons/material/animation-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/animation-play-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/animation-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/animation.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ansible.svg +1 -0
- docsforge/themes/material/templates/.icons/material/antenna.svg +1 -0
- docsforge/themes/material/templates/.icons/material/anvil.svg +1 -0
- docsforge/themes/material/templates/.icons/material/apache-kafka.svg +1 -0
- docsforge/themes/material/templates/.icons/material/api-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/api.svg +1 -0
- docsforge/themes/material/templates/.icons/material/apple-finder.svg +1 -0
- docsforge/themes/material/templates/.icons/material/apple-icloud.svg +1 -0
- docsforge/themes/material/templates/.icons/material/apple-ios.svg +1 -0
- docsforge/themes/material/templates/.icons/material/apple-keyboard-caps.svg +1 -0
- docsforge/themes/material/templates/.icons/material/apple-keyboard-command.svg +1 -0
- docsforge/themes/material/templates/.icons/material/apple-keyboard-control.svg +1 -0
- docsforge/themes/material/templates/.icons/material/apple-keyboard-option.svg +1 -0
- docsforge/themes/material/templates/.icons/material/apple-keyboard-shift.svg +1 -0
- docsforge/themes/material/templates/.icons/material/apple-safari.svg +1 -0
- docsforge/themes/material/templates/.icons/material/apple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-array-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-array.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-braces-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-braces.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-brackets-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-brackets.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-export.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-import.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-parentheses-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-parentheses.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-variable-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-variable.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application.svg +1 -0
- docsforge/themes/material/templates/.icons/material/approximately-equal-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/approximately-equal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/apps-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/apps.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-arrow-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-arrow-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-cancel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-eye-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-eye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-lock-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-music-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-music.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arm-flex-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arm-flex.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrange-bring-forward.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrange-bring-to-front.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrange-send-backward.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrange-send-to-back.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-all.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-bottom-left-bold-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-bottom-left-bold-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-bottom-left-bold-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-bottom-left-thick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-bottom-left-thin-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-bottom-left-thin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-bottom-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-bottom-right-bold-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-bottom-right-bold-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-bottom-right-bold-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-bottom-right-thick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-bottom-right-thin-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-bottom-right-thin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-bottom-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-collapse-all.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-collapse-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-collapse-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-collapse-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-collapse-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-collapse-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-collapse-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-collapse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-decision-auto-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-decision-auto.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-decision-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-decision.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-bold-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-bold-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-bold-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-bold-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-bold-hexagon-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-bold-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-drop-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-drop-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-left-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-right-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-thick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-thin-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-thin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-expand-all.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-expand-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-expand-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-expand-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-expand-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-expand-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-expand-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-expand.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-horizontal-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-bold-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-bold-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-bold-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-bold-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-bold-hexagon-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-bold-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-bottom-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-bottom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-drop-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-drop-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-right-bold-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-right-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-thick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-thin-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-thin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-top-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-oscillating-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-oscillating.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-projectile-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-projectile.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-bold-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-bold-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-bold-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-bold-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-bold-hexagon-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-bold-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-bottom-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-bottom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-drop-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-drop-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-thick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-thin-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-thin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-top-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-split-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-split-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-left-bold-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-left-bold-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-left-bold-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-left-bottom-right-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-left-bottom-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-left-thick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-left-thin-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-left-thin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-right-bold-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-right-bold-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-right-bold-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-right-bottom-left-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-right-bottom-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-right-thick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-right-thin-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-right-thin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-down-left-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-down-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-down-right-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-down-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-left-bottom-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-left-bottom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-left-top-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-left-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-right-bottom-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-right-bottom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-right-top-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-right-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-up-left-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-up-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-up-right-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-up-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-bold-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-bold-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-bold-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-bold-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-bold-hexagon-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-bold-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-down-bold-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-down-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-drop-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-drop-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-left-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-right-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-thick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-thin-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-thin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-vertical-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/artboard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/artstation.svg +1 -0
- docsforge/themes/material/templates/.icons/material/aspect-ratio.svg +1 -0
- docsforge/themes/material/templates/.icons/material/assistant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/asterisk-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/asterisk.svg +1 -0
- docsforge/themes/material/templates/.icons/material/at.svg +1 -0
- docsforge/themes/material/templates/.icons/material/atlassian.svg +1 -0
- docsforge/themes/material/templates/.icons/material/atm.svg +1 -0
- docsforge/themes/material/templates/.icons/material/atom-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/atom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/attachment-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/attachment-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/attachment-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/attachment-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/attachment-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/attachment-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/attachment.svg +1 -0
- docsforge/themes/material/templates/.icons/material/atv.svg +1 -0
- docsforge/themes/material/templates/.icons/material/audio-input-rca.svg +1 -0
- docsforge/themes/material/templates/.icons/material/audio-input-stereo-minijack.svg +1 -0
- docsforge/themes/material/templates/.icons/material/audio-input-xlr.svg +1 -0
- docsforge/themes/material/templates/.icons/material/audio-video-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/audio-video.svg +1 -0
- docsforge/themes/material/templates/.icons/material/augmented-reality.svg +1 -0
- docsforge/themes/material/templates/.icons/material/aurora.svg +1 -0
- docsforge/themes/material/templates/.icons/material/auto-download.svg +1 -0
- docsforge/themes/material/templates/.icons/material/auto-fix.svg +1 -0
- docsforge/themes/material/templates/.icons/material/auto-mode.svg +1 -0
- docsforge/themes/material/templates/.icons/material/auto-upload.svg +1 -0
- docsforge/themes/material/templates/.icons/material/autorenew-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/autorenew.svg +1 -0
- docsforge/themes/material/templates/.icons/material/av-timer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/awning-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/awning.svg +1 -0
- docsforge/themes/material/templates/.icons/material/aws.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axe-battle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axe.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-arrow-info.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-arrow-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-arrow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-x-arrow-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-x-arrow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-x-rotate-clockwise.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-x-rotate-counterclockwise.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-x-y-arrow-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-y-arrow-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-y-arrow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-y-rotate-clockwise.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-y-rotate-counterclockwise.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-z-arrow-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-z-arrow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-z-rotate-clockwise.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-z-rotate-counterclockwise.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis.svg +1 -0
- docsforge/themes/material/templates/.icons/material/babel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baby-bottle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baby-bottle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baby-buggy-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baby-buggy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baby-carriage-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baby-carriage.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baby-face-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baby-face.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baby.svg +1 -0
- docsforge/themes/material/templates/.icons/material/backburger.svg +1 -0
- docsforge/themes/material/templates/.icons/material/backspace-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/backspace-reverse-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/backspace-reverse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/backspace.svg +1 -0
- docsforge/themes/material/templates/.icons/material/backup-restore.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bacteria-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bacteria.svg +1 -0
- docsforge/themes/material/templates/.icons/material/badge-account-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/badge-account-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/badge-account-horizontal-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/badge-account-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/badge-account-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/badge-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/badminton.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-carry-on-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-carry-on-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-carry-on.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-checked.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-personal-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-personal-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-personal-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-personal-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-personal-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-personal-tag-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-personal-tag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-personal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-suitcase-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-suitcase-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-suitcase-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-suitcase.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baguette.svg +1 -0
- docsforge/themes/material/templates/.icons/material/balcony.svg +1 -0
- docsforge/themes/material/templates/.icons/material/balloon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ballot-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ballot-recount-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ballot-recount.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ballot.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bandage.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bank-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bank-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bank-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bank-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bank-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bank-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bank-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bank-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bank-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bank-transfer-in.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bank-transfer-out.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bank-transfer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bank.svg +1 -0
- docsforge/themes/material/templates/.icons/material/barcode-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/barcode-scan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/barcode.svg +1 -0
- docsforge/themes/material/templates/.icons/material/barley-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/barley.svg +1 -0
- docsforge/themes/material/templates/.icons/material/barn.svg +1 -0
- docsforge/themes/material/templates/.icons/material/barrel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/barrel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baseball-bat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baseball-diamond-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baseball-diamond.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baseball-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baseball.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bash.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basket-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basket-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basket-fill.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basket-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basket-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basket-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basket-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basket-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basket-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basket-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basket-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basket-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basket-unfill.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basket.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basketball-hoop-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basketball-hoop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basketball.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bathtub-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bathtub.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-10-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-10.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-20-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-20.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-30-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-30.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-40-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-40.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-50-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-50.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-60-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-60.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-70-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-70.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-80-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-80.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-90-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-90.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-alert-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-alert-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-alert-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-arrow-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-arrow-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-bluetooth-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-10.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-100.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-20.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-30.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-40.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-50.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-60.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-70.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-80.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-90.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-high.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-low.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-medium.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-wireless-10.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-wireless-20.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-wireless-30.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-wireless-40.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-wireless-50.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-wireless-60.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-wireless-70.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-wireless-80.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-wireless-90.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-wireless-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-wireless-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-wireless.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-heart-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-high.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-low.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-medium.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-minus-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-negative.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-plus-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-positive.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-unknown-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-unknown.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beach.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beaker-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beaker-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beaker-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beaker-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beaker-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beaker-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beaker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beaker-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beaker-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beaker-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beaker-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beaker-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beaker-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beaker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bed-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bed-double-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bed-double.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bed-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bed-king-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bed-king.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bed-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bed-queen-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bed-queen.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bed-single-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bed-single.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bee-flower.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bee.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beehive-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beehive-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beekeeper.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beer-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-badge-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-badge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-cancel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-ring-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-ring.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-sleep-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-sleep.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bench-back.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bench.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beta.svg +1 -0
- docsforge/themes/material/templates/.icons/material/betamax.svg +1 -0
- docsforge/themes/material/templates/.icons/material/biathlon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bicycle-basket.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bicycle-cargo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bicycle-electric.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bicycle-penny-farthing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bicycle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bike-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bike-pedal-clipless.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bike-pedal-mountain.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bike-pedal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bike.svg +1 -0
- docsforge/themes/material/templates/.icons/material/billboard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/billiards-rack.svg +1 -0
- docsforge/themes/material/templates/.icons/material/billiards.svg +1 -0
- docsforge/themes/material/templates/.icons/material/binoculars.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bio.svg +1 -0
- docsforge/themes/material/templates/.icons/material/biohazard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bird.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bitbucket.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bitcoin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/black-mesa.svg +1 -0
- docsforge/themes/material/templates/.icons/material/blender-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/blender-software.svg +1 -0
- docsforge/themes/material/templates/.icons/material/blender.svg +1 -0
- docsforge/themes/material/templates/.icons/material/blinds-horizontal-closed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/blinds-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/blinds-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/blinds-vertical-closed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/blinds-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/blinds.svg +1 -0
- docsforge/themes/material/templates/.icons/material/block-helper.svg +1 -0
- docsforge/themes/material/templates/.icons/material/blood-bag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bluetooth-audio.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bluetooth-connect.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bluetooth-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bluetooth-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bluetooth-transfer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/blur-linear.svg +1 -0
- docsforge/themes/material/templates/.icons/material/blur-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/blur-radial.svg +1 -0
- docsforge/themes/material/templates/.icons/material/blur.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bolt.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bomb-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bomb.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bone-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-account-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-alphabet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-arrow-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-arrow-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-arrow-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-cancel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-cross.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-education-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-education.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-information-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-lock-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-minus-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-minus-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-music-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-music.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-open-blank-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-open-blank-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-open-page-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-open-page-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-open-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-open-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-play-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-plus-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-plus-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-remove-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-remove-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-music-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-music.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookshelf.svg +1 -0
- docsforge/themes/material/templates/.icons/material/boom-gate-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/boom-gate-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/boom-gate-arrow-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/boom-gate-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/boom-gate-arrow-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/boom-gate-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/boom-gate-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/boom-gate-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/boom-gate-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/boom-gate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/boombox.svg +1 -0
- docsforge/themes/material/templates/.icons/material/boomerang.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bootstrap.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-all-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-all.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-bottom-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-bottom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-color.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-inside.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-left-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-none-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-none.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-outside.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-radius.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-right-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-style.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-top-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bottle-soda-classic-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bottle-soda-classic.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bottle-soda-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bottle-soda.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bottle-tonic-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bottle-tonic-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bottle-tonic-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bottle-tonic-skull-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bottle-tonic-skull.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bottle-tonic.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bottle-wine-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bottle-wine.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bow-arrow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bow-tie.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bowl-mix-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bowl-mix.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bowl-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bowl.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bowling.svg +1 -0
- docsforge/themes/material/templates/.icons/material/box-cutter-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/box-cutter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/box-shadow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/boxing-glove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/braille.svg +1 -0
- docsforge/themes/material/templates/.icons/material/brain.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bread-slice-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bread-slice.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bridge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-account-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-arrow-left-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-arrow-left-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-arrow-up-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-arrow-up-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-download-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-download.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-eye-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-eye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-upload-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-upload.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-variant-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase.svg +1 -0
- docsforge/themes/material/templates/.icons/material/brightness-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/brightness-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/brightness-3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/brightness-4.svg +1 -0
- docsforge/themes/material/templates/.icons/material/brightness-5.svg +1 -0
- docsforge/themes/material/templates/.icons/material/brightness-6.svg +1 -0
- docsforge/themes/material/templates/.icons/material/brightness-7.svg +1 -0
- docsforge/themes/material/templates/.icons/material/brightness-auto.svg +1 -0
- docsforge/themes/material/templates/.icons/material/brightness-percent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/broadcast-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/broadcast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/broom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/brush-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/brush-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/brush-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/brush.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bucket-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bucket.svg +1 -0
- docsforge/themes/material/templates/.icons/material/buffet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bug-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bug-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bug-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bug-pause-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bug-pause.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bug-play-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bug-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bug-stop-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bug-stop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bug.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bugle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bulkhead-light.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bulldozer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bullet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bulletin-board.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bullhorn-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bullhorn-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bullhorn-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bullhorn.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bullseye-arrow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bullseye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bulma.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bunk-bed-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bunk-bed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-articulated-end.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-articulated-front.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-double-decker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-electric.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-school.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-side.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-stop-covered.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-stop-uncovered.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-stop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-wrench.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/butterfly-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/butterfly.svg +1 -0
- docsforge/themes/material/templates/.icons/material/button-cursor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/button-pointer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cabin-a-frame.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cable-data.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cached.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cactus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cake-layered.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cake-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cake-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cake.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calculator-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calculator-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calculator.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-account-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-badge-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-badge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-blank-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-blank-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-blank.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-collapse-horizontal-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-collapse-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-cursor-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-cursor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-end-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-end.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-expand-horizontal-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-expand-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-export-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-export.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-filter-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-filter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-import-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-import.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-lock-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-month-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-month.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-multiple-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-multiselect-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-multiselect.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-range-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-range.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-star-four-points.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-start-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-start.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-today-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-today.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-week-begin-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-week-begin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-week-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-week.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-weekend-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-weekend.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar.svg +1 -0
- docsforge/themes/material/templates/.icons/material/call-made.svg +1 -0
- docsforge/themes/material/templates/.icons/material/call-merge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/call-missed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/call-received.svg +1 -0
- docsforge/themes/material/templates/.icons/material/call-split.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camcorder-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camcorder.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-burst.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-control.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-document-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-document.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-enhance-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-enhance.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-flip-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-flip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-front-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-front.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-gopro.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-image.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-iris.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-lock-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-metering-center.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-metering-matrix.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-metering-partial.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-metering-spot.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-party-mode.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-rear-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-rear.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-retake-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-retake.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-switch-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-switch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-timer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-wireless-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-wireless.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera.svg +1 -0
- docsforge/themes/material/templates/.icons/material/campfire.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/candelabra-fire.svg +1 -0
- docsforge/themes/material/templates/.icons/material/candelabra.svg +1 -0
- docsforge/themes/material/templates/.icons/material/candle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/candy-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/candy-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/candy-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/candy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/candycane.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cannabis-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cannabis.svg +1 -0
- docsforge/themes/material/templates/.icons/material/caps-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-2-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-3-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-back.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-battery.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-brake-abs.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-brake-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-brake-fluid-level.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-brake-hold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-brake-low-pressure.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-brake-parking.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-brake-retarder.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-brake-temperature.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-brake-worn-linings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-child-seat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-clutch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-connected.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-convertible.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-coolant-level.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-cruise-control.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-defrost-front.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-defrost-rear.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-door-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-door-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-door.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-electric-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-electric.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-emergency.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-esp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-estate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-hatchback.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-info.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-key.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-lifted-pickup.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-light-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-light-dimmed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-light-fog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-light-high.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-limousine.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-parking-lights.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-pickup.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-seat-cooler.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-seat-heater.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-seat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-select.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-shift-pattern.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-side.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-speed-limiter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-sports.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-tire-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-traction-control.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-turbocharger.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-wash.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-windshield-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-windshield.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-wireless.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-wrench.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car.svg +1 -0
- docsforge/themes/material/templates/.icons/material/carabiner.svg +1 -0
- docsforge/themes/material/templates/.icons/material/caravan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-account-details-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-account-details-star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-account-details-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-account-details.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-account-mail-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-account-mail.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-account-phone-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-account-phone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-bulleted-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-bulleted-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-bulleted-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-bulleted-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-bulleted-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-bulleted.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-club-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-club.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-diamond-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-diamond.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-club-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-club-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-club-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-club.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-diamond-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-diamond-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-diamond-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-diamond.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-heart-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-heart-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-spade-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-spade-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-spade-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-spade.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-spade-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-spade.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards.svg +1 -0
- docsforge/themes/material/templates/.icons/material/carrot.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cart-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cart-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cart-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cart-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cart-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cart-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cart-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cart-percent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cart-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cart-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cart-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/case-sensitive-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-100.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-refund.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-register.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cassette.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cast-audio-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cast-audio.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cast-connected.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cast-education.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cast-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cast-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/castle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cctv-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cctv.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ceiling-fan-light.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ceiling-fan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ceiling-light-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ceiling-light-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ceiling-light-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ceiling-light.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-arrow-down-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-basic.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-charging.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-dock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-information.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-key.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-link-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-link.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-message-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-message.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-nfc-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-nfc.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-screenshot.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-sound.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-wireless.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/centos.svg +1 -0
- docsforge/themes/material/templates/.icons/material/certificate-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/certificate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chair-rolling.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chair-school.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chandelier.svg +1 -0
- docsforge/themes/material/templates/.icons/material/charity-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/charity.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-arc.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-areaspline-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-areaspline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-bar-stacked.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-bar.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-bell-curve-cumulative.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-bell-curve.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-box-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-bubble.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-donut-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-donut.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-gantt.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-histogram.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-line-stacked.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-line-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-line.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-multiline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-pie-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-pie.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-ppf.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-sankey-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-sankey.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-scatter-plot-hexbin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-scatter-plot.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-timeline-variant-shimmer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-timeline-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-timeline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-tree.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-waterfall.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-processing-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-processing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-sleep-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-sleep.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/check-all.svg +1 -0
- docsforge/themes/material/templates/.icons/material/check-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/check-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/check-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/check-decagram-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/check-decagram.svg +1 -0
- docsforge/themes/material/templates/.icons/material/check-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/check-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/check-underline-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/check-underline-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/check-underline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbook-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbook-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbook.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-blank-badge-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-blank-badge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-blank-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-blank-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-blank-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-blank-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-blank-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-blank.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-intermediate-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-intermediate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-marked-circle-auto-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-marked-circle-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-marked-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-marked-circle-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-marked-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-marked-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-marked.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-multiple-blank-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-multiple-blank-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-multiple-blank-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-multiple-blank.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-multiple-marked-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-multiple-marked-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-multiple-marked-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-multiple-marked.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkerboard-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkerboard-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkerboard-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkerboard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cheese-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cheese.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chef-hat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chemical-weapon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chess-bishop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chess-king.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chess-knight.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chess-pawn.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chess-queen.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chess-rook.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-double-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-double-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-double-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-double-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-down-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-down-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-down-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-down-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-left-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-left-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-left-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-left-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-right-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-right-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-right-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-right-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-triple-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-triple-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-triple-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-triple-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-up-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-up-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-up-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-up-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chili-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chili-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chili-hot-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chili-hot.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chili-medium-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chili-medium.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chili-mild-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chili-mild.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chili-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chili-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/church-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/church.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cigar-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cigar.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-double.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-expand.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-half-full.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-half.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-medium.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-opacity.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-slice-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-slice-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-slice-3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-slice-4.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-slice-5.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-slice-6.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-slice-7.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-slice-8.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-small.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circular-saw.svg +1 -0
- docsforge/themes/material/templates/.icons/material/city-switch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/city-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/city-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/city.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-account-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-arrow-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-arrow-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-arrow-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-check-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-check-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-file-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-file.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-flow-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-flow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-list-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-list.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-play-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-play-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-play-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-pulse-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-pulse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-text-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-text-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-text-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-text-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-text-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-text-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-text-play-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-text-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-text-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-text-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clippy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-digital.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-end.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-in.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-out.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-star-four-points-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-star-four-points.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-start.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-eight-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-eight.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-eleven-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-eleven.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-five-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-five.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-four-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-four.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-nine-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-nine.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-one-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-seven-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-seven.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-six-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-six.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-ten-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-ten.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-three-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-three.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-twelve-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-twelve.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-two-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-two.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close-circle-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close-circle-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close-octagon-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close-octagon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close-thick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close.svg +1 -0
- docsforge/themes/material/templates/.icons/material/closed-caption-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/closed-caption.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-arrow-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-arrow-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-arrow-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-braces.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-cancel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-check-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-check-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-download-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-download.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-key-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-key.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-lock-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-percent-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-percent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-print-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-print.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-refresh-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-refresh-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-tags.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-upload-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-upload.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clouds.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clover-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clover.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coach-lamp-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coach-lamp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coat-rack.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-array.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-block-braces.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-block-brackets.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-block-parentheses.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-block-tags.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-braces-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-braces.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-brackets.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-equal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-greater-than-or-equal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-greater-than.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-json.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-less-than-or-equal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-less-than.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-not-equal-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-not-equal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-parentheses-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-parentheses.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-string.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-tags-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-tags.svg +1 -0
- docsforge/themes/material/templates/.icons/material/codepen.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coffee-maker-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coffee-maker-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coffee-maker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coffee-maker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coffee-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coffee-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coffee-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coffee-to-go-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coffee-to-go.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coffee.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coffin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-clockwise.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-counterclockwise.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-pause-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-pause.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-play-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-stop-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-stop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-transfer-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-transfer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cogs.svg +1 -0
- docsforge/themes/material/templates/.icons/material/collage.svg +1 -0
- docsforge/themes/material/templates/.icons/material/collapse-all-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/collapse-all.svg +1 -0
- docsforge/themes/material/templates/.icons/material/color-helper.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comma-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comma-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comma-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comma-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comma.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-account-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-arrow-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-bookmark-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-bookmark.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-eye-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-eye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-flash-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-flash.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-processing-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-processing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-quote-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-quote.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-text-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-text-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment.svg +1 -0
- docsforge/themes/material/templates/.icons/material/compare-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/compare-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/compare-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/compare.svg +1 -0
- docsforge/themes/material/templates/.icons/material/compass-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/compass-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/compass-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/compass-rose.svg +1 -0
- docsforge/themes/material/templates/.icons/material/compass.svg +1 -0
- docsforge/themes/material/templates/.icons/material/compost.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cone-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/connection.svg +1 -0
- docsforge/themes/material/templates/.icons/material/console-line.svg +1 -0
- docsforge/themes/material/templates/.icons/material/console-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/console-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/console.svg +1 -0
- docsforge/themes/material/templates/.icons/material/consolidate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/contactless-payment-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/contactless-payment-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/contactless-payment.svg +1 -0
- docsforge/themes/material/templates/.icons/material/contacts-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/contacts.svg +1 -0
- docsforge/themes/material/templates/.icons/material/contain-end.svg +1 -0
- docsforge/themes/material/templates/.icons/material/contain-start.svg +1 -0
- docsforge/themes/material/templates/.icons/material/contain.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-copy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-cut.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-duplicate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-paste.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-all-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-all.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-move-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-move.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save.svg +1 -0
- docsforge/themes/material/templates/.icons/material/contrast-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/contrast-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/contrast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/controller-classic-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/controller-classic.svg +1 -0
- docsforge/themes/material/templates/.icons/material/controller-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/controller.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coolant-temperature.svg +1 -0
- docsforge/themes/material/templates/.icons/material/copyleft.svg +1 -0
- docsforge/themes/material/templates/.icons/material/copyright.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cordova.svg +1 -0
- docsforge/themes/material/templates/.icons/material/corn-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/corn.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cosine-wave.svg +1 -0
- docsforge/themes/material/templates/.icons/material/counter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/countertop-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/countertop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cow-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cpu-32-bit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cpu-64-bit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cradle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cradle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crane.svg +1 -0
- docsforge/themes/material/templates/.icons/material/creation-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/creation.svg +1 -0
- docsforge/themes/material/templates/.icons/material/creative-commons.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-chip-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-chip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-fast-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-refund-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-refund.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-scan-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-scan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-wireless-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-wireless-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-wireless-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-wireless.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cricket.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crop-free.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crop-landscape.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crop-portrait.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crop-rotate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crop-square.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cross-bolnisi.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cross-celtic.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cross-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cross.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crosshairs-gps.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crosshairs-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crosshairs-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crosshairs.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crowd.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crown-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crown-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crown-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crown.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cryengine.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crystal-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cube-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cube-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cube-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cube-scan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cube-send.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cube-unfolded.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cube.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cup-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cup-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cup-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cup-water.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cup.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cupboard-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cupboard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cupcake.svg +1 -0
- docsforge/themes/material/templates/.icons/material/curling.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-bdt.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-brl.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-btc.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-cny.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-eth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-eur-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-eur.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-fra.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-gbp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-ils.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-inr.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-jpy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-krw.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-kzt.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-mnt.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-ngn.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-php.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-rial.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-rub.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-rupee.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-thb.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-try.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-twd.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-uah.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-usd-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-usd.svg +1 -0
- docsforge/themes/material/templates/.icons/material/current-ac.svg +1 -0
- docsforge/themes/material/templates/.icons/material/current-dc.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cursor-default-click-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cursor-default-click.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cursor-default-gesture-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cursor-default-gesture.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cursor-default-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cursor-default.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cursor-move.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cursor-pointer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cursor-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/curtains-closed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/curtains.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cylinder-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cylinder.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dance-ballroom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dance-pole.svg +1 -0
- docsforge/themes/material/templates/.icons/material/data-matrix-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/data-matrix-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/data-matrix-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/data-matrix-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/data-matrix-scan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/data-matrix.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-arrow-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-arrow-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-arrow-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-export-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-export.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-eye-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-eye-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-eye-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-eye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-import-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-import.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database.svg +1 -0
- docsforge/themes/material/templates/.icons/material/death-star-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/death-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/deathly-hallows.svg +1 -0
- docsforge/themes/material/templates/.icons/material/debian.svg +1 -0
- docsforge/themes/material/templates/.icons/material/debug-step-into.svg +1 -0
- docsforge/themes/material/templates/.icons/material/debug-step-out.svg +1 -0
- docsforge/themes/material/templates/.icons/material/debug-step-over.svg +1 -0
- docsforge/themes/material/templates/.icons/material/decagram-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/decagram.svg +1 -0
- docsforge/themes/material/templates/.icons/material/decimal-comma-decrease.svg +1 -0
- docsforge/themes/material/templates/.icons/material/decimal-comma-increase.svg +1 -0
- docsforge/themes/material/templates/.icons/material/decimal-comma.svg +1 -0
- docsforge/themes/material/templates/.icons/material/decimal-decrease.svg +1 -0
- docsforge/themes/material/templates/.icons/material/decimal-increase.svg +1 -0
- docsforge/themes/material/templates/.icons/material/decimal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-empty-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-forever-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-forever.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-restore.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-sweep-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-sweep.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delta.svg +1 -0
- docsforge/themes/material/templates/.icons/material/desk-lamp-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/desk-lamp-on.svg +1 -0
- docsforge/themes/material/templates/.icons/material/desk-lamp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/desk.svg +1 -0
- docsforge/themes/material/templates/.icons/material/deskphone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/desktop-classic.svg +1 -0
- docsforge/themes/material/templates/.icons/material/desktop-tower-monitor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/desktop-tower.svg +1 -0
- docsforge/themes/material/templates/.icons/material/details.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dev-to.svg +1 -0
- docsforge/themes/material/templates/.icons/material/developer-board.svg +1 -0
- docsforge/themes/material/templates/.icons/material/deviantart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/devices.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dharmachakra.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diabetes.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dialpad.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diameter-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diameter-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diameter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diamond-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diamond-stone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diamond.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diaper-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-1-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-2-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-3-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-4-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-4.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-5-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-5.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-6-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-6.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-d10-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-d10.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-d12-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-d12.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-d20-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-d20.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-d4-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-d4.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-d6-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-d6.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-d8-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-d8.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/digital-ocean.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dip-switch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/directions-fork.svg +1 -0
- docsforge/themes/material/templates/.icons/material/directions.svg +1 -0
- docsforge/themes/material/templates/.icons/material/disc-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/disc-player.svg +1 -0
- docsforge/themes/material/templates/.icons/material/disc.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dishwasher-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dishwasher-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dishwasher.svg +1 -0
- docsforge/themes/material/templates/.icons/material/disqus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/distribute-horizontal-center.svg +1 -0
- docsforge/themes/material/templates/.icons/material/distribute-horizontal-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/distribute-horizontal-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/distribute-vertical-bottom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/distribute-vertical-center.svg +1 -0
- docsforge/themes/material/templates/.icons/material/distribute-vertical-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diversify.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diving-flippers.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diving-helmet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diving-scuba-flag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diving-scuba-mask.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diving-scuba-tank-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diving-scuba-tank.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diving-scuba.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diving-snorkel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diving.svg +1 -0
- docsforge/themes/material/templates/.icons/material/division-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/division.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dlna.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dna.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dns-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dns.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dock-bottom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dock-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dock-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dock-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dock-window.svg +1 -0
- docsforge/themes/material/templates/.icons/material/docker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/doctor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dog-service.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dog-side-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dog-side.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dolby.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dolly.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dolphin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/domain-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/domain-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/domain-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/domain-switch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/domain.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dome-light.svg +1 -0
- docsforge/themes/material/templates/.icons/material/domino-mask.svg +1 -0
- docsforge/themes/material/templates/.icons/material/donkey.svg +1 -0
- docsforge/themes/material/templates/.icons/material/door-closed-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/door-closed-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/door-closed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/door-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/door-sliding-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/door-sliding-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/door-sliding.svg +1 -0
- docsforge/themes/material/templates/.icons/material/door.svg +1 -0
- docsforge/themes/material/templates/.icons/material/doorbell-video.svg +1 -0
- docsforge/themes/material/templates/.icons/material/doorbell.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dot-net.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dots-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dots-grid.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dots-hexagon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dots-horizontal-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dots-horizontal-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dots-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dots-square.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dots-triangle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dots-vertical-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dots-vertical-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dots-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/download-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/download-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/download-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/download-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/download-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/download-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/download-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/download-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/download-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/download-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/download-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/download-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/download-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/download.svg +1 -0
- docsforge/themes/material/templates/.icons/material/drag-horizontal-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/drag-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/drag-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/drag-vertical-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/drag-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/drag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/drama-masks.svg +1 -0
- docsforge/themes/material/templates/.icons/material/draw-pen.svg +1 -0
- docsforge/themes/material/templates/.icons/material/draw.svg +1 -0
- docsforge/themes/material/templates/.icons/material/drawing-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/drawing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dresser-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dresser.svg +1 -0
- docsforge/themes/material/templates/.icons/material/drone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dropbox.svg +1 -0
- docsforge/themes/material/templates/.icons/material/drupal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/duck.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dumbbell.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dump-truck.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ear-hearing-loop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ear-hearing-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ear-hearing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earbuds-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earbuds-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earbuds-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earbuds.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earth-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earth-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earth-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earth-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earth-box-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earth-box-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earth-box-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earth-box-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earth-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earth-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earth-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earth-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earth-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/egg-easter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/egg-fried.svg +1 -0
- docsforge/themes/material/templates/.icons/material/egg-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/egg-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/egg-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/egg.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eiffel-tower.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eight-track.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eject-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eject-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eject-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eject.svg +1 -0
- docsforge/themes/material/templates/.icons/material/electric-switch-closed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/electric-switch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/electron-framework.svg +1 -0
- docsforge/themes/material/templates/.icons/material/elephant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/elevation-decline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/elevation-rise.svg +1 -0
- docsforge/themes/material/templates/.icons/material/elevator-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/elevator-passenger-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/elevator-passenger-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/elevator-passenger-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/elevator-passenger.svg +1 -0
- docsforge/themes/material/templates/.icons/material/elevator-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/elevator.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ellipse-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ellipse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-arrow-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-fast-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-mark-as-unread.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-newsletter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-open-heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-open-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-open-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-seal-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-seal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ember.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emby.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-angry-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-angry.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-confused-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-confused.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-cool-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-cool.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-cry-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-cry.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-dead-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-dead.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-devil-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-devil.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-excited-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-excited.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-frown-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-frown.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-happy-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-happy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-kiss-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-kiss.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-lol-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-lol.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-neutral-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-neutral.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-poop-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-poop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-sad-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-sad.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-sick-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-sick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-tongue-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-tongue.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-wink-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/engine-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/engine-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/engine-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/engine.svg +1 -0
- docsforge/themes/material/templates/.icons/material/epsilon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/equal-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/equal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/equalizer-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/equalizer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eraser-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eraser.svg +1 -0
- docsforge/themes/material/templates/.icons/material/escalator-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/escalator-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/escalator-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/escalator.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eslint.svg +1 -0
- docsforge/themes/material/templates/.icons/material/et.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ethereum.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ethernet-cable-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ethernet-cable.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ethernet-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ethernet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ev-plug-ccs1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ev-plug-ccs2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ev-plug-chademo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ev-plug-tesla.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ev-plug-type1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ev-plug-type2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ev-station.svg +1 -0
- docsforge/themes/material/templates/.icons/material/evernote.svg +1 -0
- docsforge/themes/material/templates/.icons/material/excavator.svg +1 -0
- docsforge/themes/material/templates/.icons/material/exclamation-thick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/material/exit-run.svg +1 -0
- docsforge/themes/material/templates/.icons/material/exit-to-app.svg +1 -0
- docsforge/themes/material/templates/.icons/material/expand-all-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/expand-all.svg +1 -0
- docsforge/themes/material/templates/.icons/material/expansion-card-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/expansion-card.svg +1 -0
- docsforge/themes/material/templates/.icons/material/exponent-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/exponent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/export-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/export.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-arrow-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-closed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-lock-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eyedropper-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eyedropper-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eyedropper-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eyedropper-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eyedropper-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eyedropper.svg +1 -0
- docsforge/themes/material/templates/.icons/material/face-agent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/face-man-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/face-man-profile.svg +1 -0
- docsforge/themes/material/templates/.icons/material/face-man-shimmer-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/face-man-shimmer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/face-man.svg +1 -0
- docsforge/themes/material/templates/.icons/material/face-mask-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/face-mask.svg +1 -0
- docsforge/themes/material/templates/.icons/material/face-recognition.svg +1 -0
- docsforge/themes/material/templates/.icons/material/face-woman-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/face-woman-profile.svg +1 -0
- docsforge/themes/material/templates/.icons/material/face-woman-shimmer-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/face-woman-shimmer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/face-woman.svg +1 -0
- docsforge/themes/material/templates/.icons/material/facebook-gaming.svg +1 -0
- docsforge/themes/material/templates/.icons/material/facebook-messenger.svg +1 -0
- docsforge/themes/material/templates/.icons/material/facebook-workplace.svg +1 -0
- docsforge/themes/material/templates/.icons/material/facebook.svg +1 -0
- docsforge/themes/material/templates/.icons/material/factory.svg +1 -0
- docsforge/themes/material/templates/.icons/material/family-tree.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fan-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fan-auto.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fan-chevron-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fan-chevron-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fan-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fan-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fan-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fan-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fan-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fan-speed-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fan-speed-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fan-speed-3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fast-forward-10.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fast-forward-15.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fast-forward-30.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fast-forward-45.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fast-forward-5.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fast-forward-60.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fast-forward-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fast-forward.svg +1 -0
- docsforge/themes/material/templates/.icons/material/faucet-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/faucet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fax.svg +1 -0
- docsforge/themes/material/templates/.icons/material/feather.svg +1 -0
- docsforge/themes/material/templates/.icons/material/feature-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/feature-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fedora.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fence-electric.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fence.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fencing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ferris-wheel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ferry.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-account-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-arrow-left-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-arrow-left-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-arrow-up-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-arrow-up-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-cabinet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-cad-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-cad.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-cancel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-certificate-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-certificate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-chart-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-chart-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-chart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-chart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-cloud-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-cloud.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-code-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-code.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-compare.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-delimited-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-delimited.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-download-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-download.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-excel-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-excel-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-excel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-excel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-export-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-export.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-eye-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-eye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-find-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-find.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-gif-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-hidden.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-image-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-image-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-image-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-image-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-image-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-image-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-image-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-image-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-image-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-image.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-import-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-import.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-jpg-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-key-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-key.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-link-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-link.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-lock-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-move-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-move.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-music-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-music.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-pdf-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-percent-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-percent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-phone-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-phone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-png-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-powerpoint-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-powerpoint-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-powerpoint-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-powerpoint.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-presentation-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-replace-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-replace.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-restore-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-restore.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-rotate-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-rotate-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-rotate-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-rotate-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-send-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-send.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-star-four-points-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-star-four-points.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-swap-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-swap.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-table-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-table-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-table-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-table-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-table-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-table.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-tree-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-tree.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-undo-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-undo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-upload-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-upload.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-video-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-video.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-word-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-word-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-word-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-word.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-xml-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file.svg +1 -0
- docsforge/themes/material/templates/.icons/material/film.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filmstrip-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filmstrip-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filmstrip-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filmstrip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-menu-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-menu.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-variant-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-variant-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-variant-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/finance.svg +1 -0
- docsforge/themes/material/templates/.icons/material/find-replace.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fingerprint-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fingerprint.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fire-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fire-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fire-extinguisher.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fire-hydrant-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fire-hydrant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fire-hydrant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fire-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fire-station.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fire-truck.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fire.svg +1 -0
- docsforge/themes/material/templates/.icons/material/firebase.svg +1 -0
- docsforge/themes/material/templates/.icons/material/firefox.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fireplace-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fireplace.svg +1 -0
- docsforge/themes/material/templates/.icons/material/firewire.svg +1 -0
- docsforge/themes/material/templates/.icons/material/firework-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/firework.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fish-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fish.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fishbowl-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fishbowl.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fit-to-page-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fit-to-page.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fit-to-screen-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fit-to-screen.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-checkered.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-triangle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-variant-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-variant-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-variant-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-variant-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-variant-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-variant-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-variant-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flare.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flash-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flash-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flash-auto.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flash-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flash-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flash-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flash-red-eye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flash-triangle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flash-triangle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flash.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flashlight-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flashlight.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-empty-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-empty-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-empty-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-empty-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-empty-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-empty-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-empty-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-empty-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-empty-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-round-bottom-empty-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-round-bottom-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-round-bottom-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-round-bottom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fleur-de-lis.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flip-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flip-to-back.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flip-to-front.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flip-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/floor-lamp-dual-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/floor-lamp-dual.svg +1 -0
- docsforge/themes/material/templates/.icons/material/floor-lamp-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/floor-lamp-torchiere-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/floor-lamp-torchiere-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/floor-lamp-torchiere-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/floor-lamp-torchiere.svg +1 -0
- docsforge/themes/material/templates/.icons/material/floor-lamp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/floor-plan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/floppy-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/floppy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flower-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flower-pollen-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flower-pollen.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flower-poppy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flower-tulip-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flower-tulip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flower.svg +1 -0
- docsforge/themes/material/templates/.icons/material/focus-auto.svg +1 -0
- docsforge/themes/material/templates/.icons/material/focus-field-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/focus-field-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/focus-field.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-account-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-arrow-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-arrow-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-arrow-left-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-arrow-left-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-arrow-up-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-arrow-up-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-arrow-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-cancel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-download-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-download.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-eye-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-eye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-file-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-file.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-google-drive.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-hidden.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-home-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-home.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-image.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-information-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-information.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-key-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-key-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-key-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-key.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-lock-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-move-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-move.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-multiple-image.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-multiple-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-multiple-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-music-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-music.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-play-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-pound-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-pound.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-star-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-star-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-swap-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-swap.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-table-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-table.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-upload-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-upload.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-wrench-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-wrench.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-zip-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-zip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder.svg +1 -0
- docsforge/themes/material/templates/.icons/material/font-awesome.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-apple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-apple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-croissant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-drumstick-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-drumstick-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-drumstick-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-drumstick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-fork-drink.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-halal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-hot-dog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-kosher.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-steak-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-steak.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-takeout-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-takeout-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-turkey.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food.svg +1 -0
- docsforge/themes/material/templates/.icons/material/foot-print.svg +1 -0
- docsforge/themes/material/templates/.icons/material/football-australian.svg +1 -0
- docsforge/themes/material/templates/.icons/material/football-helmet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/football.svg +1 -0
- docsforge/themes/material/templates/.icons/material/forest-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/forest.svg +1 -0
- docsforge/themes/material/templates/.icons/material/forklift.svg +1 -0
- docsforge/themes/material/templates/.icons/material/form-dropdown.svg +1 -0
- docsforge/themes/material/templates/.icons/material/form-select.svg +1 -0
- docsforge/themes/material/templates/.icons/material/form-textarea.svg +1 -0
- docsforge/themes/material/templates/.icons/material/form-textbox-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/form-textbox-password.svg +1 -0
- docsforge/themes/material/templates/.icons/material/form-textbox.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-align-bottom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-align-center.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-align-justify.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-align-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-align-middle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-align-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-align-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-annotation-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-annotation-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-clear.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-color-fill.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-color-highlight.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-color-marker-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-color-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-columns.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-float-center.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-float-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-float-none.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-float-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-font-size-decrease.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-font-size-increase.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-font.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-header-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-header-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-header-3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-header-4.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-header-5.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-header-6.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-header-decrease.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-header-equal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-header-increase.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-header-pound.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-horizontal-align-center.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-horizontal-align-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-horizontal-align-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-indent-decrease.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-indent-increase.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-italic.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-letter-case-lower.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-letter-case-upper.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-letter-case.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-letter-ends-with.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-letter-matches.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-letter-spacing-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-letter-spacing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-letter-starts-with.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-line-height.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-line-spacing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-line-style.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-line-weight.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-list-bulleted-square.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-list-bulleted-triangle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-list-bulleted-type.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-list-bulleted.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-list-checkbox.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-list-checks.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-list-group-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-list-group.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-list-numbered-rtl.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-list-numbered.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-list-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-overline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-page-break.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-page-split.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-paint.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-paragraph-spacing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-paragraph.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-pilcrow-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-pilcrow-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-pilcrow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-quote-close-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-quote-close.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-quote-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-quote-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-rotate-90.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-section.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-size.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-strikethrough-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-strikethrough.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-subscript.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-superscript.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-text-rotation-angle-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-text-rotation-angle-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-text-rotation-down-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-text-rotation-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-text-rotation-none.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-text-rotation-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-text-rotation-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-text-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-text-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-text-wrapping-clip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-text-wrapping-overflow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-text-wrapping-wrap.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-textbox.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-title.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-underline-wavy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-underline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-vertical-align-bottom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-vertical-align-center.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-vertical-align-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-wrap-inline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-wrap-square.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-wrap-tight.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-wrap-top-bottom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/forum-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/forum-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/forum-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/forum-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/forum-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/forum-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/forum-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/forum.svg +1 -0
- docsforge/themes/material/templates/.icons/material/forward.svg +1 -0
- docsforge/themes/material/templates/.icons/material/forwardburger.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fountain-pen-tip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fountain-pen.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fountain.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fraction-one-half.svg +1 -0
- docsforge/themes/material/templates/.icons/material/freebsd.svg +1 -0
- docsforge/themes/material/templates/.icons/material/french-fries.svg +1 -0
- docsforge/themes/material/templates/.icons/material/frequently-asked-questions.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-bottom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-industrial-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-industrial-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-industrial-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-industrial-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-industrial-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-industrial.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-variant-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-variant-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-variant-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fruit-cherries-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fruit-cherries.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fruit-citrus-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fruit-citrus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fruit-grapes-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fruit-grapes.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fruit-pear.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fruit-pineapple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fruit-watermelon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fuel-cell.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fuel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fullscreen-exit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fullscreen.svg +1 -0
- docsforge/themes/material/templates/.icons/material/function-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/function.svg +1 -0
- docsforge/themes/material/templates/.icons/material/furigana-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/furigana-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fuse-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fuse-blade.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fuse-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fuse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-circle-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-circle-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-circle-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-circle-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-round-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-round-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-round-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-round-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-round-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-round.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-square-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-square.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamma.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gantry-crane.svg +1 -0
- docsforge/themes/material/templates/.icons/material/garage-alert-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/garage-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/garage-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/garage-open-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/garage-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/garage-variant-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/garage-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/garage.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gas-burner.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gas-cylinder.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gas-station-in-use-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gas-station-in-use.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gas-station-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gas-station-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gas-station-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gas-station.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gate-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gate-and.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gate-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gate-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gate-buffer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gate-nand.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gate-nor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gate-not.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gate-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gate-or.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gate-xnor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gate-xor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gatsby.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gauge-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gauge-full.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gauge-low.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gauge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gavel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gender-female.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gender-male-female-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gender-male-female.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gender-male.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gender-non-binary.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gender-transgender.svg +1 -0
- docsforge/themes/material/templates/.icons/material/generator-mobile.svg +1 -0
- docsforge/themes/material/templates/.icons/material/generator-portable.svg +1 -0
- docsforge/themes/material/templates/.icons/material/generator-stationary.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gentoo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-double-tap.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-pinch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-spread.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-swipe-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-swipe-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-swipe-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-swipe-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-swipe-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-swipe-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-swipe.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-tap-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-tap-button.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-tap-hold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-tap.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-two-double-tap.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-two-tap.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ghost-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ghost-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ghost-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ghost.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gift-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gift-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gift-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gift-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gift-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gift.svg +1 -0
- docsforge/themes/material/templates/.icons/material/git.svg +1 -0
- docsforge/themes/material/templates/.icons/material/github.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gitlab.svg +1 -0
- docsforge/themes/material/templates/.icons/material/glass-cocktail-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/glass-cocktail.svg +1 -0
- docsforge/themes/material/templates/.icons/material/glass-flute.svg +1 -0
- docsforge/themes/material/templates/.icons/material/glass-fragile.svg +1 -0
- docsforge/themes/material/templates/.icons/material/glass-mug-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/glass-mug-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/glass-mug-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/glass-mug.svg +1 -0
- docsforge/themes/material/templates/.icons/material/glass-pint-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/glass-stange.svg +1 -0
- docsforge/themes/material/templates/.icons/material/glass-tulip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/glass-wine.svg +1 -0
- docsforge/themes/material/templates/.icons/material/glasses.svg +1 -0
- docsforge/themes/material/templates/.icons/material/globe-light-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/globe-light.svg +1 -0
- docsforge/themes/material/templates/.icons/material/globe-model.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gmail.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gnome.svg +1 -0
- docsforge/themes/material/templates/.icons/material/go-kart-track.svg +1 -0
- docsforge/themes/material/templates/.icons/material/go-kart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/golf-cart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/golf-tee.svg +1 -0
- docsforge/themes/material/templates/.icons/material/golf.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gondola.svg +1 -0
- docsforge/themes/material/templates/.icons/material/goodreads.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-ads.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-analytics.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-assistant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-cardboard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-chrome.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-circles-communities.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-circles-extended.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-circles-group.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-circles.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-classroom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-cloud.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-downasaur.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-drive.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-earth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-fit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-glass.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-hangouts.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-keep.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-lens.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-maps.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-my-business.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-nearby.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-podcast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-spreadsheet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-street-view.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-translate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gradient-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gradient-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/grain.svg +1 -0
- docsforge/themes/material/templates/.icons/material/graph-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/graph.svg +1 -0
- docsforge/themes/material/templates/.icons/material/graphql.svg +1 -0
- docsforge/themes/material/templates/.icons/material/grass.svg +1 -0
- docsforge/themes/material/templates/.icons/material/grave-stone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/grease-pencil.svg +1 -0
- docsforge/themes/material/templates/.icons/material/greater-than-or-equal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/greater-than.svg +1 -0
- docsforge/themes/material/templates/.icons/material/greenhouse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/grid-large.svg +1 -0
- docsforge/themes/material/templates/.icons/material/grid-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/grid.svg +1 -0
- docsforge/themes/material/templates/.icons/material/grill-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/grill.svg +1 -0
- docsforge/themes/material/templates/.icons/material/group.svg +1 -0
- docsforge/themes/material/templates/.icons/material/guitar-acoustic.svg +1 -0
- docsforge/themes/material/templates/.icons/material/guitar-electric.svg +1 -0
- docsforge/themes/material/templates/.icons/material/guitar-pick-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/guitar-pick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/guy-fawkes-mask.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gymnastics.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hail.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hair-dryer-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hair-dryer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/halloween.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hamburger-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hamburger-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hamburger-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hamburger-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hamburger-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hamburger.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hammer-screwdriver.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hammer-sickle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hammer-wrench.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hammer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-back-left-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-back-left-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-back-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-back-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-back-right-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-back-right-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-back-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-back-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-clap-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-clap.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-coin-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-coin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-cycle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-extended-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-extended.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-front-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-front-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-front-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-front-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-okay.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-peace-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-peace.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-pointing-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-pointing-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-pointing-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-pointing-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-saw.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-wash-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-wash.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-water.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-wave-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-wave.svg +1 -0
- docsforge/themes/material/templates/.icons/material/handball.svg +1 -0
- docsforge/themes/material/templates/.icons/material/handcuffs.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hands-pray.svg +1 -0
- docsforge/themes/material/templates/.icons/material/handshake-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/handshake.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hanger.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hard-hat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/harddisk-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/harddisk-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/harddisk.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hat-fedora.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hazard-lights.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hdmi-port.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hdr-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hdr.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-dots-horizontal-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-dots-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-flash-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-flash.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-lightbulb-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-lightbulb.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-snowflake-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-snowflake.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head.svg +1 -0
- docsforge/themes/material/templates/.icons/material/headphones-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/headphones-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/headphones-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/headphones-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/headphones.svg +1 -0
- docsforge/themes/material/templates/.icons/material/headset-dock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/headset-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/headset.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-broken-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-broken.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-flash.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-half-full.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-half-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-half.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-pulse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heat-pump-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heat-pump.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heat-wave.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heating-coil.svg +1 -0
- docsforge/themes/material/templates/.icons/material/helicopter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/help-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/help-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/help-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/help-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/help-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/help-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/help-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/help-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/help-rhombus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/help-rhombus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/help.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hexadecimal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hexagon-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hexagon-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hexagon-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hexagon-slice-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hexagon-slice-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hexagon-slice-3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hexagon-slice-4.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hexagon-slice-5.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hexagon-slice-6.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hexagon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hexagram-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hexagram.svg +1 -0
- docsforge/themes/material/templates/.icons/material/high-definition-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/high-definition.svg +1 -0
- docsforge/themes/material/templates/.icons/material/highway.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hiking.svg +1 -0
- docsforge/themes/material/templates/.icons/material/history.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hockey-puck.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hockey-sticks.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hololens.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-analytics.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-assistant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-automation.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-battery-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-battery.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-city-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-city.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-export-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-flood.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-floor-0.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-floor-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-floor-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-floor-3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-floor-a.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-floor-b.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-floor-g.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-floor-l.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-floor-negative-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-group-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-group-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-group-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-group.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-import-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-lightbulb-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-lightbulb.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-lightning-bolt-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-lightning-bolt.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-map-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-modern.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-percent-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-percent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-roof.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-silo-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-silo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-sound-in-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-sound-in.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-sound-out-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-sound-out.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-switch-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-switch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-thermometer-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-thermometer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hook-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hook.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hoop-house.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hops.svg +1 -0
- docsforge/themes/material/templates/.icons/material/horizontal-rotate-clockwise.svg +1 -0
- docsforge/themes/material/templates/.icons/material/horizontal-rotate-counterclockwise.svg +1 -0
- docsforge/themes/material/templates/.icons/material/horse-human.svg +1 -0
- docsforge/themes/material/templates/.icons/material/horse-variant-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/horse-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/horse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/horseshoe.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hospital-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hospital-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hospital-building.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hospital-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hospital.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hot-tub.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hours-12.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hours-24.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hub-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hub.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hubspot.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hulu.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-baby-changing-table.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-cane.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-capacity-decrease.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-capacity-increase.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-child.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-dolly.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-female-boy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-female-dance.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-female-female-child.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-female-female.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-female-girl.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-female.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-greeting-proximity.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-greeting-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-greeting.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-handsdown.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-handsup.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-male-board-poll.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-male-board.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-male-boy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-male-child.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-male-female-child.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-male-female.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-male-girl.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-male-height-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-male-height.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-male-male-child.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-male-male.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-male.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-non-binary.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-pregnant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-queue.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-scooter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-walker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-wheelchair.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-white-cane.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human.svg +1 -0
- docsforge/themes/material/templates/.icons/material/humble-bundle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hvac-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hvac.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hydraulic-oil-level.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hydraulic-oil-temperature.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hydro-power.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hydrogen-station.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ice-cream-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ice-cream.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ice-pop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/id-card.svg +1 -0
- docsforge/themes/material/templates/.icons/material/identifier.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ideogram-cjk-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ideogram-cjk.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-album.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-area-close.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-area.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-auto-adjust.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-broken-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-broken.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-filter-black-white.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-filter-center-focus-strong-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-filter-center-focus-strong.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-filter-center-focus-weak.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-filter-center-focus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-filter-drama-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-filter-drama.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-filter-frames.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-filter-hdr-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-filter-hdr.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-filter-none.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-filter-tilt-shift.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-filter-vintage.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-frame.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-move.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-size-select-actual.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-size-select-large.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-size-select-small.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image.svg +1 -0
- docsforge/themes/material/templates/.icons/material/import.svg +1 -0
- docsforge/themes/material/templates/.icons/material/inbox-arrow-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/inbox-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/inbox-arrow-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/inbox-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/inbox-full-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/inbox-full.svg +1 -0
- docsforge/themes/material/templates/.icons/material/inbox-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/inbox-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/inbox-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/inbox-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/inbox-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/inbox.svg +1 -0
- docsforge/themes/material/templates/.icons/material/incognito-circle-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/incognito-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/incognito-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/incognito.svg +1 -0
- docsforge/themes/material/templates/.icons/material/induction.svg +1 -0
- docsforge/themes/material/templates/.icons/material/infinity.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-slab-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-slab-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-slab-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-slab-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-slab-symbol.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-symbol.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-variant-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-variant-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-variant-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-variant-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information.svg +1 -0
- docsforge/themes/material/templates/.icons/material/instagram.svg +1 -0
- docsforge/themes/material/templates/.icons/material/instrument-triangle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/integrated-circuit-chip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invert-colors-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invert-colors.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-arrow-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-export-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-fast-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-import-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-import.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-list-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-list.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-send-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-send.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-arrow-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-fast-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-send-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-send.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice.svg +1 -0
- docsforge/themes/material/templates/.icons/material/iobroker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ip-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ip-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ip-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ipod.svg +1 -0
- docsforge/themes/material/templates/.icons/material/iron-board.svg +1 -0
- docsforge/themes/material/templates/.icons/material/iron-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/iron.svg +1 -0
- docsforge/themes/material/templates/.icons/material/island-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/island.svg +1 -0
- docsforge/themes/material/templates/.icons/material/iv-bag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/jabber.svg +1 -0
- docsforge/themes/material/templates/.icons/material/jeepney.svg +1 -0
- docsforge/themes/material/templates/.icons/material/jellyfish-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/jellyfish.svg +1 -0
- docsforge/themes/material/templates/.icons/material/jira.svg +1 -0
- docsforge/themes/material/templates/.icons/material/jquery.svg +1 -0
- docsforge/themes/material/templates/.icons/material/jsfiddle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/jump-rope.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kabaddi.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kangaroo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/karate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kayaking.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keg.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kettle-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kettle-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kettle-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kettle-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kettle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kettle-pour-over.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kettle-steam-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kettle-steam.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kettle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kettlebell.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key-chain-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key-chain.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key-change.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key-link.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key-wireless.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-backspace.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-caps.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-close-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-close.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-esc.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-f1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-f10.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-f11.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-f12.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-f2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-f3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-f4.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-f5.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-f6.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-f7.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-f8.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-f9.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-return.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-space.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-tab-reverse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-tab.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/khanda.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kickstarter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kite-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kite.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kitesurfing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/klingon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/knife-military.svg +1 -0
- docsforge/themes/material/templates/.icons/material/knife.svg +1 -0
- docsforge/themes/material/templates/.icons/material/knob.svg +1 -0
- docsforge/themes/material/templates/.icons/material/koala.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kodi.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kubernetes.svg +1 -0
- docsforge/themes/material/templates/.icons/material/label-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/label-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/label-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/label-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/label-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/label-percent-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/label-percent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/label-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/label-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/label.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ladder.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ladybug.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lambda.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lamp-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lamp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lamps-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lamps.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lan-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lan-connect.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lan-disconnect.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lan-pending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/land-fields.svg +1 -0
- docsforge/themes/material/templates/.icons/material/land-plots-circle-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/land-plots-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/land-plots-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/land-plots.svg +1 -0
- docsforge/themes/material/templates/.icons/material/land-rows-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/land-rows-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/landslide-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/landslide.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-c.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-cpp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-csharp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-css3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-fortran.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-go.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-haskell.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-html5.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-java.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-javascript.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-kotlin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-lua.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-markdown-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-markdown.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-php.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-python.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-r.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-ruby-on-rails.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-ruby.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-rust.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-swift.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-typescript.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-xaml.svg +1 -0
- docsforge/themes/material/templates/.icons/material/laptop-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/laptop-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/laptop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/laravel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/laser-pointer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lasso.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lastpass.svg +1 -0
- docsforge/themes/material/templates/.icons/material/latitude.svg +1 -0
- docsforge/themes/material/templates/.icons/material/launch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lava-lamp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/layers-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/layers-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/layers-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/layers-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/layers-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/layers-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/layers-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/layers-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/layers-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/layers-triple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/layers-triple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/layers.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lead-pencil.svg +1 -0
- docsforge/themes/material/templates/.icons/material/leaf-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/leaf-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/leaf-maple-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/leaf-maple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/leaf-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/leaf.svg +1 -0
- docsforge/themes/material/templates/.icons/material/leak-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/leak.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lectern.svg +1 -0
- docsforge/themes/material/templates/.icons/material/led-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/led-on.svg +1 -0
- docsforge/themes/material/templates/.icons/material/led-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/led-strip-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/led-strip-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/led-strip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/led-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/led-variant-on.svg +1 -0
- docsforge/themes/material/templates/.icons/material/led-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/leek.svg +1 -0
- docsforge/themes/material/templates/.icons/material/less-than-or-equal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/less-than.svg +1 -0
- docsforge/themes/material/templates/.icons/material/library-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/library-shelves.svg +1 -0
- docsforge/themes/material/templates/.icons/material/library.svg +1 -0
- docsforge/themes/material/templates/.icons/material/license.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lifebuoy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/light-flood-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/light-flood-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/light-recessed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/light-switch-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/light-switch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-auto-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-auto.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-cfl-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-cfl-spiral-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-cfl-spiral.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-cfl.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-fluorescent-tube-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-fluorescent-tube.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-group-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-group-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-group-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-group.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-multiple-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-multiple-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-night-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-night.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-on-10.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-on-20.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-on-30.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-on-40.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-on-50.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-on-60.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-on-70.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-on-80.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-on-90.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-on-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-on.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-spot-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-spot.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lighthouse-on.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lighthouse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightning-bolt-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightning-bolt-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightning-bolt.svg +1 -0
- docsforge/themes/material/templates/.icons/material/line-scan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lingerie.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-box-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-box-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-variant-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-variant-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-variant-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link.svg +1 -0
- docsforge/themes/material/templates/.icons/material/linkedin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/linux-mint.svg +1 -0
- docsforge/themes/material/templates/.icons/material/linux.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lipstick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/liquid-spot.svg +1 -0
- docsforge/themes/material/templates/.icons/material/liquor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/list-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/list-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/list-status.svg +1 -0
- docsforge/themes/material/templates/.icons/material/litecoin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/loading.svg +1 -0
- docsforge/themes/material/templates/.icons/material/location-enter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/location-exit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-open-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-open-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-open-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-open-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-open-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-open-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-open-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-open-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-open-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-open-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-open-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-open-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-pattern.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-percent-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-percent-open-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-percent-open-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-percent-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-percent-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-percent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-reset.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-smart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/locker-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/locker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/login-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/login.svg +1 -0
- docsforge/themes/material/templates/.icons/material/logout-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/logout.svg +1 -0
- docsforge/themes/material/templates/.icons/material/longitude.svg +1 -0
- docsforge/themes/material/templates/.icons/material/looks.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lotion-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lotion-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lotion-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lotion.svg +1 -0
- docsforge/themes/material/templates/.icons/material/loupe.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lumx.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lungs.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mace.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magazine-pistol.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magazine-rifle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magic-staff.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magnet-on.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magnet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magnify-close.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magnify-expand.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magnify-minus-cursor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magnify-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magnify-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magnify-plus-cursor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magnify-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magnify-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magnify-remove-cursor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magnify-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magnify-scan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magnify.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mail.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mailbox-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mailbox-open-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mailbox-open-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mailbox-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mailbox-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mailbox-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mailbox-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mailbox.svg +1 -0
- docsforge/themes/material/templates/.icons/material/manjaro.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-legend.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-account-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-distance.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-path.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-radius-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-radius.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-remove-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mapbox.svg +1 -0
- docsforge/themes/material/templates/.icons/material/margin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/marker-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/marker-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mastodon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/material-design.svg +1 -0
- docsforge/themes/material/templates/.icons/material/material-ui.svg +1 -0
- docsforge/themes/material/templates/.icons/material/math-compass.svg +1 -0
- docsforge/themes/material/templates/.icons/material/math-cos.svg +1 -0
- docsforge/themes/material/templates/.icons/material/math-integral-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/math-integral.svg +1 -0
- docsforge/themes/material/templates/.icons/material/math-log.svg +1 -0
- docsforge/themes/material/templates/.icons/material/math-norm-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/math-norm.svg +1 -0
- docsforge/themes/material/templates/.icons/material/math-sin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/math-tan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/matrix.svg +1 -0
- docsforge/themes/material/templates/.icons/material/medal-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/medal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/medical-bag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/medical-cotton-swab.svg +1 -0
- docsforge/themes/material/templates/.icons/material/medication-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/medication.svg +1 -0
- docsforge/themes/material/templates/.icons/material/meditation.svg +1 -0
- docsforge/themes/material/templates/.icons/material/memory-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/memory.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menorah-fire.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menorah.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menu-close.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menu-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menu-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menu-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menu-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menu-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menu-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menu-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menu-swap-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menu-swap.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menu-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menu-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menu.svg +1 -0
- docsforge/themes/material/templates/.icons/material/merge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-arrow-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-badge-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-badge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-bookmark-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-bookmark.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-bulleted-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-bulleted.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-draw.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-fast-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-flash-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-flash.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-image-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-image.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-processing-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-processing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-reply-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-reply-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-reply-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-reply.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-text-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-text-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-text-fast-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-text-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-text-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-text-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-video.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message.svg +1 -0
- docsforge/themes/material/templates/.icons/material/meteor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/meter-electric-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/meter-electric.svg +1 -0
- docsforge/themes/material/templates/.icons/material/meter-gas-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/meter-gas.svg +1 -0
- docsforge/themes/material/templates/.icons/material/metronome-tick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/metronome.svg +1 -0
- docsforge/themes/material/templates/.icons/material/micro-sd.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microphone-message-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microphone-message.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microphone-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microphone-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microphone-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microphone-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microphone-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microphone-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microphone-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microphone-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microphone-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microphone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microscope.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-access.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-azure-devops.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-azure.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-bing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-dynamics-365.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-edge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-excel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-internet-explorer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-office.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-onedrive.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-onenote.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-outlook.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-powerpoint.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-sharepoint.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-teams.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-visual-studio-code.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-visual-studio.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-windows-classic.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-windows.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-word.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-battery-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-battery-charging.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-battery-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-battery-full.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-battery-low.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-battery-medium.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-battery-unknown.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-menu.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-view.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-xbox.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microwave-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microwave.svg +1 -0
- docsforge/themes/material/templates/.icons/material/middleware-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/middleware.svg +1 -0
- docsforge/themes/material/templates/.icons/material/midi-port.svg +1 -0
- docsforge/themes/material/templates/.icons/material/midi.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mine.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minecraft.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mini-sd.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minidisc.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minus-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minus-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minus-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minus-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minus-circle-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minus-circle-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minus-circle-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minus-circle-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minus-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minus-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minus-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minus-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minus-thick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mirror-rectangle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mirror-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mirror.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mixed-martial-arts.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mixed-reality.svg +1 -0
- docsforge/themes/material/templates/.icons/material/molecule-co.svg +1 -0
- docsforge/themes/material/templates/.icons/material/molecule-co2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/molecule.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-arrow-down-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-cellphone-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-cellphone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-dashboard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-eye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-screenshot.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-share.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-shimmer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-small.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-speaker-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-speaker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/moon-first-quarter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/moon-full.svg +1 -0
- docsforge/themes/material/templates/.icons/material/moon-last-quarter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/moon-new.svg +1 -0
- docsforge/themes/material/templates/.icons/material/moon-waning-crescent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/moon-waning-gibbous.svg +1 -0
- docsforge/themes/material/templates/.icons/material/moon-waxing-crescent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/moon-waxing-gibbous.svg +1 -0
- docsforge/themes/material/templates/.icons/material/moped-electric-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/moped-electric.svg +1 -0
- docsforge/themes/material/templates/.icons/material/moped-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/moped.svg +1 -0
- docsforge/themes/material/templates/.icons/material/more.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mortar-pestle-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mortar-pestle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mosque-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mosque.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mother-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mother-nurse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/motion-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/motion-pause-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/motion-pause.svg +1 -0
- docsforge/themes/material/templates/.icons/material/motion-play-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/motion-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/motion-sensor-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/motion-sensor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/motion.svg +1 -0
- docsforge/themes/material/templates/.icons/material/motorbike-electric.svg +1 -0
- docsforge/themes/material/templates/.icons/material/motorbike-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/motorbike.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mouse-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mouse-left-click-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mouse-left-click.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mouse-move-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mouse-move-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mouse-move-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mouse-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mouse-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mouse-right-click-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mouse-right-click.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mouse-scroll-wheel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mouse-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mouse-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mouse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/move-resize-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/move-resize.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-filter-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-filter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-play-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-play-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-roll.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mower-bag-on.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mower-bag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mower-on.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mower.svg +1 -0
- docsforge/themes/material/templates/.icons/material/muffin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/multicast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/multimedia.svg +1 -0
- docsforge/themes/material/templates/.icons/material/multiplication-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/multiplication.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mushroom-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mushroom-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mushroom-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mushroom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-accidental-double-flat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-accidental-double-sharp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-accidental-flat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-accidental-natural.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-accidental-sharp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-clef-alto.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-clef-bass.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-clef-treble.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-bluetooth-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-eighth-dotted.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-eighth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-half-dotted.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-half.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-quarter-dotted.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-quarter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-sixteenth-dotted.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-sixteenth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-whole-dotted.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-whole.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-rest-eighth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-rest-half.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-rest-quarter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-rest-sixteenth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-rest-whole.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mustache.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nail.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nas.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nativescript.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nature-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nature-people-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nature-people.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nature.svg +1 -0
- docsforge/themes/material/templates/.icons/material/navigation-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/navigation-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/navigation-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/navigation.svg +1 -0
- docsforge/themes/material/templates/.icons/material/near-me.svg +1 -0
- docsforge/themes/material/templates/.icons/material/necklace.svg +1 -0
- docsforge/themes/material/templates/.icons/material/needle-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/needle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/netflix.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-pos.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-strength-1-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-strength-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-strength-2-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-strength-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-strength-3-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-strength-3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-strength-4-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-strength-4-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-strength-4.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-strength-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-strength-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-strength-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/new-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/newspaper-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/newspaper-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/newspaper-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/newspaper-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/newspaper-variant-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/newspaper-variant-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/newspaper-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/newspaper-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/newspaper.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nfc-search-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nfc-tap.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nfc-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nfc-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nfc.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ninja.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nintendo-game-boy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nintendo-switch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nintendo-wii.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nintendo-wiiu.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nix.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nodejs.svg +1 -0
- docsforge/themes/material/templates/.icons/material/noodles.svg +1 -0
- docsforge/themes/material/templates/.icons/material/not-equal-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/not-equal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook-heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notification-clear-all.svg +1 -0
- docsforge/themes/material/templates/.icons/material/npm.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nuke.svg +1 -0
- docsforge/themes/material/templates/.icons/material/null.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-0-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-0-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-0-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-0-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-0-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-0-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-0.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-1-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-1-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-1-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-1-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-1-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-1-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-10-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-10-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-10-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-10-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-10-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-10-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-10.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-2-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-2-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-2-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-2-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-2-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-2-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-3-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-3-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-3-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-3-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-3-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-3-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-4-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-4-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-4-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-4-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-4-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-4-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-4.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-5-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-5-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-5-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-5-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-5-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-5-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-5.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-6-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-6-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-6-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-6-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-6-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-6-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-6.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-7-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-7-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-7-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-7-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-7-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-7-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-7.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-8-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-8-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-8-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-8-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-8-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-8-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-8.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-9-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-9-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-9-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-9-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-9-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-9-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-9-plus-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-9-plus-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-9-plus-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-9-plus-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-9-plus-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-9-plus-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-9-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-9.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-negative-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-positive-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nut.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nutrition.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nuxt.svg +1 -0
- docsforge/themes/material/templates/.icons/material/oar.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ocarina.svg +1 -0
- docsforge/themes/material/templates/.icons/material/oci.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ocr.svg +1 -0
- docsforge/themes/material/templates/.icons/material/octagon-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/octagon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/octagram-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/octagram-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/octagram-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/octagram-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/octagram-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/octagram-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/octagram-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/octagram.svg +1 -0
- docsforge/themes/material/templates/.icons/material/octahedron-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/octahedron.svg +1 -0
- docsforge/themes/material/templates/.icons/material/odnoklassniki.svg +1 -0
- docsforge/themes/material/templates/.icons/material/offer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/office-building-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/office-building-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/office-building-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/office-building-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/office-building-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/office-building-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/office-building-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/office-building-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/office-building-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/office-building-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/office-building-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/office-building.svg +1 -0
- docsforge/themes/material/templates/.icons/material/oil-lamp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/oil-level.svg +1 -0
- docsforge/themes/material/templates/.icons/material/oil-temperature.svg +1 -0
- docsforge/themes/material/templates/.icons/material/oil.svg +1 -0
- docsforge/themes/material/templates/.icons/material/om.svg +1 -0
- docsforge/themes/material/templates/.icons/material/omega.svg +1 -0
- docsforge/themes/material/templates/.icons/material/one-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/onepassword.svg +1 -0
- docsforge/themes/material/templates/.icons/material/opacity.svg +1 -0
- docsforge/themes/material/templates/.icons/material/open-in-app.svg +1 -0
- docsforge/themes/material/templates/.icons/material/open-in-new.svg +1 -0
- docsforge/themes/material/templates/.icons/material/open-source-initiative.svg +1 -0
- docsforge/themes/material/templates/.icons/material/openid.svg +1 -0
- docsforge/themes/material/templates/.icons/material/opera.svg +1 -0
- docsforge/themes/material/templates/.icons/material/orbit-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/orbit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/order-alphabetical-ascending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/order-alphabetical-descending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/order-bool-ascending-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/order-bool-ascending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/order-bool-descending-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/order-bool-descending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/order-numeric-ascending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/order-numeric-descending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/origin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ornament-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ornament.svg +1 -0
- docsforge/themes/material/templates/.icons/material/outdoor-lamp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/overscan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/owl.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pac-man.svg +1 -0
- docsforge/themes/material/templates/.icons/material/package-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/package-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/package-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/package-variant-closed-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/package-variant-closed-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/package-variant-closed-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/package-variant-closed-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/package-variant-closed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/package-variant-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/package-variant-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/package-variant-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/package-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/package.svg +1 -0
- docsforge/themes/material/templates/.icons/material/page-first.svg +1 -0
- docsforge/themes/material/templates/.icons/material/page-last.svg +1 -0
- docsforge/themes/material/templates/.icons/material/page-layout-body.svg +1 -0
- docsforge/themes/material/templates/.icons/material/page-layout-footer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/page-layout-header-footer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/page-layout-header.svg +1 -0
- docsforge/themes/material/templates/.icons/material/page-layout-sidebar-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/page-layout-sidebar-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/page-next-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/page-next.svg +1 -0
- docsforge/themes/material/templates/.icons/material/page-previous-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/page-previous.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pail-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pail-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pail-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pail-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pail-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pail-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pail-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pail-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pail-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pail.svg +1 -0
- docsforge/themes/material/templates/.icons/material/palette-advanced.svg +1 -0
- docsforge/themes/material/templates/.icons/material/palette-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/palette-swatch-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/palette-swatch-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/palette-swatch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/palette.svg +1 -0
- docsforge/themes/material/templates/.icons/material/palm-tree.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pan-bottom-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pan-bottom-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pan-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pan-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pan-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pan-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pan-top-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pan-top-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pan-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pan-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/panda.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pandora.svg +1 -0
- docsforge/themes/material/templates/.icons/material/panorama-fisheye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/panorama-horizontal-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/panorama-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/panorama-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/panorama-sphere-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/panorama-sphere.svg +1 -0
- docsforge/themes/material/templates/.icons/material/panorama-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/panorama-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/panorama-vertical-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/panorama-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/panorama-wide-angle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/panorama-wide-angle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/panorama.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paper-cut-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paper-roll-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paper-roll.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paperclip-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paperclip-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paperclip-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paperclip-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paperclip-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paperclip-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paperclip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/parachute-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/parachute.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paragliding.svg +1 -0
- docsforge/themes/material/templates/.icons/material/parking.svg +1 -0
- docsforge/themes/material/templates/.icons/material/party-popper.svg +1 -0
- docsforge/themes/material/templates/.icons/material/passport-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/passport-biometric.svg +1 -0
- docsforge/themes/material/templates/.icons/material/passport-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/passport-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/passport-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/passport-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/passport-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/passport.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pasta.svg +1 -0
- docsforge/themes/material/templates/.icons/material/patio-heater.svg +1 -0
- docsforge/themes/material/templates/.icons/material/patreon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pause-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pause-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pause-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pause-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pause-octagon-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pause-octagon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pause.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paw-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paw-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paw-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paw.svg +1 -0
- docsforge/themes/material/templates/.icons/material/peace.svg +1 -0
- docsforge/themes/material/templates/.icons/material/peanut-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/peanut-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/peanut-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/peanut.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pen-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pen-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pen-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pen-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pen-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pen.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-ruler-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-ruler.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil.svg +1 -0
- docsforge/themes/material/templates/.icons/material/penguin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pentagon-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pentagon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pentagram.svg +1 -0
- docsforge/themes/material/templates/.icons/material/percent-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/percent-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/percent-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/percent-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/percent-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/percent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/periodic-table.svg +1 -0
- docsforge/themes/material/templates/.icons/material/perspective-less.svg +1 -0
- docsforge/themes/material/templates/.icons/material/perspective-more.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ph.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-bluetooth-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-cancel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-classic-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-classic.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-dial-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-dial.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-forward-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-forward.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-hangup-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-hangup.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-in-talk-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-in-talk.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-incoming-outgoing-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-incoming-outgoing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-incoming-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-incoming.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-log-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-log.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-message-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-message.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-missed-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-missed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-outgoing-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-outgoing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-paused-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-paused.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-return-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-return.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-ring-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-ring.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-rotate-landscape.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-rotate-portrait.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-voip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pi-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pi-hole.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pi.svg +1 -0
- docsforge/themes/material/templates/.icons/material/piano-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/piano.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pickaxe.svg +1 -0
- docsforge/themes/material/templates/.icons/material/picture-in-picture-bottom-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/picture-in-picture-bottom-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/picture-in-picture-top-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/picture-in-picture-top-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pier-crane.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pier.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pig-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pig-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pig.svg +1 -0
- docsforge/themes/material/templates/.icons/material/piggy-bank-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/piggy-bank.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pill-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pill-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pill.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pillar.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pin-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pin-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pin-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pine-tree-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pine-tree-fire.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pine-tree-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pine-tree-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pine-tree.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pinterest.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pinwheel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pinwheel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pipe-disconnected.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pipe-leak.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pipe-valve.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pipe-wrench.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pipe.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pirate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pistol.svg +1 -0
- docsforge/themes/material/templates/.icons/material/piston.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pitchfork.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pizza.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plane-car.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plane-train.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-box-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-box-lock-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-box-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-box-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-box-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-pause.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-protected-content.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-speed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/playlist-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/playlist-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/playlist-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/playlist-music-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/playlist-music.svg +1 -0
- docsforge/themes/material/templates/.icons/material/playlist-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/playlist-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/playlist-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/playlist-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plex.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pliers.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-circle-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-circle-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-minus-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-minus-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-thick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pocket.svg +1 -0
- docsforge/themes/material/templates/.icons/material/podcast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/podium-bronze.svg +1 -0
- docsforge/themes/material/templates/.icons/material/podium-gold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/podium-silver.svg +1 -0
- docsforge/themes/material/templates/.icons/material/podium.svg +1 -0
- docsforge/themes/material/templates/.icons/material/point-of-sale.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pokeball.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pokemon-go.svg +1 -0
- docsforge/themes/material/templates/.icons/material/poker-chip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/polaroid.svg +1 -0
- docsforge/themes/material/templates/.icons/material/police-badge-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/police-badge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/police-station.svg +1 -0
- docsforge/themes/material/templates/.icons/material/poll.svg +1 -0
- docsforge/themes/material/templates/.icons/material/polo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/polymer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pool-thermometer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pool.svg +1 -0
- docsforge/themes/material/templates/.icons/material/popcorn.svg +1 -0
- docsforge/themes/material/templates/.icons/material/post-lamp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/post-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/post.svg +1 -0
- docsforge/themes/material/templates/.icons/material/postage-stamp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pot-mix-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pot-mix.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pot-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pot-steam-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pot-steam.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pot.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pound-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pound-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pound.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-cycle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-on.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-plug-battery-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-plug-battery.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-plug-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-plug-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-plug-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-plug.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-sleep.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-socket-au.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-socket-ch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-socket-de.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-socket-eu.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-socket-fr.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-socket-it.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-socket-jp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-socket-uk.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-socket-us.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-socket.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-standby.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power.svg +1 -0
- docsforge/themes/material/templates/.icons/material/powershell.svg +1 -0
- docsforge/themes/material/templates/.icons/material/prescription.svg +1 -0
- docsforge/themes/material/templates/.icons/material/presentation-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/presentation.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pretzel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-3d-nozzle-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-3d-nozzle-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-3d-nozzle-heat-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-3d-nozzle-heat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-3d-nozzle-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-3d-nozzle-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-3d-nozzle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-3d-nozzle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-3d-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-3d.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-eye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-cancel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-pause-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-pause.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-play-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-stop-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-stop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-wrench-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-wrench.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-wireless.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/priority-high.svg +1 -0
- docsforge/themes/material/templates/.icons/material/priority-low.svg +1 -0
- docsforge/themes/material/templates/.icons/material/professional-hexagon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/progress-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/progress-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/progress-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/progress-close.svg +1 -0
- docsforge/themes/material/templates/.icons/material/progress-download.svg +1 -0
- docsforge/themes/material/templates/.icons/material/progress-helper.svg +1 -0
- docsforge/themes/material/templates/.icons/material/progress-pencil.svg +1 -0
- docsforge/themes/material/templates/.icons/material/progress-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/progress-star-four-points.svg +1 -0
- docsforge/themes/material/templates/.icons/material/progress-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/progress-tag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/progress-upload.svg +1 -0
- docsforge/themes/material/templates/.icons/material/progress-wrench.svg +1 -0
- docsforge/themes/material/templates/.icons/material/projector-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/projector-screen-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/projector-screen-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/projector-screen-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/projector-screen-variant-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/projector-screen-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/projector-screen-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/projector-screen-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/projector-screen.svg +1 -0
- docsforge/themes/material/templates/.icons/material/projector.svg +1 -0
- docsforge/themes/material/templates/.icons/material/propane-tank-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/propane-tank.svg +1 -0
- docsforge/themes/material/templates/.icons/material/protocol.svg +1 -0
- docsforge/themes/material/templates/.icons/material/publish-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/publish.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pulse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pump-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pump.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pumpkin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/purse-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/purse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pyramid-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pyramid.svg +1 -0
- docsforge/themes/material/templates/.icons/material/qi.svg +1 -0
- docsforge/themes/material/templates/.icons/material/qqchat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/qrcode-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/qrcode-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/qrcode-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/qrcode-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/qrcode-scan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/qrcode.svg +1 -0
- docsforge/themes/material/templates/.icons/material/quadcopter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/quality-high.svg +1 -0
- docsforge/themes/material/templates/.icons/material/quality-low.svg +1 -0
- docsforge/themes/material/templates/.icons/material/quality-medium.svg +1 -0
- docsforge/themes/material/templates/.icons/material/queue-first-in-last-out.svg +1 -0
- docsforge/themes/material/templates/.icons/material/quora.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rabbit-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rabbit-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rabbit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/racing-helmet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/racquetball.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radar.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radiator-disabled.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radiator-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radiator.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radio-am.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radio-fm.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radio-handheld.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radio-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radio-tower.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radio.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radioactive-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radioactive-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radioactive-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radioactive.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radiobox-blank.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radiobox-indeterminate-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radiobox-marked.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radiology-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radiology-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radius-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radius.svg +1 -0
- docsforge/themes/material/templates/.icons/material/railroad-light.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rake.svg +1 -0
- docsforge/themes/material/templates/.icons/material/raspberry-pi.svg +1 -0
- docsforge/themes/material/templates/.icons/material/raw-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/raw.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ray-end-arrow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ray-end.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ray-start-arrow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ray-start-end.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ray-start-vertex-end.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ray-start.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ray-vertex.svg +1 -0
- docsforge/themes/material/templates/.icons/material/razor-double-edge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/razor-single-edge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/react.svg +1 -0
- docsforge/themes/material/templates/.icons/material/read.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-send-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-send.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-arrow-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-send-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-send.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt.svg +1 -0
- docsforge/themes/material/templates/.icons/material/record-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/record-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/record-player.svg +1 -0
- docsforge/themes/material/templates/.icons/material/record-rec.svg +1 -0
- docsforge/themes/material/templates/.icons/material/record.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rectangle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rectangle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/recycle-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/recycle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reddit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/redhat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/redo-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/redo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reflect-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reflect-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/refresh-auto.svg +1 -0
- docsforge/themes/material/templates/.icons/material/refresh-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/regex.svg +1 -0
- docsforge/themes/material/templates/.icons/material/registered-trademark.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reiterate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-many-to-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-many-to-one-or-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-many-to-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-many-to-only-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-many-to-zero-or-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-many-to-zero-or-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-one-or-many-to-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-one-or-many-to-one-or-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-one-or-many-to-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-one-or-many-to-only-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-one-or-many-to-zero-or-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-one-or-many-to-zero-or-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-one-to-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-one-to-one-or-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-one-to-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-one-to-only-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-one-to-zero-or-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-one-to-zero-or-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-only-one-to-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-only-one-to-one-or-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-only-one-to-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-only-one-to-only-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-only-one-to-zero-or-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-only-one-to-zero-or-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-zero-or-many-to-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-zero-or-many-to-one-or-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-zero-or-many-to-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-zero-or-many-to-only-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-zero-or-many-to-zero-or-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-zero-or-many-to-zero-or-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-zero-or-one-to-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-zero-or-one-to-one-or-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-zero-or-one-to-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-zero-or-one-to-only-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-zero-or-one-to-zero-or-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-zero-or-one-to-zero-or-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relative-scale.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reload-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reload.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reminder.svg +1 -0
- docsforge/themes/material/templates/.icons/material/remote-desktop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/remote-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/remote-tv-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/remote-tv.svg +1 -0
- docsforge/themes/material/templates/.icons/material/remote.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rename-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rename-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rename-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rename.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reorder-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reorder-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/repeat-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/repeat-once.svg +1 -0
- docsforge/themes/material/templates/.icons/material/repeat-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/repeat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/replay.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reply-all-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reply-all.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reply-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reply-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reply.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reproduction.svg +1 -0
- docsforge/themes/material/templates/.icons/material/resistor-nodes.svg +1 -0
- docsforge/themes/material/templates/.icons/material/resistor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/resize-bottom-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/resize.svg +1 -0
- docsforge/themes/material/templates/.icons/material/responsive.svg +1 -0
- docsforge/themes/material/templates/.icons/material/restart-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/restart-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/restart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/restore-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/restore.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rewind-10.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rewind-15.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rewind-30.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rewind-45.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rewind-5.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rewind-60.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rewind-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rewind.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rhombus-medium-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rhombus-medium.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rhombus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rhombus-split-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rhombus-split.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rhombus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ribbon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rice.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rickshaw-electric.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rickshaw.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ring.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rivet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/road-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/road.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robber.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-angry-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-angry.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-confused-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-confused.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-dead-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-dead.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-excited-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-excited.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-happy-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-happy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-industrial-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-industrial.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-love-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-love.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-mower-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-mower.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-vacuum-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-vacuum-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-vacuum-variant-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-vacuum-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-vacuum-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-vacuum.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rocket-launch-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rocket-launch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rocket-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rocket.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rodent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/roller-shade-closed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/roller-shade.svg +1 -0
- docsforge/themes/material/templates/.icons/material/roller-skate-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/roller-skate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rollerblade-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rollerblade.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rollupjs.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rolodex-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rolodex.svg +1 -0
- docsforge/themes/material/templates/.icons/material/roman-numeral-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/roman-numeral-10.svg +1 -0
- docsforge/themes/material/templates/.icons/material/roman-numeral-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/roman-numeral-3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/roman-numeral-4.svg +1 -0
- docsforge/themes/material/templates/.icons/material/roman-numeral-5.svg +1 -0
- docsforge/themes/material/templates/.icons/material/roman-numeral-6.svg +1 -0
- docsforge/themes/material/templates/.icons/material/roman-numeral-7.svg +1 -0
- docsforge/themes/material/templates/.icons/material/roman-numeral-8.svg +1 -0
- docsforge/themes/material/templates/.icons/material/roman-numeral-9.svg +1 -0
- docsforge/themes/material/templates/.icons/material/room-service-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/room-service.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rotate-360.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rotate-3d-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rotate-3d.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rotate-left-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rotate-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rotate-orbit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rotate-right-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rotate-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rounded-corner.svg +1 -0
- docsforge/themes/material/templates/.icons/material/router-network-wireless.svg +1 -0
- docsforge/themes/material/templates/.icons/material/router-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/router-wireless-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/router-wireless-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/router-wireless.svg +1 -0
- docsforge/themes/material/templates/.icons/material/router.svg +1 -0
- docsforge/themes/material/templates/.icons/material/routes-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/routes.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rowing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rss-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rss-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rss.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rug.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rugby.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ruler-square-compass.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ruler-square.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ruler.svg +1 -0
- docsforge/themes/material/templates/.icons/material/run-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/run.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rv-truck.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sack-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sack-percent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sack.svg +1 -0
- docsforge/themes/material/templates/.icons/material/safe-square-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/safe-square.svg +1 -0
- docsforge/themes/material/templates/.icons/material/safe.svg +1 -0
- docsforge/themes/material/templates/.icons/material/safety-goggles.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sail-boat-sink.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sail-boat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sale-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sale.svg +1 -0
- docsforge/themes/material/templates/.icons/material/salesforce.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sass.svg +1 -0
- docsforge/themes/material/templates/.icons/material/satellite-uplink.svg +1 -0
- docsforge/themes/material/templates/.icons/material/satellite-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/satellite.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sausage-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sausage.svg +1 -0
- docsforge/themes/material/templates/.icons/material/saw-blade.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sawtooth-wave.svg +1 -0
- docsforge/themes/material/templates/.icons/material/saxophone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scale-balance.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scale-bathroom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scale-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scale-unbalanced.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scale.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scan-helper.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scanner-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scanner.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scatter-plot-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scatter-plot.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scent-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/school-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/school.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scissors-cutting.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scooter-electric.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scooter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scoreboard-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scoreboard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/screen-rotation-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/screen-rotation.svg +1 -0
- docsforge/themes/material/templates/.icons/material/screw-flat-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/screw-lag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/screw-machine-flat-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/screw-machine-round-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/screw-round-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/screwdriver.svg +1 -0
- docsforge/themes/material/templates/.icons/material/script-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/script-text-key-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/script-text-key.svg +1 -0
- docsforge/themes/material/templates/.icons/material/script-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/script-text-play-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/script-text-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/script-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/script.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sd.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seal-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/search-web.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seat-flat-angled.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seat-flat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seat-individual-suite.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seat-legroom-extra.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seat-legroom-normal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seat-legroom-reduced.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seat-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seat-passenger.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seat-recline-extra.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seat-recline-normal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seatbelt.svg +1 -0
- docsforge/themes/material/templates/.icons/material/security-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/security.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seed-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seed-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seed-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seed-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seed-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seesaw.svg +1 -0
- docsforge/themes/material/templates/.icons/material/segment.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-all.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-color.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-compare.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-drag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-group.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-inverse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-multiple-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-place.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select.svg +1 -0
- docsforge/themes/material/templates/.icons/material/selection-drag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/selection-ellipse-arrow-inside.svg +1 -0
- docsforge/themes/material/templates/.icons/material/selection-ellipse-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/selection-ellipse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/selection-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/selection-multiple-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/selection-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/selection-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/selection-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/selection-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/selection.svg +1 -0
- docsforge/themes/material/templates/.icons/material/semantic-web.svg +1 -0
- docsforge/themes/material/templates/.icons/material/send-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/send-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/send-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/send-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/send-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/send-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/send-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/send-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/send-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/send-variant-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/send-variant-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/send-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/send-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/send.svg +1 -0
- docsforge/themes/material/templates/.icons/material/serial-port.svg +1 -0
- docsforge/themes/material/templates/.icons/material/server-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/server-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/server-network-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/server-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/server-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/server-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/server-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/server-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/server-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/server-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/server-security.svg +1 -0
- docsforge/themes/material/templates/.icons/material/server.svg +1 -0
- docsforge/themes/material/templates/.icons/material/set-all.svg +1 -0
- docsforge/themes/material/templates/.icons/material/set-center-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/set-center.svg +1 -0
- docsforge/themes/material/templates/.icons/material/set-left-center.svg +1 -0
- docsforge/themes/material/templates/.icons/material/set-left-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/set-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/set-merge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/set-none.svg +1 -0
- docsforge/themes/material/templates/.icons/material/set-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/set-split.svg +1 -0
- docsforge/themes/material/templates/.icons/material/set-square.svg +1 -0
- docsforge/themes/material/templates/.icons/material/set-top-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/settings-helper.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shaker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shaker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shape-circle-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shape-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shape-oval-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shape-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shape-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shape-polygon-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shape-rectangle-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shape-square-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shape-square-rounded-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shape.svg +1 -0
- docsforge/themes/material/templates/.icons/material/share-all-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/share-all.svg +1 -0
- docsforge/themes/material/templates/.icons/material/share-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/share-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/share-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/share-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/share-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/share-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/share.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shark-fin-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shark-fin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shark-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shark.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sheep.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-account-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-account-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-account-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-airplane-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-airplane.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-bug-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-bug.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-car.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-cross-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-cross.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-crown-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-crown.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-half-full.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-half.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-home-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-home.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-key-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-key.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-link-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-link-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-lock-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-moon-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-moon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-sun-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-sun.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-sword-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-sword.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shimmer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ship-wheel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shipping-pallet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shoe-ballet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shoe-cleat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shoe-formal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shoe-heel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shoe-print.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shoe-sneaker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shopping-music.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shopping-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shopping-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shopping-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shopping.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shore.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shovel-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shovel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shower-head.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shower.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shredder.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shuffle-disabled.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shuffle-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shuffle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shuriken.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sickle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sigma-lower.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sigma.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sign-caution.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sign-direction-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sign-direction-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sign-direction-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sign-direction.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sign-language-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sign-language.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sign-pole.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sign-real-estate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sign-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sign-yield.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signal-2g.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signal-3g.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signal-4g.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signal-5g.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signal-cellular-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signal-cellular-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signal-cellular-3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signal-cellular-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signal-distance-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signal-hspa-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signal-hspa.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signal-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signal-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signature-freehand.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signature-image.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signature-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signature.svg +1 -0
- docsforge/themes/material/templates/.icons/material/silo-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/silo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/silverware-clean.svg +1 -0
- docsforge/themes/material/templates/.icons/material/silverware-fork-knife.svg +1 -0
- docsforge/themes/material/templates/.icons/material/silverware-fork.svg +1 -0
- docsforge/themes/material/templates/.icons/material/silverware-spoon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/silverware-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/silverware.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sim-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sim-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sim-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sim-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sim-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sim.svg +1 -0
- docsforge/themes/material/templates/.icons/material/simple-icons.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sina-weibo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sine-wave.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sitemap-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sitemap.svg +1 -0
- docsforge/themes/material/templates/.icons/material/size-l.svg +1 -0
- docsforge/themes/material/templates/.icons/material/size-m.svg +1 -0
- docsforge/themes/material/templates/.icons/material/size-s.svg +1 -0
- docsforge/themes/material/templates/.icons/material/size-xl.svg +1 -0
- docsforge/themes/material/templates/.icons/material/size-xs.svg +1 -0
- docsforge/themes/material/templates/.icons/material/size-xxl.svg +1 -0
- docsforge/themes/material/templates/.icons/material/size-xxs.svg +1 -0
- docsforge/themes/material/templates/.icons/material/size-xxxl.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skate-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skateboard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skateboarding.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skew-less.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skew-more.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ski-cross-country.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ski-water.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ski.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skip-backward-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skip-backward.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skip-forward-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skip-forward.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skip-next-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skip-next-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skip-next-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skip-next.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skip-previous-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skip-previous-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skip-previous-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skip-previous.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skull-crossbones-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skull-crossbones.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skull-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skull-scan-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skull-scan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skull.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skype-business.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skype.svg +1 -0
- docsforge/themes/material/templates/.icons/material/slack.svg +1 -0
- docsforge/themes/material/templates/.icons/material/slash-forward-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/slash-forward.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sledding.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sleep-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sleep.svg +1 -0
- docsforge/themes/material/templates/.icons/material/slide.svg +1 -0
- docsforge/themes/material/templates/.icons/material/slope-downhill.svg +1 -0
- docsforge/themes/material/templates/.icons/material/slope-uphill.svg +1 -0
- docsforge/themes/material/templates/.icons/material/slot-machine-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/slot-machine.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smart-card-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smart-card-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smart-card-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smart-card-reader-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smart-card-reader.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smart-card.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smoke-detector-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smoke-detector-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smoke-detector-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smoke-detector-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smoke-detector-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smoke-detector-variant-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smoke-detector-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smoke-detector-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smoke-detector.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smoke.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smoking-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smoking-pipe-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smoking-pipe.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smoking.svg +1 -0
- docsforge/themes/material/templates/.icons/material/snail.svg +1 -0
- docsforge/themes/material/templates/.icons/material/snake.svg +1 -0
- docsforge/themes/material/templates/.icons/material/snapchat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/snowboard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/snowflake-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/snowflake-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/snowflake-melt.svg +1 -0
- docsforge/themes/material/templates/.icons/material/snowflake-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/snowflake-thermometer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/snowflake-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/snowflake.svg +1 -0
- docsforge/themes/material/templates/.icons/material/snowman.svg +1 -0
- docsforge/themes/material/templates/.icons/material/snowmobile.svg +1 -0
- docsforge/themes/material/templates/.icons/material/snowshoeing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/soccer-field.svg +1 -0
- docsforge/themes/material/templates/.icons/material/soccer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/social-distance-2-meters.svg +1 -0
- docsforge/themes/material/templates/.icons/material/social-distance-6-feet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sofa-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sofa-single-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sofa-single.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sofa.svg +1 -0
- docsforge/themes/material/templates/.icons/material/solar-panel-large.svg +1 -0
- docsforge/themes/material/templates/.icons/material/solar-panel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/solar-power-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/solar-power-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/solar-power.svg +1 -0
- docsforge/themes/material/templates/.icons/material/soldering-iron.svg +1 -0
- docsforge/themes/material/templates/.icons/material/solid.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sony-playstation.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-alphabetical-ascending-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-alphabetical-ascending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-alphabetical-descending-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-alphabetical-descending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-alphabetical-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-ascending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-bool-ascending-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-bool-ascending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-bool-descending-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-bool-descending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-calendar-ascending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-calendar-descending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-clock-ascending-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-clock-ascending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-clock-descending-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-clock-descending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-descending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-numeric-ascending-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-numeric-ascending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-numeric-descending-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-numeric-descending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-numeric-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-reverse-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-variant-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-variant-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-variant-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort.svg +1 -0
- docsforge/themes/material/templates/.icons/material/soundbar.svg +1 -0
- docsforge/themes/material/templates/.icons/material/soundcloud.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-branch-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-branch-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-branch-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-branch-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-branch-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-branch-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-branch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-commit-end-local.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-commit-end.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-commit-local.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-commit-next-local.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-commit-start-next-local.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-commit-start.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-commit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-fork.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-merge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-pull.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-repository-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-repository.svg +1 -0
- docsforge/themes/material/templates/.icons/material/soy-sauce-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/soy-sauce.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spa-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spa.svg +1 -0
- docsforge/themes/material/templates/.icons/material/space-invaders.svg +1 -0
- docsforge/themes/material/templates/.icons/material/space-station.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spade.svg +1 -0
- docsforge/themes/material/templates/.icons/material/speaker-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/speaker-message.svg +1 -0
- docsforge/themes/material/templates/.icons/material/speaker-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/speaker-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/speaker-pause.svg +1 -0
- docsforge/themes/material/templates/.icons/material/speaker-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/speaker-stop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/speaker-wireless.svg +1 -0
- docsforge/themes/material/templates/.icons/material/speaker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spear.svg +1 -0
- docsforge/themes/material/templates/.icons/material/speedometer-medium.svg +1 -0
- docsforge/themes/material/templates/.icons/material/speedometer-slow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/speedometer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spellcheck.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sphere-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sphere.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spider-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spider-thread.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spider-web.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spider.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spirit-level.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spoon-sugar.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spotify.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spotlight-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spotlight.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spray-bottle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spray.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sprinkler-fire.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sprinkler-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sprinkler.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sprout-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sprout.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-medium-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-medium.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-opacity.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-root-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-root.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-rounded-badge-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-rounded-badge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-rounded-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-rounded.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-small.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-wave.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square.svg +1 -0
- docsforge/themes/material/templates/.icons/material/squeegee.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ssh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stack-exchange.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stack-overflow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stackpath.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stadium-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stadium-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stadium.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stairs-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stairs-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stairs-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stairs.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stamper.svg +1 -0
- docsforge/themes/material/templates/.icons/material/standard-definition.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-crescent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-david.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-face.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-four-points-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-four-points-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-four-points-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-four-points-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-four-points-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-four-points-small.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-four-points.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-half-full.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-half.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-shooting-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-shooting.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-three-points-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-three-points.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/state-machine.svg +1 -0
- docsforge/themes/material/templates/.icons/material/steam.svg +1 -0
- docsforge/themes/material/templates/.icons/material/steering-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/steering.svg +1 -0
- docsforge/themes/material/templates/.icons/material/step-backward-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/step-backward.svg +1 -0
- docsforge/themes/material/templates/.icons/material/step-forward-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/step-forward.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stethoscope.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-emoji.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stocking.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stomach.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stool-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stool.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stop-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stop-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/storage-tank-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/storage-tank.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-24-hour.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store.svg +1 -0
- docsforge/themes/material/templates/.icons/material/storefront-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/storefront-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/storefront-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/storefront-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/storefront-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/storefront-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/storefront-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/storefront-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/storefront-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/storefront-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/storefront-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/storefront.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/strategy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stretch-to-page-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stretch-to-page.svg +1 -0
- docsforge/themes/material/templates/.icons/material/string-lights-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/string-lights.svg +1 -0
- docsforge/themes/material/templates/.icons/material/subdirectory-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/subdirectory-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/submarine.svg +1 -0
- docsforge/themes/material/templates/.icons/material/subtitles-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/subtitles.svg +1 -0
- docsforge/themes/material/templates/.icons/material/subway-alert-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/subway-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/subway.svg +1 -0
- docsforge/themes/material/templates/.icons/material/summit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sun-angle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sun-angle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sun-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sun-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sun-compass.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sun-snowflake-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sun-snowflake.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sun-thermometer-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sun-thermometer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sun-wireless-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sun-wireless.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sunglasses.svg +1 -0
- docsforge/themes/material/templates/.icons/material/surfing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/surround-sound-2-0.svg +1 -0
- docsforge/themes/material/templates/.icons/material/surround-sound-2-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/surround-sound-3-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/surround-sound-5-1-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/surround-sound-5-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/surround-sound-7-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/surround-sound.svg +1 -0
- docsforge/themes/material/templates/.icons/material/svg.svg +1 -0
- docsforge/themes/material/templates/.icons/material/swap-horizontal-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/swap-horizontal-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/swap-horizontal-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/swap-horizontal-hidden.svg +1 -0
- docsforge/themes/material/templates/.icons/material/swap-horizontal-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/swap-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/swap-vertical-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/swap-vertical-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/swap-vertical-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/swap-vertical-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/swap-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/swim.svg +1 -0
- docsforge/themes/material/templates/.icons/material/switch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sword-cross.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sword.svg +1 -0
- docsforge/themes/material/templates/.icons/material/syllabary-hangul.svg +1 -0
- docsforge/themes/material/templates/.icons/material/syllabary-hiragana.svg +1 -0
- docsforge/themes/material/templates/.icons/material/syllabary-katakana-halfwidth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/syllabary-katakana.svg +1 -0
- docsforge/themes/material/templates/.icons/material/symbol.svg +1 -0
- docsforge/themes/material/templates/.icons/material/symfony.svg +1 -0
- docsforge/themes/material/templates/.icons/material/synagogue-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/synagogue.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sync-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sync-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sync-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tab-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tab-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tab-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tab-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tab-unselected.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tab.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-border.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-chair.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-column-plus-after.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-column-plus-before.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-column-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-column-width.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-column.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-eye-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-eye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-filter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-furniture.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-headers-eye-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-headers-eye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-key.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-large-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-large-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-large.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-merge-cells.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-of-contents.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-picnic.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-pivot.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-row-height.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-row-plus-after.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-row-plus-before.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-row-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-row.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-split-cell.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-tennis.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tablet-cellphone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tablet-dashboard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tablet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/taco.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-arrow-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-arrow-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-arrow-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-faces.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-hidden.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tailwind.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tally-mark-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tally-mark-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tally-mark-3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tally-mark-4.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tally-mark-5.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tangram.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tank.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tanker-truck.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tape-drive.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tape-measure.svg +1 -0
- docsforge/themes/material/templates/.icons/material/target-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/target-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/target.svg +1 -0
- docsforge/themes/material/templates/.icons/material/taxi.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tea-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tea.svg +1 -0
- docsforge/themes/material/templates/.icons/material/teamviewer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/teddy-bear.svg +1 -0
- docsforge/themes/material/templates/.icons/material/telescope.svg +1 -0
- docsforge/themes/material/templates/.icons/material/television-ambient-light.svg +1 -0
- docsforge/themes/material/templates/.icons/material/television-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/television-classic-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/television-classic.svg +1 -0
- docsforge/themes/material/templates/.icons/material/television-guide.svg +1 -0
- docsforge/themes/material/templates/.icons/material/television-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/television-pause.svg +1 -0
- docsforge/themes/material/templates/.icons/material/television-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/television-shimmer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/television-speaker-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/television-speaker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/television-stop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/television.svg +1 -0
- docsforge/themes/material/templates/.icons/material/temperature-celsius.svg +1 -0
- docsforge/themes/material/templates/.icons/material/temperature-fahrenheit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/temperature-kelvin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/temple-buddhist-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/temple-buddhist.svg +1 -0
- docsforge/themes/material/templates/.icons/material/temple-hindu-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/temple-hindu.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tennis-ball-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tennis-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tennis.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/terraform.svg +1 -0
- docsforge/themes/material/templates/.icons/material/terrain.svg +1 -0
- docsforge/themes/material/templates/.icons/material/test-tube-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/material/test-tube-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/test-tube.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-long.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-recognition.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-search-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-shadow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-short.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/texture-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/texture.svg +1 -0
- docsforge/themes/material/templates/.icons/material/theater.svg +1 -0
- docsforge/themes/material/templates/.icons/material/theme-light-dark.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-auto.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-chevron-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-chevron-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-high.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-lines.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-low.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-probe-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-probe.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-water.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermostat-auto.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermostat-box-auto.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermostat-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermostat-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermostat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thought-bubble-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thought-bubble.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thumb-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thumb-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thumb-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thumb-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thumbs-up-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thumbs-up-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ticket-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ticket-confirmation-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ticket-confirmation.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ticket-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ticket-percent-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ticket-percent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ticket.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tie.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tilde-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tilde.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timelapse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-10.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-cancel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-lock-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-music-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-music.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-pause-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-pause.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-play-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-sand-complete.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-sand-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-sand-full.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-sand-paused.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-sand.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-stop-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-stop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timetable.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tire.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toaster-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toaster-oven.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toaster.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toggle-switch-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toggle-switch-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toggle-switch-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toggle-switch-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toggle-switch-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toggle-switch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toilet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toolbox-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toolbox.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tools.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-cellphone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-image-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-image.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooth-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toothbrush-electric.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toothbrush-paste.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toothbrush.svg +1 -0
- docsforge/themes/material/templates/.icons/material/torch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tortoise.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toslink.svg +1 -0
- docsforge/themes/material/templates/.icons/material/touch-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tournament.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tow-truck.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tower-beach.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tower-fire.svg +1 -0
- docsforge/themes/material/templates/.icons/material/town-hall.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toy-brick-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toy-brick-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toy-brick-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toy-brick-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toy-brick-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toy-brick-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toy-brick-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toy-brick-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toy-brick-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toy-brick-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toy-brick-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toy-brick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/track-light-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/track-light.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trackpad-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trackpad.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tractor-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tractor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trademark.svg +1 -0
- docsforge/themes/material/templates/.icons/material/traffic-cone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/traffic-light-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/traffic-light.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-bus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-autorack.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-box-full.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-box-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-caboose.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-centerbeam-full.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-centerbeam.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-container.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-flatbed-car.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-flatbed-tank.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-flatbed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-gondola-full.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-gondola.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-hopper-covered.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-hopper-full.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-hopper.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-intermodal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-passenger-door-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-passenger-door.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-passenger-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-passenger.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-tank.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tram-side.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tram.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transcribe-close.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transcribe.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transfer-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transfer-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transfer-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transfer-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transfer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transit-connection-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transit-connection-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transit-connection.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transit-detour.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transit-skip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transit-transfer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transition-masked.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transition.svg +1 -0
- docsforge/themes/material/templates/.icons/material/translate-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/translate-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/translate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transmission-tower-export.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transmission-tower-import.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transmission-tower-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transmission-tower.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trash-can-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trash-can.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tray-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tray-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tray-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tray-full.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tray-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tray-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tray-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tray.svg +1 -0
- docsforge/themes/material/templates/.icons/material/treasure-chest-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/treasure-chest.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tree-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tree.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trello.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trending-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trending-neutral.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trending-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/triangle-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/triangle-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/triangle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/triangle-small-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/triangle-small-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/triangle-wave.svg +1 -0
- docsforge/themes/material/templates/.icons/material/triangle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/triforce.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trophy-award.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trophy-broken.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trophy-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trophy-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trophy-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trophy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-cargo-container.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-delivery-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-delivery.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-fast-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-flatbed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-off-road-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-off-road.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-snowflake.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-trailer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trumpet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tshirt-crew-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tshirt-crew.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tshirt-v-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tshirt-v.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tsunami.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tumble-dryer-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tumble-dryer-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tumble-dryer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tune-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tune-vertical-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tune-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tune.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tunnel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tunnel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/turbine.svg +1 -0
- docsforge/themes/material/templates/.icons/material/turkey.svg +1 -0
- docsforge/themes/material/templates/.icons/material/turnstile-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/turnstile.svg +1 -0
- docsforge/themes/material/templates/.icons/material/turtle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/twitch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/twitter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/two-factor-authentication.svg +1 -0
- docsforge/themes/material/templates/.icons/material/typewriter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ubisoft.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ubuntu.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ufo-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ufo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ultra-high-definition.svg +1 -0
- docsforge/themes/material/templates/.icons/material/umbraco.svg +1 -0
- docsforge/themes/material/templates/.icons/material/umbrella-beach-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/umbrella-beach.svg +1 -0
- docsforge/themes/material/templates/.icons/material/umbrella-closed-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/umbrella-closed-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/umbrella-closed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/umbrella-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/umbrella.svg +1 -0
- docsforge/themes/material/templates/.icons/material/underwear-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/undo-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/undo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/unfold-less-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/unfold-less-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/unfold-more-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/unfold-more-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ungroup.svg +1 -0
- docsforge/themes/material/templates/.icons/material/unicode.svg +1 -0
- docsforge/themes/material/templates/.icons/material/unicorn-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/unicorn.svg +1 -0
- docsforge/themes/material/templates/.icons/material/unicycle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/unity.svg +1 -0
- docsforge/themes/material/templates/.icons/material/unreal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/update.svg +1 -0
- docsforge/themes/material/templates/.icons/material/upload-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/upload-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/upload-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/upload-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/upload-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/upload-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/upload-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/upload-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/upload-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/upload-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/upload-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/upload-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/upload-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/upload.svg +1 -0
- docsforge/themes/material/templates/.icons/material/usb-c-port.svg +1 -0
- docsforge/themes/material/templates/.icons/material/usb-flash-drive-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/usb-flash-drive.svg +1 -0
- docsforge/themes/material/templates/.icons/material/usb-port.svg +1 -0
- docsforge/themes/material/templates/.icons/material/usb.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vacuum-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vacuum.svg +1 -0
- docsforge/themes/material/templates/.icons/material/valve-closed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/valve-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/valve.svg +1 -0
- docsforge/themes/material/templates/.icons/material/van-passenger.svg +1 -0
- docsforge/themes/material/templates/.icons/material/van-utility.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vanish-quarter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vanish.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vanity-light.svg +1 -0
- docsforge/themes/material/templates/.icons/material/variable-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/variable.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-arrange-above.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-arrange-below.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-bezier.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-circle-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-combine.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-curve.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-difference-ab.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-difference-ba.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-difference.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-ellipse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-intersection.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-line.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-link.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-point-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-point-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-point-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-point-select.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-point.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-polygon-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-polygon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-polyline-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-polyline-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-polyline-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-polyline-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-polyline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-radius.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-rectangle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-selection.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-square-close.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-square-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-square-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-square-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-square-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-square-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-square.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-triangle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-union.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vhs.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vibrate-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vibrate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-2d.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-3d-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-3d-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-3d.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-4k-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-box-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-high-definition.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-image.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-input-antenna.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-input-component.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-input-hdmi.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-input-scart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-input-svideo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-stabilization.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-standard-definition.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-switch-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-switch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-vintage.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-wireless-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-wireless.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-agenda-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-agenda.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-array-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-array.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-carousel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-carousel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-column-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-column.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-comfy-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-comfy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-compact-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-compact.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-dashboard-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-dashboard-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-dashboard-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-dashboard-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-dashboard-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-dashboard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-day-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-day.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-gallery-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-gallery.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-grid-compact.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-grid-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-grid-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-grid-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-grid.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-headline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-list-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-list.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-module-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-module.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-parallel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-parallel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-quilt-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-quilt.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-sequential-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-sequential.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-split-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-split-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-stream-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-stream.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-week-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-week.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vimeo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/violin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/virtual-reality.svg +1 -0
- docsforge/themes/material/templates/.icons/material/virus-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/virus-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/virus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/virus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vlc.svg +1 -0
- docsforge/themes/material/templates/.icons/material/voicemail.svg +1 -0
- docsforge/themes/material/templates/.icons/material/volcano-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/volcano.svg +1 -0
- docsforge/themes/material/templates/.icons/material/volleyball.svg +1 -0
- docsforge/themes/material/templates/.icons/material/volume-equal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/volume-high.svg +1 -0
- docsforge/themes/material/templates/.icons/material/volume-low.svg +1 -0
- docsforge/themes/material/templates/.icons/material/volume-medium.svg +1 -0
- docsforge/themes/material/templates/.icons/material/volume-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/volume-mute.svg +1 -0
- docsforge/themes/material/templates/.icons/material/volume-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/volume-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/volume-source.svg +1 -0
- docsforge/themes/material/templates/.icons/material/volume-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/volume-vibrate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vote-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vote.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vpn.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vuejs.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vuetify.svg +1 -0
- docsforge/themes/material/templates/.icons/material/walk.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wall-fire.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wall-sconce-flat-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wall-sconce-flat-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wall-sconce-flat-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wall-sconce-flat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wall-sconce-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wall-sconce-round-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wall-sconce-round-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wall-sconce-round-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wall-sconce-round.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wall-sconce.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wall.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wallet-bifold-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wallet-bifold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wallet-giftcard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wallet-membership.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wallet-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wallet-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wallet-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wallet-travel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wallet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wallpaper.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wardrobe-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wardrobe.svg +1 -0
- docsforge/themes/material/templates/.icons/material/warehouse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/washing-machine-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/washing-machine-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/washing-machine.svg +1 -0
- docsforge/themes/material/templates/.icons/material/watch-export-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/watch-export.svg +1 -0
- docsforge/themes/material/templates/.icons/material/watch-import-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/watch-import.svg +1 -0
- docsforge/themes/material/templates/.icons/material/watch-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/watch-vibrate-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/watch-vibrate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/watch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-boiler-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-boiler-auto.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-boiler-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-boiler.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-opacity.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-percent-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-percent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-polo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-pump-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-pump.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-thermometer-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-thermometer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-well-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-well.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water.svg +1 -0
- docsforge/themes/material/templates/.icons/material/waterfall.svg +1 -0
- docsforge/themes/material/templates/.icons/material/watering-can-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/watering-can.svg +1 -0
- docsforge/themes/material/templates/.icons/material/watermark.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wave-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wave-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wave-undercurrent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wave.svg +1 -0
- docsforge/themes/material/templates/.icons/material/waveform.svg +1 -0
- docsforge/themes/material/templates/.icons/material/waves-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/waves-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/waves-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/waves.svg +1 -0
- docsforge/themes/material/templates/.icons/material/waze.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-cloudy-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-cloudy-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-cloudy-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-cloudy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-dust.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-fog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-hail.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-hazy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-hurricane-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-hurricane.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-lightning-rainy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-lightning.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-moonset-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-moonset-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-moonset.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-night-partly-cloudy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-night.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-partly-cloudy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-partly-lightning.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-partly-rainy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-partly-snowy-rainy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-partly-snowy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-pouring.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-rainy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-snowy-heavy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-snowy-rainy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-snowy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-sunny-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-sunny-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-sunny.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-sunset-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-sunset-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-sunset.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-tornado.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-windy-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-windy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/web-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/web-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/web-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/web-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/web-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/web-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/web-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/web-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/web-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/web-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/web.svg +1 -0
- docsforge/themes/material/templates/.icons/material/webcam-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/webcam.svg +1 -0
- docsforge/themes/material/templates/.icons/material/webhook.svg +1 -0
- docsforge/themes/material/templates/.icons/material/webpack.svg +1 -0
- docsforge/themes/material/templates/.icons/material/webrtc.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wechat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weight-gram.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weight-kilogram.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weight-lifter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weight-pound.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weight.svg +1 -0
- docsforge/themes/material/templates/.icons/material/whatsapp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wheel-barrow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wheelchair-accessibility.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wheelchair.svg +1 -0
- docsforge/themes/material/templates/.icons/material/whistle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/whistle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/white-balance-auto.svg +1 -0
- docsforge/themes/material/templates/.icons/material/white-balance-incandescent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/white-balance-iridescent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/white-balance-sunny.svg +1 -0
- docsforge/themes/material/templates/.icons/material/widgets-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/widgets.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-arrow-left-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-arrow-up-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-1-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-1-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-1-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-2-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-2-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-2-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-3-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-3-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-3-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-4-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-4-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-4-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-4.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-lock-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wikipedia.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wind-power-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wind-power.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wind-turbine-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wind-turbine-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wind-turbine.svg +1 -0
- docsforge/themes/material/templates/.icons/material/window-close.svg +1 -0
- docsforge/themes/material/templates/.icons/material/window-closed-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/window-closed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/window-maximize.svg +1 -0
- docsforge/themes/material/templates/.icons/material/window-minimize.svg +1 -0
- docsforge/themes/material/templates/.icons/material/window-open-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/window-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/window-restore.svg +1 -0
- docsforge/themes/material/templates/.icons/material/window-shutter-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/window-shutter-auto.svg +1 -0
- docsforge/themes/material/templates/.icons/material/window-shutter-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/window-shutter-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/window-shutter-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/window-shutter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/windsock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wiper-wash-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wiper-wash.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wiper.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wizard-hat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wordpress.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wrap-disabled.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wrap.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wrench-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wrench-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wrench-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wrench-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wrench-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wrench-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wrench-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wrench.svg +1 -0
- docsforge/themes/material/templates/.icons/material/xamarin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/xml.svg +1 -0
- docsforge/themes/material/templates/.icons/material/xmpp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/yahoo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/yeast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/yin-yang.svg +1 -0
- docsforge/themes/material/templates/.icons/material/yoga.svg +1 -0
- docsforge/themes/material/templates/.icons/material/youtube-gaming.svg +1 -0
- docsforge/themes/material/templates/.icons/material/youtube-studio.svg +1 -0
- docsforge/themes/material/templates/.icons/material/youtube-subscription.svg +1 -0
- docsforge/themes/material/templates/.icons/material/youtube-tv.svg +1 -0
- docsforge/themes/material/templates/.icons/material/youtube.svg +1 -0
- docsforge/themes/material/templates/.icons/material/yurt.svg +1 -0
- docsforge/themes/material/templates/.icons/material/z-wave.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zend.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zigbee.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zip-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zip-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zip-disk.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zodiac-aquarius.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zodiac-aries.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zodiac-cancer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zodiac-capricorn.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zodiac-gemini.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zodiac-leo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zodiac-libra.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zodiac-pisces.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zodiac-sagittarius.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zodiac-scorpio.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zodiac-taurus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zodiac-virgo.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/LICENSE +21 -0
- docsforge/themes/material/templates/.icons/octicons/accessibility-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/accessibility-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/accessibility-inset-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/accessibility-inset-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/agent-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/agent-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/ai-model-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/ai-model-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/alert-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/alert-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/alert-fill-12.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/alert-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/alert-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/apps-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/apps-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/archive-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/archive-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-both-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-both-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-down-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-down-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-down-left-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-down-left-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-down-right-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-down-right-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-left-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-left-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-right-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-right-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-switch-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-switch-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-up-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-up-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-up-left-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-up-left-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-up-right-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-up-right-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/beaker-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/beaker-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bell-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bell-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bell-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bell-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bell-slash-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bell-slash-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/blocked-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/blocked-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bold-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bold-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/book-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/book-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bookmark-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bookmark-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bookmark-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bookmark-filled-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bookmark-slash-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bookmark-slash-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bookmark-slash-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bookmark-slash-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/boolean-off-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/boolean-off-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/boolean-on-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/boolean-on-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/briefcase-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/briefcase-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/broadcast-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/broadcast-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/browser-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/browser-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bug-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bug-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/cache-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/cache-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/calendar-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/calendar-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/check-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/check-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/check-circle-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/check-circle-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/check-circle-fill-12.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/check-circle-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/check-circle-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/checkbox-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/checkbox-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/checkbox-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/checkbox-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/checklist-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/checklist-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/chevron-down-12.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/chevron-down-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/chevron-down-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/chevron-left-12.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/chevron-left-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/chevron-left-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/chevron-right-12.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/chevron-right-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/chevron-right-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/chevron-up-12.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/chevron-up-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/chevron-up-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/circle-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/circle-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/circle-slash-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/circle-slash-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/clock-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/clock-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/clock-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/clock-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/cloud-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/cloud-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/cloud-offline-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/cloud-offline-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/code-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/code-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/code-of-conduct-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/code-of-conduct-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/code-review-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/code-review-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/code-square-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/code-square-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/codescan-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/codescan-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/codescan-checkmark-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/codescan-checkmark-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/codespaces-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/codespaces-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/columns-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/columns-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/command-palette-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/command-palette-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/comment-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/comment-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/comment-ai-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/comment-ai-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/comment-discussion-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/comment-discussion-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/compose-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/compose-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/container-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/container-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/copilot-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/copilot-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/copilot-48.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/copilot-96.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/copilot-error-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/copilot-warning-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/copy-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/copy-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/cpu-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/cpu-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/credit-card-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/credit-card-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/cross-reference-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/cross-reference-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/crosshairs-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/crosshairs-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/dash-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/dash-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/database-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/database-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/dependabot-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/dependabot-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/desktop-download-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/desktop-download-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/device-camera-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/device-camera-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/device-camera-video-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/device-camera-video-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/device-desktop-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/device-desktop-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/device-mobile-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/device-mobile-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/devices-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/devices-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/diamond-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/diamond-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/dice-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/dice-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/diff-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/diff-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/diff-added-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/diff-added-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/diff-ignored-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/diff-ignored-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/diff-modified-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/diff-modified-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/diff-removed-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/diff-removed-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/diff-renamed-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/diff-renamed-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/discussion-closed-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/discussion-closed-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/discussion-duplicate-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/discussion-duplicate-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/discussion-outdated-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/discussion-outdated-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/dot-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/dot-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/dot-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/dot-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/download-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/download-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/duplicate-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/duplicate-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/ellipsis-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/ellipsis-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/exclamation-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/exclamation-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/eye-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/eye-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/eye-closed-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/eye-closed-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-discussion-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-forked-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-heart-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-issue-closed-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-issue-draft-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-issue-open-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-issue-reopen-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-merged-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-person-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-plus-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-public-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-pull-request-closed-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-pull-request-draft-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-pull-request-open-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-repo-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-rocket-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-star-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-tag-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-trophy-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-added-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-added-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-badge-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-badge-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-binary-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-binary-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-check-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-check-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-code-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-code-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-diff-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-diff-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-directory-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-directory-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-directory-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-directory-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-directory-open-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-directory-open-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-directory-symlink-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-directory-symlink-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-media-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-media-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-moved-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-moved-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-removed-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-removed-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-submodule-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-submodule-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-symlink-file-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-symlink-file-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-zip-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-zip-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/filter-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/filter-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/filter-remove-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/filter-remove-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/fiscal-host-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/fiscal-host-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/flame-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/flame-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/flowchart-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/flowchart-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/focus-center-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/focus-center-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/fold-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/fold-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/fold-down-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/fold-down-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/fold-up-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/fold-up-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/gear-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/gear-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/gift-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/gift-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-branch-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-branch-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-branch-check-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-branch-check-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-commit-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-commit-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-compare-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-compare-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-merge-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-merge-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-merge-queue-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-merge-queue-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-pull-request-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-pull-request-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-pull-request-closed-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-pull-request-closed-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-pull-request-draft-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-pull-request-draft-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/globe-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/globe-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/goal-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/goal-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/grabber-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/grabber-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/graph-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/graph-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/graph-bar-horizontal-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/graph-bar-horizontal-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/graph-bar-vertical-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/graph-bar-vertical-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/hash-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/hash-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/heading-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/heading-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/heart-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/heart-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/heart-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/heart-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/history-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/history-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/home-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/home-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/home-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/home-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/horizontal-rule-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/horizontal-rule-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/hourglass-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/hourglass-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/hubot-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/hubot-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/id-badge-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/id-badge-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/image-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/image-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/inbox-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/inbox-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/inbox-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/inbox-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/infinity-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/infinity-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/info-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/info-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/issue-closed-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/issue-closed-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/issue-draft-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/issue-draft-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/issue-opened-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/issue-opened-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/issue-reopened-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/issue-reopened-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/issue-tracked-by-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/issue-tracked-by-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/issue-tracks-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/issue-tracks-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/italic-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/italic-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/iterations-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/iterations-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/kebab-horizontal-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/kebab-horizontal-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/key-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/key-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/key-asterisk-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/key-asterisk-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/law-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/law-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/light-bulb-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/light-bulb-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/link-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/link-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/link-external-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/link-external-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/list-ordered-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/list-ordered-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/list-unordered-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/list-unordered-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/location-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/location-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/lock-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/lock-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/log-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/log-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/logo-gist-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/logo-gist-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/logo-github-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/logo-github-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/loop-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/loop-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/mail-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/mail-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/mark-github-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/mark-github-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/markdown-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/markdown-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/maximize-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/maximize-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/mcp-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/mcp-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/megaphone-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/megaphone-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/mention-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/mention-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/meter-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/meter-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/milestone-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/milestone-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/minimize-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/minimize-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/mirror-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/mirror-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/moon-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/moon-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/mortar-board-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/mortar-board-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/move-to-bottom-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/move-to-bottom-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/move-to-end-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/move-to-end-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/move-to-start-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/move-to-start-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/move-to-top-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/move-to-top-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/multi-select-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/multi-select-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/mute-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/mute-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/no-entry-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/no-entry-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/no-entry-fill-12.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/node-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/node-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/north-star-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/north-star-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/note-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/note-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/number-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/number-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/organization-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/organization-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/package-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/package-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/package-dependencies-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/package-dependencies-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/package-dependents-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/package-dependents-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/paintbrush-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/paintbrush-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/paper-airplane-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/paper-airplane-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/paperclip-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/paperclip-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/passkey-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/passkey-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/paste-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/paste-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/pause-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/pause-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/pencil-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/pencil-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/pencil-ai-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/pencil-ai-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/people-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/people-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/person-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/person-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/person-add-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/person-add-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/person-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/person-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/pin-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/pin-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/pin-slash-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/pin-slash-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/pivot-column-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/pivot-column-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/play-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/play-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/plug-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/plug-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/plus-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/plus-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/plus-circle-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/plus-circle-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/project-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/project-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/project-roadmap-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/project-roadmap-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/project-symlink-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/project-symlink-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/project-template-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/project-template-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/pulse-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/pulse-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/question-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/question-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/quote-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/quote-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/read-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/read-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/redo-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/redo-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/rel-file-path-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/rel-file-path-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/reply-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/reply-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-clone-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-clone-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-delete-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-deleted-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-forked-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-forked-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-locked-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-locked-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-pull-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-pull-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-push-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-push-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-template-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-template-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/report-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/report-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/rocket-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/rocket-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/rows-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/rows-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/rss-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/rss-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/ruby-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/ruby-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/screen-full-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/screen-full-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/screen-normal-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/screen-normal-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/search-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/search-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/server-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/server-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/share-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/share-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/share-android-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/share-android-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/shield-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/shield-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/shield-check-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/shield-check-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/shield-lock-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/shield-lock-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/shield-slash-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/shield-slash-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/shield-x-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/shield-x-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sidebar-collapse-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sidebar-collapse-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sidebar-expand-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sidebar-expand-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sign-in-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sign-in-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sign-out-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sign-out-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/single-select-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/single-select-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/skip-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/skip-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/skip-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/skip-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sliders-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sliders-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/smiley-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/smiley-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/smiley-frown-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/smiley-frown-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/smiley-frustrated-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/smiley-frustrated-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/smiley-grin-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/smiley-grin-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/smiley-neutral-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/smiley-neutral-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sort-asc-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sort-asc-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sort-desc-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sort-desc-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/space-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/space-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/spacing-large-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/spacing-large-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/spacing-medium-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/spacing-medium-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/spacing-small-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/spacing-small-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sparkle-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sparkle-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sparkle-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sparkle-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sparkles-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sparkles-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/split-view-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/split-view-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sponsor-tiers-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sponsor-tiers-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/square-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/square-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/square-circle-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/square-circle-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/square-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/square-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/squirrel-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/squirrel-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/stack-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/stack-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/star-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/star-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/star-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/star-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/stop-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/stop-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/stopwatch-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/stopwatch-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/strikethrough-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/strikethrough-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sun-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sun-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sync-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sync-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/tab-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/tab-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/tab-external-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/tab-external-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/table-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/table-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/tag-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/tag-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/tasklist-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/tasklist-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/telescope-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/telescope-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/telescope-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/telescope-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/terminal-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/terminal-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/three-bars-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/three-bars-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/thumbsdown-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/thumbsdown-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/thumbsup-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/thumbsup-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/tools-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/tools-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/tracked-by-closed-completed-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/tracked-by-closed-completed-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/tracked-by-closed-not-planned-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/tracked-by-closed-not-planned-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/trash-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/trash-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/triangle-down-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/triangle-down-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/triangle-left-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/triangle-left-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/triangle-right-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/triangle-right-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/triangle-up-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/triangle-up-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/trophy-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/trophy-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/typography-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/typography-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/undo-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/undo-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/unfold-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/unfold-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/unlink-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/unlink-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/unlock-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/unlock-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/unmute-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/unmute-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/unread-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/unread-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/unverified-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/unverified-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/unwrap-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/unwrap-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/upload-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/upload-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/verified-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/verified-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/versions-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/versions-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/video-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/video-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/vscode-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/vscode-32.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/vscode-48.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/webhook-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/workflow-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/workflow-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/wrap-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/wrap-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/x-12.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/x-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/x-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/x-circle-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/x-circle-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/x-circle-fill-12.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/x-circle-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/x-circle-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/zap-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/zap-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/zoom-in-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/zoom-in-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/zoom-out-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/zoom-out-24.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/1001tracklists.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/1and1.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/1dot1dot1dot1.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/1panel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/1password.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/2fas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/2k.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/30secondsofcode.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/365datascience.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/3m.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/42.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/4chan.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/4d.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/500px.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/7zip.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/99designs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/9gag.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/LICENSE.md +30 -0
- docsforge/themes/material/templates/.icons/simple/abb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/abbott.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/abbvie.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/abdownloadmanager.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aboutdotme.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/abstract.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/abusedotch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/academia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/accenture.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/accusoft.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/accuweather.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/acer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/acm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/acode.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/actigraph.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/activeloop.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/activision.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/activitypub.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/actix.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/actualbudget.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/acura.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ada.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/adafruit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/adaway.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/adblock.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/adblockplus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/addydotio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/adguard.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/adidas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/adminer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/adonisjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/adp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/adroll.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/adventofcode.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/adyen.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aegisauthenticator.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aeroflot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aeromexico.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/afdian.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/affine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aframe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/afterpay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aftership.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/agora.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aib.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aidungeon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aiohttp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aiqfome.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/airasia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/airbnb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/airbrake.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/airbus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/airbyte.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aircall.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aircanada.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/airchina.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/airfrance.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/airindia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/airplayaudio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/airplayvideo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/airserbia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/airtable.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/airtel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/airtransat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ajv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/akamai.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/akasaair.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/akaunting.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/akiflow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alacritty.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alamy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/albertheijn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alby.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alchemy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aldinord.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aldisud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alfred.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/algolia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/algorand.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alibabacloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alibabadotcom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alienware.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aliexpress.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alipay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alist.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/allegro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alliedmodders.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alltrails.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/almalinux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alpinedotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alpinelinux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alternativeto.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alwaysdata.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/amd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ameba.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/americanairlines.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/americanexpress.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/amg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/amp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/amul.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ana.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/anaconda.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/analogue.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/andela.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/android.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/androidauto.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/androidstudio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/angular.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/anilist.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/animalplanet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/animedotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ankermake.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/anki.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ansible.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/answer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ansys.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/anta.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/antdesign.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/antena3.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/antennapod.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/anthropic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/antv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/anycubic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/anydesk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/anytype.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apache.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apacheairflow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apacheant.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apacheavro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachecassandra.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachecloudstack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachecordova.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachecouchdb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachedolphinscheduler.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachedoris.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachedruid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apacheecharts.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apacheflink.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachefreemarker.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachegroovy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apacheguacamole.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachehadoop.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachehbase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachehive.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachejmeter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachekafka.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachekylin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachelucene.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachemaven.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachenetbeanside.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachenifi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apacheopenoffice.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apacheparquet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachepulsar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apacherocketmq.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachesolr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachespark.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachestorm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachesuperset.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachetomcat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aparat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apifox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apmterminals.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apollographql.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apostrophe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/appgallery.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/appian.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/appimage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/appium.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apple.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/applearcade.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/applemusic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/applenews.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/applepay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/applepodcasts.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/appletv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/appmanager.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/appsignal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/appsmith.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/appstore.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/appveyor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/appwrite.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aqua.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aral.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/arangodb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/arc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/arcgis.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/archicad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/archiveofourown.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/archlinux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ardour.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/arduino.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/argo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/argos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ariakit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/arkecosystem.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/arlo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/arm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/armkeil.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/arstechnica.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/artifacthub.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/artixlinux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/artstation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/arxiv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/asahilinux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/asana.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/asciidoctor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/asciinema.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/asda.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aseprite.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/assemblyscript.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/asterisk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/astonmartin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/astra.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/astral.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/astro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/asus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/atandt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/atari.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/atlasos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/atlassian.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/auchan.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/audacity.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/audi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/audible.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/audiobookshelf.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/audioboom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/audiomack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/audiotechnica.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aurelia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/autentique.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/auth0.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/authelia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/authentik.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/autocad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/autocannon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/autodesk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/autodeskmaya.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/autodeskrevit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/autohotkey.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/autoit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/automattic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/autoprefixer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/autozone.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/avajs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/avaloniaui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/avast.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/avianca.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/avira.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/avm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/awesomelists.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/awesomewm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/awwwards.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/axios.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/axisbank.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/b4x.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/babel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/babelio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/babylondotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/backblaze.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/backbone.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/backbonedotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/backendless.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/backstage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/backstage_casting.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/badoo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/baidu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bakalari.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bamboo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bambulab.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bandcamp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bandlab.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bandrautomation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bandsintown.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bankofamerica.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/barclays.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/baremetrics.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/barmenia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/basecamp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/baserow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/basicattentiontoken.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bastyon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bata.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/battledotnet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bazel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/beatport.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/beats.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/beatsbydre.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/beatstars.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/beekeeperstudio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/behance.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/beijingsubway.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bem.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bentley.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bento.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bentobox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bentoml.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bereal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/betfair.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/betterauth.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/betterdiscord.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/betterstack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bevy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bigbasket.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bigbluebutton.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bigcartel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bigcommerce.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bilibili.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/billboard.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bim.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/binance.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bioconductor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/biolink.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/biome.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bisecthosting.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bitbucket.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bitcoin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bitcoincash.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bitcoinsv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bitcomet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bitdefender.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bitly.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bitrise.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bitsy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bittorrent.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bitwarden.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bitwig.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/black.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/blackberry.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/blackmagicdesign.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/blazemeter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/blazor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/blender.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/blibli.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/blockbench.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/blockchaindotcom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/blogger.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bloglovin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/blueprint.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bluesky.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bluesound.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bmcsoftware.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bmw.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bnbchain.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/boardgamegeek.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/boat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/boehringeringelheim.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/boeing.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bohemiainteractive.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bombardier.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bookalope.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bookbub.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bookingdotcom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bookmeter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bookmyshow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bookstack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/boost.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/boosty.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/boots.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bootstrap.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/borgbackup.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bosch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bose.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/botblecms.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/boulanger.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bower.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/box.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/boxysvg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/braintree.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/braintrust.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/brandfetch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/brandfolder.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/brave.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/breaker.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/brenntag.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/brevo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/brex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bricks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/britishairways.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/broadcom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bruno.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bsd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bspwm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/buddy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/budibase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/buefy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/buffer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bugatti.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bugcrowd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/buhl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/buildkite.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/builtbybit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bukalapak.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bulma.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bun.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bungie.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bunnydotnet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bunq.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/burgerking.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/burpsuite.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/burton.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/buymeacoffee.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/buysellads.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/buzzfeed.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bvg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/byjus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bytedance.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/c.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cachet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/caddy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cadillac.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cafepress.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cairographics.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cairometro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/caixabank.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cakephp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/caldotcom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/calendly.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/calibreweb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/campaignmonitor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/camunda.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/canonical.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/canvas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/capacitor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/caprover.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cardano.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cardmarket.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/carlsberggroup.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/carrd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/carrefour.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/carthrottle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/carto.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cashapp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/castbox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/castorama.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/castro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/caterpillar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cbc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cbs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ccc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ccleaner.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cdprojekt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ce.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/celery.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/celestron.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/centos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ceph.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cesium.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chai.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chainguard.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chainlink.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chakraui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/changedetection.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/channel4.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/charles.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chartdotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chartmogul.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chatbot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chatwoot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/checkio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/checkmarx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/checkmk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chedraui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cheerio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chef.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chemex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chessdotcom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chevrolet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chianetwork.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chinaeasternairlines.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chinasouthernairlines.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chocolatey.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chromatic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chromewebstore.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chrysler.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chupachups.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cilium.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cinema4d.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cinnamon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/circle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/circleci.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/circuitverse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cirrusci.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cisco.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/citrix.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/citroen.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/civicrm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/civo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/clarifai.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/claris.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/clarivate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/claude.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/clerk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/clevercloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/clickhouse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/clickup.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/clion.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/clockify.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/clojure.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cloud66.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cloudbees.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cloudcannon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cloudera.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cloudflare.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cloudflarepages.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cloudflareworkers.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cloudfoundry.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cloudinary.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cloudnativebuild.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cloudron.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cloudsmith.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cloudways.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/clubforce.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/clubhouse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/clyp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cmake.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cncf.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cnes.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cnet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cnn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cobalt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cocacola.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cockpit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cockroachlabs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cocoapods.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cocos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coda.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codacy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codeberg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codeblocks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codecademy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codeceptjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codechef.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codeclimate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codecov.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codecrafters.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codefactor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codeforces.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codefresh.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codeigniter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codemagic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codementor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codemirror.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codenewbie.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codeproject.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coder.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coderabbit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codersrank.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coderwall.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codesandbox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codeship.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codesignal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codestream.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codewars.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codingame.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codingninjas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coffeescript.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coggle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coinbase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coinmarketcap.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/collaboraonline.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/comicfury.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/comma.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/commerzbank.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/commitlint.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/commodore.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/commonlisp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/commonworkflowlanguage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/compilerexplorer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/composer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/comptia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/comsol.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/conan.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/concourse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/condaforge.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/conekta.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/confluence.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/construct3.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/consul.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/contabo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/contactlesspayment.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/containerd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/contao.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/contentful.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/contentstack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/continente.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/contributorcovenant.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/conventionalcommits.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/convertio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cookiecutter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coolermaster.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coolify.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coop.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/copaairlines.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coppel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cora.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coreldraw.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coronaengine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coronarenderer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/corsair.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/couchbase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/counterstrike.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/countingworkspro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coursera.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coveralls.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coze.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cpanel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cplusplus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cplusplusbuilder.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/craftcms.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/craftsman.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cratedb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/crayon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/creality.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/createreactapp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/creativecommons.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/creativetechnology.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/credly.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/crehana.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/crewai.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/crewunited.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/criticalrole.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/crowdin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/crowdsource.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/crunchbase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/crunchyroll.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cryengine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cryptomator.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cryptpad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/crystal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/csdn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/css.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cssdesignawards.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cssmodules.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/csswizardry.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cts.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cucumber.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cultura.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/curl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/curseforge.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cursor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/customink.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cyberdefenders.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cycling74.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cypress.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cytoscapedotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/d.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/d3.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dacia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/daf.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dailydotdev.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dailymotion.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/daisyui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dapr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/darkreader.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dart.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/darty.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/daserste.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dash.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dash0.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dashlane.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dask.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dassaultsystemes.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/databricks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/datacamp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/datadog.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/datadotai.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/datagrip.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dataiku.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/datastax.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/datefns.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/datev.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/datocms.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/datto.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/davinciresolve.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dazhongdianping.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dazn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dbeaver.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dblp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dcentertainment.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/debian.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/debridlink.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/decapcms.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/decentraland.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dedge.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deepcool.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deepgram.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deepin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deepl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deepmind.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deepnote.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deliveroo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dell.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/delonghi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/delphi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/delta.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deluge.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deno.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/denon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dependabot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dependencycheck.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/depositphotos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/derspiegel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deutschebahn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deutschebank.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deutschepost.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deutschetelekom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deutschewelle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/devbox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/devdotto.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/devexpress.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deviantart.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/devpost.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/devrant.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dgraph.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dhl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/diagramsdotnet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dialogflow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/diaspora.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dictionarydotcom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/digg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/digikeyelectronics.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/digitalocean.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dinersclub.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dior.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/directus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/discogs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/discord.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/discorddotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/discourse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/discover.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/disqus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/disroot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/distrobox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/distrokid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/django.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dji.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dlib.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dlna.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dmm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/docker.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/docsdotrs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/docsify.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/doctrine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/docusaurus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dodopayments.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dogecoin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/doi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dolby.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dolibarr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dolphin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/doordash.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dota2.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dotenv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dotnet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/douban.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/doubanread.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dovecot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dovetail.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/downdetector.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/doxygen.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dpd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dragonframe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/draugiemdotlv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dreamstime.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dribbble.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/drizzle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/drone.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/drooble.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dropbox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/drupal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dsautomobiles.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dts.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dtube.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ducati.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/duckdb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/duckduckgo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dungeonsanddragons.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dunked.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dunzo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/duolingo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/duplicati.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dvc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dwavesystems.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dwm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dynatrace.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/e.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/e3.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ea.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eac.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eagle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/easyeda.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/easyjet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ebay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ebox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eclipseadoptium.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eclipseche.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eclipseide.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eclipsejetty.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eclipsemosquitto.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eclipsevertdotx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ecosia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ecovacs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/edeka.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/edgeimpulse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/editorconfig.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/edotleclerc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/educative.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/edx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/egghead.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/egnyte.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eight.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eightsleep.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ejs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/elastic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/elasticcloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/elasticsearch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/elasticstack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/elavon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/electron.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/electronbuilder.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/electronfiddle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/elegoo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/element.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/elementary.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/elementor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/elevenlabs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eleventy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/elgato.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/elixir.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/elk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/elm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/elsevier.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/embarcadero.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/embark.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/emberdotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/emby.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/emirates.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/emlakjet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/endeavouros.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/enpass.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ens.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ente.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/enterprisedb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/envato.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/envoyproxy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/epel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/epicgames.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/epson.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/equinixmetal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eraser.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ericsson.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/erlang.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/erpnext.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/esbuild.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/esea.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eslgaming.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eslint.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/esotericsoftware.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/esphome.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/espressif.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/esri.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/etcd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ethereum.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ethers.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ethiopianairlines.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/etihadairways.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/etsy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/europeanunion.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eventstore.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/evernote.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/everydotorg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/excalidraw.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/exercism.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/exordo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/exoscale.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/expedia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/expensify.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/expertsexchange.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/expo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/express.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/expressdotcom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/expressvpn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eyeem.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/f1.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/f5.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/facebook.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/facebookgaming.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/facebooklive.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/faceit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/facepunch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fairphone.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/falco.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/falcon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fampay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fandango.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fandom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fanfou.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fantom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/farcaster.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fareharbor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/farfetch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fastapi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fastify.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fastlane.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fastly.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fathom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fauna.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/favro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fcc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fdroid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fedex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fedora.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/feedly.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ferrari.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ferrarinv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ferretdb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ffmpeg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fiat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fidoalliance.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fifa.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fig.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/figma.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/figshare.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fila.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/filament.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/filedotio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/filen.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/files.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/filezilla.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fillout.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fineco.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fing.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/firebase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/firefish.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fireflyiii.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/firefox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/firefoxbrowser.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fireship.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/firewalla.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/first.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fishaudio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fishshell.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fitbit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fivem.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fiverr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fizz.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/flashforge.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/flask.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/flat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/flathub.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/flatpak.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/flickr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/flightaware.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/flipboard.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/floatplane.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/flood.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/floorp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fluentbit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fluentd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fluke.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/flutter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/flux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/flydotio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/flyway.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fmod.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fnac.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/folium.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/folo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fonoma.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fontawesome.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fontbase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fontforge.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/foobar2000.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/foodpanda.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ford.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/forgejo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/formbricks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/formik.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/formspree.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/formstack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fortinet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fortnite.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fortran.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fossa.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fossilscm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/foundryvirtualtabletop.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/foursquare.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/foxtel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fozzy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/framer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/framework.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/framework7.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/franprix.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/frappe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fraunhofergesellschaft.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/freebsd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/freecad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/freecodecamp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/freedesktopdotorg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/freelancer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/freelancermap.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/freenas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/freenet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/freepik.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/freetube.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fresh.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/freshrss.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/frigate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fritz.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/frontendmentor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/frontify.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fsharp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fubo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fueler.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fugacloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fujifilm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fujitsu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/furaffinity.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/furrynetwork.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fusionauth.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/futurelearn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fyle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/g2.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/g2a.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/g2g.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/galaxus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gamebanana.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gamedeveloper.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gamejolt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gameloft.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gamemaker.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gamescience.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gandi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/garmin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/garudalinux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gatling.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gatsby.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gcore.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gdal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/geeksforgeeks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/generalelectric.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/generalmotors.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/genius.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gentoo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/geocaching.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/geode.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/geopandas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gerrit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/getx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ghost.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ghostery.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ghostty.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gimp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/giphy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/git.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gitbook.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gitcode.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gitconnected.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gitea.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gitee.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gitextensions.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gitforwindows.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/github.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/githubactions.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/githubcopilot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/githubpages.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/githubsponsors.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gitignoredotio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gitkraken.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gitlab.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gitlfs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gitpod.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gitter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/glance.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/glassdoor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gldotinet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gleam.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/glide.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/glitch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/globus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/glovo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gltf.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gmail.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gmx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gnome.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gnometerminal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gnu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gnubash.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gnuemacs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gnuicecat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gnuprivacyguard.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gnusocial.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/go.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gocd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/godaddy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/godotengine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gofundme.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gogdotcom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gojek.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/goland.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/goldmansachs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/goodreads.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/google.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googleadmob.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googleads.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googleadsense.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googleanalytics.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googleappsscript.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googleassistant.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googleauthenticator.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlebigquery.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlebigtable.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlecalendar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlecampaignmanager360.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlecardboard.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlecast.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlechat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlechrome.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlechronicle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googleclassroom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlecloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlecloudcomposer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlecloudspanner.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlecloudstorage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlecolab.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlecontaineroptimizedos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googledataflow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googledataproc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googledisplayandvideo360.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googledocs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googledrive.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googleearth.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googleearthengine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlefonts.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googleforms.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlegemini.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlehome.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlejules.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlekeep.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlelens.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlemaps.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlemarketingplatform.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlemeet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlemessages.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlenearby.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlenews.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlepay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlephotos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googleplay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlepubsub.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlescholar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlesearchconsole.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlesheets.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googleslides.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlestreetview.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlesummerofcode.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googletagmanager.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googletasks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googletranslate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googletv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gotomeeting.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gplv3.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/grab.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gradio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gradle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gradleplaypublisher.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/grafana.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/grammarly.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/grandfrais.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/grapheneos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/graphite.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/graphite_editor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/graphql.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/grav.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gravatar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/graylog.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/greasyfork.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/greatlearning.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/greenhouse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/greensock.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/greptimedb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/griddotai.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gridsome.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/grocy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/groupme.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/groupon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/grunt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gsap.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gsk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gsma.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gsmarenadotcom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gstreamer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gtk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/guangzhoumetro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/guilded.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/guitarpro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gulp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gumroad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gumtree.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gunicorn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gurobi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gusto.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gutenberg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/h2database.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/h3.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/habr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hackaday.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hackclub.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hackerearth.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hackernoon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hackerone.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hackerrank.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hackmd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hackster.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hackthebox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/handlebarsdotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/handm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/handshake.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/handshake_protocol.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/happycow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/harbor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/harmonyos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hashcat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hashicorp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hashnode.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/haskell.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hasura.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hatenabookmark.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/haveibeenpwned.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/havells.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/haxe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/haystack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hbo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hbomax.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hcl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hdfcbank.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/headlessui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/headphonezone.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/headspace.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hearth.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hearthisdotat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hedera.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hedgedoc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/helium.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/helix.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hellofresh.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hellyhansen.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/helm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/helpdesk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/helpscout.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hepsiemlak.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/here.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hermes.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/heroicgameslauncher.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/heroui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hetzner.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hevy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hexlet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hexo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hey.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hibernate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hibob.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hilton.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hiltonhotelsandresorts.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hitachi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hive.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hive_blockchain.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hivemq.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/homarr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/homeadvisor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/homeassistant.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/homeassistantcommunitystore.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/homebrew.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/homebridge.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/homepage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/homify.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/honda.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/honey.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/honeybadger.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/honeygain.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hono.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/honor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hootsuite.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hoppscotch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hostinger.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hotelsdotcom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hotjar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hotwire.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/houdini.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/houzz.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hsbc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/htc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/htcvive.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/html5.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/htmlacademy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/htmx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/htop.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/httpie.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/huawei.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hubspot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/huggingface.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hugo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/humblebundle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/humhub.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hungryjacks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/husqvarna.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hyper.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hyperskill.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hyperx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hypothesis.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hyprland.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hyundai.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/i18next.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/i3.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/iata.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ibeacon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/iberia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/iced.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/iceland.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/icicibank.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/icinga.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/icloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/icomoon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/icon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/iconfinder.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/iconify.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/iconjar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/icons8.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/icq.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ieee.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ifixit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ifood.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ifttt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/igdb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ign.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/iheartradio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ikea.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/iledefrancemobilites.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ilovepdf.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/imagedotsc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/imagej.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/imagetoolbox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/imdb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/imessage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/imgur.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/immer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/immersivetranslate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/immich.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/imou.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/improvmx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/indeed.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/indiansuperleague.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/indiehackers.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/indigo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/inductiveautomation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/inertia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/infiniti.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/infinityfree.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/influxdb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/infomaniak.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/infoq.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/infosys.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/infracost.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ingress.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/inkdrop.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/inkscape.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/inoreader.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/inquirer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/insomnia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/inspire.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/insta360.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/instacart.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/instagram.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/instapaper.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/instatus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/instructables.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/instructure.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/intel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/intellijidea.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/interactiondesignfoundation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/interactjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/interbase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/intercom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/intermarche.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/internetarchive.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/internetcomputer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/intigriti.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/intuit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/invidious.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/invoiceninja.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/iobroker.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ionic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ionos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ios.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/iota.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ipfs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/iris.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/irobot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/isc2.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/isro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/issuu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/istio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/itchdotio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/iterm2.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/itunes.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/itvx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/iveco.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jabber.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jaeger.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jameson.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jamstack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/japanairlines.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jasmine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/javascript.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jbl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jcb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jdoodle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jeep.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jekyll.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jellyfin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jenkins.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jest.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jetblue.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jetbrains.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jetpackcompose.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jfrog.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jfrogpipelines.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jhipster.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jinja.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jira.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jirasoftware.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jitpack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jitsi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/johndeere.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/joomla.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/joplin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jordan.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jouav.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jovian.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jpeg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jquery.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jrgroup.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jsdelivr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jsfiddle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/json.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jsonwebtokens.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jsr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jss.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/juce.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/juejin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/juke.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/julia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/junipernetworks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/junit5.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jupyter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/just.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/justeat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/justgiving.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/k3s.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/k6.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kaggle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kagi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kahoot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kaios.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kakao.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kakaotalk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kalilinux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kamailio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kando.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kaniko.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/karlsruherverkehrsverbund.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kasasmart.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kashflow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kaspersky.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/katana.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kaufland.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kde.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kdeneon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kdenlive.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kdeplasma.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kedro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/keenetic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/keepachangelog.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/keepassxc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/keeper.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/keeweb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kenmei.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kentico.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/keploy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/keras.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/keybase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/keycdn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/keycloak.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/keystone.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kfc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/khanacademy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/khronosgroup.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kibana.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kicad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kick.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kickstarter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kik.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kingstontechnology.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kinopoisk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kinsta.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kirby.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kitsu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kiwix.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/klarna.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kleinanzeigen.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/klm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/klook.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/knative.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/knexdotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/knime.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/knip.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/knowledgebase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/known.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/koa.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/koc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kodak.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kodi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/koenigsegg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kofax.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kofi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/komoot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/konami.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kong.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kongregate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/konva.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/koreader.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kotlin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/koyeb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kred.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/krita.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ktm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ktor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kuaishou.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kubernetes.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kubespray.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kubuntu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kucoin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kueski.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kuma.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kununu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kuula.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kyocera.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/labex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/labview.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lada.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lamborghini.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/langchain.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/langflow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/langgraph.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/languagetool.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lapce.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/laragon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/laravel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/laravelhorizon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/laravelnova.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lastdotfm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lastpass.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/latex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/launchpad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lazarus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lazyvim.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lbry.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/leaderprice.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/leaflet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/leagueoflegends.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/leanpub.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/leetcode.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lefthook.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/legacygames.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/leica.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lemmy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lemonsqueezy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lenovo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lens.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/leptos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lequipe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lerna.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/leroymerlin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/leslibraires.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/less.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/letsencrypt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/letterboxd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/levelsdotfyi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/liberadotchat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/liberapay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/librariesdotio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/librarything.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/libreoffice.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/libreofficebase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/libreofficecalc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/libreofficedraw.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/libreofficeimpress.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/libreofficemath.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/libreofficewriter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/libretranslate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/libretube.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/librewolf.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/libuv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lichess.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lidl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lifx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lightburn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lighthouse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lightning.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/limesurvey.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/line.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lineageos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/linear.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lining.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/linkerd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/linkfire.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/linksys.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/linktree.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/linphone.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lintcode.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/linux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/linuxcontainers.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/linuxfoundation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/linuxmint.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/linuxprofessionalinstitute.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/linuxserver.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lionair.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/liquibase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/listenhub.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/listmonk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/litecoin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/literal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/litiengine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/livechat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/livejournal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/livekit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/livewire.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/llvm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lmms.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lobsters.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/local.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/localsend.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/localxpose.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lodash.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/logmein.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/logseq.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/logstash.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/looker.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/loom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/loop.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/loopback.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lootcrate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lospec.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lotpolishairlines.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lottiefiles.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ltspice.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lua.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/luanti.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/luau.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lubuntu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lucia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lucid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lucide.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ludwig.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lufthansa.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lumen.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lunacy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/luogu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lutris.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lvgl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lydia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lyft.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/maas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/macos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/macpaw.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/macports.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/macys.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/magasinsu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/magic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/magisk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mahindra.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mailbox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mailchimp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/maildotcom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/maildotru.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mailgun.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mailtrap.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mainwp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/majorleaguehacking.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/make.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/makerbot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/malt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/malwarebytes.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mambaui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mamp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/man.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/manageiq.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mangacollec.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mangaupdates.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/manjaro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mantine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mapbox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mapillary.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/maplibre.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/maptiler.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mariadb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mariadbfoundation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/markdown.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/marko.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/marriott.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/marvelapp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/maserati.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mastercard.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mastercomfig.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mastodon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/materialdesign.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/materialdesignicons.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/materialformkdocs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/matillion.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/matomo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/matrix.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/matterdotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mattermost.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/matternet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mautic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/max.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/maxplanckgesellschaft.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/maytag.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mazda.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/maze.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mcafee.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mcdonalds.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mclaren.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mdblist.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mdbook.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mdnwebdocs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mdx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mealie.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mediafire.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mediamarkt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mediapipe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mediatek.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/medibangpaint.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/medium.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/medusa.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/meetup.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mega.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/meilisearch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/meituan.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/meizu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mendeley.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mentorcruise.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mercadopago.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/merck.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mercurial.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mermaid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/messenger.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/meta.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/metabase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/metacritic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/metafilter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/metager.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/metasploit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/meteor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/metro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/metrodelaciudaddemexico.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/metrodemadrid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/metrodeparis.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mewe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mezmo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/microbit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/microdotblog.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/microeditor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/micropython.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/microstation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/microstrategy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/midi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/migadu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mihon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mihoyo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mikrotik.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/milanote.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/milvus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/minds.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mingww64.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mini.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/minimax.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/minio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mintlify.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/minutemailer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/miraheze.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/miro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/misskey.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mistralai.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mitsubishi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mix.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mixcloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mixpanel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mlb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mlflow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mobx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mobxstatetree.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mocha.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mockserviceworker.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/modal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/modelcontextprotocol.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/modelscope.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/modin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/modrinth.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/modx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mojeek.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/moleculer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/momenteo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/monero.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/moneygram.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mongodb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mongoose.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mongoosedotws.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/monica.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/monkeytie.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/monkeytype.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/monogame.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/monoprix.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/monster.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/monzo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/moo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/moodle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/moonrepo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/moq.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/moqups.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/morrisons.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/moscowmetro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/motorola.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/movistar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mozilla.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mpv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mqtt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/msi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/msibusiness.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mta.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mtr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mubi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/muller.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mullvad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/multisim.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mumble.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/muo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mural.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/musicbrainz.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mxlinux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/myanimelist.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/myget.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/myob.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/myshows.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/myspace.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mysql.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/n26.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/n8n.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/namebase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/namecheap.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/namemc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/namesilo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/namuwiki.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nano.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nanostores.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/napster.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nasa.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nationalgrid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nationalrail.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nativescript.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/natsdotio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/naver.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nba.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nbb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nbc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ndr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/near.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nebula.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nec.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nederlandsespoorwegen.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/neo4j.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/neovim.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/neptune.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nestjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/netapp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/netbsd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/netcup.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/netdata.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/neteasecloudmusic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/netflix.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/netgear.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/netim.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/netlify.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nette.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/netto.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/neutralinojs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/newbalance.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/newegg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/newgrounds.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/newjapanprowrestling.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/newpipe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/newrelic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/newyorktimes.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nexon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nextbike.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nextbilliondotai.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nextcloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nextdns.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nextdoor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nextdotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nextflow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nextra.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nfc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nfcore.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nginx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nginxproxymanager.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ngrok.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ngrx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nhl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nhost.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nicehash.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/niconico.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nike.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nikon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nim.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nissan.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nixos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nobaralinux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nodebb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nodedotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nodegui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nodemon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nodered.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nokia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nomad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/norco.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nordicsemiconductor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nordvpn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/normalizedotcss.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/norton.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/norwegian.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/note.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/notebooklm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/notepadplusplus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/notion.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/notist.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nounproject.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/novu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/now.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/npm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nrwl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nsis.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ntfy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nubank.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nucleo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nuget.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nuke.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/numba.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/numpy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nunjucks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nushell.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nutanix.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nuxt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nvidia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nvm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nxp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nzxt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/o2.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/obb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/observable.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/obsidian.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/obsstudio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/obtainium.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ocaml.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/oclc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/oclif.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/octanerender.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/octave.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/octobercms.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/octoprint.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/octopusdeploy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/oculus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/odin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/odnoklassniki.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/odoo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/odysee.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ohdear.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/okcupid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/okta.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/okx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ollama.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/omadacloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/oneplus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/onestream.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/onlyfans.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/onlyoffice.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/onnx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/onstar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/open3d.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openaccess.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openaigym.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openapiinitiative.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openbadges.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openbsd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openbugbounty.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opencage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opencollective.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opencontainersinitiative.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opencritic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opencv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openfaas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opengl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openhab.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openjdk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openjsfoundation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openlayers.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openmediavault.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openmined.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opennebula.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openproject.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openrouter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openscad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opensea.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opensearch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opensourcehardware.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opensourceinitiative.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openssl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openstack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openstreetmap.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opensuse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opentelemetry.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opentext.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opentofu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openverse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openvpn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openwrt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openzeppelin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openzfs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opera.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/operagx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opnsense.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/oppo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opsgenie.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opslevel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/optimism.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/optuna.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/orange.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/orcid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/oreilly.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/org.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/organicmaps.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/origin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/osano.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/osf.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/osgeo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/oshkosh.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/osmand.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/osmc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/osu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/otto.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/outline.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/overcast.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/overleaf.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ovh.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/owasp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/owncloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/oxc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/oxygen.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/oyo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/p5dotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/packagist.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/packer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/packt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paddle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paddlepaddle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paddypower.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/padlet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pagekit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pagerduty.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pagespeedinsights.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pagseguro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/palantir.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paloaltonetworks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paloaltosoftware.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/panasonic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pandas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pandora.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pantheon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paperlessngx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paperspace.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paperswithcode.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paradoxinteractive.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paramountplus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paritysubstrate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/parrotsecurity.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/parsedotly.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/passbolt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/passport.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pastebin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/patreon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/payback.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paychex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/payhip.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/payloadcms.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/payoneer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paypal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paysafe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paytm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pcgamingwiki.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pdm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pdq.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/peakdesign.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pearson.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/peerlist.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/peertube.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pegasusairlines.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pelican.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/peloton.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/penny.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/penpot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/percy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/perforce.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/perl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/perplexity.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/persistent.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/personio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/petsathome.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/peugeot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pexels.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pfsense.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/phabricator.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/philipshue.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/phoenixframework.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/phonepe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/phosphoricons.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/photobucket.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/photocrowd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/photon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/photopea.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/php.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/phpbb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/phpmyadmin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/phpstorm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/piaggiogroup.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/piapro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/picardsurgeles.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/picartodottv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/picnic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/picpay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/picrew.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/picsart.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/picxy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pihole.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pimcore.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pinboard.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pinescript.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pinetwork.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pingdom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pinia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pino.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pinterest.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pioneerdj.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/piped.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pipx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pivotaltracker.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/piwigo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pix.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pixabay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pixelfed.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pixiv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pixlr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pkgsrc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/plane.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/planet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/planetscale.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/plangrid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/platformdotsh.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/platformio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/platzi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/plausibleanalytics.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/playcanvas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/playerdotme.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/playerfm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/playstation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/playstation2.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/playstation3.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/playstation4.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/playstation5.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/playstationportable.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/playstationvita.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pleroma.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/plesk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/plex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/plotly.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/plume.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pluralsight.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/plurk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pm2.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pnpm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pocketbase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pocketcasts.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/podcastaddict.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/podcastindex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/podman.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/poe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/poetry.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/polars.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/polestar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/polkadot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/poly.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/polygon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/polymerproject.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/polywork.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pomerium.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pond5.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/popos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/porkbun.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/porsche.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/portableappsdotcom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/portainer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/portswigger.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/posit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/postcss.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/postgresql.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/posthog.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/postiz.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/postman.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/postmates.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/powers.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/prdotco.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/preact.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/precommit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/prefect.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/premid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/premierleague.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/prepbytes.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/prestashop.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/presto.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/prettier.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pretzel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/prevention.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/prezi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/primefaces.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/primeng.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/primereact.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/primevue.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/printables.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/prisma.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/prismic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/privatedivision.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/privateinternetaccess.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/probot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/processingfoundation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/processon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/processwire.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/producthunt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/progate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/progress.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/prometheus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pronounsdotpage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/prosieben.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/proteus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/protocolsdotio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/protodotio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/proton.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/protoncalendar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/protondb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/protondrive.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/protonmail.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/protonvpn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/protools.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/protractor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/proxmox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pterodactyl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pubg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/publons.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pubmed.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pug.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pulumi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/puma.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/puppet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/puppeteer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/purescript.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/purgecss.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/purism.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pushbullet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pusher.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pwa.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pycharm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pycqa.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pydantic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pyg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pypi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pypy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pyscaffold.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pysyft.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pytest.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/python.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pythonanywhere.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pytorch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pyup.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qantas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qatarairways.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qbittorrent.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qemu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qgis.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qiita.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qiskit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qiwi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qlik.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qlty.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qmk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qnap.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qodo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qq.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/quad9.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qualcomm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qualtrics.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qualys.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/quantcast.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/quantconnect.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/quarkus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/quarto.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/quasar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qubesos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/quest.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/quickbooks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/quicklook.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/quicktime.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/quicktype.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/quizlet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/quora.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qwant.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qwik.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qwiklabs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qzone.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/r.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/r3.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rabbitmq.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/racket.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/radar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/radarr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/radiofrance.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/radixui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/radstudio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/railway.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rainmeter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rainyun.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rakuten.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rakutenkobo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ram.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rancher.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rapid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rarible.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rasa.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/raspberrypi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ratatui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ravelry.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ray.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/raycast.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/raylib.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/razer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/razorpay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rclone.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/react.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/reactbootstrap.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/reacthookform.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/reactiveresume.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/reactivex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/reactos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/reactquery.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/reactrouter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/reacttable.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/readdotcv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/readme.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/readthedocs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/reason.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/reasonstudios.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/recoil.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/red.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/redash.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/redbubble.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/redbull.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/redcandlegames.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/reddit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/redhat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/redhatopenshift.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/redis.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/redmine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/redox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/redragon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/redsys.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/redux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/reduxsaga.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/redwoodjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/reebok.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/refine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/refinedgithub.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rekaui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/relay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/relianceindustrieslimited.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/remark.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/remedyentertainment.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/remix.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/removedotbg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/renault.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/render.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/renovate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/renpy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/renren.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/replicate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/replit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/republicofgamers.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rescript.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rescuetime.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/researchgate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/resend.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/resharper.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/resurrectionremixos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/retool.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/retroachievements.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/retroarch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/retropie.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/revanced.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/revealdotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/revenuecat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/reverbnation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/revoltdotchat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/revolut.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rewe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rezgo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rhinoceros.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rich.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rider.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rimacautomobili.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rime.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ring.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/riotgames.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ripple.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/riscv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/riseup.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ritzcarlton.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rive.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/roadmapdotsh.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/roamresearch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/robinhood.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/roblox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/robloxstudio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/roboflow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/robotframework.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rocket.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rocketdotchat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rocksdb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rockstargames.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rockwellautomation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rockylinux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/roku.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/roll20.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rollbar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rolldown.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rollsroyce.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rollupdotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rook.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/roon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/root.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rootme.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/roots.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rootsbedrock.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rootssage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ros.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rossmann.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rotaryinternational.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rottentomatoes.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/roundcube.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rsocket.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rss.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rstudioide.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rte.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rtl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rtlzwei.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rtm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rubocop.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ruby.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rubygems.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rubymine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rubyonrails.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rubysinatra.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ruff.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rumahweb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rumble.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rundeck.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/runkeeper.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/runkit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/runrundotit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rust.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rustdesk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rxdb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ryanair.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rye.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/s7airlines.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sabanci.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/safari.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sagemath.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sahibinden.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sailfishos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sailsdotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/salla.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/saltproject.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/samsclub.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/samsung.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/samsungpay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sanfranciscomunicipalrailway.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sanic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sanity.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/saopaulometro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sap.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sartorius.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sass.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sat1.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/satellite.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/saturn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/saucelabs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/saudia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scala.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scalar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scaleway.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scania.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/schneiderelectric.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scikitlearn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scilab.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scipy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scopus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scpfoundation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scrapbox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scrapy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scratch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/screencastify.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scrimba.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scrollreveal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scrumalliance.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scrutinizerci.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scylladb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/seafile.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/seagate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/searxng.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/seat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/seatgeek.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/securityscorecard.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sefaria.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sega.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/selenium.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sellfy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/semanticrelease.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/semanticscholar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/semanticui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/semanticuireact.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/semanticweb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/semaphoreci.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/semrush.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/semver.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sencha.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sennheiser.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sensu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sentry.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sepa.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sequelize.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/servbay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/serverfault.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/serverless.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/session.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sessionize.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/setapp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/setuptools.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sfml.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/shadcnui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/shadow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/shanghaimetro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sharex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sharp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/shazam.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/shell.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/shelly.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/shenzhenmetro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/shieldsdotio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/shikimori.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/shopee.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/shopify.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/shopware.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/shortcut.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/showpad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/showtime.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/showwcase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sidekiq.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sidequest.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/siemens.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sifive.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/signal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/silverairways.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/similarweb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/simkl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/simpleanalytics.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/simpleicons.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/simplelocalize.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/simplelogin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/simplenote.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/simplex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sinaweibo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/singaporeairlines.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/singlestore.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sitecore.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sitepoint.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/siyuan.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/skaffold.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/skeleton.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sketch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sketchfab.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sketchup.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/skillshare.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/skoda.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sky.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/skypack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/slackware.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/slashdot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/slickpic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/slides.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/slideshare.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/slint.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/smart.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/smartthings.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/smashingmagazine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/smoothcomp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/smrt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/smugmug.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/snapchat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/snapcraft.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/snapdragon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sncf.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/snort.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/snowflake.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/snowpack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/snyk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/socialblade.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/society6.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/socket.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/socketdotio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/softcatala.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/softpedia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sogou.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/solana.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/solid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/solidity.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sololearn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/solus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sonar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sonarqubecloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sonarqubeforide.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sonarqubeserver.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sonarr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sonatype.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/songkick.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/songoda.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sonicwall.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sonos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sony.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/soriana.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/soundcharts.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/soundcloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sourceengine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sourceforge.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sourcehut.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sourcetree.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/southwestairlines.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spacemacs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spaceship.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spacex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spacy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sparkar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sparkasse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sparkfun.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sparkpost.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spdx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/speakerdeck.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spectrum.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/speedtest.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/speedypage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sphinx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spigotmc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spinnaker.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/splunk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spoj.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spond.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spotify.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spotlight.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spreadshirt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spreaker.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spring.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spring_creators.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/springboot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/springsecurity.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spyderide.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sqlalchemy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sqlite.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/square.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/squareenix.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/squarespace.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/srgssr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ssrn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sst.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stackbit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stackblitz.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stackedit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stackexchange.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stackhawk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stackoverflow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stackshare.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stadia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/staffbase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stagetimer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/standardjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/standardresume.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/starbucks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stardock.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/starlingbank.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/starship.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/startdotgg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/startpage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/startrek.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/starz.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/statamic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/statista.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/statuspage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/statuspal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/steam.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/steamdb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/steamdeck.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/steamworks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/steelseries.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/steem.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/steemit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/steinberg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stellar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stencil.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stencyl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stimulus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stmicroelectronics.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stockx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stopstalk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/storyblok.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/storybook.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/strapi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/strava.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/streamlabs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/streamlit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/streamrunners.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stremio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stripe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/strongswan.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stryker.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stubhub.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/studio3t.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/styledcomponents.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stylelint.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/styleshare.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stylus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/subaru.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sublimetext.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/substack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/subtitleedit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/subversion.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/suckless.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/suitest.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sumologic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/suno.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sunrise.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/supabase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/supercrease.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/supermicro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/superuser.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/surfshark.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/surrealdb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/surveymonkey.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/suse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/suzuki.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/svelte.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/svg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/svgdotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/svgo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/svgtrace.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/swagger.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/swarm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sway.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/swc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/swift.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/swiggy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/swiper.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/swisscows.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/swr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/symantec.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/symbolab.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/symfony.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/symphony.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sympy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/syncthing.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/synology.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/system76.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tabelog.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tablecheck.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tacobell.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tado.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/taichigraphics.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/taichilang.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tails.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tailscale.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tailwindcss.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/taipy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/taketwointeractivesoftware.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/talend.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/talenthouse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/talos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tamiya.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tampermonkey.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tanstack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/taobao.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tapas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/target.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tarom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/task.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tasmota.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tata.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tauri.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/taxbuzz.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tcs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/teal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/teamcity.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/teamspeak.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/teamviewer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/techcrunch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ted.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/teepublic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/teespring.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tekton.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tele5.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/telefonica.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/telegram.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/telegraph.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/telenor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/telequebec.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/temporal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tensorflow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/teradata.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/teratail.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/termius.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/terraform.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tesco.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tesla.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/testcafe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/testin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/testinglibrary.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/testrail.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tether.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/textpattern.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/textual.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tga.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thangs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thanos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thealgorithms.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/theboringcompany.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/theconversation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thefinals.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/theguardian.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/theirishtimes.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/themighty.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/themodelsresource.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/themoviedatabase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thenorthface.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/theodinproject.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/theplanetarysociety.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/theregister.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thesoundsresource.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thespritersresource.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thestorygraph.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thewashingtonpost.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/theweatherchannel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thingiverse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thinkpad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thirdweb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/threadless.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/threads.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/threedotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/threema.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thumbtack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thunderbird.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thunderstore.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thurgauerkantonalbank.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thymeleaf.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ticketmaster.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ticktick.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tidal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tiddlywiki.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tide.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tidyverse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tietoevry.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tiktok.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tildapublishing.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tile.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/timescale.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tina.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tinder.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tindie.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tinkercad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tinygrad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tinyletter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tistory.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tldraw.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tmux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/todoist.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/toggl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/toggltrack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tokio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tokyometro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/toll.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/toml.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tomorrowland.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tomtom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ton.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/topcoder.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/topdotgg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/toptal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/torbrowser.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/torizon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/torproject.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/toshiba.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/totvs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tourbox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tower.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/toyota.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tplink.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tqdm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/traccar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tradingview.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/traefikmesh.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/traefikproxy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trailforks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trainerroad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trakt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/transifex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/transmission.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/transportforireland.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/transportforlondon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/travisci.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/treehouse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trello.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trendmicro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tresorit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/treyarch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tricentis.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trilium.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/triller.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trillertv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trimble.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trino.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tripadvisor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tripdotcom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trivago.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trivy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trove.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trpc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/truenas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trueup.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trulia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trustedshops.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trustpilot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tryhackme.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tryitonline.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tsnode.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tubi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tumblr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/turbo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/turborepo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/turbosquid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/turkishairlines.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/turso.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tuta.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tuxedocomputers.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tv4play.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tvtime.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/twenty.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/twinkly.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/twinmotion.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/twitch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/typeform.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/typeorm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/typer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/typescript.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/typo3.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/typst.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/uber.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ubereats.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ubiquiti.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ubisoft.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ublockorigin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ubuntu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ubuntumate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/udacity.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/udemy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/udotsdotnews.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ufc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/uikit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/uipath.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ukca.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ultralytics.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ulule.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/umami.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/umbraco.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/umbrel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/uml.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/unacademy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/underarmour.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/underscoredotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/undertale.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/unicode.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/unilever.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/uniqlo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/uniqlo_ja.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/unitedairlines.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/unitednations.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/unity.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/unjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/unlicense.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/unocss.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/unpkg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/unraid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/unrealengine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/unsplash.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/unstop.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/untappd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/upcloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/uphold.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/uplabs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/upptime.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ups.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/upstash.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/uptimekuma.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/upwork.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/uservoice.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/usps.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/utorrent.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/uv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/v.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/v0.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/v2ex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/v8.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vaadin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vagrant.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vala.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/valorant.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/valve.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vanillaextract.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vapor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vault.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vaultwarden.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vauxhall.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vbulletin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vectary.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vectorlogozone.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vectorworks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/veeam.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/veed.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/veepee.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vega.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vegas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/velocity.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/velog.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vencord.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/venmo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vercel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/verdaccio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/veritas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/verizon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vespa.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vestel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vexxhost.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vfairs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/viadeo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/viaplay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/viber.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/viblo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/victoriametrics.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/victronenergy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vikunja.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vim.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vimeo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vimeolivestream.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vinted.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/virgin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/virginatlantic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/virginmedia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/virtualbox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/virustotal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/visa.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/visualparadigm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/visx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vite.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vitepress.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vitess.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vitest.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vivaldi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vivawallet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vivino.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vivint.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vivo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vlcmediaplayer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vmware.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vodafone.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/voelkner.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/voidlinux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/voipdotms.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/volkswagen.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/volvo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vonage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vorondesign.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vowpalwabbit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vrchat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vsco.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vscodium.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vtex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vuedotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vuetify.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vueuse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vulkan.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vultr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vyond.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/w3schools.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wacom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wagmi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wagtail.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wails.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wakatime.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/walkman.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wallabag.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/walletconnect.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wantedly.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wappalyzer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/warp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wasabi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wasmcloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wasmer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/watchtower.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wattpad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wayland.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/waze.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wazirx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wearos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/weasyl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/web3dotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webassembly.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webauthn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webawesome.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webcomponentsdotorg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webdotde.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webdriverio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webflow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webgl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webgpu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/weblate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webmin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webmoney.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webpack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webrtc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webstorm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webtoon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webtrees.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wechat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wegame.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/weightsandbiases.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/welcometothejungle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wellfound.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wellsfargo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wemo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/weread.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/westernunion.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wetransfer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wezterm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wgpu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/what3words.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/whatsapp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wheniwork.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wikibooks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wikidata.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wikidotgg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wikidotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wikimediacommons.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wikimediafoundation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wikipedia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wikiquote.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wikisource.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wikiversity.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wikivoyage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/winamp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/windsurf.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wipro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wire.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wireguard.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wireshark.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wise.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wish.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wistia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wix.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wizzair.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wolfram.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wolframlanguage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wolframmathematica.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wondershare.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wondersharefilmora.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/woo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/woocommerce.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wordpress.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/workplace.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/worldhealthorganization.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wpengine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wpexplorer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wprocket.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/writedotas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wwe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wwise.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wxt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wykop.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wyze.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/x.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xampp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xcode.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xdadevelopers.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xdotorg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xendit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xero.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xfce.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xiaohongshu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xiaomi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xing.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xml.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xmpp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xrp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xsplit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xstate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xubuntu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xyflow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yaak.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yabai.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yale.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yamahacorporation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yamahamotorcorporation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yaml.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yandexcloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yarn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ycombinator.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yelp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yeti.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yii.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yoast.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yolo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/youhodler.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/youtube.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/youtubegaming.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/youtubekids.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/youtubemusic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/youtubeshorts.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/youtubestudio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/youtubetv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yubico.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yunohost.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zabka.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zaim.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zalando.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zalo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zap.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zapier.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zara.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zazzle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zcash.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zcool.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zdf.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zebpay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zebratechnologies.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zedindustries.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zelle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zenbrowser.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zend.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zendesk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zenn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zenodo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zensar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zerodha.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zerotier.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zettlr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zhihu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zig.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zigbee.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zigbee2mqtt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ziggo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zilch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zillow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zincsearch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zingat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zod.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zoho.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zoiper.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zola.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zomato.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zoom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zorin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zotero.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zsh.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zulip.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zyte.svg +1 -0
- docsforge/themes/material/templates/404.html +7 -0
- docsforge/themes/material/templates/__init__.py +70 -0
- docsforge/themes/material/templates/assets/images/favicon.png +0 -0
- docsforge/themes/material/templates/assets/javascripts/bundle.79ae519e.min.js +16 -0
- docsforge/themes/material/templates/assets/javascripts/bundle.79ae519e.min.js.map +7 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.ar.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.da.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.de.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.du.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.el.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.es.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.fi.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.fr.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.he.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.hi.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.hu.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.hy.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.it.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.ja.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.jp.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.kn.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.ko.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.multi.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.nl.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.no.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.pt.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.ro.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.ru.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.sa.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.stemmer.support.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.sv.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.ta.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.te.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.th.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.tr.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.vi.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.zh.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/tinyseg.js +206 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/wordcut.js +6708 -0
- docsforge/themes/material/templates/assets/javascripts/workers/search.2c215733.min.js +42 -0
- docsforge/themes/material/templates/assets/javascripts/workers/search.2c215733.min.js.map +7 -0
- docsforge/themes/material/templates/assets/stylesheets/main.484c7ddc.min.css +1 -0
- docsforge/themes/material/templates/assets/stylesheets/main.484c7ddc.min.css.map +1 -0
- docsforge/themes/material/templates/assets/stylesheets/palette.ab4e12ef.min.css +1 -0
- docsforge/themes/material/templates/assets/stylesheets/palette.ab4e12ef.min.css.map +1 -0
- docsforge/themes/material/templates/base.html +259 -0
- docsforge/themes/material/templates/blog-post.html +138 -0
- docsforge/themes/material/templates/blog.html +21 -0
- docsforge/themes/material/templates/fragments/tags/default/listing.html +19 -0
- docsforge/themes/material/templates/fragments/tags/default/tag.html +16 -0
- docsforge/themes/material/templates/main.html +4 -0
- docsforge/themes/material/templates/mkdocs_theme.yml +50 -0
- docsforge/themes/material/templates/partials/actions.html +22 -0
- docsforge/themes/material/templates/partials/alternate.html +22 -0
- docsforge/themes/material/templates/partials/comments.html +3 -0
- docsforge/themes/material/templates/partials/consent.html +71 -0
- docsforge/themes/material/templates/partials/content.html +12 -0
- docsforge/themes/material/templates/partials/copyright.html +16 -0
- docsforge/themes/material/templates/partials/feedback.html +47 -0
- docsforge/themes/material/templates/partials/footer.html +56 -0
- docsforge/themes/material/templates/partials/header.html +69 -0
- docsforge/themes/material/templates/partials/icons.html +52 -0
- docsforge/themes/material/templates/partials/integrations/analytics/google.html +7 -0
- docsforge/themes/material/templates/partials/integrations/analytics.html +14 -0
- docsforge/themes/material/templates/partials/javascripts/announce.html +4 -0
- docsforge/themes/material/templates/partials/javascripts/base.html +4 -0
- docsforge/themes/material/templates/partials/javascripts/consent.html +4 -0
- docsforge/themes/material/templates/partials/javascripts/content.html +7 -0
- docsforge/themes/material/templates/partials/javascripts/outdated.html +4 -0
- docsforge/themes/material/templates/partials/javascripts/palette.html +4 -0
- docsforge/themes/material/templates/partials/language.html +6 -0
- docsforge/themes/material/templates/partials/languages/af.html +56 -0
- docsforge/themes/material/templates/partials/languages/ar.html +57 -0
- docsforge/themes/material/templates/partials/languages/az.html +55 -0
- docsforge/themes/material/templates/partials/languages/be.html +57 -0
- docsforge/themes/material/templates/partials/languages/bg.html +56 -0
- docsforge/themes/material/templates/partials/languages/bn.html +56 -0
- docsforge/themes/material/templates/partials/languages/ca.html +55 -0
- docsforge/themes/material/templates/partials/languages/cs.html +55 -0
- docsforge/themes/material/templates/partials/languages/cy.html +55 -0
- docsforge/themes/material/templates/partials/languages/da.html +56 -0
- docsforge/themes/material/templates/partials/languages/de.html +57 -0
- docsforge/themes/material/templates/partials/languages/el.html +55 -0
- docsforge/themes/material/templates/partials/languages/en.html +60 -0
- docsforge/themes/material/templates/partials/languages/eo.html +56 -0
- docsforge/themes/material/templates/partials/languages/es.html +56 -0
- docsforge/themes/material/templates/partials/languages/et.html +55 -0
- docsforge/themes/material/templates/partials/languages/eu.html +55 -0
- docsforge/themes/material/templates/partials/languages/fa.html +57 -0
- docsforge/themes/material/templates/partials/languages/fi.html +56 -0
- docsforge/themes/material/templates/partials/languages/fr.html +56 -0
- docsforge/themes/material/templates/partials/languages/gl.html +56 -0
- docsforge/themes/material/templates/partials/languages/he.html +57 -0
- docsforge/themes/material/templates/partials/languages/hi.html +56 -0
- docsforge/themes/material/templates/partials/languages/hr.html +55 -0
- docsforge/themes/material/templates/partials/languages/hu.html +56 -0
- docsforge/themes/material/templates/partials/languages/hy.html +56 -0
- docsforge/themes/material/templates/partials/languages/id.html +56 -0
- docsforge/themes/material/templates/partials/languages/is.html +55 -0
- docsforge/themes/material/templates/partials/languages/it.html +56 -0
- docsforge/themes/material/templates/partials/languages/ja.html +58 -0
- docsforge/themes/material/templates/partials/languages/ka.html +48 -0
- docsforge/themes/material/templates/partials/languages/kn.html +55 -0
- docsforge/themes/material/templates/partials/languages/ko.html +56 -0
- docsforge/themes/material/templates/partials/languages/ku-IQ.html +44 -0
- docsforge/themes/material/templates/partials/languages/lb.html +56 -0
- docsforge/themes/material/templates/partials/languages/lt.html +56 -0
- docsforge/themes/material/templates/partials/languages/lv.html +55 -0
- docsforge/themes/material/templates/partials/languages/mk.html +56 -0
- docsforge/themes/material/templates/partials/languages/mn.html +55 -0
- docsforge/themes/material/templates/partials/languages/ms.html +55 -0
- docsforge/themes/material/templates/partials/languages/my.html +56 -0
- docsforge/themes/material/templates/partials/languages/nb.html +56 -0
- docsforge/themes/material/templates/partials/languages/nl.html +56 -0
- docsforge/themes/material/templates/partials/languages/nn.html +56 -0
- docsforge/themes/material/templates/partials/languages/pl.html +56 -0
- docsforge/themes/material/templates/partials/languages/pt-BR.html +56 -0
- docsforge/themes/material/templates/partials/languages/pt.html +56 -0
- docsforge/themes/material/templates/partials/languages/ro.html +56 -0
- docsforge/themes/material/templates/partials/languages/ru.html +56 -0
- docsforge/themes/material/templates/partials/languages/sa.html +55 -0
- docsforge/themes/material/templates/partials/languages/sh.html +55 -0
- docsforge/themes/material/templates/partials/languages/si.html +31 -0
- docsforge/themes/material/templates/partials/languages/sk.html +55 -0
- docsforge/themes/material/templates/partials/languages/sl.html +56 -0
- docsforge/themes/material/templates/partials/languages/sq.html +56 -0
- docsforge/themes/material/templates/partials/languages/sr.html +55 -0
- docsforge/themes/material/templates/partials/languages/sv.html +56 -0
- docsforge/themes/material/templates/partials/languages/ta.html +56 -0
- docsforge/themes/material/templates/partials/languages/te.html +55 -0
- docsforge/themes/material/templates/partials/languages/th.html +56 -0
- docsforge/themes/material/templates/partials/languages/tl.html +52 -0
- docsforge/themes/material/templates/partials/languages/tr.html +56 -0
- docsforge/themes/material/templates/partials/languages/uk.html +55 -0
- docsforge/themes/material/templates/partials/languages/ur.html +57 -0
- docsforge/themes/material/templates/partials/languages/uz.html +56 -0
- docsforge/themes/material/templates/partials/languages/vi.html +56 -0
- docsforge/themes/material/templates/partials/languages/zh-Hant.html +57 -0
- docsforge/themes/material/templates/partials/languages/zh-TW.html +57 -0
- docsforge/themes/material/templates/partials/languages/zh.html +57 -0
- docsforge/themes/material/templates/partials/logo.html +9 -0
- docsforge/themes/material/templates/partials/nav-item.html +170 -0
- docsforge/themes/material/templates/partials/nav.html +30 -0
- docsforge/themes/material/templates/partials/pagination.html +20 -0
- docsforge/themes/material/templates/partials/palette.html +16 -0
- docsforge/themes/material/templates/partials/path-item.html +29 -0
- docsforge/themes/material/templates/partials/path.html +23 -0
- docsforge/themes/material/templates/partials/post.html +68 -0
- docsforge/themes/material/templates/partials/progress.html +4 -0
- docsforge/themes/material/templates/partials/search.html +42 -0
- docsforge/themes/material/templates/partials/social.html +27 -0
- docsforge/themes/material/templates/partials/source-file.html +110 -0
- docsforge/themes/material/templates/partials/source.html +12 -0
- docsforge/themes/material/templates/partials/tabs-item.html +37 -0
- docsforge/themes/material/templates/partials/tabs.html +13 -0
- docsforge/themes/material/templates/partials/tags.html +31 -0
- docsforge/themes/material/templates/partials/toc-item.html +25 -0
- docsforge/themes/material/templates/partials/toc.html +25 -0
- docsforge/themes/material/templates/partials/top.html +8 -0
- docsforge/themes/material/templates/redirect.html +16 -0
- docsforge/utilities/__init__.py +30 -0
- docsforge/utilities/filter/__init__.py +135 -0
- docsforge/utilities/filter/config.py +58 -0
- docsforge/utils/__init__.py +403 -0
- docsforge/utils/babel_stub.py +29 -0
- docsforge/utils/cache.py +75 -0
- docsforge/utils/filters.py +1 -0
- docsforge/utils/meta.py +102 -0
- docsforge/utils/rendering.py +104 -0
- docsforge/utils/templates.py +57 -0
- docsforge/utils/yaml.py +165 -0
- docsforge-9.7.6.dist-info/METADATA +203 -0
- docsforge-9.7.6.dist-info/RECORD +14911 -0
- docsforge-9.7.6.dist-info/WHEEL +4 -0
- docsforge-9.7.6.dist-info/entry_points.txt +56 -0
- docsforge-9.7.6.dist-info/licenses/LICENSE +17 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.23 12.004a2.236 2.236 0 0 1-2.235 2.236 2.236 2.236 0 0 1-2.236-2.236 2.236 2.236 0 0 1 2.235-2.236 2.236 2.236 0 0 1 2.236 2.236m2.648-10.69c-1.346 0-3.107.96-4.888 2.622-1.78-1.653-3.542-2.602-4.887-2.602-.41 0-.783.093-1.106.278-1.375.793-1.683 3.264-.973 6.365C1.98 8.917 0 10.42 0 12.004c0 1.59 1.99 3.097 5.043 4.03-.704 3.113-.39 5.588.988 6.38.32.187.69.275 1.102.275 1.345 0 3.107-.96 4.888-2.624 1.78 1.654 3.542 2.603 4.887 2.603.41 0 .783-.09 1.106-.275 1.374-.792 1.683-3.263.973-6.365C22.02 15.096 24 13.59 24 12.004c0-1.59-1.99-3.097-5.043-4.032.704-3.11.39-5.587-.988-6.38a2.17 2.17 0 0 0-1.092-.278zm-.005 1.09v.006c.225 0 .406.044.558.127.666.382.955 1.835.73 3.704-.054.46-.142.945-.25 1.44a23.5 23.5 0 0 0-3.107-.534A24 24 0 0 0 12.769 4.7c1.592-1.48 3.087-2.292 4.105-2.295zm-9.77.02c1.012 0 2.514.808 4.11 2.28-.686.72-1.37 1.537-2.02 2.442a23 23 0 0 0-3.113.538 15 15 0 0 1-.254-1.42c-.23-1.868.054-3.32.714-3.707.19-.09.4-.127.563-.132zm4.882 3.05q.684.704 1.36 1.564c-.44-.02-.89-.034-1.345-.034q-.691-.001-1.36.034c.44-.572.895-1.096 1.345-1.565zM12 8.1c.74 0 1.477.034 2.202.093q.61.874 1.183 1.86.557.961 1.018 1.946c-.308.655-.646 1.31-1.013 1.95-.38.66-.773 1.288-1.18 1.87a25.6 25.6 0 0 1-4.412.005 27 27 0 0 1-1.183-1.86q-.557-.961-1.018-1.946a25 25 0 0 1 1.013-1.954c.38-.66.773-1.286 1.18-1.868A25 25 0 0 1 12 8.098zm-3.635.254c-.24.377-.48.763-.704 1.16q-.336.585-.635 1.174c-.265-.656-.49-1.31-.676-1.947.64-.15 1.315-.283 2.015-.386zm7.26 0q1.044.153 2.006.387c-.18.632-.405 1.282-.66 1.933a25.952 25.952 0 0 0-1.345-2.32zm3.063.675q.727.226 1.375.498c1.732.74 2.852 1.708 2.852 2.476-.005.768-1.125 1.74-2.857 2.475-.42.18-.88.342-1.355.493a24 24 0 0 0-1.1-2.98c.45-1.017.81-2.01 1.085-2.964zm-13.395.004c.278.96.645 1.957 1.1 2.98a23 23 0 0 0-1.086 2.964c-.484-.15-.944-.318-1.37-.5-1.732-.737-2.852-1.706-2.852-2.474s1.12-1.742 2.852-2.476c.42-.18.88-.342 1.356-.494m11.678 4.28c.265.657.49 1.312.676 1.948-.64.157-1.316.29-2.016.39a26 26 0 0 0 1.341-2.338zm-9.945.02c.2.392.41.783.64 1.175q.345.586.705 1.143a22 22 0 0 1-2.006-.386c.18-.63.406-1.282.66-1.933zM17.92 16.32c.112.493.2.968.254 1.423.23 1.868-.054 3.32-.714 3.708-.147.09-.338.128-.563.128-1.012 0-2.514-.807-4.11-2.28.686-.72 1.37-1.536 2.02-2.44 1.107-.118 2.154-.3 3.113-.54zm-11.83.01c.96.234 2.006.415 3.107.532.66.905 1.345 1.727 2.035 2.446-1.595 1.483-3.092 2.295-4.11 2.295a1.2 1.2 0 0 1-.553-.132c-.666-.38-.955-1.834-.73-3.703.054-.46.142-.944.25-1.438zm4.56.64q.661.032 1.345.034.691.001 1.36-.034c-.44.572-.895 1.095-1.345 1.565q-.684-.706-1.36-1.565"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.679.626c-.5 0-.948.112-1.33.333-.367.213-.675.53-.917.942-.226.386-.393.856-.496 1.396-.197 1.042-.155 2.346.124 3.77q.053.271.116.542a17 17 0 0 0-.644.209C3.187 8.287 2.062 8.9 1.279 9.59c-.406.358-.72.736-.935 1.124A2.6 2.6 0 0 0 0 11.97c0 .846.469 1.703 1.355 2.48.835.733 2.015 1.372 3.412 1.85q.195.066.395.128a17 17 0 0 0-.128.61c-.266 1.399-.297 2.68-.09 3.703.107.53.277.99.506 1.37.243.404.552.716.917.927.386.222.839.335 1.348.335.692 0 1.467-.206 2.302-.61.818-.398 1.653-.967 2.482-1.691a13 13 0 0 0 .391-.356h6.146q1.302 0 2.246-.38.943-.38 1.548-1.023t.887-1.534A6.2 6.2 0 0 0 24 15.871c0-1.188-.215-2.172-.642-2.96q-.634-1.167-1.867-1.514a.03.03 0 0 1-.02-.033.03.03 0 0 1 .016-.03 3.5 3.5 0 0 0 1.411-1.442q.498-.935.498-2.25c0-1.447-.366-2.523-1.095-3.238q-1.093-1.073-2.906-1.072h-6.512a16 16 0 0 0-.308-.282c-.861-.763-1.72-1.363-2.552-1.78C9.169.844 8.38.627 7.679.627m.007 1.7c.434 0 .995.17 1.623.492.68.35 1.419.87 2.134 1.505l.136.123a26 26 0 0 0-1.846 2.302c-1.016.1-1.992.248-2.907.441a15 15 0 0 1-.092-.434L6.73 6.74c-.218-1.114-.271-2.131-.153-2.942.101-.696.328-1.194.624-1.365a.96.96 0 0 1 .484-.107m5.16 3.217v12.912l-.765-.946-.5-.617c-.253-.312-.657-.889-1.14-1.624a29 29 0 0 1-.794-1.282l-.015-.025c-.23-.398-.403-.72-.54-.977a39 39 0 0 1-.507-.981l.03-.058.002-.004a31 31 0 0 1 .566-1.098l.001-.003.208-.402.306-.507.002-.004q.172-.293.353-.584l.21-.348c.281-.464.507-.803.863-1.294.191-.264.373-.496.661-.856v-.001l.015-.018.005-.007q.176-.225.351-.437l.004-.005.002-.003a83 83 0 0 1 .683-.831zm2.391.252h3.829q.963.001 1.474.536c.51.535.51.974.51 1.852 0 .78-.19 1.375-.567 1.794-.378.419-.85.624-1.417.624h-3.829c-.014 0-.025-.015-.025-.033v-4.74c0-.018.011-.033.025-.033M8.498 8.616a32 32 0 0 0-.793 1.375 23 23 0 0 1-.417-1.16 23 23 0 0 1 1.21-.215m-2.865.634c.288.892.649 1.816 1.072 2.748a26 26 0 0 0-1.087 2.79 12 12 0 0 1-.3-.098c-1.162-.397-2.13-.91-2.798-1.482-.512-.438-.817-.9-.817-1.236 0-.345.305-.79.838-1.22.62-.502 1.503-.96 2.551-1.326a15 15 0 0 1 .541-.176m9.604 3.543h4.149c.718 0 1.27.224 1.67.692s.597 1.125.597 1.988c0 .877-.2 1.56-.597 2.037q-.591.723-1.67.722h-4.149c-.014 0-.025-.015-.025-.033v-5.373c0-.019.01-.033.025-.033M7.707 14a31 31 0 0 0 .818 1.411 22 22 0 0 1-1.252-.209q.195-.591.434-1.202m-.894 2.844c.902.185 1.89.324 2.94.414a26 26 0 0 0 1.862 2.317q-.117.108-.236.212c-.917.803-1.839 1.382-2.664 1.677l-.018.007c-.37.13-.7.196-.98.196q-.313 0-.498-.106c-.3-.173-.532-.66-.639-1.336-.124-.789-.08-1.782.126-2.872q.049-.255.107-.509"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.775 17.348H5.806a.282.282 0 1 0 0 .563h4.97a.282.282 0 1 0 0-.563m7.32 0h-4.969a.282.282 0 1 0 0 .563h4.969a.282.282 0 0 0 0-.563m-7.334-6.475H5.807a.282.282 0 1 0 0 .563h4.954a.282.282 0 1 0 0-.563m7.32 0h-4.955a.282.282 0 1 0 0 .563h4.955a.282.282 0 0 0 0-.563m.552-9.2h-4.341a2.404 2.404 0 0 0-4.58 0H5.366a3.097 3.097 0 0 0-3.096 3.096v16.134A3.097 3.097 0 0 0 5.367 24h13.266a3.097 3.097 0 0 0 3.096-3.097V4.77a3.097 3.097 0 0 0-3.096-3.096m-8.705.563a.28.28 0 0 0 .281-.223 1.841 1.841 0 0 1 3.598 0 .28.28 0 0 0 .282.223h1.514V4.08a.845.845 0 0 1-.844.844H9.255a.845.845 0 0 1-.844-.844V2.236Zm11.238 18.667c0 1.4-1.134 2.534-2.533 2.534H5.367a2.534 2.534 0 0 1-2.533-2.534V4.77c0-1.399 1.134-2.533 2.533-2.533h2.48V4.08c0 .777.63 1.407 1.408 1.407h5.49c.777 0 1.407-.63 1.407-1.407V2.236h2.48c1.4 0 2.534 1.134 2.534 2.533z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 3.393v12.949h3.662v-3.44h2c1.8-.002 4.084-.395 5.276-2.183q.703-1.073.703-2.535 0-1.479-.704-2.551-.703-1.092-1.998-1.666c-.85-.382-1.836-.574-3.02-.574zm3.662 2.886h2.035q1.147 0 1.701.5.574.498.575 1.405-.001.888-.575 1.388-.554.5-1.7.5H3.661V6.28zm8.906 4.301 3.764 5.012-3.764 5.015h3.92l1.795-2.388 1.795 2.388H24L16.488 10.58zm7.51 0-1.369 1.834 1.969 2.61L24 10.58zM9.096 12.912s-1.496.628-3.467.604l2.115 2.826h3.92z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.402 2.343c-2.224.984-3.615 2.583-4.4 3.747-.852 1.268-1.184 2.319-1.184 2.328-.002.036.005-.017 0 .019-.246.7-.473 1.798-.473 1.807-.265 1.344-.142 2.593-.142 2.612l.029.246a10 10 0 0 1 .132-1.012c.019-.133.37-2.016 1.694-3.511.142-.218 1.675-2.233 4.495-2.233.606 0 1.24.094 1.874.283h.019c.038.01.87.313 1.173.464.284.142.786.36.795.36h.02c2.715 1.325 5.062 1.75 5.081 1.76q1.008.17 1.817.17c1.079 0 1.855-.236 2.262-.69.237-.26.307-.559.293-.814.019-.985-.785-2.044-1.467-2.754a11 11 0 0 0-1.542-1.344c-2.044-1.514-4.23-2.28-6.52-2.28-2.347.009-3.937.832-3.956.842m7.419 2.659c.284 0 .511.227.511.51a.51.51 0 0 1-.511.512.51.51 0 0 1-.511-.511c0-.284.227-.511.511-.511m-6.605-1.94c.075 0 .123.019.142.019l3.227 1.003-.123.255-1.543-.482c-.548-.17-1.12-.351-1.656-.52-.01 0-.028-.01-.047-.01-.02 0-.048 0-.067.01-.293.075-1.097.359-1.334.785a.48.48 0 0 0-.038.378c0 .01.17.54.596 1.088l2.14-.104 1.428-.066-.142.293-3.549.17c-.53-.643-.738-1.286-.738-1.286C6.181 3.554 8.083 3.07 8.083 3.07q.068-.003.133-.01zm11.223 15.747c2.177-.946 3.104-2.584 3.104-2.584 2.035-2.772 1.344-5.697 1.344-5.697-1.296 2.82-2.48 3.596-2.48 3.596 3.19-4.854.02-7.788.02-7.788C22.723 9.1 21 12.468 21 12.468c-1.448 3.048-3.502 4.136-3.502 4.136 2.29.426 3.975-1.117 3.975-1.117-3.284 3.549-6.842 3.379-6.842 3.379 1.495 1.675 3.738 1.533 3.738 1.533-2.934.69-5.688-.284-7.95-2.167-.425-.35-.832-.73-1.21-1.136-.144-.15-.28-.31-.417-.464-.047 1.751 1.779 3.379 1.779 3.379-2.29-.947-3.34-3-3.34-3s-1.543-2.631-.426-5.631c1.107-2.962 4.419-3.626 4.504-3.645a53 53 0 0 0-.814-.367c-.293-.142-1.145-.455-1.145-.455a6.4 6.4 0 0 0-1.798-.274c-2.792 0-4.277 2.11-4.277 2.11-1.316 1.477-1.628 3.388-1.628 3.388-.37 1.827.028 3.748.028 3.748s.038.151.048.217c.303.72.69 1.43 1.145 2.101 2.46 3.672 6.454 4.94 6.454 4.94 5.914 2.006 9.955-.946 9.955-.946 3.72-2.555 4.467-5.508 4.467-5.508-3.01 2.338-4.306 2.12-4.306 2.12zM1.307 14.948a12.6 12.6 0 0 1-.36-1.78c-.01-.098-.025-.207-.037-.302 0 0-.133-1.287.151-2.697 0 0 .01-.038.02-.095.036-.203.093-.407.132-.577.085-.37.208-.814.33-1.174 0 0 1.307-4.287 5.726-6.245 0 0 1.524-.805 3.823-.862a3.7 3.7 0 0 0-.51-.435c-1.08-.72-2.688-.956-3.663.057-.293.303-.54.634-.814.937-.312.34-.69.624-1.126.785-.378.142-.757.114-1.145.18-.397.066-.804.208-1.126.464-.35.284-.492.662-.53 1.097-.038.341-.028.691-.047 1.032-.048 1.003-.37 1.287-1.089 1.845-.303.227-.558.53-.747.852-.568 1.003.34 2.044.388 3.057.01.208-.01.416-.085.615-.076.217-.228.36-.35.54-.171.236-.285.52-.237.813s.199.568.34.823c.275.455.616.862.975 1.25.012.016.038.04.054.052z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.21 24c-1.148-.007-2.477-.334-3.89-.915-2.823-1.163-6.04-3.372-9.036-6.367S2.075 10.505.913 7.68C-.25 4.857-.383 2.36.988.989 2.358-.38 4.855-.248 7.679.915q.46.189.932.415-.498.169-.974.383l-.141-.058C4.832.558 2.698.519 1.607 1.609.517 2.7.557 4.83 1.653 7.494s3.235 5.793 6.147 8.704c2.91 2.911 6.044 5.05 8.708 6.147s4.79 1.136 5.88.045c1.091-1.09 1.056-3.22-.041-5.884-.108-.263-.23-.531-.358-.803q.2-.476.354-.973.423.81.744 1.589c1.163 2.823 1.292 5.32-.079 6.691-.685.685-1.651.997-2.799.99zM3.79 24c-1.148.008-2.117-.305-2.802-.99-1.37-1.37-1.238-3.868-.075-6.691.235-.572.517-1.16.836-1.76q.147.5.34.978a18 18 0 0 0-.436.969C.556 19.169.521 21.3 1.611 22.39c1.091 1.091 3.221 1.051 5.885-.045.922-.38 3.021-1.69 4.026-2.308q.324.243.649.474c-1.157.733-3.415 2.13-4.492 2.574-1.412.581-2.74.907-3.888.915zm9.753-4.458a25 25 0 0 1-.645-.433 35 35 0 0 0 3.302-2.911c2.912-2.911 5.05-6.04 6.147-8.704s1.132-4.794.042-5.885c-1.091-1.09-3.217-1.055-5.88.042l-.072.029a11 11 0 0 0-.99-.379q.443-.211.874-.39c2.824-1.163 5.321-1.292 6.691.078s1.238 3.864.075 6.688c-1.162 2.823-3.376 6.046-6.37 9.04a36 36 0 0 1-3.174 2.825m1.95 1.156c-.325-.17-1.798-1.073-2.135-1.273 1.002-.806 2.423-1.97 3.396-2.944 1.718-1.718 3.981-4.787 5.162-6.555-.008.111-.093 2.49-.105 2.6a9.8 9.8 0 0 1-6.318 8.172m-6.928-.034c-3.407-1.308-6.043-4.71-6.287-8.198-.01-.151-.06-.399-.054-.984.007-.602.056-1.423.159-1.283 1.036 1.42 3.976 5.455 5.352 6.83.973.973 1.927 1.624 2.929 2.43a113 113 0 0 1-2.1 1.205zm3.43-2.208a33 33 0 0 1-3.443-3.01c-2.54-2.54-4.462-5.254-5.568-7.582 1.45-3.597 4.973-6.138 9.087-6.138 4.051 0 7.53 2.465 9.02 5.976-1.093 2.363-3.045 5.145-5.643 7.743a33 33 0 0 1-3.452 3.011z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.93 13.688a.343.343 0 0 1 .468.132l.063.106q.72 1.277 1.5 2.426a36 36 0 0 0 2.074 2.742.346.346 0 0 1-.039.484l-.074.066c-2.543 2.223-4.191 2.665-4.953 1.333-.746-1.305-.477-3.672.808-7.11a.34.34 0 0 1 .153-.18M17.75 16.3a.34.34 0 0 1 .395.27l.02.1q.942 4.93-1.325 4.93c-1.48 0-3.36-1.402-5.649-4.203a.33.33 0 0 1-.074-.222c0-.188.156-.34.344-.34h.121a33 33 0 0 0 2.809-.098q1.606-.128 3.359-.437m.871-6.977a.353.353 0 0 1 .445-.21l.102.034q4.895 1.665 3.719 3.664-1.148 1.957-6.684 2.848a.36.36 0 0 1-.238-.047.343.343 0 0 1-.125-.476l.062-.106a34 34 0 0 0 1.367-2.523q.717-1.484 1.352-3.184M7.797 8.34a.36.36 0 0 1 .238.047.343.343 0 0 1 .125.476l-.062.106a34 34 0 0 0-1.367 2.523q-.717 1.483-1.352 3.184a.353.353 0 0 1-.445.21l-.102-.034q-4.895-1.666-3.719-3.664Q2.261 9.23 7.797 8.34m5.281-3.984c2.543-2.223 4.192-2.664 4.953-1.332.746 1.304.477 3.671-.808 7.109a.34.34 0 0 1-.153.18.343.343 0 0 1-.468-.133l-.063-.106a35 35 0 0 0-1.5-2.426 36 36 0 0 0-2.074-2.742.346.346 0 0 1 .039-.484ZM7.285 2.274q2.22 0 5.649 4.203a.35.35 0 0 1 .078.218.35.35 0 0 1-.348.344l-.117-.004a35 35 0 0 0-2.809.102 36 36 0 0 0-3.363.437.343.343 0 0 1-.394-.273l-.02-.098q-.944-4.929 1.324-4.93m2.871 5.812h3.688a.64.64 0 0 1 .55.316l1.848 3.22a.64.64 0 0 1 0 .628l-1.847 3.223a.64.64 0 0 1-.551.316h-3.688a.63.63 0 0 1-.547-.316L7.758 12.25a.64.64 0 0 1 0-.629L9.61 8.402a.63.63 0 0 1 .546-.316m3.23.793a.64.64 0 0 1 .552.316l1.39 2.426a.64.64 0 0 1 0 .629l-1.39 2.43a.64.64 0 0 1-.551.316h-2.774a.63.63 0 0 1-.546-.316l-1.395-2.43a.64.64 0 0 1 0-.629l1.395-2.426a.63.63 0 0 1 .546-.316Zm-.491.867h-1.79a.62.62 0 0 0-.546.316l-.899 1.56a.64.64 0 0 0 0 .628l.899 1.563a.63.63 0 0 0 .547.316h1.789a.63.63 0 0 0 .547-.316l.898-1.563a.64.64 0 0 0 0-.629l-.898-1.558a.62.62 0 0 0-.547-.317m-.477.828c.227 0 .438.121.547.317l.422.73a.63.63 0 0 1 0 .629l-.422.734a.63.63 0 0 1-.547.317h-.836a.63.63 0 0 1-.547-.317l-.422-.734a.63.63 0 0 1 0-.629l.422-.73a.63.63 0 0 1 .547-.317zm-.418.817a.55.55 0 0 0-.473.273.55.55 0 0 0 0 .547.54.54 0 0 0 .473.27.54.54 0 0 0 .473-.27.55.55 0 0 0 0-.547.55.55 0 0 0-.473-.273Zm-4.422.546h.98M18.982 7.75c.39-1.894.476-3.344.222-4.398-.148-.63-.422-1.137-.84-1.508-.441-.39-1-.582-1.625-.582-1.035 0-2.12.472-3.281 1.367a15 15 0 0 0-1.473 1.316 1 1 0 0 0-.136-.144c-1.446-1.285-2.66-2.082-3.7-2.39-.617-.184-1.195-.2-1.722-.024-.559.187-1.004.574-1.317 1.117-.515.894-.652 2.074-.46 3.527q.119.885.402 1.934a1 1 0 0 0-.215.047C3.008 8.62 1.71 9.269.926 10.015c-.465.442-.77.938-.883 1.481-.113.578 0 1.156.312 1.7.516.894 1.465 1.597 2.817 2.155q.813.334 1.844.61a1 1 0 0 0-.07.226c-.391 1.891-.477 3.344-.223 4.395.148.629.425 1.14.84 1.508.44.39 1 .582 1.625.582 1.035 0 2.12-.473 3.28-1.364q.715-.556 1.489-1.336a1.2 1.2 0 0 0 .195.227c1.446 1.285 2.66 2.082 3.7 2.39.617.184 1.195.2 1.722.024.559-.187 1.004-.574 1.317-1.117.515-.894.652-2.074.46-3.527a15 15 0 0 0-.425-2.012 1.2 1.2 0 0 0 .238-.047c1.828-.61 3.125-1.258 3.91-2.004.465-.441.77-.937.883-1.48.113-.578 0-1.157-.312-1.7-.516-.894-1.465-1.597-2.817-2.156a15 15 0 0 0-1.906-.625 1 1 0 0 0 .059-.195"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.118 5.466a2.3 2.3 0 0 0-.623.08c-.278.067-.702.332-.953.583-.41.423-.49.609-.662 1.469-.08.423.41 1.43.847 1.734.45.317 1.085.502 2.065.608 1.429.16 1.84.636 1.84 2.197 0 1.377-.385 1.747-1.96 1.906-1.707.172-2.58.834-2.765 2.117-.106.781.41 1.76 1.125 2.091 1.627.768 3.15-.198 3.467-2.196.211-1.284.622-1.642 1.998-1.747 1.588-.133 2.409-.675 2.713-1.787.278-1.02-.304-2.157-1.297-2.554-.264-.106-.873-.238-1.35-.291-1.495-.16-1.879-.424-2.038-1.39-.225-1.337-.317-1.562-.794-2.09a2.17 2.17 0 0 0-1.613-.73m-4.785 4.36a2.2 2.2 0 0 0-.497.048c-1.469.318-2.17 2.051-1.35 3.295 1.178 1.774 3.944.953 3.97-1.177.012-1.193-.98-2.143-2.123-2.166M2.089 14.19a2.2 2.2 0 0 0-.427.052c-2.158.476-2.237 3.626-.106 4.182.53.145.582.145 1.111.013 1.191-.318 1.866-1.456 1.549-2.607-.278-1.02-1.144-1.664-2.127-1.64m19.824.008c-.233.002-.477.058-.784.162-1.39.477-1.866 2.092-.98 3.336.557.794 1.96 1.058 2.82.516 1.416-.874 1.363-3.057-.093-3.746-.38-.186-.663-.271-.963-.268"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.738 1.263c.626 0 1.183.192 1.624.581.417.369.692.88.842 1.507.253 1.054.169 2.505-.222 4.398a1 1 0 0 1-.06.195q1.068.28 1.906.626c1.352.559 2.301 1.264 2.817 2.158.313.542.427 1.12.31 1.696-.11.546-.415 1.04-.882 1.482-.784.745-2.08 1.396-3.91 2.002a1 1 0 0 1-.236.05q.302 1.093.424 2.013c.193 1.452.056 2.629-.46 3.524-.314.543-.758.93-1.316 1.118-.528.177-1.107.16-1.725-.023-1.039-.308-2.253-1.106-3.696-2.39a1.1 1.1 0 0 1-.195-.228 15 15 0 0 1-1.491 1.335c-1.16.894-2.247 1.364-3.28 1.364-.626 0-1.183-.19-1.624-.58-.417-.37-.692-.88-.842-1.507-.253-1.054-.169-2.506.222-4.398a1 1 0 0 1 .072-.224 15 15 0 0 1-1.844-.61C1.82 14.793.871 14.088.355 13.194c-.313-.542-.427-1.12-.31-1.697.11-.545.415-1.039.882-1.482.784-.744 2.08-1.396 3.91-2.002q.107-.034.215-.048a15 15 0 0 1-.403-1.936c-.193-1.452-.056-2.629.46-3.524.314-.543.758-.93 1.316-1.118.528-.177 1.107-.16 1.725.023 1.039.308 2.253 1.106 3.696 2.39q.076.067.137.147.765-.772 1.475-1.32c1.16-.893 2.247-1.364 3.28-1.364M7.359 13.761a.342.342 0 0 0-.582.106q-1.926 5.154-.809 7.11 1.143 1.998 4.953-1.33l.077-.068.053-.059a.35.35 0 0 0-.016-.427 36 36 0 0 1-2.074-2.743 34 34 0 0 1-1.502-2.425l-.06-.106zm10.46 2.534-.067.005a36 36 0 0 1-3.363.437 33 33 0 0 1-2.808.1h-.12l-.07.006a.343.343 0 0 0-.198.554q3.43 4.204 5.647 4.203 2.268 0 1.326-4.928l-.02-.1-.02-.066a.34.34 0 0 0-.374-.206zm-6.231-1.137H9.385l.252.44a.63.63 0 0 0 .548.318h1.403zm3.087 0h-2.203v.758h1.403a.63.63 0 0 0 .548-.317zM19 9.098a.355.355 0 0 0-.379.226 36 36 0 0 1-1.352 3.184 34 34 0 0 1-1.366 2.525l-.063.106-.03.064a.345.345 0 0 0 .155.412.36.36 0 0 0 .237.044q5.537-.892 6.687-2.846 1.176-1.998-3.72-3.666l-.1-.033zm-11.118-.76-.082.003q-5.537.892-6.687 2.846-1.176 1.998 3.72 3.666l.1.033.069.016a.355.355 0 0 0 .379-.226 36 36 0 0 1 1.352-3.184 34 34 0 0 1 1.366-2.525l.063-.106.03-.064a.345.345 0 0 0-.155-.412.36.36 0 0 0-.237-.044zm3.707 5.051H8.37l.507.885h2.71v-.885zm4.102 0h-3.218v.885h2.71zm-4.102-1.768H7.862l-.073.128a.63.63 0 0 0 0 .628l.073.128h3.726zm4.61 0h-3.726v.884h3.726l.073-.128a.63.63 0 0 0 0-.628zm-4.61-1.768h-2.71l-.508.884h3.218zm3.595 0h-2.711v.884h3.218zm2.849-6.83q-1.143-1.998-4.953 1.33l-.077.068-.053.059a.35.35 0 0 0 .016.427q1.153 1.389 2.074 2.743.78 1.147 1.502 2.425l.06.106.04.058a.342.342 0 0 0 .582-.106q1.926-5.154.809-7.11m-6.444 5.188h-1.403a.63.63 0 0 0-.548.317l-.253.44h2.204zm2.287 0h-1.403v.757h2.204l-.253-.44a.63.63 0 0 0-.548-.317m-6.59-5.937q-2.266 0-1.326 4.928l.02.1.02.065c.06.146.214.235.375.207a36 36 0 0 1 3.363-.437 33 33 0 0 1 2.807-.1h.12l.07-.006a.343.343 0 0 0 .198-.554Q9.504 2.274 7.286 2.274"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.832 3.367 8.668.108a3.15 3.15 0 0 0-3.856 2.226L.943 16.777a3.15 3.15 0 0 0 2.226 3.856l12.163 3.259a3.15 3.15 0 0 0 3.855-2.226l3.87-14.443a3.15 3.15 0 0 0-2.226-3.856M6.332 2.741a1.574 1.574 0 0 1 1.928-1.113l12.163 3.26a1.574 1.574 0 0 1 1.113 1.927l-3.87 14.444a1.574 1.574 0 0 1-1.928 1.113l-12.163-3.26a1.574 1.574 0 0 1-1.113-1.927zm2.634 2.336a.787.787 0 1 0-.407 1.52l9.122 2.444a.787.787 0 1 0 .407-1.52zM6.985 9.434a.787.787 0 0 1 .963-.557l9.123 2.445a.787.787 0 0 1-.408 1.52l-9.122-2.444a.787.787 0 0 1-.556-.964m-.055 3.244a.787.787 0 0 0-.407 1.52l5.32 1.427a.787.787 0 0 0 .408-1.52z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.011 3.269H16.19a4.29 4.29 0 0 0-4.185 3.345A4.29 4.29 0 0 0 7.819 3.27H2a2 2 0 0 0-2.001 2v10.244a2 2 0 0 0 2 2h3.738c4.257 0 5.53 1.025 6.138 3.134a.11.11 0 0 0 .112.084h.024a.11.11 0 0 0 .112-.084c.612-2.109 1.885-3.133 6.138-3.133h3.737a2 2 0 0 0 2.001-2V5.27a2 2 0 0 0-1.989-2ZM10.083 14.325a.144.144 0 0 1-.144.144H3.257a.144.144 0 0 1-.144-.144v-.953a.144.144 0 0 1 .144-.144H9.94a.144.144 0 0 1 .144.144zm0-2.537a.144.144 0 0 1-.144.144H3.257a.144.144 0 0 1-.144-.144v-.952a.144.144 0 0 1 .144-.144H9.94a.144.144 0 0 1 .144.144zm0-2.537a.144.144 0 0 1-.144.144H3.257a.144.144 0 0 1-.144-.144V8.3a.144.144 0 0 1 .144-.144H9.94a.144.144 0 0 1 .144.144zm10.804 5.07a.144.144 0 0 1-.144.144h-6.682a.144.144 0 0 1-.144-.144v-.953a.144.144 0 0 1 .144-.144h6.682a.144.144 0 0 1 .144.144zm0-2.537a.144.144 0 0 1-.144.144h-6.682a.144.144 0 0 1-.144-.144v-.952a.144.144 0 0 1 .144-.144h6.682a.144.144 0 0 1 .144.144zm0-2.537a.144.144 0 0 1-.144.144h-6.682a.144.144 0 0 1-.144-.144V8.3a.144.144 0 0 1 .144-.144h6.682a.144.144 0 0 1 .144.144v.952z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.732 0a59 59 0 0 0-4.977.218V24a63 63 0 0 1 3.619-.687q.255-.041.509-.078.323-.05.644-.096l.205-.03zm1.18.003V22.96a61 61 0 0 1 12.333-.213V1.485A61 61 0 0 0 8.912.003m1.707 1.81h.015c3.06.088 6.125.404 9.167.95a.59.59 0 0 1 .476.686.59.59 0 0 1-.569.484.6.6 0 0 1-.116-.009 60.6 60.6 0 0 0-8.992-.931.59.59 0 0 1-.573-.607.59.59 0 0 1 .592-.572zm-4.212.028a.59.59 0 0 1 .578.565.59.59 0 0 1-.564.614 60 60 0 0 0-2.355.144l-.04.002a.59.59 0 0 1-.595-.542.59.59 0 0 1 .54-.635q1.2-.097 2.401-.148zm4.202 2.834h.015a61.6 61.6 0 0 1 9.167.8.59.59 0 0 1 .488.677.59.59 0 0 1-.602.494 1 1 0 0 1-.076-.006 60.4 60.4 0 0 0-8.99-.786.59.59 0 0 1-.584-.596.59.59 0 0 1 .582-.583m-4.211.097a.59.59 0 0 1 .587.555.59.59 0 0 1-.554.622q-1.18.069-2.356.184l-.04.003a.59.59 0 0 1-.603-.533.59.59 0 0 1 .53-.644q1.2-.117 2.4-.187zM10.6 7.535h.015c3.06-.013 6.125.204 9.167.65a.59.59 0 0 1 .498.67.59.59 0 0 1-.593.504 1 1 0 0 1-.076-.006 60 60 0 0 0-8.992-.638.59.59 0 0 1-.592-.588.59.59 0 0 1 .573-.592m1.153 2.846a61 61 0 0 1 8.02.515.59.59 0 0 1 .509.66.59.59 0 0 1-.586.514 1 1 0 0 1-.076-.005 60 60 0 0 0-8.99-.492.59.59 0 0 1-.603-.577.59.59 0 0 1 .578-.603q.573-.012 1.148-.012m1.139 2.832a61 61 0 0 1 6.871.394.59.59 0 0 1 .52.652.59.59 0 0 1-.577.523 1 1 0 0 1-.076-.004 60 60 0 0 0-8.991-.344.59.59 0 0 1-.61-.568.59.59 0 0 1 .567-.611q1.147-.042 2.296-.042"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h24V0zm11.52 21.89-1.33-2.54H8.4v2.54H6v-9.2h4.13c2.44 0 3.83 1.19 3.83 3.24 0 1.39-.58 2.4-1.64 2.96l1.92 3zm11.36 0H15.5v-9.2h7.24v1.92H17.9v1.72h4.38v1.9l-4.38.01v1.73h4.99v1.92zM11.68 16c0 .93-.56 1.43-1.53 1.43H8.4v-2.82h1.75c.97 0 1.53.49 1.53 1.4z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2.49 5.114 8.3-4.79a2.42 2.42 0 0 1 2.39-.017l.03.017 8.299 4.79a2.42 2.42 0 0 1 1.211 2.065v9.611a2.42 2.42 0 0 1-1.184 2.08l-.027.016-8.299 4.79a2.42 2.42 0 0 1-2.39.017l-.03-.017-8.3-4.79a2.42 2.42 0 0 1-1.21-2.065V7.21c0-.855.45-1.645 1.184-2.08zl8.3-4.79zM12 4.026 5.092 8.013v7.974L12 19.974V12l6.908-3.987z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.09 8.862a3.02 3.02 0 0 0-2.615-2.43l-.245-.03a1.66 1.66 0 0 1-1.453-1.645v-.856a2.028 2.028 0 1 0-1.602-.02v.874a3.263 3.263 0 0 0 2.855 3.236l.245.032c.764.096 1.144.66 1.246 1.155.1.495-.03 1.163-.698 1.55a2.6 2.6 0 0 1-1.055.337l-3.68.346a4.2 4.2 0 0 0-1.71.546 3.02 3.02 0 0 0-1.468 3.257 3.02 3.02 0 0 0 2.615 2.43l.245.032a1.66 1.66 0 0 1 1.453 1.644v.777a2.03 2.03 0 1 0 1.602.016v-.793a3.263 3.263 0 0 0-2.856-3.236l-.244-.032c-.764-.096-1.145-.66-1.246-1.155s.03-1.163.697-1.55a2.6 2.6 0 0 1 1.057-.337l3.68-.345a4.2 4.2 0 0 0 1.71-.546 3.02 3.02 0 0 0 1.467-3.258zm-2.653 4.708a6 6 0 0 1-.436.06l-1.543.147 1.93 2.119a3.47 3.47 0 0 1 .906 2.34H16.9a5.07 5.07 0 0 0-1.325-3.42zm-5.003-3.11a5 5 0 0 1 .546-.08l1.427-.136L9.469 8.12a3.47 3.47 0 0 1-.905-2.34H6.963c0 1.267.47 2.483 1.324 3.42z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 6.679V0L8.655 4.945Zm0 1.976v6.69l7.673-4L16.327 6.4zm0-1.976 3.345-1.734L12 0Zm8.655 6.133L12 17.322V24l12-6.242ZM12 24v-6.679l-8.655-4.509L0 17.758ZM4.327 11.345l7.673 4v-6.69L7.673 6.4Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C6.775 0 2.546 4.238 2.546 9.455c0 4.971 3.842 9.05 8.727 9.423V24c3.405-3.49 5.837-6.072 7.307-7.756a9.5 9.5 0 0 0 1.532-1.93l.005-.006.007-.014a9.4 9.4 0 0 0 1.33-4.84C21.455 4.238 17.226 0 12 0m3.821 5.818h1.385c.337.001.611.25.612.558v6.157c-.001.308-.275.557-.612.558H15.82c-.337-.001-.611-.25-.612-.558V6.376c0-.307.275-.557.612-.558M9.297 7.921h1.386c.338 0 .611.25.613.558v4.054c-.002.308-.275.557-.613.558H9.297c-.337-.001-.61-.25-.61-.558V8.479c0-.308.273-.558.61-.558m3.222 1.534h1.396c.337 0 .61.25.61.558v2.52c0 .308-.273.557-.61.558h-1.396c-.338-.001-.612-.25-.613-.558v-2.52c.001-.308.275-.558.613-.558M6.067 10.71h1.396c.337.001.61.25.61.559v1.264c0 .308-.273.557-.61.558H6.067c-.338-.001-.611-.25-.612-.558v-1.264c0-.308.274-.558.612-.559"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.633 16.324h-3.199a.32.32 0 0 1-.32-.322V7.974a.32.32 0 0 1 .32-.32H16.4c2.226 0 2.693 1.31 2.693 2.408q0 .954-.504 1.511c.816.337 1.256 1.096 1.256 2.194 0 1.601-1.201 2.557-3.212 2.557m-4.644 0H5.345a.32.32 0 0 1-.32-.322V7.974a.32.32 0 0 1 .32-.32h3.103c1.939 0 3.096 1.043 3.096 2.791 0 1.163-.585 2.077-1.527 2.448l2.21 2.897a.322.322 0 0 1-.24.533M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12c6.628 0 12-5.373 12-12S18.63 0 12.001 0"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.381 11.374c-.389 1.244-1.019 2.33-2.142 3.082l-.33.251-.264.236-.091.107-.025.041-.011.028-.004.016v.013l.001.009.002.007.002.006.005.007.002.002.01.008.012.007.011.004a.2.2 0 0 0 .046.006h.024c.178-.007.512-.141.629-.245l-.139.137-.164.149-.173.146-.18.141-.185.136-.197.134-.204.13-.206.123-.213.118-.223.115-.226.108-.225.1-.236.097-.045.018c-1.97.763-4.327.854-5.914-.44.353.344.787.728 1.199.98-.251-.043-.429-.237-.666-.311.004.008.575.751 2.282.946l.316.032.48.031.464.014.448-.009.44-.039.464-.084.401-.107.599-.181.294-.081.128-.033q.155-.04.333-.077l.041-.009c.073.031-.524.339-1.344.57-.361.132-.739.2-1.119.227l-.269.012-.216.001-.218-.005-.264-.015-.315-.027-.31-.034-.056-.007c-.401-.049-.781-.107-1.122-.143h-.006.006c.03.015.209.096 1.067.402-.061.022-.346.061-1.536-.448 2.417 1.392 4.988.759 7.266-.585l.352-.215.053-.034.294-.191.151-.103q.267-.182.526-.374c0 .009-.004.021-.004.031l.075.01c-.014.041-.014.041-.214.279.435-.351.659-.896 1.12-1.225-.236.473-.538.813-1.1 1.361q.049-.037.095-.078l.028-.026-.028.026a7.9 7.9 0 0 1-3.682 1.965q.19-.021.373-.073c-.22.061-.227.068-.32.099.058-.007.058-.007.358-.068-.175.086-.377.127-.865.226 2.806-.444 5.721-2.571 5.956-5.449a.14.14 0 0 1-.152-.143c.009-.562-.147-.982-.42-1.302-.163.58-.413 1.136-1.027 2.072-.26.393-.72.41-1.005.771l-.021-.013-.032-.028-.005-.003-.004-.002-.001-.001h-.003l-.007.001h-.003l-.001.001a.2.2 0 0 0-.058.051l.062-.07.067-.092.016-.031.005-.014.002-.01v-.01l-.001-.009-.001-.003-.002-.004-.001-.003-.003-.003-.005-.006-.009-.006-.04-.019-.006-.004-.004-.004-.002-.003-.002-.002-.002-.006v-.006l.001-.007.004-.011.023-.034.014-.016c.622-.687 1.192-1.306 1.438-2.228l.006-.021-.027.032c-.087.103-.147.147-.24.265l.11-.39.035-.127.065-.26.052-.225a1 1 0 0 0-.118-.055m-2.257 6.199a9 9 0 0 1-1.105.547c-.38.155-.768.279-1.152.354a10 10 0 0 0 2.257-.901m-6.505.203.051.02-.001-.012zm3.644-2.807c-.372-.201-.515-.63-.744-.945-.6-.62-.701-1.681-.858-2.549-.158-.843-.878-1.467-1.378-2.119-.443-.361-1.599-1.457-2.145-1.632-.72-.299-1.348.267-1.947.544-.487.201-1.002.258-1.432.63-.674.865-1.079.173-1.861.858-1.165 1.22-1.606.146-3.207 1.575-.429.257-.831.515-1.348.487-.823-.039-1.103-1.145-.459-1.633.449-.502 1.552-1.019 1.004-1.831-.57-.508-1.24-.292-1.918-.858-.313.49.087 1.155.601 1.318.211.131.701-.078.802.227-.217.434-.81.669-1.088 1.089-.693.8-.009 2.112.973 2.173.363.117.825-.179 1.06-.057.028.286 0 .544.057.802.027.282.348.584.172.858-.285.245-.654.37-1.03.347-.195.225-.228.48-.344.744-.142.258-.428.372-.629.487-.133.201-.265.424-.545.458-.171.201-.2.458-.257.716.716.19.87.094 1.26-.515.143-.143.344-.029.486 0 .407-.049.711-.321 1.003-.573 1.042-.272 1.032.41 2.233-.372.201-.086.287-.315.373-.487.1-.192.378-.562.028-.658-.899 1.819-2.464.338-3.665 1.715-.184.051-.041-.235 0-.287.862-1.256 2.823-.15 3.493-1.776.117-.25.051-1.247.343-1.232.029 0 .115.029.115.086-.278 1.214-.094 1.591 1.202 1.378.444-.128 1.716.325 1.69-.286 0-.114-.115-.171 0-.257.028-.029.114 0 .143.028.081.49.511.85.919 1.06.823.56.49 1.291-.459 1.26-.315-.172-.4-.487-.63-.745-.267-.234-.633-.122-.944-.057-.155.233.212.511.286.745.143.086.344-.058.458.114.115.171.172.344.344.458.496.476 1.532-.36 2.061-.401.463.051.674-.371.831-.716.261-.477-.434-.948-.487-1.374-.158-.044-.368-.167-.487 0 .088.213.579.993.544 1.231-.064.173-.21.572-.429.544.058-.2.144-.428.144-.658-.105-.245-.565-.953-.602-1.203.092-.242.562-.102.744-.344.201-.315.258-.629.316-1.03a.13.13 0 0 1 .086-.087c.279.18-.005 1.042-.172 1.232-.016.297.568.098.687 0 .221.046.67-.175.773-.029a1.55 1.55 0 0 0-.286.573c-.172.2-.458.344-.458.63.031.18.273-.11.286.114-.249.317-.218.394-.143.745.261.368.761.065 1.088-.028.552-.217 1.172.126 1.604-.459.116.01.222.074.286.172.319.335.769.513 1.231.487.188-.13-.222-.233-.286-.287-.201-.114-.459-.286-.516-.515-.075-.32-.306-.613-.458-.916.669.01.739 1.406 1.716 1.203.048-.033.043-.069.029-.115zm-16.866.687c-.339.139-.159.558-.371.773 0 .028-.058.086 0 .115.142.028.257.086.429.114.076-.256.15-.541.2-.773-.058-.086-.143-.2-.258-.229m17.317-.39c-.085.109-.274.115-.356.19a.12.12 0 0 0-.023.082.24.24 0 0 1-.073.242c-.087.094-.25.136-.397.126-.734.008-1.092-.351-1.392-.523-.41.265-.665.37-1.201.287-.315-.025-.596.134-.902.212.434.372 2.193.844 1.545.524-1.072-.607-.295-.203.645.019a7 7 0 0 0 1.625.2 8 8 0 0 0 2.427-1.279.3.3 0 0 1-.118-.021.2.2 0 0 1-.095-.081c-.031-.052-.048-.136.023-.251.074-.119.286-.327.734-.651l.004-.003c1.097-.736 1.71-1.8 2.088-3.015a4 4 0 0 0-.798-.2c-.405 1.006-.503 1.716-1.458 2.285-1.108.725-.414.539-.403.534q.13-.053.245-.132c-.429.689-1.174 1.129-2.063 1.327a.2.2 0 0 1-.057.128m-16.687.39c.2-.115.315-.315.401-.487-.062-.096-.136-.223-.286-.172q-.206.159-.429.287c-.072.194.107.439.315.372zm8.648-.63c.114.143.114.343.258.458a.62.62 0 0 0 .486-.143c.086-.057-.028-.143-.057-.229-.086-.115-.028-.344-.229-.344-.217.051-.455-.012-.659.057 0 .087.172.087.201.201m5.125-.344a1.7 1.7 0 0 1-.4.057h-.029c-.169-.156.184-.468.372-.458h.086c.105.044.078.32-.029.401m7.828-3.179c-.038.169-.078.328-.12.489a.142.142 0 0 1 .133.177c-.243.936-.807 1.571-1.433 2.262l.003.005c.1-.07.207-.127.313-.184.163-.088.326-.176.442-.351.632-.962.872-1.515 1.032-2.115q-.165-.159-.37-.283m-.948-2.516.117.073c1.725 1.116 2.457 3.197 1.833 4.905l.006-.005c.29-.834.408-1.718.349-2.599-.306-2.281-1.087-4.283-3.87-5.019 1.721.416 1.85.631 2.075.779-1.337-1.235-3.49-1.664-5.667-1.295 1.253-.404 3.303-.361 4.61.417l.031.019c-3.108-1.906-6.839-1.075-9.134 1.114.429.083.806.366 1.157.637l.109-.059.127-.064.131-.062.27-.119.281-.11.295-.105.306-.096.285-.079.323-.079.299-.064.273-.05.17-.027.17-.025.138-.018.172-.019c1.705-.182 3.539.045 4.907.946l.013.008a4.45 4.45 0 0 1 1.518 1.685c-.033.021-.065.016-.094-.001l-.038-.029-.108-.115-.02-.015c-.014-.005-.046-.036-.061-.043l-.209-.189-.248-.186-.266-.162-.044-.024c-.773-.418-1.714-.603-2.55-.779l-.051-.01.415.146.459.135.494.143.299.099.242.094.16.071.143.072.085.046zm-1.112 4.436c.186-.409.62-.629.762-1.123-.021.073.134.103.195.103.245-.042.251-.379.33-.449-.061.766-.578 1.393-1.144 1.912a.26.26 0 0 0-.244-.011c-.024-.144.286-.344.101-.432m-5.023-.402c-.032.056-.081.202-.143.201s-.089.009-.086-.057c-.005-.193-.036-.429-.201-.544-.374-.582-.468.147-.601.057-.08-.162.046-.345.115-.487.032-.038.044-.083.086-.114.061-.353.383-.152.458.057.197.245.429.521.401.802-.029-.029-.029.028-.029.085m-.549-3.278c-.217-.28-.442-.582-.683-.803 1.207-.431 3.157-.54 4.121-.577.228-.007.352-.022.403-.037a.2.2 0 0 0 .087-.052.14.14 0 0 0 .037-.115.15.15 0 0 0-.066-.11.6.6 0 0 0-.18-.059 8 8 0 0 0-1.056-.106h-.002c-.657 0-1.409.067-2.124.192q.383-.13.779-.209a.14.14 0 0 0 .114-.146.14.14 0 0 0-.128-.134c-.122-.013-.895.075-1.605.241-.485.113-.938.266-1.149.438l-.013.013q-.107-.09-.213-.176c1.546-.816 4.032-1.269 6.157-.782 1.178.269 2.246.83 2.973 1.785-.868-.665-2.087-.901-3.134-1.122a.142.142 0 0 0-.082.27c.762.303 1.566.393 2.28.798 1.572.902 2.381 2.603 2.161 4.159.016-.994-.449-1.573-1.164-1.938-2.191-.92-4.263.309-6 .558v-.014l-.003-.005c-.1-.215.937-.435 1.075-.518.082-.085.222-.056.315-.132.092-.091.23-.111.353-.135.323-.165.679-.219 1.039-.226.127.019.245-.052.372-.043a.35.35 0 0 1 .188-.03c.385-.029.779-.065 1.111-.299.035-.021.153-.086.053-.099-.629-.17-.932.26-1.506-.256.009-.022-.181-.103-.208-.103-.304.061-.589.197-.905.202-.144.032-.201-.04-.345-.04-.193.045-.46.169-.657.184-.092-.017-.542.218-.551.056h-.01c-.048-.182 2.822-1.254 1.641-.532.065.056.447-.105.807-.132.404-.086.941.211 1.118-.185-.007-.065-.162-.046-.2-.019-.077.042-.16.014-.241.032-.135.016-.66-.079-.779-.071-.095-.081.528-.064.583-.073.205-.031.452-.077.657-.115q.137-.016.274-.006c.186.044.684-.024.153-.153-.14-.027-.581-.041-.652-.019-.108.014-.576.153-.825.095-.225-.068.7-.106.59-.168-1.148-.145-2.457-.109-4.724 1q-.107-.133-.236-.284m-2.543.902c-.029.029-.058.029-.115.029-.077-.29-.104-.592-.258-.831-.08-.079-.184-.181-.115-.315a.14.14 0 0 1 .173-.029c.262.196.306.469.315.802.057.057.028.229 0 .344m1.73-1.808.213-.075.252-.076.266-.068.313-.068.36-.067.313-.049.37-.049.442-.05.467-.042.53-.036.414-.023.446-.018.194-.018.035-.008.013-.005.005-.003v-.001l.003-.002v-.001l.001-.004q0-.003-.004-.007l-.004-.003-.006-.003c-.113-.058-.879-.133-1.149-.136-1.19 0-2.697.224-3.712.611zm2.074-1.11.027.001a6.5 6.5 0 0 0-.867.238l-.496.169-.452.166-.341.132-.285.117-.209-.174c.434-.355 1.968-.598 2.491-.642zm3.546.188c.08.059.363.23.812.232a.14.14 0 0 0 .131-.086.14.14 0 0 0-.028-.154c-.09-.093-.249-.173-.434-.235-.245-.082-.537-.139-.734-.184a.14.14 0 0 0-.102.016.14.14 0 0 0-.068.083.14.14 0 0 0 .008.111c.01.021.039.059.094.09.075.041.234.099.321.127m-.287-.278q-.005-.006.003-.011c.302.069.834.165 1.057.344l.04.035a1.5 1.5 0 0 1-.438-.066l-.099-.035-.092-.042-.065-.037a.2.2 0 0 1-.05-.036h.001l-.277-.103-.043-.021a.1.1 0 0 1-.037-.028m.305.284.002.001z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.387 3.168q.028.194.08.378l.004.02a3.3 3.3 0 0 0 .326.77l.014.025q.186.31.434.57a1.5 1.5 0 0 1 .631-1.212.21.21 0 0 1 .24 0c.393.28.627.73.63 1.211a3.2 3.2 0 0 0 .435-.569l.014-.025q.21-.358.327-.77l.005-.02q.048-.187.078-.378l.01-.065a4 4 0 0 0 .028-.41v-.012a3.29 3.29 0 0 0-1.326-2.64.215.215 0 0 0-.34.15 3.3 3.3 0 0 1-1.616 2.482l-.01.02q0 .21.027.41zM5.137 13.72a.205.205 0 0 0-.222.207l.003.344q0 1.602-.122 3.172a42 42 0 0 1-.49 3.973.204.204 0 0 0 .182.239q1.02.09 2.048.158a.466.466 0 0 0 .49-.383 42 42 0 0 0 .614-7.534l-.003-.003a82 82 0 0 1-2.5-.173m13.94.551.002-.344a.205.205 0 0 0-.22-.207q-1.246.106-2.501.171l-.004.003q-.015 1.89.133 3.74a42 42 0 0 0 .476 3.76c.045.253.272.43.528.415a85 85 0 0 0 2.015-.156.203.203 0 0 0 .183-.237 41 41 0 0 1-.49-3.973 42 42 0 0 1-.123-3.172m-6.48-6.908v.896c0 .229.186.414.415.413l.57-.008a88 88 0 0 0 2.83-.1.41.41 0 0 0 .384-.352q.075-.497.157-.992.079-.461.167-.922a.184.184 0 0 0-.19-.218q-.66.04-1.323.068c-.53.022-1.062.044-1.596.056q-.707.013-1.415.018zm-5.397.847a.41.41 0 0 0 .383.352q.515.026 1.03.045a78 78 0 0 0 2.396.063.41.41 0 0 0 .416-.413V6.224a83 83 0 0 1-1.417-.018c-.534-.012-1.065-.034-1.596-.056a74 74 0 0 1-1.347-.07.182.182 0 0 0-.19.217q.09.46.166.922.086.495.16.99m12.13 1.473q-1.371.12-2.745.198c-.42.024-.84.04-1.261.057a88 88 0 0 1-2.727.064c-.2.002-.398.008-.597.008-.193 0-.38-.006-.573-.008A89 89 0 0 1 8.7 9.938q-.645-.023-1.287-.056a83 83 0 0 1-3.77-.295.22.22 0 0 0-.238.248c.049.352.09.703.137 1.057.045.345.096.688.136 1.033a.46.46 0 0 0 .415.412q.39.038.784.07c.906.077 1.816.145 2.73.192.392.02.788.033 1.184.05q.012.643.016 1.292l.004.333a87 87 0 0 1-.533 9.412.22.22 0 0 0 .208.245q1.35.055 2.72.069a.22.22 0 0 0 .222-.221V12.704h1.17v11.071c0 .122.1.22.223.22q1.365-.012 2.719-.069a.22.22 0 0 0 .209-.245 82 82 0 0 1-.46-5.996 82 82 0 0 1-.074-3.415l.004-.333q.004-.648.016-1.292a75 75 0 0 0 1.16-.047 82 82 0 0 0 2.73-.192l.82-.074a.42.42 0 0 0 .374-.372c.041-.358.095-.713.142-1.07l.136-1.057a.22.22 0 0 0-.238-.248q-.515.053-1.028.097"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12c0 3.314 1.343 6.314 3.515 8.485l-2.286 2.286A.72.72 0 0 0 1.738 24H12c6.627 0 12-5.373 12-12S18.627 0 12 0m4.388 3.199a1.999 1.999 0 1 1-1.947 2.46v.002a2.37 2.37 0 0 0-2.032 2.341v.007c1.776.067 3.4.567 4.686 1.363a2.802 2.802 0 1 1 2.908 4.753c-.088 3.256-3.637 5.876-7.997 5.876-4.361 0-7.905-2.617-7.998-5.87a2.8 2.8 0 0 1 1.189-5.34c.645 0 1.239.218 1.712.585 1.275-.79 2.881-1.291 4.64-1.365v-.01a3.23 3.23 0 0 1 2.88-3.207 2 2 0 0 1 1.959-1.595m-8.085 8.376c-.784 0-1.459.78-1.506 1.797s.64 1.429 1.426 1.429 1.371-.369 1.418-1.385-.553-1.841-1.338-1.841m7.406 0c-.786 0-1.385.824-1.338 1.841s.634 1.385 1.418 1.385c.785 0 1.473-.413 1.426-1.429-.046-1.017-.721-1.797-1.506-1.797m-3.703 4.013c-.974 0-1.907.048-2.77.135a.222.222 0 0 0-.183.305 3.2 3.2 0 0 0 2.953 1.964 3.2 3.2 0 0 0 2.953-1.964.222.222 0 0 0-.184-.305 28 28 0 0 0-2.769-.135"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.009 13.386c1.577 0 3.86-.326 3.86-2.202a1.8 1.8 0 0 0-.04-.431l-.94-4.08c-.216-.898-.406-1.305-1.982-2.093-1.223-.625-3.888-1.658-4.676-1.658-.733 0-.947.946-1.822.946-.842 0-1.467-.706-2.255-.706-.757 0-1.25.515-1.63 1.576 0 0-1.06 2.99-1.197 3.424a.8.8 0 0 0-.028.245c0 1.162 4.577 4.974 10.71 4.974m4.101-1.435c.218 1.032.218 1.14.218 1.277 0 1.765-1.984 2.745-4.593 2.745-5.895.004-11.06-3.451-11.06-5.734a2.3 2.3 0 0 1 .19-.925C2.746 9.415 0 9.794 0 12.217c0 3.969 9.405 8.861 16.851 8.861 5.71 0 7.149-2.582 7.149-4.62 0-1.605-1.387-3.425-3.887-4.512"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.665 11.812a11.1 11.1 0 0 0-1.08-3.966L24 6.599a11 11 0 0 0-.943-1.595l-1.601.583a11.015 11.015 0 0 0-19.945 7.258l1.604-.584q.077.924.305 1.822L0 15.335a11.2 11.2 0 0 0 1.721 3.731l1.812-.659c3.526 4.95 10.398 6.106 15.349 2.58a11 11 0 0 0 3.599-4.332 10.9 10.9 0 0 0 .991-5.497zm-4.74-2.635a7.18 7.18 0 0 1 .895 4.032l1.809-.657a7 7 0 0 1-.646 2.471 7.166 7.166 0 0 1-9.514 3.472 7.1 7.1 0 0 1-2.092-1.49l-1.813.66a7.2 7.2 0 0 1-1.903-3.667l3.426-1.242a7.1 7.1 0 0 1-.111-1.896H6.97l-1.604.583a7.14 7.14 0 0 1 10.156-5.929v-.006a7.1 7.1 0 0 1 2.082 1.483l1.599-.582.006.005c.441.454.82.965 1.128 1.518z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.71 13.145c-1.66 2.092-3.452 4.483-7.038 4.483-3.203 0-4.397-2.825-4.48-5.12.701 1.484 2.073 2.685 4.214 2.63 4.117-.133 6.94-3.852 6.94-7.239 0-4.05-3.022-6.972-8.268-6.972-3.752 0-8.4 1.428-11.455 3.685C2.59 6.937 3.885 9.958 4.35 9.626c2.648-1.904 4.748-3.13 6.784-3.744C8.12 9.244.886 17.05 0 18.425c.1 1.261 1.66 4.648 2.424 4.648.232 0 .431-.133.664-.365a101 101 0 0 0 5.54-6.765c.222 3.104 1.748 6.898 6.014 6.898 3.819 0 7.604-2.756 9.33-8.965.2-.764-.73-1.361-1.261-.73zm-4.349-5.013c0 1.959-1.926 2.922-3.685 2.922a4.45 4.45 0 0 1-2.235-.568c1.051-1.592 2.092-3.225 3.21-4.973 1.972.334 2.71 1.43 2.71 2.619"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.092 15.088c.789.243 4.098 1.005 4.098 1.005.198.061.139.21.139.21-.228 1.798-.178 3.17-.178 3.644 0 .21-.153.18-.153.18H.168c-.209 0-.164-.19-.164-.19.04-.599.212-2.303.878-4.746 0 0 .033-.157.21-.103m21.816 0c-.789.243-4.098 1.005-4.098 1.005-.198.061-.139.21-.139.21.228 1.798.178 3.17.178 3.644 0 .21.153.18.153.18h4.83c.21 0 .164-.19.164-.19-.04-.599-.212-2.303-.878-4.746 0 0-.034-.157-.21-.103m-1.929-5.354-3.448 1.667c-.164.063-.082.212-.082.212.476 1.134.766 2.091.99 3.251.038.194.169.132.169.132l3.879-1.684s.116-.044.068-.193c-.172-.531-1.05-2.649-1.402-3.341 0 0-.062-.105-.174-.044m-17.958 0 3.448 1.667c.164.063.082.212.082.212a15.6 15.6 0 0 0-.991 3.251c-.037.194-.169.132-.169.132l-3.878-1.684s-.116-.044-.068-.193c.172-.531 1.05-2.649 1.402-3.341 0 0 .062-.105.174-.044m4.085-4.368 2.302 2.681c.099.128-.032.222-.032.222-.923.498-1.59 1.25-2.161 2.111-.114.17-.236.046-.236.046L4.062 8.242s-.126-.074-.016-.22c.854-1.134 1.63-1.934 2.871-2.689 0 0 .094-.089.189.033m9.788 0-2.302 2.681c-.099.128.032.222.032.222.923.498 1.59 1.25 2.161 2.111.114.17.236.046.236.046l2.917-2.184s.126-.074.016-.22c-.854-1.134-1.63-1.934-2.871-2.689 0 0-.094-.089-.189.033M12 7.661c.388 0 1.105.037 1.444.093.177.03.221-.088.221-.088l1.449-3.028s.097-.114-.106-.188c-1.082-.396-1.657-.578-3.008-.578-1.335 0-1.926.182-3.008.578-.203.074-.106.188-.106.188l1.449 3.028s.044.118.221.088c.339-.056 1.056-.093 1.444-.093"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.694 6.05a.286.286 0 0 0-.258.241A5.72 5.72 0 0 0 .912 8.903H.91a.284.284 0 0 0-.386.263c0 .09.042.169.107.22A5.7 5.7 0 0 0 0 12c0 .942.227 1.83.631 2.614a.283.283 0 0 0 .281.484 5.72 5.72 0 0 0 4.524 2.611v.002a.284.284 0 0 0 .56-.002 5.71 5.71 0 0 0 4.522-2.611h.002a.285.285 0 0 0 .388-.264.3.3 0 0 0-.03-.127l-.015-.03-.029.017a2.4 2.4 0 0 1-.459.185l-.031.01.01.031a.3.3 0 0 0 .021.05 5.52 5.52 0 0 1-4.42 2.548v-.002a.283.283 0 0 0-.48.004 5.52 5.52 0 0 1-4.42-2.55l.001-.001a.284.284 0 0 0-.242-.418A5.5 5.5 0 0 1 .191 12a5.5 5.5 0 0 1 .623-2.55.284.284 0 0 0 .24-.42 5.52 5.52 0 0 1 4.42-2.55.283.283 0 0 0 .483 0 5.52 5.52 0 0 1 4.418 2.552.3.3 0 0 0-.035.134.285.285 0 0 0 .277.284 5.5 5.5 0 0 1 .465 1.232 2 2 0 0 1 .238.189 5.7 5.7 0 0 0-.52-1.484.28.28 0 0 0 .108-.22.285.285 0 0 0-.389-.265 5.71 5.71 0 0 0-4.523-2.609.285.285 0 0 0-.281-.244zm-.006 1.417a.29.29 0 0 0-.248.22 4.314 4.314 0 0 0-4.024 4.302c0 2.28 1.775 4.149 4.018 4.3a.284.284 0 0 0 .281.244.29.29 0 0 0 .281-.242 4.3 4.3 0 0 0 2.945-1.431 2 2 0 0 1-.187-.077 4.1 4.1 0 0 1-2.797 1.319.28.28 0 0 0-.242-.135.29.29 0 0 0-.24.133 4.118 4.118 0 0 1-.012-8.223v.003a.283.283 0 0 0 .506-.003 4.12 4.12 0 0 1 3.507 2.403 2 2 0 0 1 .204-.016 4.31 4.31 0 0 0-3.688-2.576v-.002a.285.285 0 0 0-.277-.219zM3.959 9.506v4.985h.496V9.957h.703q.765 0 1.147.182a.85.85 0 0 1 .389.367q.138.247.138.59 0 .825-.723 1.039-.342.096-1.146.096l1.682 2.26h.618l-1.398-1.862q.72-.076 1.096-.465.38-.391.379-1.06 0-.455-.185-.797a1.37 1.37 0 0 0-.532-.547q-.457-.254-1.431-.254Zm11.629 0v1.881a1.8 1.8 0 0 0-1.45-.676q-.552 0-1.004.254a1.86 1.86 0 0 0-.704.7 1.96 1.96 0 0 0-.254.99q0 .54.263.982a1.86 1.86 0 0 0 .721.692q.461.25 1.026.25.461 0 .786-.178.329-.178.616-.58v.67h.502V9.505Zm-5.891 1.205a1.9 1.9 0 0 0-.964.254 1.86 1.86 0 0 0-.692.695 1.9 1.9 0 0 0-.254.97q0 .4.152.763a1.9 1.9 0 0 0 .41.623 1.9 1.9 0 0 0 .624.412 2 2 0 0 0 .765.15 1.8 1.8 0 0 0 1.096-.357 1.95 1.95 0 0 0 .7-.947h-.522a1.3 1.3 0 0 1-.51.613 1.4 1.4 0 0 1-.777.23 1.42 1.42 0 0 1-.989-.378 1.31 1.31 0 0 1-.45-.928h3.339q0-.37-.05-.614a1.8 1.8 0 0 0-.17-.48 1.8 1.8 0 0 0-.702-.736 1.95 1.95 0 0 0-1.006-.27Zm9.008 0q-.814.018-1.35.551-.554.547-.554 1.387 0 .547.254.988a1.83 1.83 0 0 0 .709.692q.45.25 1.007.25.814 0 1.348-.547t.533-1.378q0-.549-.246-.994a1.77 1.77 0 0 0-.68-.695 1.9 1.9 0 0 0-.968-.254zm2.162.09 1.285 1.809-1.285 1.88h.567l1.001-1.48.99 1.48H24l-1.291-1.88L24 10.8h-.574l-.99 1.423-1.002-1.422zm-11.234.37q.031-.002.064 0 .537 0 .92.317.385.32.51.87H8.301q.101-.534.488-.86a1.34 1.34 0 0 1 .844-.328zm4.4 0q.035-.002.072 0 .634-.001 1.069.427.435.425.435 1.037 0 .614-.421 1.049-.423.435-1.016.434a1.453 1.453 0 0 1-1.488-1.475q0-.614.413-1.041.39-.406.936-.432m4.611 0q.037-.002.075 0 .626-.002 1.027.42.402.418.402 1.071 0 .636-.392 1.047-.39.408-.998.408-.626 0-1.037-.413-.412-.416-.412-1.05 0-.639.402-1.06a1.32 1.32 0 0 1 .933-.423z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.995 4.077v.06A11 11 0 0 1 16.22 8.42c.605 2.167.876 4.414.805 6.662a1 1 0 0 1 0 .113 6.3 6.3 0 0 0-.721-1.846 4.4 4.4 0 0 0-1.367-1.45c.025.064.059.113.059.168a7 7 0 0 1 .528 2.245 4.7 4.7 0 0 1-1.076 3.41 1.4 1.4 0 0 0-.113.203l-.069-.065a3.95 3.95 0 0 0-.138-2.374c-.578 2.216-2.068 3.538-4.047 4.437 2.404-.01 4.723-.375 6.697-1.856.015.533-.148.958-.696 1.841 1.673-.839 2.403-2.23 2.586-4.012.45.536.755 1.178.888 1.866.128.656.192 1.327.286 1.974.71-1.747.686-3.593.444-5.512 2.137 1.248 3.02 3.266 3.701 5.428a25 25 0 0 0-.133-3.494c-.17-1.698-.59-3.36-1.248-4.935a11.84 11.84 0 0 0-6.638-6.583 8.8 8.8 0 0 0-1.973-.563m-2.734.11c-.306.522-.587 1.06-.933 1.539a18 18 0 0 1-1.14 1.524 1.31 1.31 0 0 1-.943.43l.445-2.083a.6.6 0 0 0-.143.188c-.3.46-.592.928-.908 1.372a.63.63 0 0 1-.726.247c-.493-.144-.987-.282-1.48-.44a.26.26 0 0 0-.326.08A18 18 0 0 1 3.785 8.42c-1.076.953-2.24 1.746-3.785 1.638v.065c.434 1.026.864 2.053 1.318 3.074a1.65 1.65 0 0 0 .69.74 12 12 0 0 1-.183-1.283c-.024-.523.094-.617.617-.667a.17.17 0 0 1 .203.129c.074.187.163.37.246.558.104-.227.193-.44.296-.642a.3.3 0 0 1 .149-.133c.222-.094.45-.168.686-.257l.177.356c.153-.35.296-.696.46-1.037a.375.375 0 0 1 .468-.173v.242a4.93 4.93 0 0 0 .493 2.626 4.2 4.2 0 0 1 .281 1.046c.04.162-.043.257-.196.257l-.4.044a1.7 1.7 0 0 1 .27.247c.075.094.179.27.144.32a.9.9 0 0 1-.39.267.54.54 0 0 1-.315 0 10 10 0 0 1-.81-.272 4 4 0 0 1-.414-.212l-.08.094.716.612a1.55 1.55 0 0 0 1.24.41.987.987 0 0 0 .986-.988c.045-.306.005-.616.045-.922a2.7 2.7 0 0 1 .927-1.974 2.56 2.56 0 0 0-1.214.74 6.4 6.4 0 0 1-.079-1.135 1.545 1.545 0 0 1 1.402-1.653 21 21 0 0 1 1.648-.281c.805-.08 1.599-.246 2.369-.494a4.4 4.4 0 0 0 1.406-.794 18 18 0 0 1-2.872.38 8.88 8.88 0 0 0 3.4-4.777c-1.056 1.48-2.202 2.867-3.87 3.701a22.7 22.7 0 0 0 1.447-4.086zM5.443 8.07c-.03.153-.054.305-.094.454-.074.29-.163.577-.237.868a.197.197 0 0 1-.198.178c-.384.045-.764.103-1.183.157zM9.4 10.775a4 4 0 0 0-.577.053 2.9 2.9 0 0 0-1.48.523.99.99 0 0 0-.43.923 1.1 1.1 0 0 1 .972-.671 3.07 3.07 0 0 1 1.762.34c.49.234.772.76.696 1.298a2.34 2.34 0 0 1-.687 1.377 5.8 5.8 0 0 1-1.914 1.308 9.7 9.7 0 0 0-2.32 1.41 3.95 3.95 0 0 0-1.396 2.567h5.921a2.023 2.023 0 0 1 .987-2.551l-.26 1.115a5.43 5.43 0 0 0 1.243-2.665c.171.407.245.848.216 1.288a5.6 5.6 0 0 0 .44-2.866l.518.561c-.049-.4-.09-.755-.134-1.11a3.1 3.1 0 0 0-1.865-2.585 4.2 4.2 0 0 0-1.692-.315"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.626 24c-3.989-.108-7.476-2.03-9.89-5.873A10.9 10.9 0 0 1 .17 13.959a12.4 12.4 0 0 1 .239-4.996c.44-1.711 1.275-3.197 2.339-4.58.075-.099.169-.263.314-.174.098.061.023.207-.019.324-.473 1.36-.46 2.756.225 3.984.783 1.411 1.964 2.438 3.67 2.705 1.636.258 3.07-.211 4.21-1.317 1.378-1.34 1.95-2.99 1.415-4.946-.285-1.036-.768-1.922-1.612-2.578-1.092-.848-2.33-1.26-3.722-1.12-.098.01-.225.08-.267-.056s.103-.14.187-.178A11.9 11.9 0 0 1 12.071 0c1.74.01 3.427.384 5.006 1.125 2.152 1.008 3.91 2.498 5.133 4.552a12.4 12.4 0 0 1 1.688 4.93c.154 1.313.08 2.584-.188 3.863-.333 1.575-.942 3.028-1.875 4.34-.853 1.2-1.851 2.241-3.103 3.052-.998.647-2.025 1.177-3.16 1.538-1.115.356-2.245.544-3.946.595z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.634 16.504c.87-.075 1.543-.84 1.5-1.754-.047-.914-.796-1.648-1.709-1.648h-.061a1.71 1.71 0 0 0-1.648 1.769c.03.479.226.869.494 1.153-1.048 2.038-2.621 3.536-5.005 4.795-1.603.838-3.296 1.154-4.944.93-1.378-.195-2.456-.81-3.116-1.799-.988-1.499-1.078-3.116-.255-4.734.6-1.17 1.499-2.023 2.099-2.443a10 10 0 0 1-.42-1.543C-.868 14.408-.416 18.752.932 20.805c1.004 1.498 3.057 2.456 5.304 2.456.6 0 1.23-.044 1.843-.194 3.897-.749 6.848-3.086 8.541-6.532zm5.348-3.746c-2.32-2.728-5.738-4.226-9.634-4.226h-.51c-.253-.554-.837-.899-1.498-.899h-.045c-.943 0-1.678.81-1.647 1.753.03.898.794 1.648 1.708 1.648h.074a1.69 1.69 0 0 0 1.499-1.049h.555c2.309 0 4.495.674 6.488 1.992 1.527 1.005 2.622 2.323 3.237 3.897.538 1.288.509 2.547-.045 3.597-.855 1.647-2.294 2.517-4.196 2.517-1.199 0-2.367-.375-2.967-.644-.36.298-.96.793-1.394 1.093 1.318.598 2.652.943 3.94.943 2.922 0 5.094-1.647 5.919-3.236.898-1.798.824-4.824-1.47-7.416zM6.49 17.042c.03.899.793 1.648 1.708 1.648h.06a1.69 1.69 0 0 0 1.648-1.768c0-.9-.779-1.647-1.693-1.647h-.06c-.06 0-.15 0-.226.029-1.243-2.098-1.768-4.347-1.572-6.772.12-1.828.72-3.417 1.797-4.735.9-1.124 2.593-1.68 3.747-1.708 3.236-.061 4.585 3.971 4.689 5.574l1.498.45C17.741 3.197 14.686.62 11.764.62 9.02.62 6.49 2.613 5.47 5.535 4.077 9.43 4.991 13.177 6.7 16.174c-.15.195-.24.539-.21.868"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.871 4.678a3.3 3.3 0 0 0-1.953.631C4.455 6.35 3.724 8.235 3.534 10.007c-.204 1.938.23 4.166 1.398 5.638-.194.57.193 1.202.793 1.268a.975.975 0 0 0 1.06-.713c.197-.66-.425-1.342-1.13-1.189-.982-1.321-1.29-3.038-1.186-4.653.125-1.576.683-3.255 1.985-4.245.81-.602 1.828-.622 2.65-.075 1.107.742 1.763 2.132 1.97 3.43l.51.199.551.288c-.198-1.888-1.097-3.866-2.576-4.774a3.15 3.15 0 0 0-1.688-.503m9.515 3.946a8.8 8.8 0 0 0-3.056.526.97.97 0 0 0-1.246.27c-.394.505-.162 1.297.475 1.495.615.211 1.29-.284 1.265-.918a7.8 7.8 0 0 1 2.839-.403c1.575.07 3.665.654 4.626 2.148.076.119.165.404.521.4a.484.484 0 0 0 .422-.7c-.526-.99-1.522-1.725-2.636-2.194-.984-.412-2.095-.62-3.21-.624m-11.06.717c-.455-.003-.93.296-.979.933.012 1.233 1.657 1.33 1.912.24 1.887-.271 3.894.584 5.3 1.717.973.77 1.852 1.993 2.072 3.083.162.071.61.265 1.002.306-.146-1.638-1.215-3.101-2.452-4.127-1.568-1.33-4.123-2.328-6.218-1.903a.9.9 0 0 0-.636-.249zm-3.418 1.86c-.866.609-1.65 1.36-2.185 2.282C.008 14.668-.312 16.24.4 17.499c.66 1.218 2.082 1.78 3.41 1.812a7.3 7.3 0 0 0 2.265-.297c2.104-.59 4.373-2.222 5.274-4.362a.96.96 0 0 0 .79-.705c.2-.72-.463-1.372-1.169-1.191-.686.175-.966 1.012-.522 1.54-.607 1.389-1.8 2.449-3.112 3.161-1.493.804-3.306 1.188-4.758.659-.93-.304-1.642-1.13-1.618-2.215 0-1.297.924-2.677 2.062-3.573-.118-.538-.107-.74-.114-1.128zm20.103 1.53a.94.94 0 0 0-.672.292c-.344.327-.364.902-.092 1.248-.546.823-1.508 1.384-2.455 1.706-1.855.613-4.111.503-5.798-.38a4.5 4.5 0 0 1-.99-.674c-.141-.128-.183-.157-.296-.188-.5-.105-.783.486-.457.808 1.269 1.189 3.037 1.706 4.744 1.777.664.024 1.33-.02 1.983-.14 1.622-.302 3.318-1.107 4.168-2.521.639-.072 1.038-.775.769-1.344a.96.96 0 0 0-.904-.584m-8.746 4.514c-.83 1.12-2.646 1.45-4.75.723-.19.13-.302.214-.433.3-.13.087-.29.17-.607.366 2.558 1.032 5.444 1.076 6.739-1.082a3.4 3.4 0 0 1-.949-.307"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m6.989 3.47 4.66 3.181c.105.07.228.108.354.111a.63.63 0 0 0 .354-.111l4.664-3.192a.637.637 0 0 0-.089-1.087L12.272.065a.64.64 0 0 0-.56 0L7.067 2.372a.636.636 0 0 0-.078 1.098m6.597 4.179c0 .211.104.408.276.528l3.736 2.553a.63.63 0 0 0 .776-.05l3.134-2.803a.637.637 0 0 0-.028-.973l-2.992-2.393a.635.635 0 0 0-.751-.029l-3.874 2.65a.64.64 0 0 0-.277.517m-9.291 3.474a.64.64 0 0 1 .209.538.63.63 0 0 1-.315.485l-2.231 1.337a.63.63 0 0 1-.718-.049.64.64 0 0 1-.21-.693l.825-2.596a.63.63 0 0 1 1.023-.281zm12.1.271-4.033-2.76a.63.63 0 0 0-.708 0l-4.033 2.76a.65.65 0 0 0-.276.485.66.66 0 0 0 .212.521l4.03 3.605a.635.635 0 0 0 .842 0l4.03-3.605a.647.647 0 0 0-.064-1.006m-10.758-.713-3.13-2.803a.65.65 0 0 1-.213-.503.63.63 0 0 1 .237-.481l2.992-2.407a.64.64 0 0 1 .754-.029l3.87 2.65a.64.64 0 0 1 0 1.07l-3.732 2.553a.63.63 0 0 1-.778-.05m16.073 4.026-3.187-1.908a.63.63 0 0 0-.744.071l-3.895 3.477a.64.64 0 0 0-.204.587.64.64 0 0 0 .388.483l5.404 2.19a.634.634 0 0 0 .815-.332l1.675-3.752a.64.64 0 0 0-.252-.816m.442-4.561.825 2.596h-.007a.635.635 0 0 1-.927.742l-2.234-1.337a.62.62 0 0 1-.305-.485.63.63 0 0 1 .209-.538l1.416-1.262a.63.63 0 0 1 1.023.284m-11.82 6.786a.64.64 0 0 0-.202-.585L6.235 12.87a.63.63 0 0 0-.744-.071l-3.187 1.908a.65.65 0 0 0-.255.813l1.678 3.752a.63.63 0 0 0 .814.332l5.4-2.19a.64.64 0 0 0 .391-.482m1.912 1.07 4.334 1.755c.212.091.358.29.382.521a.64.64 0 0 1-.269.596l-4.338 3.013A.63.63 0 0 1 12 24a.64.64 0 0 1-.354-.114l-4.334-3.013a.635.635 0 0 1 .124-1.117l4.334-1.755a.64.64 0 0 1 .474.001"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.991 11.48c2.753-1.1 4.467-1.732 9.009-2.84-2.467.163-7.922.537-11.682 1.271l2.673 1.57m-8.56 3.651h3.6c.713-1.08 1.422-1.606 2.248-2.191a71 71 0 0 0-1.892-.701c-2.297 1.014-3.575 2.375-3.953 2.892m.709-3.928c-3.21 1.147-4.994 2.393-6.199 3.928h3.975c.387-.539 1.862-2.093 4.633-3.174a57 57 0 0 0-2.41-.754M8.79 8.788H0c8.862 1.6 13.133 3.66 20 6.572-.587-.439-10.051-6.013-11.209-6.572"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.789.422a4 4 0 0 0-3.578 0l-8 4A4 4 0 0 0 0 8v8c0 1.515.856 2.9 2.211 3.578l8 4a4 4 0 0 0 3.578 0l8-4A4 4 0 0 0 24 16V8c0-1.515-.856-2.9-2.211-3.578zM8 8a4 4 0 0 1 8 0v8a4 4 0 0 1-8 0zm6 0a2 2 0 1 1-3.999.001A2 2 0 0 1 14 8"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.906.614a3.4 3.4 0 0 0-.896.127c-.955.262-1.824.76-2.646 1.302a13.7 13.7 0 0 0-6.807-.002A11 11 0 0 0 6.71 1.016C6.136.78 5.526.585 4.899.622c-.113.01-.263.013-.315.135a5.8 5.8 0 0 0-.422 1.737 4.8 4.8 0 0 0 .223 1.923 5.4 5.4 0 0 0-1.36 3.053c-.05.453-.036.91-.015 1.365-.934-.237-1.93-.278-2.867-.035-.11.025-.174.16-.128.261.036.092.146.14.238.111.912-.232 1.881-.177 2.783.074q.045.412.107.821c-.798-.196-1.635-.093-2.42.11-.14.033-.18.238-.071.328.083.08.205.04.303.015.74-.18 1.536-.258 2.275-.027.072.248.13.5.226.741l.316.715c.321.63.806 1.167 1.365 1.596a6.8 6.8 0 0 0 1.73.942c.727.277 1.49.449 2.258.571a3.3 3.3 0 0 0-.376.498 3.2 3.2 0 0 0-.335.795c-.43.007-.865.05-1.288-.045a1.95 1.95 0 0 1-.864-.452 3.6 3.6 0 0 1-.62-.739 1 1 0 0 0-.618-.43.73.73 0 0 0-.57.11.67.67 0 0 0-.256.406c-.051.221-.011.452.059.665.122.365.351.687.626.954.485.467 1.089.799 1.726 1.006.535.17 1.112.257 1.667.143-.003.99.003 1.979-.003 2.968-.024.232-.134.45-.28.628-.1.128-.23.231-.377.301-.128.056-.268.102-.362.212a.43.43 0 0 0-.097.422.41.41 0 0 0 .265.25c.148.05.306.039.46.036.45-.013.907-.1 1.306-.318.55-.294.95-.897.925-1.532-.002-.679-.022-1.357-.032-2.036-.003-.385-.018-.771.016-1.155.028 1.009.034 2.019.054 3.028.002.324-.001.654-.09.97a1.8 1.8 0 0 1-.365.682c-.098.12-.226.22-.295.362-.06.114-.07.26.001.37.084.143.254.197.409.22.33.041.657-.073.95-.218a2.16 2.16 0 0 0 .86-.783c.209-.338.308-.736.316-1.13.01-.584.008-1.167.017-1.75.035-.297.021-.596.028-.894.005.175.003.35.004.525-.027.534-.003 1.07-.004 1.604.01.31-.013.624.049.93.062.324.195.636.398.897.234.3.551.53.902.678.294.123.63.204.943.105.156-.044.296-.18.3-.35.003-.169-.105-.312-.22-.427a1.87 1.87 0 0 1-.524-1.36V18.47c.004-.27-.012-.54.014-.809.049.405.034.814.033 1.22.004.733-.003 1.466.004 2.2.015.41.18.822.48 1.108.346.337.824.5 1.295.565q.36.05.719.026c.182-.016.37-.137.408-.324.039-.176-.059-.355-.2-.457-.093-.075-.215-.095-.318-.153-.292-.16-.5-.451-.588-.77-.045-.138-.022-.284-.028-.426.001-.89-.007-1.782.008-2.672.483.097.983.043 1.455-.084a4.6 4.6 0 0 0 1.794-.94c.334-.29.618-.651.761-1.073.068-.205.11-.426.068-.641a.7.7 0 0 0-.233-.414.72.72 0 0 0-.583-.137 1 1 0 0 0-.632.431c-.206.314-.445.612-.744.841a1.9 1.9 0 0 1-.718.346c-.43.103-.876.059-1.314.051a3.9 3.9 0 0 0-.72-1.269c-.032-.022.018-.042.036-.041 1.228-.18 2.453-.528 3.514-1.188a5.15 5.15 0 0 0 1.638-1.593 3 3 0 0 0 .21-.383c.096-.214.203-.423.285-.644a8 8 0 0 0 .218-.725c.661-.228 1.38-.193 2.057-.057q.187.037.375.084c.07.017.154.017.21-.036.104-.084.073-.278-.054-.323-.81-.218-1.677-.314-2.5-.104a9 9 0 0 0 .109-.792c0-.031.038-.032.06-.041.903-.252 1.874-.306 2.788-.073.12.038.227-.057.263-.165v-.037c-.031-.073-.074-.156-.16-.173-.956-.246-1.971-.197-2.92.052.038-.68.033-1.37-.125-2.037a5.5 5.5 0 0 0-1.251-2.399c.386-1.133.283-2.39-.134-3.499-.04-.105-.07-.249-.204-.27q-.15-.03-.3-.032"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.348 1.327a.89.89 0 0 0-.77 1.337L8.142 7.08h7.948c1.121 0 1.85 1.26 1.29 2.232l-3.953 6.869 3.407 5.869a.89.89 0 0 0 .77.443h5.504a.89.89 0 0 0 .741-1.384l-3.63-5.45c-.317-.476-.088-1.108.403-1.361q1.697-.888 2.513-2.435.82-1.55.821-3.567 0-2.016-.821-3.59-.816-1.57-2.525-2.468-1.704-.91-4.388-.911zM.99 7.58a.99.99 0 0 0-.858 1.483l7.55 13.115a.99.99 0 0 0 1.715 0l7.549-13.115a.99.99 0 0 0-.857-1.483z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.264 4.937A2.264 2.264 0 1 0 4.456 7.77h10.339c.988 0 1.791.803 1.791 1.791s-.803 1.792-1.791 1.792h-5.73a3.037 3.037 0 0 0-3.034 3.033 3.036 3.036 0 0 0 3.033 3.033h10.494a2.264 2.264 0 1 0 0-1.242H9.064a1.793 1.793 0 0 1-1.791-1.791c0-.988.803-1.792 1.791-1.792h5.73a3.036 3.036 0 0 0 3.034-3.033 3.036 3.036 0 0 0-3.033-3.033H4.427a2.265 2.265 0 0 0-2.163-1.592"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.65 18.44c.717-1.506 1.356-3.046 1.661-4.787.119 1.818 1.2 3.435 1.72 5.177.199.842.214 1.714-.107 2.584-.349.948-.911 1.759-1.582 2.488C7.528 21.936 6.97 20.11 7.65 18.44m11.547 3.765c-.825.623-1.902.716-2.744.311 0 0-.229-.093-.439-.34-1.6-1.868-3.215-3.725-4.828-5.583 1.431.264 3-.438 3.805-1.712.81-1.212.777-2.942.016-4.154-.916-1.324-2.695-1.758-4.19-1.555-2.588.373-4.447 2.722-5.026 5.182-.595 2.799-.166 5.44.761 7.932a6.9 6.9 0 0 0 .856 1.538c-2.727-1.215-5.137-3.45-6.402-6.457-1.4-3.232-1.372-7.324.294-10.606C2.608 4.225 4.923 1.876 7.789.884c1.157-.49 2.47-.746 3.81-.786h.716c1.91.057 3.838.55 5.435 1.466 3.548 1.807 6.232 6.3 6.244 10.314.123 4.153-1.674 7.915-4.797 10.327"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.204 18.089V12.66q0-2.477 1.156-3.947t3.108-1.47q.494 0 1.03.092.54.088.953.245V5.976q-.279-.122-.754-.195-.478-.073-1.007-.073-1.76 0-2.902.88-1.144.881-1.458 2.497h-.157V6.01H0v1.186h2.737V18.09Zm-3.959 0H8.04v-1.187H.245ZM19.1 7.109q1.604 0 2.507 1.095.904 1.091.904 3.02H15.6q0-1.94.93-3.027t2.569-1.088zm4.846 7.998h-1.458q-.28.884-1.133 1.378-.854.494-2.087.494-1.68 0-2.676-1.114-.991-1.118-.991-3.013v-.414H24v-.953q0-1.807-.578-3.074-.574-1.267-1.67-1.933-1.094-.67-2.652-.67-1.493 0-2.615.658-1.118.655-1.738 1.838-.617 1.183-.617 2.775v1.761q0 2.58 1.352 4.016 1.351 1.436 3.786 1.436 1.221 0 2.205-.394.98-.39 1.627-1.11.643-.717.846-1.681"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.717 5.245v6.613a3.31 3.31 0 0 0 3.306-3.307 3.31 3.31 0 0 0-3.306-3.306m-4.594 0h-3.45v6.613h3.455a3.31 3.31 0 0 0 3.306-3.307 3.31 3.31 0 0 0-3.311-3.306m11.448 9.915v-1.507a8.6 8.6 0 0 1-2.714 2.379l2.714 4.792v-2.878L24 24h-7.574l-2.709-4.789V24h-1.656l-3.907-6.897H5.673V24H0V0h9.123a8.5 8.5 0 0 1 4.589 1.337V0a8.55 8.55 0 0 1 6.859 3.441V1.939a8.53 8.53 0 0 1 3.133 6.612 8.52 8.52 0 0 1-3.133 6.609"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.511 18.508c.216 2.773.216 4.073.216 5.492H15.31c0-.309.006-.592.011-.878.018-.892.036-1.821-.109-3.698-.19-2.747-1.374-3.358-3.55-3.358H1.574v-5H11.97c2.748 0 4.122-.835 4.122-3.049 0-1.946-1.374-3.125-4.122-3.125H1.573V0h11.541c6.221 0 9.313 2.938 9.313 7.632 0 3.511-2.176 5.8-5.114 6.182 2.48.497 3.93 1.909 4.198 4.694M1.573 24v-3.727h6.784c1.133 0 1.379.84 1.379 1.342V24Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.729 13.55-1.903-.995-9.134 4.776a1.5 1.5 0 0 1-1.383.002l-9.137-4.778-1.903.995a.5.5 0 0 0 0 .888l11.499 6.011a.5.5 0 0 0 .462 0l11.499-6.011a.5.5 0 0 0 0-.888M.269 10.447l11.499 6.013a.5.5 0 0 0 .462 0l11.499-6.013a.5.5 0 0 0 0-.887l-11.5-6.012a.5.5 0 0 0-.462 0L.268 9.559a.5.5 0 0 0 .001.887z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.463 11.99-4.097-7.692-.924 1.707 3.213 5.985-5.483 10.283L4.69 11.99 11.096 0H9.27L2.882 11.99 9.269 24h1.807zm3.655 0L14.711 0h-1.807L6.517 11.99l4.117 7.712.904-1.707-3.193-6.005 5.463-10.263L19.29 11.99 12.904 24h1.807Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.263.007c-3.121-.147-5.744 2.109-6.192 5.082-.018.138-.045.272-.067.405-.696 3.703-3.936 6.507-7.827 6.507a7.9 7.9 0 0 1-3.825-.979.202.202 0 0 0-.302.178V24H12v-8.999c0-1.656 1.338-3 2.987-3h2.988c3.382 0 6.103-2.817 5.97-6.244-.12-3.084-2.61-5.603-5.682-5.75"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.598 0A1.7 1.7 0 0 0 6.37.465a1.71 1.71 0 0 0-.072 2.421l.002.002L8.91 5.65a.623.623 0 0 1-.025.891.625.625 0 0 1-.89-.027l-1.26-1.332a1.727 1.727 0 0 0-2.428-.073 1.71 1.71 0 0 0-.075 2.422v.002l1.88 1.988a.626.626 0 0 1-.026.891.623.623 0 0 1-.89-.027h-.003l-.685-.729-.014-.02a1.73 1.73 0 0 0-2.427-.073 1.71 1.71 0 0 0-.074 2.423l2.253 2.444.006.008.352.363q.004-.06.013-.117a1.75 1.75 0 0 0 .488 1.47l.141.143 1.29 1.28c.68.68 1.795.68 2.474 0l.523-.522 1.588-1.582 1.102-1.09 1.77-1.766 2.532-2.52v-.003a1.745 1.745 0 0 0 0-2.463l-.443-.442a1.295 1.295 0 0 1 1.576.202l1.057 1.054c.904.905.905 2.353.002 3.248v.002l-3.496 3.48h-.002c-.56.56-.56 1.477.004 2.03l.504.498-.676.674a.51.51 0 0 0-.031.69l.15.185h.008l2.488-2.49-.184-.15a.52.52 0 0 0-.357-.116.53.53 0 0 0-.334.15l-.648.647-.51-.504h-.002a.84.84 0 0 1 .004-1.201l3.494-3.48a2.88 2.88 0 0 0 .002-4.075l-1.06-1.056a1.88 1.88 0 0 0-1.33-.55c-.38 0-.76.116-1.083.343l-.564-.563a1.74 1.74 0 0 0-1.237-.508v-.002a2 2 0 0 0-.205.014l-.937-1.03-.008-.005-1.28-1.358L8.8.538A1.73 1.73 0 0 0 7.6.002ZM7.58.635a1.08 1.08 0 0 1 .756.344l2.63 2.778 1.278 1.353.744.82a1.7 1.7 0 0 0-.367.278l-3.91 3.895-3.606 3.587a1.8 1.8 0 0 0-.308.426l.01-.021-.094-.098-2.253-2.443-.004-.002a1.063 1.063 0 0 1 .042-1.522l.004-.002a1.08 1.08 0 0 1 1.527.041l.002.012.701.74a1.27 1.27 0 0 0 1.79.057 1.27 1.27 0 0 0 .056-1.79h-.002l-1.88-1.989v-.002a1.06 1.06 0 0 1 .042-1.522 1.08 1.08 0 0 1 1.533.045l1.256 1.33a1.27 1.27 0 0 0 1.791.057 1.27 1.27 0 0 0 .055-1.79h-.002l-2.61-2.763a1.06 1.06 0 0 1 .042-1.52A1.08 1.08 0 0 1 7.58.635m6.277 5.696c.143 0 .285.03.418.084a1.1 1.1 0 0 0-.418-.084m.44.096q.19.08.346.232a1.1 1.1 0 0 0-.346-.232m-9.52 7.732a1.8 1.8 0 0 0-.154.473 1.7 1.7 0 0 1 .154-.473m13.397 3.037-2.557 2.557 2.848 3.435q.065.075.14.15c.875.873 2.317.89 3.206 0a2.25 2.25 0 0 0-.152-3.33z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.166 0S6.908 1.035 6.25 4.744c-1.365.903-2.056 1.624-2.06 1.916 0 .023.02.042.031.063.115-.054 5.565-2.614 9.422-2.967a8 8 0 0 1 .707-.03c1.8-.007 4.532.365 4.569.37-.063-.269-1.722-1.02-2.817-1.217C13.504.009 10.166 0 10.166 0m8.754 4.096c-.039-.003-3.665-.261-5.342-.096-3.94.388-9.242 2.675-9.356 2.725.16.27 1.288.38 1.848.384-.085 1.63-.804 4.532-.674 4.553.09.014.295-.547.295-.547s-.105.322-.201.692c.404-.02.597-.04.851-.018.057.005.143.01.184.078.134-.26.137-.494.137-.494s.056.211.043.494c.096-.082.209-.316.209-.316s-.009.201-.018.324c.08.048.213.033.213.033a7 7 0 0 1-.092.592c-.062.312-.16.488-.4.803-.297.002-.617.244-.748.57-.02.17.246.37.246.37l-.39 1.896a1.74 1.74 0 0 0-.583.937s-.078.912-.013 1.23c.04.202 1 .846 1.671.89.397.025 1.19-.618 1.19-.618l.506-.049c.276.346.528.441.931.553l.11.34s-.182.149-.182.26c0 .11.197.214.197.214s-1.108.156-1.074 1.53c.018.728 1.01 1.074 1.824 1.105.855.033 2.012-.513 2.012-.513s.184.066.412.048c.262-.02.549-.205.549-.205s-.426.331-.436 1.268c-.002.25.172.537.364.7.114.095.3.17.412.171.173.001-.359-.495-.375-.813-.028-.541.69-.626 1.135-.626.471-.001 1.812.614 2.82.626 1.57.02 2.583-1.212 2.613-2.16.037-1.14-.951-1.834-1.304-2.21-.052-.233-.324-.722-.604-.782-.487-.104-.963.09-.963.09s-.112-.03-.223-.088c.794-1.087.876-1.977.887-2.728.032-2.214-1.539-3.268-1.762-3.39.371-.38.53-.64.622-.847a28 28 0 0 0-.18 1.051l.369-.326v.379s.44-.45.504-.914c.039.377.021.914.021.914s.552-.561.737-1.92c.035.862.066 1.508.066 1.508s.29-1.837.192-3.75c-.048-.928-.144-2.02-.47-2.746.825-.647 1.245-.959 1.227-1.16 0-.004-.007-.009-.007-.012M10.504.25s.961.233 1.406.578c.737.573 1.562 1.75 1.562 1.75s-.98-1.165-1.625-1.625C11.451.67 10.504.25 10.504.25m-.516.031s-.72.785-1 1.235c-.42.672-1 2.156-1 2.156s.358-1.511.766-2.156C9.064 1.024 9.988.28 9.988.28zm3.914 2.56c.813.013 1.465.054 1.465.054s-2.596.027-3.867.253c-2.02.36-4.73 1.538-4.73 1.538S9.273 3.36 11.478 2.96c.638-.116 1.611-.132 2.424-.12zm-3.031 3.07s-.122.283-.23.552c-.056-.01-.112-.027-.165-.026.19-.26.395-.527.395-.527zm1.293.01s-.513 1.13-.598 2.433c.17-.534.299-.83.299-.83s-.064.815.12 1.425c.131-1.169.774-1.955.774-1.955s-.209.81-.12 1.37c.107-.826.398-1.69.398-1.69s-.187 1.808.209 2.64c.385-.368.718-1.193.718-1.193s.074.246.045.508c.506-.967.452-2.574.452-2.574s.122.406.26.998c-.19.13-.315.271-.315.271s.136-.113.326-.215c.08.347.155.75.223 1.176q-.007-.002-.014-.004c-.62-.006-.944.26-1.047.594-.288.935.01 1.18.453 1.18.836-.001.961-1.149.961-1.149s.119.33.094.57c-.01.104-.102.274-.102.274l.336-.242s-.092-.74-.394-1.069c.145-.587.24-1.068.285-1.42q.075.035.143.085c.063.634.133 1.446.117 2.066.171-.286.31-.586.31-.586l.01.52s-.344.88-.906 2.033c-1.185.85-1.903 1.111-3.17 1.181-.478.027-1.305-.175-1.305-.175s-.556-1.118-1.037-1.106c-.288.007-.719.22-.719.22s-.542-1.166-.232-4.009c.041-.38.674-.928.674-.928s-.258.515-.414 1.284l-.116.14s.093-.094.112-.115a6 6 0 0 0-.102.713c.123-.289.29-.541.29-.541s-.064.57.12.84c.355-.915.75-1.59 1.063-2.053.013-.003.028-.012.04-.014.053-.009.122.01.183.016a5.7 5.7 0 0 0-.354 1.531c-.886.086-1.043 1.293-1.043 1.293l.324.309s-.104-.216-.105-.34c.273.375.461.746 1.025.74 1.124-.013.951-1.56.951-1.56l.07.023s-.376-.51-1.171-.477l-.006.002a8.3 8.3 0 0 1 .851-1.384c.128.051.16.068.252.115-.154.395-.29.859-.27 1.312.138-.467.311-.861.48-1.209l.074.037-.069-.048a9 9 0 0 1 .567-1.012zm-.344.013s-.222.368-.42.863c-.08-.057-.105-.075-.219-.139.362-.464.639-.724.639-.724m3.767.375.067.644a1 1 0 0 0-.117-.055c.031-.307.05-.59.05-.59zm-4.539 2.105c.068.002.135.05.17.123.05.1.024.214-.056.252-.08.04-.184-.01-.233-.111-.049-.1-.023-.214.057-.252a.13.13 0 0 1 .062-.012m4.04.106c.058.002.121.05.16.123.053.1.042.211-.024.25-.065.038-.162-.01-.215-.11s-.042-.211.024-.25a.1.1 0 0 1 .054-.013zm-3.83.714s-.004.734-.805.793c-.556.042-.805-.445-.805-.445l.106.04s.077-.066.156-.028c.089.043.097.168.097.168s.06.075.399.066c.633-.016.851-.594.851-.594zm3.824.102s-.145.637-.72.648c-.606.012-.48-.527-.48-.527s.058.343.5.379c.428.035.7-.5.7-.5m-2.578 1.5c-.239-.003-.704.125-.704.125l.157.453-.016-.36s.347-.075.523-.077c.158-.003.47.054.47.054l-.063.406.25-.476s-.408-.123-.618-.125zm-2.915.318c.529-.084 1.037 1.046 1.133 1.166.174.217.616.38.672.696.064.359-.46.992-.46.992s-.046-.26-.212-.352c.102.179.102.446.102.446s-.103.755-1.406.976c-1.3.22-1.557-.389-1.557-.389s-.117-.312-.035-.691c-.157.168-.088.541-.088.541s-.828-.338-.943-.717c-.09-.295.188-.58.265-.879.133-.514.024-1.275.602-1.486.329-.12.848.067 1.093.022.285-.054.413-.257.834-.325m.008.244c-.29.017-.447.375-.492.72-.049.374.14 1.124.14 1.124s-.104-.738-.046-1.101c.052-.33.177-.575.414-.579.446-.006.625.344.68.72.05.342.023 1.038.023 1.038s.095-.72.055-1.078c-.044-.382-.3-.87-.774-.844m-1.726.227c-.355.066-.533.52-.532.941.002.478.547 1.317.547 1.317s-.414-.843-.414-1.297c0-.474.111-.744.407-.813.3-.069.584.2.734.563.129.312.101 1.008.101 1.008s.062-.714-.023-1.055c-.1-.402-.474-.728-.82-.664m7.156.32c1.36.023 2.372 1.958 2.365 2.94-.014 2.137-.426 2.398-1.25 3.58-1.214 1.742-4.018 3.821-5.699 3.9-1.064.05-1.817-.482-1.814-.912.006-1.313.996-1.441.996-1.441 2.425-.29 2.477-.52 4.117-2.2 1.587-1.625 1.808-3.87.273-4.552l-.379-.135s.227-1.2 1.39-1.18zm-1.022.098.028.178s-.382.309-.477.867l-.783-.373.016-.315c.56-.016 1.216-.357 1.216-.357m-3.046.314.347.067-.021.187zm.486.051s.339.052.508.055c.22.003.68-.055.68-.055l.017.457-.271.592-.977-.713zm-1.846.297c-.104 0-.188.106-.187.236 0 .13.084.235.187.235.104 0 .19-.104.19-.235 0-.13-.085-.237-.19-.236m.059.078c.05 0 .091.043.092.096 0 .054-.041.098-.092.098s-.093-.044-.092-.098c0-.053.042-.096.092-.096m-1.307.164a.2.2 0 0 0-.056.012c-.098.037-.14.166-.092.287.046.121.162.19.26.152.098-.035.14-.165.093-.287-.036-.097-.12-.164-.205-.164m.05.059c.041-.004.08.02.097.06.02.051-.003.108-.051.125-.048.02-.102-.007-.121-.058a.093.093 0 0 1 .05-.123.1.1 0 0 1 .026-.004zm4.423.037.732.768.254.199.22-.586s.868.283.89 1.662l-1.127-.623-.077.182 1.19.695q-.028.243-.108.49c-.02-.03-.04-.068-.06-.072-.562.133-1.453.492-1.453.492l.008 1.834c-.154.166-.308.337-.461.49l-.073-2.515.207-.586c-.042-.06-.314-.449-.377-.702-.029-.118.033-.245.004-.363-.035-.144-.186-.246-.209-.392-.017-.117-.014-.308.067-.348.044-.022.127.027.127.076 0 .088-.08.096-.082.154-.008.193.19.343.23.532.025.113-.022.235.006.347.049.197.222.479.28.569l.519-1.465-.695-.748-.352.375zm-5.953.053s-.26.496-.182.736c.124.381 1.002.84 1.002.84s-.59.247-.437 1.148c.12.714 1.125.633 1.125.633s.048.538-.004.932c-.055.407-.383.845-.383.845s.408-.413.474-.828c.027-.166.018-.5.018-.5s.093.16.125.246c.07.188.14.582.14.582s-.017-.385-.054-.574a7 7 0 0 0-.207-.687l.363-.047s.08.25.344.285c.161.022.488.004.488.004s.004.3-.05.457c-.095.27-.47.75-.47.75s-.255.372-.456.426c-.265.07-.682.025-.682.025s-.82.69-1.275.69c-.424 0-1.418-.674-1.508-.823-.105-.173.014-.723.01-1.084-.005-.327.597-.949.597-.949l.42-1.96s-.294-.213-.25-.348c.157-.478.645-.489.645-.489zm4.613.166.758.254-.778-.16zm-.36.57 1.725 1.818-.178.43.075 2.584c-1.202 1.182-3.051 1.203-3.051 1.203s-.202-.063-.217-.183c-.013-.106.158-.235.158-.235-.171-.552-.21-.736-.224-1.34l-.155-.144s.312-.425.448-.701c.088-.18.075-.327.072-.598 0 0 .373-.11.535-.215.251-.162.201-.385.201-.385s.262.06.602-.015a.89.89 0 0 0 .678-.856c.01-.811-.883-.953-.883-.953zm-1.285.035a.273.273 0 0 0-.103.526.273.273 0 0 1 .209-.45q.053.001.101.022a.27.27 0 0 0-.207-.098m-1.148.227a.273.273 0 0 0-.273.273c0 .11.067.208.168.25a.273.273 0 0 1 .21-.447q.053 0 .102.021a.27.27 0 0 0-.207-.097m2.135.263s.699.024.857.76c.081.377-.301.828-.767.881-.111.013-.409-.037-.409-.037s-.054-.114-.154-.115c-.227-.003-.342.138-.72.185-.3.038-.386-.011-.575.022-.214.037-.267.207-.267.207s-.325.063-.524.066c-.771.014-.883-.294-.941-.74-.083-.634.486-.797.486-.797s.025.108.35.258l-.23.068.06.264-.215.066.027.287.254-.027.045.26.266-.012-.051-.303.227-.05.025-.442c.218.039.474.063.826.033a1.8 1.8 0 0 0 .82-.28.7.7 0 0 0-.056.269c0 .38.316.687.707.687s.707-.308.707-.687a.697.697 0 0 0-.87-.668c.075-.089.122-.155.122-.155m3 .188 1.1.615c0 .028-.009.058-.01.086l-1.13-.644zm-2.807.037c.05.002.1.02.137.06l.01.01a.2.2 0 0 1-.008.28l-.477.447a.2.2 0 0 1-.279-.01l-.008-.01a.195.195 0 0 1 .008-.277l.094-.09.033.074a.15.15 0 1 0 .185.147.15.15 0 0 0-.125-.147l.01-.17.28-.261a.2.2 0 0 1 .14-.053m-.006.059a.15.15 0 1 0 .016.3.15.15 0 0 0-.016-.3m.244.34c.05.001.1.02.137.06l.01.01a.2.2 0 0 1-.008.28l-.476.446a.2.2 0 0 1-.28-.01l-.008-.01a.195.195 0 0 1 .008-.277l.477-.447a.2.2 0 0 1 .14-.053zm-.007.058a.15.15 0 1 0 .002 0zm-3.008.047.136.232-.109.024zm1.537.35a.08.08 0 0 0-.049.04l-.062.118a.087.087 0 0 0 .035.117.09.09 0 0 0 .117-.037l.06-.117a.085.085 0 0 0-.035-.116.1.1 0 0 0-.066-.006zm1.014.025a.15.15 0 1 0 .002 0zm-1.483.057a.1.1 0 0 0-.05.043l-.061.117a.085.085 0 0 0 .035.115.085.085 0 0 0 .115-.035l.063-.12a.085.085 0 0 0-.037-.115.08.08 0 0 0-.065-.005m5.397.357c.024.008.04.04.054.07a4 4 0 0 1-.285.608l-.765.279s-.015-.196-.028-.293c-.02-.148-.281-.172-.281-.172s.896-.376 1.305-.492m-4.43.045c.06-.002.11.016.14.064.154.25-.203.55-.722.637-.66.111-.89-.2-.73-.437.09-.137.498-.035.675-.059.17-.023.455-.2.637-.205m3.125.54c.077.01.193.031.197.124.007.138.028.414.028.414l.74-.27a8 8 0 0 1-.576.78l-.065-.365v.449c-.11.132-.216.258-.332.385zm-2.006.032a5 5 0 0 0-.973.108c-.128.183-.072.564-.072.564l2.133-.105s-.014-.334-.106-.487a5.4 5.4 0 0 0-.982-.08m-.076.09c.263-.007.551.008.992.05.068.152.067.34.067.34l-1.934.087s-.014-.204.035-.387c.339-.053.577-.083.84-.09m1.066.59s-.11.838-.023 1.32c-.462.113-1.205.137-1.828.11-.056-.511-.086-1.22-.086-1.22s-.08.55-.008 1.36c.714-.004 1.466-.006 2.031-.14-.067-.742-.086-1.43-.086-1.43m-1.222.246s-.03.34-.028.512c.002.188.04.562.04.562s.045-.37.042-.555c-.002-.174-.054-.519-.054-.519m.484.098s-.043.285-.043.43c0 .147.047.44.047.44s.028-.29.027-.437c0-.145-.031-.433-.031-.433m-2.465.539.133.105c-.003.25.006.502.098.79-.258-.034-.617-.217-.782-.45.298-.122.346-.167.551-.445m8.694.078c.25.139.459.393.457.611-.003.254-.264-.15-.557-.404.233.249.397.632.215.637-.238.006-.255-.311-.602-.514-.184-.107-.496-.152-.496-.152s.371-.174.983-.178m-1.073.273c.741-.002.851.642 1.137.64.313-.003.172-.28.172-.28s.106.151.21.136c0 0 1.301 1.029 1.321 1.989.022 1.08-1.257 2.173-2.312 2.164-1.381-.02-2.043-.67-3.008-.68-.725.034-1.213.328-1.227.727-.006.193.174.558.174.558s-.306-.258-.322-.527c-.041-.738.523-1.603 1.402-1.666.953-.11 1.383.232 2.613.322.48.035 1.162-.482 1.149-.766-.038-.823-1.73-.808-1.73-.808l.343-.309c-.023-1.231-.637-1.086-.637-1.086l.36-.406s.21-.007.355-.008m-.808.516c.161-.025.325 0 .453.187.138.203.176.746.176.746s-.448.437-.735.547c-.01-.128-.007-.244-.023-.402-.013-.123-.172-.28-.362-.309v-.171a7 7 0 0 0 .49-.598zm-.563.674v1.513c-.136.058-.245.115-.414.172-.255.087-.544-.005-.805.063-.285.073-.53.26-.804.367-.409.16-.95.176-.95.176s1.708-.936 2.973-2.291m.072.16c.127.025.282.153.288.256.012.26.022.344.03.504.158-.017.427-.262.427-.262s.042.256-.055.406c-.081.125-.349.271-.69.42zm.85.549s1.6.075 1.602.71c0 .4-.705.64-1.125.641-.571.002-1.54-.344-1.54-.344s.913-.39 1.032-.574c.097-.151.031-.433.031-.433"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.66 9.553V5.254A6.794 6.794 0 0 0 1.606 16.34c2.379-1.152 4.042-3.755 4.054-6.787m1.132 4.115c-.423 1.752-1.687 3.25-3.262 4.245a6.76 6.76 0 0 0 3.26.833 6.8 6.8 0 0 0 3.264-.833c-1.575-.996-2.84-2.494-3.262-4.245m5.184-6.103a6.8 6.8 0 0 0-4.052-2.31V9.52c0 3.045 1.667 5.663 4.051 6.818a6.77 6.77 0 0 1-1.607-4.387 6.76 6.76 0 0 1 1.608-4.386c1.003 1.183 1.655 2.714 1.655 4.387 0 1.674-.65 3.203-1.655 4.388 2.38-1.15 4.088-3.755 4.1-6.787V5.254a6.9 6.9 0 0 0-4.1 2.31zM18.34 9.52c0 3.046 1.667 5.663 4.053 6.82A6.793 6.793 0 0 0 18.34 5.255zm-1.132 4.148c-.423 1.752-1.687 3.25-3.263 4.245a6.76 6.76 0 0 0 3.262.833 6.8 6.8 0 0 0 3.263-.833c-1.575-.996-2.839-2.494-3.262-4.245"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 10.262v2.712h-9.518V24h-3.034V10.262zm0-5.131v2.717H8.755V24H5.722V5.131zM24 0v2.717H3.034V24H0V0z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 1.5A1.5 1.5 0 0 1 3.5 0h7A1.5 1.5 0 0 1 12 1.5V8H3.5A1.5 1.5 0 0 1 2 6.5ZM12 8h8.5A1.5 1.5 0 0 1 22 9.5v5a1.5 1.5 0 0 1-1.5 1.5H12ZM2 17.5A1.5 1.5 0 0 1 3.5 16H12v6.5a1.5 1.5 0 0 1-1.5 1.5h-7A1.5 1.5 0 0 1 2 22.5Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.39 5.583c-1.346.012-3.433.196-5.937.977-1.602.498-3.916 2.742-8.224 6.908-.57.32-2.67-.891-3.881-1.46 0 0 1.993 3.169 2.705 4.095 1.068 1.46 3.027 2.314 3.027 2.314-.178-.178-1.53-1.603-1.922-2.422-.25-.391.034-.962 1.957-2.386 1.745-1.282 7.942-6.515 13.924-7.94 0 0-.6-.095-1.648-.086M24 7.771c-2.065.213-4.06.819-5.947 1.709-3.775 1.78-10.149 6.338-10.149 6.338.285.178.57.355.856.498 3.062 1.353 7.585 2.171 8.44 1.886 2.385-.783 5.055-5.802 5.874-8.117 0 0-2.493.997-5.021 2.172-2.101.997-4.414 2.137-4.414 2.137l5.875-1.781s-1.568 3.703-3.633 4.13-5.697-1.033-5.697-1.033c.285-.249 4.13-3.063 13.103-6.73.392-.285.642-.746.713-1.21M0 11.294c.356.962.82 1.853 1.354 2.707.64.82 3.274 1.496 3.63 1.567C3.346 14.428 0 11.294 0 11.294"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.29 1.8q-.45-.6-.9-.9c-1.3-.9-2.899-.9-6.098-.9H7.696C4.498 0 2.9 0 1.8.8c-.4.3-.7.6-1 1C0 2.9 0 4.5 0 7.7v8.6c0 3.2 0 4.8.8 5.9q.45.6.9.9c1.199.9 2.798.9 5.996.9h8.596c3.199 0 4.798 0 5.898-.8q.6-.45.9-.9c.799-1.1.799-2.7.799-5.9V7.7c.2-3.2.2-4.8-.6-5.9ZM11.194 16.5c0 .2 0 .5-.1.8 0 .2-.1.3-.1.5-.1.1-.2.3-.4.5s-.4.3-.6.4c-.3.1-.7.1-1.399.1-.8 0-1.1 0-1.4-.1q-.6-.3-.899-.9c-.1-.3-.1-.7-.1-1.4v-8c0-.9 0-1.4.2-1.7s.4-.5.8-.7c.3-.2.8-.2 1.699-.2h2.299zm5.097-4.9a2.794 2.794 0 0 1-2.798-2.8c0-1.6 1.3-2.8 2.798-2.8 1.5 0 2.8 1.3 2.8 2.8s-1.3 2.8-2.8 2.8"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 7.626v8.749c0 .597-.485 1.092-1.091 1.092h-5.447v5.452c0 .596-.485 1.092-1.091 1.092H7.629a1.094 1.094 0 0 1-1.091-1.092v-5.452H1.091A1.093 1.093 0 0 1 0 16.375V7.626c0-.597.485-1.092 1.091-1.092h5.447V1.082c0-.596.485-1.092 1.091-1.092h8.742c.596 0 1.091.485 1.091 1.092v5.452h5.447A1.1 1.1 0 0 1 24 7.626m-3.325 4.339-2.192-1.649.333 1.042-4.891-.344c.152.304.243.638.243.992 0 .343-.081.667-.213.95l4.871-.364-.323 1.022zm-7.579.03-.495-8 1.021.324-1.647-2.185-1.647 2.195 1.04-.334-.454 8c0 .597.485 1.093 1.091 1.093.596 0 1.091-.486 1.091-1.093"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.586 0q-1.226.001-2.073.565-.846.565-1.213 1.68a3 3 0 0 0-.112.437 8 8 0 0 0-.078.53 9 9 0 0 0-.05.727q-.014.423-.013 1.016a31.121 31.123 0 0 0 .014 1.017 9 9 0 0 0 .05.727 8 8 0 0 0 .077.53h-.005a3 3 0 0 0 .113.438q.368 1.114 1.214 1.68.847.564 2.075.564c.8 0 1.536-.213 2.105-.603.57-.39.94-.916 1.175-1.65.076-.235.135-.558.177-.93a11 11 0 0 0 .043-1.207v-.82q0-.142-.14-.142h-3.064q-.14 0-.14.141v.956q0 .14.14.14h1.666q.084.001.084.086c0 .36 0 .62-.036.865-.038.244-.1.447-.147.606-.108.385-.348.664-.638.876s-.738.35-1.227.35c-.545 0-.901-.15-1.21-.353-.306-.203-.517-.454-.67-.915a3.1 3.1 0 0 1-.147-.762 17.366 17.367 0 0 1-.034-.656q-.015-.39-.014-.939a26.401 26.403 0 0 1 .014-.938 16 16 0 0 1 .035-.656 3.2 3.2 0 0 1 .148-.76 1.9 1.9 0 0 1 .742-1.01c.344-.244.593-.352 1.137-.352.508 0 .815.096 1.144.303.33.207.528.492.764.925q.069.141.198.07l1.044-.43q.113-.072.042-.199a3.6 3.6 0 0 0-.466-.742 3 3 0 0 0-.679-.607 3.3 3.3 0 0 0-.903-.41A4 4 0 0 0 19.586 0M8.217 5.836c-1.69 0-3.036.086-4.297.086-1.146 0-2.291 0-3.007-.029v.831l1.088.2c.744.144 1.174.488 1.174 2.264v11.288c0 1.777-.43 2.12-1.174 2.263l-1.088.2v.832c.773-.029 2.12-.086 3.465-.086 1.29 0 2.951.057 3.667.086v-.831l-1.49-.2c-.773-.115-1.174-.487-1.174-2.264v-4.784c.688.057 1.29.057 2.206.057 1.748 3.123 3.41 5.472 4.355 6.56.86 1.032 2.177 1.691 3.839 1.691.487 0 1.003-.086 1.318-.23v-.744c-1.031 0-2.063-.716-2.808-1.518-1.26-1.376-2.95-3.582-4.355-6.074 2.32-.545 4.04-2.722 4.04-4.9 0-3.208-2.492-4.698-5.758-4.698zm-.515 1.29c2.406 0 3.839 1.26 3.839 3.552 0 2.263-1.547 3.782-4.097 3.782-.974 0-1.404-.03-2.063-.086v-7.19c.66-.059 1.547-.059 2.32-.059z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.023 0v24h5.553v-8.434h2.998L15.326 24h6.65l-5.372-9.258a7.65 7.65 0 0 0 3.316-3.016q1.063-1.815 1.062-4.08 0-2.194-1.062-3.91-1.063-1.747-2.95-2.742Q15.12 0 12.823 0Zm5.553 4.87h4.219q1.097 0 1.851.376.788.378 1.2 1.098.412.685.412 1.611c0 .926-.126 1.165-.378 1.645q-.343.72-1.03 1.13-.651.379-1.542.38H7.576Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 0H0v24h24zM3.006 19.476h9v1.5h-9zm9.824-9.392h-.98V8.432h1.264l.324-1.908h-1.136V4.872h1.416l.324-1.864h1.704l-.332 1.864h1.88l.324-1.864h1.7l-.304 1.864h.98v1.652h-1.28l-.324 1.908h1.136v1.652h-1.42l-.336 1.936h-1.7l.332-1.936h-1.868l-.32 1.936h-1.72zM3.014 3.008H7.15q1.716 0 2.632.912c.529.553.808 1.3.772 2.064v.028a2.8 2.8 0 0 1-.536 1.784 3.07 3.07 0 0 1-1.404.992l2.204 3.224h-2.32L6.63 9.24H5.014v2.772h-2zm13.672 5.424.328-1.908h-1.876l-.32 1.908zM7.014 7.408c.415.014.821-.129 1.136-.4a1.2 1.2 0 0 0 .4-.928v-.028a1.16 1.16 0 0 0-.4-.968 1.84 1.84 0 0 0-1.148-.32H5.014v2.592z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m24 3.53-9.952.078C9.142 3.647 6.994 8.265 0 16.345c1.569.753 3.323 1.24 4.338.119 1.703-1.883 4.275-5.48 7.154-8.346 1.793-1.784 6.01-.865 9.95-1.23 1.351-.125 2.41-2.48 2.558-3.359zm-.147 6.076-7.326.044c-4.39 0-5.38 2.492-11.91 10.24 1.194.563 3.28.84 3.763.257 1.78-2.158 2.506-3.51 5.36-6.362 1.657-1.658 4.39-.687 7.86-1.01 1.267-.12 2.132-2.449 2.253-3.169"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 2.2A2.2 2.2 0 0 1 2.2 0h8.6A2.2 2.2 0 0 1 13 2.2v1.7A1.1 1.1 0 0 1 11.9 5H1.1A1.1 1.1 0 0 1 0 3.9zm0 6.9A1.1 1.1 0 0 1 1.1 8h20.7a2.2 2.2 0 0 1 2.2 2.2v5.7a1.1 1.1 0 0 1-1.1 1.1H2.2A2.2 2.2 0 0 1 0 14.8zm11 12a1.1 1.1 0 0 1 1.1-1.1h10.8a1.1 1.1 0 0 1 1.1 1.1v.7a2.2 2.2 0 0 1-2.2 2.2h-8.6a2.2 2.2 0 0 1-2.2-2.2z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 5.389V7.22h4.617l.74-.014a1.6 1.6 0 0 1 .262.008c.061.008.146.024.201.035s.082.015.135.031a2.4 2.4 0 0 1 .44.182 3 3 0 0 1 .312.191 2 2 0 0 1 .25.213c.047.046.1.1.143.147s.076.086.113.138.08.118.111.176q.048.087.08.154c.022.046.043.088.069.153a3 3 0 0 1 .181.672 3 3 0 0 1 .03.453 4 4 0 0 1-.026.357 3 3 0 0 1-.037.225c-.015.066-.03.114-.045.168l-.049.18a2 2 0 0 1-.168.392 2 2 0 0 1-.117.188 6 6 0 0 1-.185.24 2 2 0 0 1-.184.21 3.6 3.6 0 0 1-.43.32 2 2 0 0 1-.234.12 1 1 0 0 1-.182.07 1 1 0 0 1-.199.022l-.174.01.41.726 3.24 5.623 1.823-.007-3.06-5.5q.045-.031.099-.073a2 2 0 0 0 .125-.113c.049-.048.106-.107.158-.162a2 2 0 0 0 .143-.164c.044-.058.086-.123.127-.18.04-.058.08-.109.117-.166q.056-.084.111-.19a8 8 0 0 0 .244-.497 2.5 2.5 0 0 0 .16-.508c.02-.082.033-.157.05-.235q.023-.118.044-.255a4 4 0 0 0 .03-.3c.006-.105.007-.216.01-.316.002-.1.004-.189.003-.297a7 7 0 0 0-.013-.36 4 4 0 0 0-.041-.376 3 3 0 0 0-.075-.34 6 6 0 0 0-.095-.31 4 4 0 0 0-.112-.297 4 4 0 0 0-.164-.348 4 4 0 0 0-.181-.303 4 4 0 0 0-.19-.273A3 3 0 0 0 8.4 6.8a7 7 0 0 0-.25-.246 5 5 0 0 0-.304-.266 4 4 0 0 0-.272-.195 4 4 0 0 0-.271-.168 4 4 0 0 0-.729-.32 6 6 0 0 0-.424-.124 3 3 0 0 0-.345-.062 4 4 0 0 0-.272-.022H.217L.035 5.39zm17.54.01a3 3 0 0 0-.25.013 1 1 0 0 0-.19.035 2 2 0 0 0-.211.073q-.109.043-.221.095a1.5 1.5 0 0 0-.219.114 1.6 1.6 0 0 0-.207.167 3 3 0 0 0-.377.428q-.082.12-.14.233a3 3 0 0 0-.106.248 14 14 0 0 0-.121.334c-.036.107-.068.194-.746 2.101l-2.662 7.494c-.662 1.863-.661 1.864-.656 1.864h.002l.03.002h1.766l3.725-10.633.09-.252q.039-.12.082-.211a.4.4 0 0 1 .11-.14.6.6 0 0 1 .16-.098.8.8 0 0 1 .19-.053 1 1 0 0 1 .206-.006.7.7 0 0 1 .182.047 1 1 0 0 1 .193.092.5.5 0 0 1 .142.138 1 1 0 0 1 .094.198c.028.076.054.163.614 1.72a7065.411 7066 0 0 0 2.742 7.606l-5.578.002-.014 1.584 7.83-.01-4.1-11.613c-.042-.1-.08-.2-.12-.285a2.6 2.6 0 0 0-.264-.45 3 3 0 0 0-.2-.232 2 2 0 0 0-.171-.156 2 2 0 0 0-.207-.16 1 1 0 0 0-.215-.11 3 3 0 0 0-.51-.146 2 2 0 0 0-.283-.034 6 6 0 0 0-.39 0m.17 2.253a.3.3 0 0 0-.073.012.4.4 0 0 0-.102.043.4.4 0 0 0-.144.166 2 2 0 0 0-.055.147l-.066.205-3.407 9.88-.134.366-.047.127h1.681l.795-2.47v.41h4.979l-2.518-7.13c-.513-1.452-.535-1.518-.558-1.562a.24.24 0 0 0-.08-.092 1 1 0 0 0-.112-.065.4.4 0 0 0-.119-.037zM.013 7.678C0 7.676 0 7.674 0 9.494v9.104h1.813V9.506c1.12 0 2.241 0 2.816.002s.605.007.629.015a.1.1 0 0 1 .05.034.2.2 0 0 1 .03.056.4.4 0 0 1 .023.147.4.4 0 0 1-.01.084.2.2 0 0 1-.029.062.2.2 0 0 1-.06.055.3.3 0 0 1-.108.027 2 2 0 0 1-.183.006l-.264.002H2.26v8.6h1.826v-4.573l2.633 4.575h1.927l-3.814-6.711h.365a1 1 0 0 0 .164-.01 3 3 0 0 0 .29-.05 2 2 0 0 0 .265-.089q.125-.05.234-.103.105-.052.196-.115a1.8 1.8 0 0 0 .336-.31c.05-.06.1-.129.144-.189.043-.058.08-.107.113-.166a2 2 0 0 0 .098-.2 3 3 0 0 0 .078-.208 1.5 1.5 0 0 0 .078-.418 4 4 0 0 0-.002-.521 6 6 0 0 0-.02-.24 3 3 0 0 0-.025-.184 1 1 0 0 0-.044-.18 2 2 0 0 0-.086-.21 2 2 0 0 0-.106-.186 3 3 0 0 0-.137-.19 2 2 0 0 0-.136-.148 1 1 0 0 0-.143-.11 4 4 0 0 0-.205-.124 2 2 0 0 0-.207-.106 2 2 0 0 0-.24-.078 2 2 0 0 0-.207-.047l-.127-.018H.076zM17.72 11.59l1.148 3.336H16.7z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.84 5.76 8.4 7.68H5.28l-.72 2.88H2.64l.72-2.88H1.44L0 13.44h3.84l-.48 1.92h3.36L4.2 18.24h2.82l2.34-2.88h5.28l2.34 2.88h2.82l-2.52-2.88h3.36l-.48-1.92H24l-1.44-5.76h-1.92l.72 2.88h-1.92l-.72-2.88H15.6l1.56-1.92h-2.04l-1.68 1.92h-2.88L8.88 5.76zm.24 3.84H9v1.92H7.08zm7.925 0h1.92v1.92h-1.92Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.923 0a3.59 3.59 0 0 0-1.531 6.839c.04.475.18 2.156.315 3.874a1 1 0 0 1-.126.016c-.25.016-.499-.027-.748-.007-.32.024-.59.197-.914.197-.298 0-.608-.006-.88.136-.446.232-1.106.086-1.474.467-.298.308-.859.153-1.199.475-.088.083-.101.222-.213.26-.126.043-.257.07-.383.113-.247.083-.51.226-.607.486-.061.166.022.188-.146.257a1.4 1.4 0 0 0-.33.182c-.182.141-.231.336-.258.568-.002.017.003.315.003.314a.9.9 0 0 0-.221.256c-.133.235-.107.484-.009.728.107.264.198.364.209.636-.012.13.05.266.098.383.192.47.307.835.831.884l1.48 3.964C6.564 23.015 9.25 24 11.949 24c2.72 0 5.448-1.001 6.204-2.986l1.522-4.002c.327-.06.603-.178.726-.538.086-.189.174-.393.202-.6a.7.7 0 0 0-.01-.249c.062-.08.123-.15.167-.243.211-.445.162-.964-.268-1.25.114-.407-.014-.695-.385-.91-.188-.109-.29-.091-.347-.296-.053-.19-.14-.339-.307-.437-.215-.126-.458-.15-.684-.243-.093-.242-.33-.385-.565-.462-.195-.064-.398-.073-.594-.126-.203-.054-.317-.242-.524-.318-.225-.081-.463-.089-.698-.113-.253-.027-.43-.18-.669-.243-.253-.066-.502-.05-.758-.065-.258-.015-.476-.15-.73-.182-.202-.026-.403-.009-.606-.001a2 2 0 0 1-.474-.053c.136-1.721.266-3.391.3-3.843A3.59 3.59 0 0 0 11.924 0zm.95.826c.292-.007.684.158 1.009.518.518.573.59 1.257.332 1.397-.261.145-.741-.145-1.187-.529-.438-.388-.721-.863-.536-1.193.068-.123.207-.19.382-.193M10.766 6.99a3.6 3.6 0 0 0 2.312 0c-.197 2.54-.459 5.87-.486 6.08-.014.083-.098.176-.218.242a1 1 0 0 1-.464.102c-.027 0-.664-.005-.68-.409-.032-.825-.342-4.563-.464-6.015m2.371 3.856q.116.027.237.04c.302.025.597-.048.899.015.137.028.25.101.385.134.168.04.339.047.511.043a1.7 1.7 0 0 1 .463.052c.164.044.273.156.43.204.352.106.793.02 1.095.254.059.045.08.113.145.148q.104.052.218.082c.13.035.265.046.396.074.151.032.311.082.43.178a.3.3 0 0 1 .12.197c.009.072.088.1.156.13.215.094.453.11.657.232a.46.46 0 0 1 .205.227l.006.02.002.006.01.044c.004.034.014.132.027.222q.086.06.186.099c.18.071.474.207.537.4l.003.007.004.023a.24.24 0 0 1-.001.124c-.02.075-.066.238-.095.366.105.077.228.133.317.23q.07.077.1.172l.001.001.002.007.007.03c.046.185-.041.53-.136.636a2 2 0 0 0-.182.253.4.4 0 0 1 .054.166l.002.018v.016l-.001.029-.002.012-.003.018a2.3 2.3 0 0 1-.18.53c-.12.387-.574.307-.864.408-.028.154-.164.81-.284.965-.237.305-.633.282-.969.27a1.2 1.2 0 0 0-.503.089.7.7 0 0 0-.2.13c-.078.075-.09.155-.121.254-.108.352-.47.512-.795.543-.271.025-.509-.057-.772-.102a1.55 1.55 0 0 0-.773.058.9.9 0 0 0-.322.187c-.086.082-.154.173-.253.24a1.3 1.3 0 0 1-.735.211c-.261 0-.525-.066-.754-.2a1.5 1.5 0 0 0-.747-.183c-.255 0-.522.05-.747.183a1.5 1.5 0 0 1-.757.203c-.337 0-.694-.112-.926-.38-.182-.211-.457-.3-.72-.328-.378-.04-.718.123-1.09.123-.33 0-.713-.112-.889-.431-.067-.123-.067-.267-.17-.367-.135-.132-.33-.192-.509-.214-.354-.044-.702.068-1.03-.14a.59.59 0 0 1-.263-.372c-.023-.084-.161-.562-.18-.663-.029-.15-.484-.048-.637-.135-.138-.08-.208-.29-.253-.389-.044-.098-.18-.405-.19-.5l.006-.005q-.003-.017-.004-.036a.42.42 0 0 1 .104-.283.7.7 0 0 1-.199-.194c-.044-.085-.255-.454-.19-.64l.005-.004a.52.52 0 0 1 .18-.262c.069-.057.16-.1.237-.154a1 1 0 0 1-.058-.054c-.1-.136-.081-.427.014-.566l.012-.02.002-.003.003-.002a.3.3 0 0 1 .029-.036c.117-.124.279-.185.437-.248a1 1 0 0 0 .187-.097c.009-.088.003-.189.01-.246a.27.27 0 0 1 .093-.178c.16-.17.522-.23.707-.296a.8.8 0 0 0 .22-.108c.04-.03.036-.133.07-.18.09-.126.259-.19.408-.23.167-.045.342-.053.508-.1a.8.8 0 0 0 .233-.098c.055-.039.082-.113.146-.154.323-.205.74-.116 1.093-.237.125-.043.211-.136.341-.177.176-.056.37-.073.555-.064.164.008.334-.009.493-.05.142-.035.26-.11.408-.136.327-.057.652.03.98-.02.043.551.083 1.081.11 1.475-.67.17-1.125.495-1.125.87 0 .553.983 1 2.195 1s2.195-.447 2.195-1c0-.366-.435-.683-1.08-.858.034-.404.072-.866.123-1.508m3.865 2.053c-.318 0-.626.059-.891.17-.375.157-.6.407-.634.703a.65.65 0 0 0 .022.252l.02.409.01.2.002.027a1.3 1.3 0 0 0-.347-.207 2.3 2.3 0 0 0-.892-.17c-.319 0-.627.058-.892.169-.375.157-.6.407-.633.703a.65.65 0 0 0 .023.258l.02.402.01.201a.47.47 0 0 0 .073.268l.026.044c.117.214.336.388.63.501.232.09.493.137.754.137.34 0 .662-.078.93-.226.324-.178.51-.436.526-.725l.006-.074c.004-.03.008-.058.011-.119l.023-.416a.7.7 0 0 0 .026-.173q-.001-.024-.004-.049.175.16.438.262c.233.09.493.137.755.137.34 0 .661-.078.93-.226.324-.179.51-.436.525-.725.002-.042.004-.056.006-.074a1 1 0 0 0 .011-.12l.023-.41a.7.7 0 0 0 .026-.178c.001-.299-.192-.56-.543-.735a2.3 2.3 0 0 0-.99-.216m0 .27a2 2 0 0 1 .862.183c.164.082.402.243.401.498q-.002.135-.092.254l-.134.116a1 1 0 0 1-.217.143q-.014.007-.028.013a2.1 2.1 0 0 1-.788.149c-.293 0-.571-.056-.807-.16l-.025-.01a1 1 0 0 1-.207-.14l-.132-.114a.41.41 0 0 1-.09-.299c.023-.194.19-.366.47-.484.232-.098.505-.149.787-.149m-1.212 1.266q.111.09.256.157.027.015.054.024c.268.128.58.198.906.198s.642-.068.912-.196l.023-.013a1.3 1.3 0 0 0 .274-.164c-.006.08-.011.077-.016.177-.012.228-.198.399-.385.502a1.7 1.7 0 0 1-.8.193 1.9 1.9 0 0 1-.658-.119c-.192-.074-.389-.194-.49-.38-.059-.103-.061-.08-.067-.194zm-1.498.117a2 2 0 0 1 .862.184c.164.08.401.242.4.497a.42.42 0 0 1-.093.255l-.132.115a1 1 0 0 1-.213.14 2.1 2.1 0 0 1-.82.165 2 2 0 0 1-.802-.157l-.03-.013a1 1 0 0 1-.207-.139l-.133-.116a.41.41 0 0 1-.089-.297c.022-.195.19-.367.47-.485a2 2 0 0 1 .787-.149m-1.212 1.266q.12.097.28.17l.033.013c.268.127.577.196.903.196s.642-.067.912-.196l.025-.014q.155-.071.271-.163c-.005.08-.01.078-.016.177-.011.228-.197.4-.385.502a1.67 1.67 0 0 1-.8.193 1.8 1.8 0 0 1-.657-.119c-.192-.074-.389-.194-.491-.38-.058-.104-.06-.08-.066-.194zm-8.06 2.297q.147.095.318.14c.408.11 1.054-.132 1.236.345.208.541.85.741 1.381.698.43-.035 1.06-.306 1.41.092.404.46 1.092.576 1.665.425.525-.138.91-.457 1.478-.238.627.24 1.206.454 1.853.102.455-.247.623-.592 1.215-.492.522.089 1.02.2 1.503-.104.352-.22.362-.73.783-.78.37-.044.731.044 1.083-.139h.002l-.036.094-1.013 2.66c-.328.863-1.097 1.584-2.223 2.087-1.048.467-2.372.725-3.728.725-1.347 0-2.656-.255-3.686-.717-1.11-.498-1.866-1.217-2.188-2.08z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.1 0a.28.28 0 0 0-.23.42l6.88 11.93a.28.28 0 0 0 .48 0L19.13.42A.28.28 0 0 0 18.9 0ZM.5 0a.33.33 0 0 0-.3.46L10.43 23.8c.05.12.17.2.3.2h2.54c.13 0 .25-.08.3-.2L23.8.46a.33.33 0 0 0-.3-.46h-2.32a.24.24 0 0 0-.21.14L12.2 20.08a.23.23 0 0 1-.42 0L3.03.14A.23.23 0 0 0 2.82 0Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.271 1.352a.774.774 0 0 0-.787.775v19.761c0 .49.45.857.93.758l6.676-1.382-2.77-.614-3.675.762V2.607l3.101.686 2.777-.574-6.097-1.35a1 1 0 0 0-.155-.017m15.315.002L5.145 4.344v15.092l14.43 3.195a.774.774 0 0 0 .94-.758V2.111a.773.773 0 0 0-.93-.757zM2.984 4.79l-2.367.49A.774.774 0 0 0 0 6.04v11.639a.774.774 0 0 0 .607.754l2.377.525V4.791zm18.034.252V6.23l1.822.405v11.011l-1.822.377v1.186l2.365-.49A.774.774 0 0 0 24 17.96V6.322a.774.774 0 0 0-.607-.754z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.304.4C2.779.4 1.09.55 0 .814v15c.308.171.843.28 1.563.28.74 0 1.255-.108 1.543-.28V10.58a15 15 0 0 0 2.121.151h.33l2.86 5.059c.432.195 1.029.302 1.935.302.803 0 1.38-.11 1.647-.302L8.563 9.955c1.42-.8 2.326-2.27 2.326-4.496C10.89 1.827 8.423.4 4.304.4zm15.454 0c-1.379 0-2.624.27-3.69.794-2.455 1.203-3.961 3.738-3.961 7.363 0 4.825 2.655 7.716 7.166 7.716.9 0 1.587-.302 2.005.255.42.557-.358 1.217-.775 1.51-1.634 1.155-5.722-.102-9.49-.48C5.598 17.015.925 16.301.145 19.193c-.41 1.526.123 2.501.642 3.05C1.832 23.348 3.67 23.6 5.132 23.6a14 14 0 0 0 2.05-.156 1.31 1.31 0 0 0 1.024-.806 1.24 1.24 0 0 0-.212-1.256 1.35 1.35 0 0 0-1.235-.453c-1.501.271-3.622.869-4.435.011-.274-.291-.226-1.004 0-1.226.605-.875 4.493-.539 8.413-.029 4.33.434 8.402 1.86 10.945.635.996-.48 2.318-1.194 2.318-3.792H24q0-1.72-.448-3.38-2.072.282-3.288.295c-2.845 0-4.869-1.449-4.869-5.097S17.44 3.19 20.412 3.19c1.201 0 2.129.251 3.14.734.107-.924-.105-2.161-.59-2.853C22.182.61 20.96.4 19.758.4zM4.51 3.189c2.058 0 3.21.711 3.21 2.442 0 1.682-1.09 2.355-2.88 2.355a10.3 10.3 0 0 1-1.771-.15v-4.52a8 8 0 0 1 1.44-.127"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m24 9.324-9.143-.03L11.971.57 9.143 9.294 0 9.324h.031l7.367 5.355-2.855 8.749h.029l7.459-5.386 7.396 5.386-2.855-8.73L24 9.315"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.005 7.796c0 1.88-1.023 3.009-3.207 3.009h-3.615v-5.95H13.8c2.183 0 3.206 1.162 3.206 2.94zM.853 0l3.5 4.866v19.133h5.832v-9.06h1.398L16.563 24h6.583l-5.525-9.504a6.97 6.97 0 0 0 3.879-2.532 7 7 0 0 0 1.44-4.408C22.94 3.384 20.009 0 14.143 0h-9.79z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.913 6.957C20.913 3.12 17.79 0 13.95 0H2.424v3.86h10.978c1.738 0 3.177 1.366 3.209 3.044a3.08 3.08 0 0 1-.888 2.232 3.08 3.08 0 0 1-2.214.93H9.232a.276.276 0 0 0-.275.275v3.431q0 .09.052.162L16.265 24h5.311l-7.273-10.094c3.663-.184 6.61-3.261 6.61-6.95M6.894 5.923h-4.47V24h4.47z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.597 12.45h.025l.579-3.166c.066-.36.214-.488.63-.488h.58c.307 0 .481.118.481.395q0 .095-.026.216l-1.278 5.285c-.078.357-.195.512-.635.512h-.696c-.396 0-.51-.138-.598-.495l-.799-3.449h-.015l-.807 3.455c-.081.363-.195.49-.588.49h-.697c-.449 0-.56-.145-.642-.497l-1.269-5.3c-.016-.082-.036-.153-.036-.216 0-.278.18-.396.49-.396h.69c.417 0 .57.126.635.488l.575 3.167h.015l.738-3.167c.085-.362.233-.488.63-.488h.653c.391 0 .543.126.63.488l.735 3.167zM.498 15.205c-.349 0-.498-.144-.498-.496V9.3c0-.355.15-.503.498-.503h1.835c1.984 0 2.736.747 2.736 2.02 0 .776-.42 1.425-1.35 1.75l1.467 2.025c.089.124.125.22.125.306 0 .205-.24.307-.508.307H3.72c-.32 0-.444-.126-.669-.49l-1.206-1.931h-.019v1.926c0 .353-.15.495-.51.495zm19.479 0c-.35 0-.485-.127-.485-.478V9.285c0-.362.136-.49.485-.49h3.251c.356 0 .486.127.486.489v.462c0 .347-.13.478-.486.478h-1.867v1.061h1.583c.358 0 .484.13.484.49v.426c0 .348-.126.477-.485.477H21.36v1.095h2.143c.363 0 .497.133.497.49v.463c0 .351-.134.478-.497.478zm-13.411 0c-.351 0-.498-.144-.498-.496V9.3c0-.355.147-.503.498-.503h3.211c.354 0 .504.149.504.503v.429c0 .347-.15.496-.504.496H7.928v1.06H9.49c.36 0 .511.146.511.507v.388c0 .35-.15.499-.51.499H7.927v1.094h2.131c.356 0 .51.146.51.512v.423c0 .352-.154.495-.51.495H6.566zM2.351 11.68c.557 0 .793-.234.793-.743s-.236-.745-.793-.745h-.526v1.488z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.147 16.705c-.015-3.076.004-6.175-.024-9.238 0-2.052.836-3.917 2.193-5.274A7.44 7.44 0 0 1 17.59 0c1.482.015 2.999.008 4.493.008v3.728c-1.494 0-3.012-.005-4.493.006a3.713 3.713 0 0 0-3.725 3.725c-.01 3.063.004 6.162.01 9.238zm-5.4-.633-3.61.965c.845 3.15 3.287 5.236 6.274 6.253a13.7 13.7 0 0 0 4.026.704c1.385.039 2.78-.117 4.092-.469 3.31-.886 6.186-3 7.334-6.371l-3.538-1.199c-.699 2.053-2.574 3.374-4.76 3.96-.982.263-2.013.38-3.025.352a10 10 0 0 1-2.93-.514c-1.868-.636-3.378-1.87-3.862-3.681zM6.986 3.354a2.887 2.887 0 1 1-5.775 0 2.887 2.887 0 0 1 5.775 0"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.823 3.103q-.15 0-.34.017c-.511.044-1.25.18-1.802.329a6.3 6.3 0 0 0-1.15.42c-.231.112-.33.178-.354.273-.023.094.028.217.16.436s.346.533.535.961.356.97.361 1.651c.006.68-.149 1.5-.245 1.962s-.133.568-.227.618-.245.044-.525-.021c-.281-.065-.69-.187-1.1-.259s-.819-.093-1.122-.038c-.304.056-.504.189-.645.369-.14.18-.224.406-.282.75A7 7 0 0 0 0 11.687c.005.317.047.49.136.584.088.094.223.109.492.054s.672-.18 1.224-.215a6.3 6.3 0 0 1 1.94.202c.685.182 1.353.49 1.95.93.598.438 1.127 1.007 1.566 1.593.438.586.787 1.189 1.004 1.541.217.353.304.455.372.42s.117-.207.145-.417a3.1 3.1 0 0 0-.02-.848 7.5 7.5 0 0 0-.32-1.365 5.6 5.6 0 0 0-.495-1.018c-.146-.247-.241-.408-.245-.51s.085-.148.51-.315c.424-.167 1.185-.457 1.958-.808s1.556-.764 2.042-1.106c.486-.341.674-.61.724-.937.05-.326-.039-.71-.16-1.076a7 7 0 0 0-.529-1.193A14 14 0 0 0 11.28 5.6a9 9 0 0 0-1.1-1.236c-.282-.255-.421-.31-.51-.29s-.131.115-.168.47c-.037.356-.07.973-.144 1.559a7.5 7.5 0 0 1-.432 1.773 12.5 12.5 0 0 1-.99 1.982c-.388.64-.803 1.212-1.054 1.462-.25.25-.336.18-.477.064l-.486-.4c-.15-.125-.253-.213-.273-.293s.045-.15.27-.448c.227-.299.615-.825.96-1.478a7.8 7.8 0 0 0 .796-2.282 10 10 0 0 0 .095-2.338c-.044-.564-.124-.77-.306-.896-.137-.095-.332-.146-.638-.146m6.48 7.034h-.012c-.084.01-.192.112-.415.294a7 7 0 0 1-1.017.7c-.458.257-1.038.507-1.51.734-.47.226-.831.429-1.004.712-.172.283-.155.648.04.85.194.204.566.246.883.259s.58-.002.826.087c.246.09.475.285.764.516.288.23.637.498.925.561s.518-.079.766-.202c.249-.124.516-.23.888-.225.371.005.847.12 1.318.37.47.248.938.63 1.184.866.247.236.272.327.245.362-.028.036-.108.018-.304-.14-.196-.157-.508-.454-.917-.688s-.916-.404-1.4-.391c-.482.013-.94.21-1.23.55s-.412.822-.546 1.164c-.133.341-.28.543-.47.617s-.424.02-.703-.099c-.28-.12-.604-.307-.874-.442-.269-.136-.484-.22-.62-.353s-.195-.31-.203-.571c-.01-.26.032-.6.05-.853.02-.25.018-.413-.038-.56a1.1 1.1 0 0 0-.232-.35c-.07-.07-.099-.075-.113-.058s-.012.058.01.158c.023.1.067.26.05.581-.019.321-.098.803-.16 1.17s-.107.618-.02.808.306.322.707.54c.4.22.982.527 1.518.855.537.327 1.027.673 1.562 1.089.534.415 1.112.9 1.5 1.238.39.339.588.532.742.59.154.059.264-.018.307-.138.044-.12.023-.285-.014-.429a1.2 1.2 0 0 0-.24-.46 5 5 0 0 0-.68-.704c-.287-.243-.614-.463-.803-.614s-.242-.233-.212-.259.14.004.302.108c.162.103.375.28.612.459.237.178.499.356.733.584.235.228.443.506.583.706.14.201.214.324.294.372.08.049.165.022.277-.05a3 3 0 0 0 .426-.355c.178-.169.398-.393.551-.633s.242-.496.299-.772.08-.572.247-.862.476-.574.994-1.025 1.244-1.07 1.891-1.664c.648-.595 1.216-1.165 1.696-1.802.479-.638.87-1.342 1.067-1.743.199-.4.205-.498.14-.526-.063-.027-.198.015-.61.313-.414.297-1.106.849-1.886 1.43-.781.58-1.65 1.19-2.336 1.569-.686.378-1.19.524-1.55.562-.361.037-.58-.034-.724-.11-.143-.077-.21-.158-.224-.241-.013-.084.03-.17.135-.275s.277-.232.447-.392.338-.354.468-.556.22-.411.261-.592.034-.333-.04-.376-.215.023-.376.11c-.162.086-.343.192-.593.3a2.7 2.7 0 0 1-.92.235 1.63 1.63 0 0 1-1.088-.313c-.343-.26-.635-.71-.866-1.147s-.398-.865-.512-1.12c-.108-.242-.168-.33-.246-.33zm-2.215 4.075a.42.42 0 0 0-.294.115c-.094.086-.145.2-.034.338.112.137.385.297.636.469.252.172.481.357.666.42.184.064.323.006.402-.096s.1-.247-.003-.404-.327-.325-.564-.481c-.238-.157-.488-.302-.681-.346a.6.6 0 0 0-.128-.015m.252.208q.038 0 .083.01c.118.026.272.115.418.211s.283.2.333.289.014.163-.048.216a.26.26 0 0 1-.247.053c-.1-.031-.216-.126-.36-.219-.145-.093-.319-.184-.387-.268s-.031-.162.029-.218a.26.26 0 0 1 .18-.074zm4.778 3.728c.211-.008.42.06.602.24.183.178.34.467.383.732s-.03.505-.125.692a1.6 1.6 0 0 1-.289.397c-.074.074-.109.095-.14.095h-.003c-.033-.001-.062-.023-.208-.171a7 7 0 0 1-.573-.642c-.165-.22-.232-.383-.263-.568-.032-.185-.027-.39.082-.536s.323-.23.534-.239m.093 1.111a.26.26 0 0 0-.153.046c-.058.041-.105.113-.093.185.012.073.085.146.174.255s.195.255.264.335c.068.08.1.093.127.091.029-.002.054-.018.086-.048a.35.35 0 0 0 .094-.157.5.5 0 0 0 .002-.316.67.67 0 0 0-.218-.282.48.48 0 0 0-.283-.109"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.419 10.32v-.645c0-.531.437-.968.968-.968h3.225a.96.96 0 0 1 .552.175 2.3 2.3 0 0 0-.904.47h-2.873a.325.325 0 0 0-.323.323v3.224c0 .177.146.323.323.323h2.921l.048.067v.578h-2.969a.973.973 0 0 1-.968-.968v-1.934h-5.13l.08.967h3.115v.645H4.423l.058.698a8.8 8.8 0 0 0 2.001.347 8 8 0 0 1 2.625.564c.138.04.244.146.288.276a4.2 4.2 0 0 0-1.771-.395H6.88c-.25 0-.485.065-.688.18a9.5 9.5 0 0 1-1.654-.286l.147 1.772q.4-.067.798-.15c.018.224.09.434.203.616q-.471.1-.947.179l.09 1.09c.03.332.31.589.643.591h2.101c-.335.14-.626.364-.846.645H5.472a1.3 1.3 0 0 1-1.285-1.183l-.548-6.556H2.358l.758 7.578c.081.821.78 1.453 1.605 1.451h1.565q.002.181.033.355c-.293.04-.566.141-.806.29h-.792a2.257 2.257 0 0 1-2.246-2.032l-.794-7.933-.001-.032c0-.088.036-.169.094-.228l2.58-2.58a.32.32 0 0 1 .228-.094h1.023a1 1 0 0 1-.056-.323.97.97 0 0 1 .713-.933 1 1 0 0 1-.068-.357c0-.53.437-.967.968-.967h1.29a.972.972 0 0 1 .922 1.26 1 1 0 0 1 .436-.258 1 1 0 0 1-.068-.357c0-.531.437-.968.967-.968h1.29a.973.973 0 0 1 .913 1.29h1.667c.331 0 .639.17.816.449a.95.95 0 0 1 .474-.126h2.58a.972.972 0 0 1 .912 1.29h.461l-.282-.174 1.876-3.051h-2.645V3.87h.637a5 5 0 0 0-.027-.323c-.64-.002-.853-.011-1.57-.04l-.09-.004a2.7 2.7 0 0 1-.673-.089.45.45 0 0 1-.267-.189.4.4 0 0 1-.041-.282.46.46 0 0 1 .238-.274q.089-.048.181-.089h-3.87v1.29h4.837v.645H2.579l1.087 1.766-.549.338-1.389-2.258a.3.3 0 0 1-.048-.169C1.68 1.802 3.205 0 5.227 0h.078c.403 0 .747.275.855.645h11.679A.895.895 0 0 1 18.693 0h.078c2.023 0 3.548 1.802 3.548 4.192a.32.32 0 0 1-.067.196L20.191 7.74h.193c.53 0 .967.437.967.967a.97.97 0 0 1-.22.614l1.083 1.082c.065.06.106.145.106.239l-.001.032-.794 7.933a2.26 2.26 0 0 1-2.188 2.032 2.05 2.05 0 0 0-.805-.29q.032-.174.032-.355h.714a1.614 1.614 0 0 0 1.604-1.451l.76-7.578h-1.283l-.546 6.556a1.303 1.303 0 0 1-1.287 1.183h-.403a2 2 0 0 0-.319-.328v-.317h.722a.65.65 0 0 0 .643-.591l.004-.054c-.578 0-1.099-.002-1.636-.018v-.645c.553.017 1.091.018 1.69.018l.08-.96a8 8 0 0 0-1.77.237v-.665a9 9 0 0 1 1.824-.219l.081-.971q-.956.012-1.905.105v-.647a23 23 0 0 1 1.958-.103l.081-.969h-1.521q.201-.302.298-.645h1.276l.081-.967h-1.276a2.3 2.3 0 0 0-.129-.645h2.079a.324.324 0 0 0 .322-.323.323.323 0 0 0-.322-.322.325.325 0 0 1-.323-.323c0-.177.146-.322.323-.322a.324.324 0 0 0 .322-.323.323.323 0 0 0-.322-.322h-1.935a.325.325 0 0 1-.323-.323c0-.177.146-.322.323-.322a.324.324 0 0 0 .322-.323.323.323 0 0 0-.322-.322h-2.58a.32.32 0 0 0-.277.161.32.32 0 0 1-.279.161h-.089a.323.323 0 0 1-.322-.322.325.325 0 0 0-.323-.323h-2.58a.323.323 0 0 1-.322-.322c0-.177.145-.323.322-.323a.324.324 0 0 0 .323-.322.325.325 0 0 0-.323-.323h-1.29a.323.323 0 0 0 0 .645c.177 0 .323.146.323.323a.324.324 0 0 1-.323.322h-.645a.32.32 0 0 0-.302.218.32.32 0 0 1-.305.215.33.33 0 0 1-.179-.054.3.3 0 0 0-.181-.056h-.645a.325.325 0 0 1-.323-.323c0-.177.146-.322.323-.322a.324.324 0 0 0 .322-.323.323.323 0 0 0-.322-.322h-1.29a.324.324 0 0 0-.323.322c0 .177.146.323.323.323a.323.323 0 0 1 0 .645h-.645a.324.324 0 0 0-.323.322c0 .177.146.323.323.323a.323.323 0 0 1 0 .645H4.904a.324.324 0 0 0-.322.322c0 .177.146.323.322.323s.323.145.323.322a.325.325 0 0 1-.323.323H4.26a.324.324 0 0 0-.323.322c0 .177.146.323.323.323h1.289a.3.3 0 0 0 .081-.013.3.3 0 0 1 .162 0 .4.4 0 0 0 .08.013h2.58a.324.324 0 0 0 .322-.323.323.323 0 0 0-.322-.322h-.968V9.03h.968a.97.97 0 0 1 .911 1.29zm3.225-6.45V1.29h-1.29v2.58zm-10.309 0h1.609c.089-1.854.936-2.52 1.452-2.754A.25.25 0 0 0 5.55.89a.246.246 0 0 0-.244-.245h-.079C3.662.645 2.46 2.01 2.335 3.87m2.255 0h6.119V2.257c-1.154 0-2.459.001-3.508.003h-.077q.099.06.208.119.19.1.368.223a.43.43 0 0 1 .18.536.45.45 0 0 1-.258.228 2.1 2.1 0 0 1-.696.123c-.793.043-1.475.055-2.309.058q-.018.153-.027.323m14.663-.969c-.226-.759-.637-1.071-.917-1.198a.9.9 0 0 1-.434-.413h-4.613v.645c1.274 0 3.003 0 4.155.002h.055q.195-.01.385.032a.515.515 0 0 1 .44.528.54.54 0 0 1-.265.373c.494.021.727.029 1.194.031M6.096 1.29a.9.9 0 0 1-.434.413c-.279.127-.691.439-.917 1.198a41 41 0 0 0 2.103-.054 2 2 0 0 1-.295-.207.63.63 0 0 1-.235-.405.58.58 0 0 1 .417-.572c.132-.04.271-.056.409-.048h.055c1.051-.002 2.356-.003 3.51-.003V1.29zm-3.315 9.03h.566a1 1 0 0 1-.056-.323q0-.108.024-.212zm17.273-6.45h1.609C21.538 2.01 20.337.645 18.771.645h-.078a.245.245 0 0 0-.244.244.25.25 0 0 0 .154.226c.516.235 1.362.901 1.451 2.755m-6.698 12.638a5.4 5.4 0 0 1-1.062.19q-.296.037-.593.069l-.167.014a4 4 0 0 0-.289-.618q.193-.022.386-.037.29-.032.58-.068a4.8 4.8 0 0 0 1.145-.222zm-.284-3.609h-2.363a.323.323 0 0 1-.322-.322v-2.58c0-.177.145-.322.322-.322h2.24a2.2 2.2 0 0 0-.359.645h-1.558v1.934h1.627q.096.212.236.403zm-5.467 5.147.005-.01v.008zM3.292 11.61v.644h-.645v-.644zm1.29 7.094v.645h-.645v-.645zm16.769-7.417v.645h-.645v-.645zm-1.29 7.417v.645h-.645v-.645zM8.774 11.932v.645h-.645v-.645zm3.548-1.29v1.29h-.645v-1.29zM4.064 6.927l.395.642-.549.338-.395-.642zm14.18 13.902c.875 0 1.586.712 1.586 1.585 0 .875-.711 1.586-1.586 1.586H6.606a1.586 1.586 0 0 1 0-3.171h.427a1.6 1.6 0 0 1-.247-.845c0-.785.574-1.437 1.324-1.563v-.786c0-.385-.172-.744-.473-.986l-.034-.028a1.16 1.16 0 0 0-.723-.254c-.497 0-.902-.404-.902-.9s.405-.9.902-.9h.744c.836 0 1.653.288 2.304.812a3.63 3.63 0 0 1 1.363 2.842v.177h2.565v-5.272l-.557-.764a1.76 1.76 0 0 1-.342-1.045v-.233a1.78 1.78 0 0 1 1.781-1.775h1.418a1.78 1.78 0 0 1 1.781 1.775v.233c0 .379-.118.739-.341 1.045l-.559.764v5.376a1.59 1.59 0 0 1 1.027 1.482c0 .311-.092.599-.246.845zm-3.385-5.232a.263.263 0 0 1-.021-.372l.345-.389v-.794a1.8 1.8 0 0 1-.586-.196v4.552h1.7v-4.552a1.8 1.8 0 0 1-.585.196v.794l.345.389a.264.264 0 0 1-.023.372.26.26 0 0 1-.175.068.27.27 0 0 1-.198-.089l-.214-.241-.214.241a.27.27 0 0 1-.198.089.27.27 0 0 1-.176-.068m-6.758.475a2 2 0 0 1 .75 1.563v.763h1.7v-.177a3 3 0 0 0-.076-.662l-.406-.062a1.67 1.67 0 0 1-1.398-1.438l-.072-.585a3 3 0 0 0-.975-.167H6.88a.16.16 0 0 0-.162.16.16.16 0 0 0 .162.159c.431 0 .852.149 1.186.418zm8.342 7.188a3.01 3.01 0 0 1 2.057-1.616l.06-.012a.8.8 0 0 0-.316-.063H6.606a.847.847 0 0 0 0 1.691h.558l-.007-.006a.82.82 0 0 1-.265-.604c0-.409.307-.76.714-.816l.985-.136a1.116 1.116 0 0 1 1.197 1.497l-.025.065zm-8.817-3.672a.84.84 0 0 0-.099.396c0 .466.379.845.846.845h4.31a1.524 1.524 0 0 1 2.267-1.097l.199.113c.374.214.636.574.73.984h.599a.847.847 0 0 0 0-1.691h-4.935l-.125.202a2.15 2.15 0 0 1-1.831 1.017c-.348 0-.701-.085-1.028-.261zm6.072-8.271c0 .22.068.431.199.608l.709.971a1.044 1.044 0 0 0 1.682 0l.71-.971c.13-.177.199-.388.199-.608v-.233c0-.451-.293-.835-.698-.976v.301a.265.265 0 0 1-.265.265.265.265 0 0 1-.264-.265v-.359h-.258v.684a.265.265 0 0 1-.265.265.265.265 0 0 1-.264-.265v-.684h-.258v.359a.265.265 0 0 1-.265.265.265.265 0 0 1-.264-.265v-.301a1.04 1.04 0 0 0-.698.976zm1.157.309a.3.3 0 0 1-.303.301.3.3 0 0 1-.302-.301.303.303 0 0 1 .605 0m1.672.012a.303.303 0 0 1-.303.302.3.3 0 0 1-.302-.302.302.302 0 0 1 .605 0"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h24V0zm7.031 3.113A4.06 4.06 0 0 1 9.72 4.14a3.23 3.23 0 0 1 .84 2.28A3.16 3.16 0 0 1 8.4 9.54l2.46 3.6H8.28L6.12 9.9H4.38v3.24H2.16V3.12c1.61-.004 3.281.009 4.871-.007m5.509.007h3.96c3.18 0 5.34 2.16 5.34 5.04 0 2.82-2.16 5.04-5.34 5.04h-3.96zm4.069 1.976c-.607.01-1.235.004-1.849.004v6.06h1.74a2.88 2.88 0 0 0 3.06-3 2.897 2.897 0 0 0-2.951-3.064M4.319 5.1v2.88H6.6c1.08 0 1.68-.6 1.68-1.44 0-.96-.66-1.44-1.74-1.44zM2.16 19.5h9V21h-9Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.422 1.317C18.428.488 15.194-.017 12.007 0 8.819-.017 5.586.487 2.594 1.317a.49.49 0 0 0-.342.455c0 7.95 2.976 17.802 9.479 22.142a.46.46 0 0 0 .537 0c6.503-4.34 9.495-14.175 9.479-22.142.016-.21-.13-.39-.326-.455zM15.91 17.055c-1.025 1.723-2.244 3.267-3.691 4.454a.32.319 0 0 1-.407 0C7.845 18.241 5.537 12.47 4.658 6.893L3.65 6.356h7.479c2.407 0 2.715.78 2.715 1.35s-.308 1.35-2.714 1.35H8.934a.13.13 0 0 0-.13.13q0 .049.05.097l7.332 7.332.78.78zm1.333-2.65-4.374-4.374c-.065-.065-.016-.162.065-.18l.862-.096c1.805-.195 2.845-1.106 2.845-2.244 0-1.317-1.398-2.049-3.723-2.049H4.446A24.735 24.733 0 0 1 4.268 3.3a.46.46 0 0 1 .374-.487 32.298 32.296 0 0 1 7.3-.862h.13c2.39 0 4.878.293 7.301.862.227.049.39.26.373.487-.179 3.625-.99 7.593-2.503 11.104z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.733 0H2.267C1 0 0 1 0 2.267v19.466C0 23 1 24 2.267 24h19.466C23 24 24 23 24 21.733V2.267C24 1 22.933 0 21.733 0m-1.6 20.667H19.8c-.6 0-5.933-.134-7.733-.134-1.934 0-7.867.134-7.934.134H3.8v-1.134L3.733 18.4h.334c.066 0 4.2-.2 6.733-.267v-2.466c-2.733-.134-4.667-.867-5.933-2.134-1.934-2-1.8-4.866-1.734-7.933v-.867l2.4.067v.933c-.066 2.6-.2 4.867 1.067 6.134.8.8 2.133 1.266 4.2 1.4V3.533h2.4V13.2q3-.2 4.2-1.4c1.2-1.267 1.133-3.533 1.067-6.133v-.934l2.4-.066v.866c.133 3.067.2 5.934-1.734 7.934-1.266 1.266-3.2 2-5.933 2.133v2.467c2.467.066 6.667.266 6.733.266h.334l-.067 1.134Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 16.375a3.05 3.05 0 0 1-.246 1.231 3.11 3.11 0 0 1-1.672 1.66 3.1 3.1 0 0 1-1.225.247 3.7 3.7 0 0 1-.71-.073 4 4 0 0 1-.739-.218 3.2 3.2 0 0 1-.676-.37 2 2 0 0 1-.507-.515.46.46 0 0 1-.08-.275.44.44 0 0 1 .152-.346.5.5 0 0 1 .346-.138.6.6 0 0 1 .201.04.4.4 0 0 1 .186.17.05.05 0 0 0 .016.032l.064.065a1.8 1.8 0 0 0 .798.507 3 3 0 0 0 .943.154 2.1 2.1 0 0 0 .846-.17 2.2 2.2 0 0 0 1.16-1.16 2.1 2.1 0 0 0 .176-.841v-1.109a3.1 3.1 0 0 1-.985.637 3.1 3.1 0 0 1-1.193.234 3.05 3.05 0 0 1-1.231-.246 3.14 3.14 0 0 1-1.66-1.66 3 3 0 0 1-.247-1.232v-2.544a3.1 3.1 0 0 1 .247-1.225 3.2 3.2 0 0 1 .668-1 3.2 3.2 0 0 1 .986-.669 3.15 3.15 0 0 1 2.463 0 3.1 3.1 0 0 1 1.668 1.668 3.1 3.1 0 0 1 .246 1.225v5.92zm-.967-5.92a2.1 2.1 0 0 0-.17-.846 2.2 2.2 0 0 0-1.16-1.16 2.2 2.2 0 0 0-1.692 0 2.2 2.2 0 0 0-1.166 1.16 2.1 2.1 0 0 0-.168.845v2.531a2.1 2.1 0 0 0 .168.853 2.2 2.2 0 0 0 .468.693 2.2 2.2 0 0 0 .694.467 2.2 2.2 0 0 0 1.692 0 2.2 2.2 0 0 0 1.16-1.16 2.1 2.1 0 0 0 .174-.853zm-7.252 5.356a.44.44 0 0 1-.154.363.51.51 0 0 1-.66 0 .43.43 0 0 1-.153-.363v-5.356a2.1 2.1 0 0 0-.17-.846 2.2 2.2 0 0 0-1.16-1.16 2.2 2.2 0 0 0-1.692 0 2.2 2.2 0 0 0-1.16 1.16 2.1 2.1 0 0 0-.17.846v5.356a.43.43 0 0 1-.152.363.51.51 0 0 1-.661 0 .43.43 0 0 1-.153-.363v-5.356a3.1 3.1 0 0 1 .246-1.225 3.2 3.2 0 0 1 .67-1 3.2 3.2 0 0 1 .984-.669 3.15 3.15 0 0 1 2.464 0 3.1 3.1 0 0 1 1.667 1.668 3.1 3.1 0 0 1 .247 1.225zm-8.383 0a.44.44 0 0 1-.152.363.51.51 0 0 1-.662 0 .43.43 0 0 1-.152-.363V7.956a.44.44 0 0 1 .152-.363.51.51 0 0 1 .662 0 .44.44 0 0 1 .152.363zM4.982 8.44a.46.46 0 0 1-.145.338.48.48 0 0 1-.355.142.5.5 0 0 1-.339-.145l-.016-.017a.2.2 0 0 0-.032-.024.1.1 0 0 1-.033-.025 1.9 1.9 0 0 0-1.24-.43q-.871 0-1.363.595-.491.596-.492 1.693v5.243a.44.44 0 0 1-.153.363.53.53 0 0 1-.33.123.53.53 0 0 1-.33-.123.43.43 0 0 1-.153-.363v-5.243A4.4 4.4 0 0 1 .18 9.303a3 3 0 0 1 .53-1.031 2.55 2.55 0 0 1 .878-.706 2.8 2.8 0 0 1 1.231-.257 3.1 3.1 0 0 1 1.065.209 2.6 2.6 0 0 1 .934.58.48.48 0 0 1 .163.343zm2.76-3.128a.826.826 0 0 1-.826.827.826.826 0 0 1-.827-.827.826.826 0 0 1 .827-.826.826.826 0 0 1 .826.826"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.458.86 0 7.093l3.353 12.761 2.552-.313-.701-8.024.838-.373 1.447 8.202 4.361-.535-.775-8.857.83-.37 1.591 9.025 4.412-.542-.849-9.708.84-.374 1.74 9.87L24 17.318V3.5Zm.316 19.356.222 1.256L24 23.14v-4.18l-10.22 1.256Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.55 14.65c-.846-.486-1.805-.632-2.752-.666-.79-.023-1.974-.541-1.974-1.985 0-1.072.868-1.94 1.985-1.985.947-.034 1.906-.18 2.752-.666A5.02 5.02 0 0 0 22.4 2.502 5.04 5.04 0 0 0 15.53.674a4.99 4.99 0 0 0-2.504 4.343c0 .97.35 1.861.79 2.696.372.699.553 1.996-.71 2.73-.948.54-2.132.202-2.719-.745-.496-.801-1.094-1.545-1.94-2.03A5.01 5.01 0 0 0 1.6 9.495a5.02 5.02 0 0 0 1.84 6.845 5.03 5.03 0 0 0 5.008 0c.846-.485 1.444-1.23 1.94-2.03.406-.654 1.433-1.489 2.718-.744.948.541 1.241 1.737.711 2.73-.44.823-.79 1.725-.79 2.695A5.01 5.01 0 0 0 18.034 24a5.01 5.01 0 0 0 5.008-5.008 4.98 4.98 0 0 0-2.492-4.343z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.95.051h16.947v6.21L13.473 21.004l-.524.734-5.789-6.842c4.103-.74 6.21-3.896 6.21-7.37C13.37 4.05 11.263.472 6.95.05m-5.475 13.37 8.74 10.528H0V3.419h5.474c2.945 0 4.422 1.999 4.422 4.107s-1.477 4.21-4.422 4.21H1.475zm14.07 10.528H24V12.157l-7.685 10.738z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10.5 24-1.485-9.007-8.961-1.738L8.16 9.06 7.045 0l6.495 6.414 8.271-3.861-4.093 8.16 6.228 6.673-9.024-1.372z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.543 16.862a2.8 2.8 0 0 1-1.168-.743h-.071q-.33.023-1.416-.142c-1.086-.165-1.33-.519-1.817-1.227a2.33 2.33 0 0 1-1.086 1.097q-.73.366-1.817.39a4.2 4.2 0 0 1-1.215.696q-.625.224-1.428.224-.945 0-1.711-.602c-.766-.602-.767-.94-.767-1.616q0-.236.024-.472.023-.237.094-.425.448.59 1.015.861.566.272.991.272.66 0 .932-.496.272-.495.272-1.321v-.342q0-.178-.024-.343-.024-.92.106-1.817t1.121-1.723l.236-.189q-.189.048-.342.083a1.2 1.2 0 0 1-.248.035q-.165 0-.448-.354a1.66 1.66 0 0 1-.354-.731q-.071-.19.035-.295c.106-.105.17-.154.295-.248h.024l.023-.024q-.023-.024-.07-.012a.5.5 0 0 1-.118.012.23.23 0 0 1-.107.024h-.13a1.5 1.5 0 0 1-.707-.165 7 7 0 0 1-.225-.095q-.105-.047-.224-.047c-.119 0-.15.004-.212.012s-.11.02-.142.035H5.7q-.047 0-.094-.059-.048-.06-.048-.177 0-.33.248-.472.247-.141.437-.141.165 0 .307.047l.283.094q.165.048.307.083a.4.4 0 0 0 .283-.036 7 7 0 0 1-.154-.247 7 7 0 0 0-.153-.248l-.153.035a1 1 0 0 1-.083.012q-.213 0-.366-.236-.153-.235-.295-1.11a2.3 2.3 0 0 1-.271-.46.9.9 0 0 1-.083-.318q0-.213.165-.354a2.5 2.5 0 0 1 .425-.283L8.39 2.289q.189-.472.39-.72c.201-.248.303-.271.507-.318q.354-.071.802-.118.45-.048.968-.071a1.4 1.4 0 0 1 .354-.33.8.8 0 0 1 .425-.118q.047 0 .106.011c.059.011.083.02.13.036q.117.023.248.047.129.024.295.024.117 0 .318-.012c.201-.012.295-.02.484-.036q.118-.094.366-.212t.53-.236q.12-.07.26-.13.142-.06.26-.106.19.118.53.437c.34.319.398.436.508.672q1.511.26 1.876.72.366.46.366 1.239c0 .779.142.905.425 1.156q.425.378.66.496a.47.47 0 0 1-.341.141 1.2 1.2 0 0 1-.437-.094q.543.33.85.79t.4 1.05q-.235-.14-.495-.259c-.26-.119-.346-.134-.519-.165q.307.33.448.779t.142.991q0 .425-.165.956t-.614 1.12q.071.072.118.201a.8.8 0 0 1 .047.319q0 .52-.212.92c-.212.4-.299.52-.472.756a10 10 0 0 0-.425.696 1.6 1.6 0 0 0-.189.79q0 .686.46.968c.46.282.61.283.91.283q.211 0 .518-.07.308-.072.614-.307.047.141.083.307c.036.166.035.228.035.354q0 .825-.555 1.333c-.555.508-.908.507-1.616.507q-.566 0-1.24-.224m1.616 3.646a.5.5 0 0 1 .236.177q.071.107.024.248a3 3 0 0 1-.07.236l-.095.283q-.142.378-.295.85c-.153.472-.154.621-.154.92q0 .165.012.247c.012.082.012.098.012.13s.004.059.012.082.012.052.012.083q0 .119-.083.177a.28.28 0 0 1-.2.059H6.571a.34.34 0 0 1-.2-.059q-.083-.06-.083-.177v-.083q0-.035.024-.082 0-.048.011-.13c.011-.082.012-.138.012-.248q0-.447-.153-.92c-.153-.473-.2-.597-.295-.849a4 4 0 0 0-.095-.295 2 2 0 0 0-.094-.224.33.33 0 0 1 .047-.248.5.5 0 0 1 .236-.177l-1.557-3.587.118-.023q.117.166.507.448t1.003.283l.047.071a.71.71 0 0 0-.212.625q.047.366.354.366.212 0 .295-.141a.8.8 0 0 0 .106-.284l.07-.023q.024 0 .072.035a11 11 0 0 1 .342.212q.129.084.177.13l-.047.236-.048.236a1 1 0 0 0-.035.142.4.4 0 0 1-.035.118h-.071a.34.34 0 0 0-.165-.153.5.5 0 0 0-.142-.036.27.27 0 0 0-.224.106.43.43 0 0 0-.083.272q0 .284.165.507.166.224.567.224.424 0 .814-.212c.39-.212.39-.362.39-.66a.86.86 0 0 0-.154-.473 1.05 1.05 0 0 0-.484-.377v-.071a3.3 3.3 0 0 0 .449-.437q.212-.247.26-.39h.07q.095.12.366.32t.53.27v.072q-.236.235-.306.448c-.07.213-.07.26-.07.354q0 .377.259.59t.944.212q.495 0 .908-.177t.413-.649q0-.26-.153-.4a.52.52 0 0 0-.366-.142.5.5 0 0 0-.248.059.7.7 0 0 0-.224.247h-.07q0-.023-.048-.07a6 6 0 0 0-.189-.225 3 3 0 0 0-.26-.247v-.071q.095-.07.225-.224a4 4 0 0 0 .271-.366h.071q.213.235.319.295.105.06.271.059a.6.6 0 0 0 .26-.071q.141-.071.141-.283 0-.26-.26-.39c-.26-.13-.346-.16-.519-.224v-.07q.426-.166.791-.555c.365-.389.39-.484.437-.673h.094q.07.283.437.673c.367.39.507.444.79.554v.071q-.26.095-.519.224c-.259.129-.26.217-.26.39q0 .212.142.283a.58.58 0 0 0 .531.012q.106-.06.295-.295h.094q.142.212.272.366.13.153.224.224v.07q-.165.143-.26.248a6 6 0 0 0-.188.225q-.048.047-.048.07h-.094a.7.7 0 0 0-.224-.247.46.46 0 0 0-.224-.06.52.52 0 0 0-.366.142.52.52 0 0 0-.154.401q0 .472.413.65.414.176.909.176.683 0 .944-.212.26-.213.26-.59 0-.141-.071-.354c-.071-.213-.15-.291-.307-.448v-.071q.26-.07.53-.272.273-.2.343-.318h.094q.048.141.248.39.201.246.437.436v.07a1.06 1.06 0 0 0-.46.378.86.86 0 0 0-.154.472q0 .45.39.66c.39.21.53.213.814.213q.4 0 .566-.224a.83.83 0 0 0 .165-.507q0-.165-.082-.272a.27.27 0 0 0-.224-.106.6.6 0 0 0-.154.036.25.25 0 0 0-.153.153h-.07a.4.4 0 0 1-.036-.118 1 1 0 0 0-.036-.142l-.047-.236-.047-.236q.047-.046.177-.13c.13-.084.169-.106.248-.153q.047-.023.094-.059c.047-.036.055-.035.07-.035l.072.023a.8.8 0 0 0 .106.284q.082.141.271.141.33 0 .378-.366a.71.71 0 0 0-.213-.625l.048-.07q.613 0 1.003-.284c.39-.284.428-.338.507-.448l.118.023-1.558 3.587zM5.345 15.482a5 5 0 0 1-.566-.284q.236.874.885 1.098c.649.224.782.224 1.05.224q.448 0 .826-.106.377-.107.731-.413a2 2 0 0 1-.53-.095q-.201-.07-.248-.165 1.015-.118 1.144-1.192.13-1.073.106-2.112v-.661q0-1.486.696-2.16.697-.672 3.127-1.71a7.8 7.8 0 0 0 1.582-.897q.825-.59.826-1.534 0-.33-.26-.861c-.26-.531-.606-.704-1.298-1.05a1 1 0 0 0-.094-.083 1 1 0 0 0-.095-.06l-.448-.471q.944-.19 1.935.484.99.672.991 1.734 0 .968-.684 1.723c-.684.755-1.22.999-2.29 1.487l-.117.047q-1.393.614-2.325 1.263t-.932 2.088a7 7 0 0 0 .189 1.652q.024-.967.4-2.207.379-1.239 2.054-1.663a4.6 4.6 0 0 0-.401 1.911q0 1.04.401 1.924.4.885 1.18 1.451.803.59 1.982.59-1.368-.778-1.77-1.876a9.3 9.3 0 0 1-.519-2.089 2.6 2.6 0 0 0-.236.697q-.094.437-.023.696a3.5 3.5 0 0 1-.295-.755 3.3 3.3 0 0 1-.107-.85q0-.708.284-1.487.282-.779 1.463-1.369a4.5 4.5 0 0 0-.531.756q-.225.4-.224.944 0 .235.023.483.024.248.118.508.048-.637.413-1.216c.365-.579.515-.79.814-1.215q.33-.449.661-.944.331-.496.566-1.038.119.141.142.507c.023.366-.031.468-.142.673q.425-.307.638-.838c.213-.531.212-.775.212-1.263q0-.424-.189-1.074-.189-.648-.873-1.31.284.142 1.038.827c.754.685.756 1.077.756 1.864q0 .708-.579 1.7-.578.99-1.97 2.029.944-.213 2.136-.968 1.191-.755 1.191-2.525 0-.755-.72-2.018c-.72-1.263-1.301-1.333-2.465-1.475a.26.26 0 0 1 .106-.153q.082-.06.177-.106.188-.118.365-.283t.177-.472q0-.285-.212-.614c-.212-.329-.385-.472-.731-.755q-1.18.189-1.381.602c-.201.413-.2.444-.2.507q0 .26.212.484c.212.224.338.31.59.484q.094.046.059.094-.035.047-.083.047-.047 0-.13-.059-.083-.06-.224-.153-.33-.26-.932-.614c-.602-.354-.854-.354-1.357-.354q-.732 0-1.38.06-.65.058-.791.129-.164.07-.272.189c-.108.119-.106.165-.106.26q.165-.072.354-.13a1.1 1.1 0 0 1 .33-.06q.12 0 .331.06.212.058.212.177H9.9q-.213 0-.284.047c-.071.047-.07.063-.07.094q0 .094.047.154a.25.25 0 0 0 .118.082.13.13 0 0 0 .094.012.3.3 0 0 1 .071-.012.2.2 0 0 1 .07-.023h.072q.023 0 .023.023v.047q0 .048-.082.142c-.082.094-.138.126-.248.189q.118-.024.26-.047c.142-.023.157-.024.188-.024q0 .024-.059.094c-.059.07-.067.079-.082.095a.15.15 0 0 1-.06.035.4.4 0 0 1-.106.012.6.6 0 0 0-.153.024l-.153.047q-.165.07-.33.094a.45.45 0 0 1-.26-.023l.094-.095.142-.047q-.26.024-.366-.06-.106-.082-.177-.412-.732.354-1.298.637a23 23 0 0 0-.944.496q-.165.07-.165.188 0 .12.118.26l.519-.236a.3.3 0 0 1 .083.06q.035.035.035.105t-.047.13q-.048.06-.095.13a1 1 0 0 0-.153.2.46.46 0 0 0-.059.225q0 .094.094.413t.166.318a.2.2 0 0 0 .094-.023.4.4 0 0 0 .094-.071q.024 0 .048-.024c.024-.024.031-.023.047-.023a1.7 1.7 0 0 1 .39-.177q.247-.083.766-.13.26-.236.39-.295a.5.5 0 0 1 .2-.06q.119 0 .212.06.095.06.213.177l1.203 1.109-.047.378q-.543 0-.861.165-.32.165-.838.684a.9.9 0 0 1-.342.224q-.177.06-.319.083a3 3 0 0 0-.224.083q-.082.034-.082.153 0 .189.224.531.225.342.436.342.237 0 .755-.295c.518-.295.598-.42.756-.672q.307-.543.967-.744t1.015-.2h.212q.118 0 .236.023h.332a.64.64 0 0 0 .436-.153q.178-.153.319-.555-.165.094-.46.142a4 4 0 0 1-.342.047q-.19 0-.248-.024c-.058-.024-.051-.039-.036-.07q.285-.118.437-.213a.7.7 0 0 0 .2-.165.5.5 0 0 0 .024-.165v-.508q0-.153.095-.295a.63.63 0 0 1 .212.236q.094.165.094.284.072-.165.107-.284a.95.95 0 0 0-.024-.578.66.66 0 0 0-.2-.271q.47 0 .625.366.153.366.153.767 0 .944-.66 1.38c-.66.436-.976.578-1.605.862a5 5 0 0 0-.425.165l-.425.189q-1.63.754-2.361 1.652-.731.896-.731 3.233v.047q0 .543-.225 1.629-.224 1.085-1.569 1.085-.496 0-.826-.141m2.867-8.768q.012-.012.012-.035.024-.024.047-.024c.023 0 .04.008.071.024q.024 0 .036.011l.035.036q.235-.166.52-.283.283-.119.424-.118a1.1 1.1 0 0 0-.307-.142 1.3 1.3 0 0 0-.354-.047q-.141 0-.295.047a.9.9 0 0 0-.318.189l-.048.047a.3.3 0 0 1-.07.047q-.142.119-.378.272t-.566.059l-.19-.048a.5.5 0 0 1-.164-.07q-.12-.024-.213-.048c-.093-.024-.134-.023-.212-.023a.5.5 0 0 0-.272.07q-.106.072-.106.142 0 .048.024.071.024.024.094.024a.1.1 0 0 0 .047-.012.1.1 0 0 1 .048-.012.4.4 0 0 0 .094-.012.5.5 0 0 1 .118-.012.6.6 0 0 1 .212.048q.119.047.26.094.14.07.319.142.177.07.365.07.33 0 .484-.153t.248-.319zm3.859 16.39h2.773q1.261 0 2.277-.023l.425-1.841a48 48 0 0 0-2.761-.295 35 35 0 0 0-5.44 0 49 49 0 0 0-2.75.295l.426 1.84a99 99 0 0 0 2.277.024zM7.41 3.67q.225-.082.39-.107a.5.5 0 0 1-.13.307 1.6 1.6 0 0 1-.248.26v.023a.27.27 0 0 1-.154-.059.18.18 0 0 1-.082-.153q0-.189.224-.271m-.083 18.42q0 .023.13.165.13.141.154.141c.024 0 .062-.047.141-.141s.118-.15.118-.166q0-.07-.118-.2c-.118-.13-.126-.13-.141-.13s-.067.043-.154.13q-.13.13-.13.2zm.095-16.568q-.071.165.023.378c.094.213.181.212.354.212q.024-.189.024-.366c0-.177-.024-.216-.07-.295q-.12.024-.213.036-.095.012-.118.035m1.227 1.652a.25.25 0 0 0-.13-.224.46.46 0 0 0-.248-.083q-.047.142-.047.26c0 .118.016.15.047.212q.048 0 .154-.023c.106-.023.145-.063.224-.142m-.378 15.4q-.047-.036-.047-.107v-.85q0-.094.047-.13c.047-.036.071-.035.118-.035l.732-.047q.378-.024.613-.024.095 0 .154.06a.18.18 0 0 1 .059.13v.849q0 .094-.06.141c-.06.047-.09.048-.153.048H8.39a.2.2 0 0 1-.118-.036zm.425-.579q0 .024.165.212.165.19.213.19c.048 0 .098-.064.2-.19q.154-.188.154-.212 0-.07-.154-.248c-.154-.178-.169-.177-.2-.177s-.103.06-.213.177-.165.2-.165.248m2.584-8.708a7 7 0 0 0-.153-.59q-.095-.449-.189-.933a3.2 3.2 0 0 1-.024-1.026q-.447.495-.554 1.073-.105.579-.154 1.17-.047.683-.188 1.332-.143.65-.732 1.24.78 0 1.416-.425.637-.426.637-1.298 0-.26-.059-.543M9.97 3.94a3 3 0 0 0-.13.437.34.34 0 0 0 .06.295.7.7 0 0 0 .188.165q.12.07.26.141.213.095.448.236c.235.141.3.236.425.425l.024-.047a1.1 1.1 0 0 0-.26-.53 5 5 0 0 0-.377-.367q-.189-.141-.354-.318a.8.8 0 0 1-.236-.437zm.307 18.054q0 .023.13.165t.153.142.142-.142.118-.165q0-.046-.118-.177-.118-.13-.142-.13t-.153.13c-.13.13-.13.146-.13.177m2.455.66H11.41q-.094 0-.142-.058a.2.2 0 0 1-.047-.13v-.92q0-.094.047-.142.049-.047.142-.047h1.322q.095 0 .141.047.047.048.047.142v.92q0 .07-.047.13-.046.06-.141.059zm-1.062-.66q0 .024.165.212.165.19.236.19.023 0 .189-.19.165-.188.165-.212 0-.07-.165-.248-.165-.177-.19-.177-.07 0-.235.177-.165.176-.165.248m2.194 0q0-.046-.13-.177c-.13-.131-.137-.13-.153-.13q-.024 0-.141.13-.119.13-.118.177 0 .023.118.165t.141.142.154-.142.13-.165zm.2-20.083a.8.8 0 0 1-.129-.425q0-.143.095-.33c.095-.187.251-.244.566-.355q.024 0 .024.012V.85a.2.2 0 0 1-.024.094 2 2 0 0 0-.06.142.6.6 0 0 0-.034.212q0 .213.165.319t.283.106q.141 0 .224-.083c.083-.083.083-.114.083-.177q0-.07.012-.153.01-.083.059-.083a.58.58 0 0 1 .165.425.65.65 0 0 1-.177.437 1.6 1.6 0 0 1-.531.365l-.118-.07q-.473-.26-.602-.472zm2.821 7.882q-.589.283-1.133.472-.684.236-1.18.53t-.495 1.098a1.8 1.8 0 0 0 .33 1.039q.024-.66.236-1.11.212-.448.614-.66a1.8 1.8 0 0 0-.283.672 4 4 0 0 0-.071.72q0 1.864 1.003 2.856 1.002.99 2.206.991.637 0 .98-.283t.389-.85a1.1 1.1 0 0 1-.484.2 3 3 0 0 1-.413.036q-1.18 0-1.71-.85-.532-.849-.272-2.052-.142.447-.33.755a1.44 1.44 0 0 1-.449.472q.07-.19.06-.413a9 9 0 0 1-.013-.484 4 4 0 0 1-.047-.614q0-.59.33-.956t.708-.72q.402-.33.732-.708c.33-.378.33-.582.33-.99a2.95 2.95 0 0 1-1.038.849m-2.478 12.815q-.095 0-.153-.048c-.058-.048-.06-.078-.06-.141v-.85q0-.07.06-.13a.2.2 0 0 1 .153-.059q.213 0 .602.024l.743.047q.071 0 .118.036c.047.036.047.067.047.13v.849q0 .071-.047.106c-.047.035-.07.036-.118.036zm.307-.614q0 .024.165.212.165.19.213.19.023 0 .188-.19.165-.188.165-.212 0-.07-.165-.248c-.165-.178-.173-.177-.188-.177q-.048 0-.213.177c-.165.177-.165.2-.165.248M16.2 1.971a.74.74 0 0 1-.024.318q.401.26.767.578.366.32.673.696a3 3 0 0 1-.142-.471 3 3 0 0 0-.319-.826q-.224-.402-1.05-.59a1 1 0 0 1 .095.295m.59 20.118q0-.07-.118-.2t-.142-.13-.153.13c-.129.13-.13.153-.13.2q0 .024.13.166c.13.142.137.141.153.141q.024 0 .142-.141.117-.142.118-.166"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.643 1.475c0 .814.668 1.475 1.49 1.475H14.49q2.112 0 3.48 1.29 1.366 1.291 1.366 3.32 0 1.875-1.367 3.072-1.366 1.169-3.479 1.168H9.12c-.824 0-1.491.66-1.491 1.475s.667 1.475 1.491 1.475h5.93l5.342 8.482q.497.768 1.398.768.995 0 1.398-.768.403-.8-.155-1.69l-4.753-7.56q1.926-.861 3.044-2.52 1.119-1.69 1.119-3.902 0-2.244-1.026-3.934-.993-1.69-2.795-2.643Q16.82 0 14.49 0H2.134C1.311 0 .643.66.643 1.475"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.693 0H3.307A3.307 3.307 0 0 0 0 3.307v17.386A3.307 3.307 0 0 0 3.307 24h17.386A3.307 3.307 0 0 0 24 20.693V3.307A3.307 3.307 0 0 0 20.693 0m-7.706 9.18q-.523.046-1.021.142-.5.094-.95.214a3.6 3.6 0 0 0-.736.237v8.097a5.5 5.5 0 0 1-.76.143q-.498.07-1.045.07a6 6 0 0 1-.95-.07 1.6 1.6 0 0 1-.688-.285 1.5 1.5 0 0 1-.452-.57q-.142-.38-.142-.974V9.061q0-.546.19-.926.213-.405.594-.713a4 4 0 0 1 .926-.546 9.1 9.1 0 0 1 2.54-.736 8 8 0 0 1 1.378-.119q1.14 0 1.804.451.666.428.665 1.425 0 .333-.095.665a3 3 0 0 1-.237.57q-.512 0-1.021.047zm5.113 8.453q-.618.665-1.686.665c-1.068 0-1.274-.222-1.686-.665q-.618-.665-.617-1.662 0-.998.617-1.663.618-.664 1.686-.664c1.068 0 1.274.221 1.686.664q.617.666.617 1.663t-.617 1.662"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.14.028C7.315.36 4.072 2.263 1.98 5.411.487 7.646-.232 10.589.067 13.211q.48 4.16 3.242 7.049c4.643 4.852 12.252 5.001 17.038.343 1.085-1.057 1.738-1.959 2.407-3.303a11.94 11.94 0 0 0-2.429-13.925C18.372 1.495 16.015.388 13.27.078c-.68-.083-1.56-.1-2.13-.05m4.814 2.567c1.112.437 2.086 1.068 3.032 1.986.62.598 1.323 1.46 1.3 1.599-.016.072-1.626.725-1.792.725-.056 0-.078-.072-.078-.25 0-.138-.011-.248-.028-.248-.01 0-.758.459-1.654 1.023-.897.565-1.666 1.024-1.71 1.024-.05 0-.133-.061-.194-.139-.127-.16-.216-.171-.354-.044-.066.056-.1.166-.1.316v.226l-.824.46c-.46.249-.89.453-.968.453h-.144V8.161c0-.863.016-2.025.038-2.573.034-.99.04-1.007.155-1.007.117 0 .128-.028.155-.514.067-1.107.25-1.284 1.362-1.323l.514-.016.16-.233c.156-.226.167-.226.366-.171.116.028.46.15.764.271m-7.05.011.122.183.641-.006c.604 0 .659.011.902.15.355.21.482.497.526 1.145l.033.498.172.016.171.017.017 2.716.011 2.722-.232.138a3 3 0 0 0-.936.875l-.177.27h-5.24v-.325l-.592-.017-.598-.017-.398-.586c-.332-.493-.454-.626-.758-.825-.415-.265-.404-.193-.139-1.023.659-2.025 2.203-3.945 4.1-5.107.67-.409 1.932-.995 2.159-1.001.055-.005.155.078.216.177m12.163 4.902c.354.686.725 1.588.725 1.765 0 .071-.1.149-.327.26-.326.154-.393.237-.393.503 0 .155-.166.36-.564.692l-.327.27h-.99v.333h-2.767v-.886l-.332-.42c-.183-.227-.332-.432-.332-.454s1.073-.68 2.39-1.46c2.17-1.29 2.402-1.417 2.485-1.34.05.045.244.377.432.737m-5.556 3.087c.243.354.454.664.46.686.01.027-.394.05-.892.05h-.918l-.2-.332c-.11-.183-.193-.36-.182-.388.028-.083 1.167-.708 1.234-.68.033.011.254.31.498.664m-7.282 2.567c.254.398.442.741.415.769-.111.1-5.163 3.32-5.213 3.32-.155 0-.813-1.317-1.024-2.048-.249-.863-.265-.769.188-1.045.178-.111.371-.321.637-.703l.387-.548.603-.027.609-.028.017-.21.016-.205H7.77zm1.815-.476c.066.122.127.249.127.288 0 .077-.996.686-1.057.647-.05-.028-.714-1.1-.714-1.15 0-.023.343-.028.758-.023l.758.017zm9.158-.044.016.21.554.028c.597.027.525 0 1.184.481.011.006.06.194.11.41.095.425.128.459.493.547.288.072.293.133.072.78-.57 1.682-1.787 3.425-3.287 4.686-.642.542-.603.542-.559-.055.045-.614-.027-.935-.254-1.162-.26-.255-.526-.221-1.3.177-.51.26-.698.332-.897.332-.327 0-.631-.094-.825-.255l-.16-.127.393-.36c.42-.381.62-.73.525-.907-.16-.298-.453-.37-1.045-.26-.498.1-.864.105-1.013.028-.188-.105-.288-.376-.26-.741.028-.332.022-.343-.216-.62l-.238-.282v-1.765l.393-.271c.216-.144.559-.448.758-.675l.37-.404h5.17zm-7.814 2.157v.758l-.276.282-.277.283.083.238c.1.282.105.52.022.674-.1.194-.293.222-.896.133a8 8 0 0 0-.764-.083c-.68 0-.703.482-.06 1.256.31.37.31.365-.084.564-.553.277-.902.25-1.389-.116-.41-.304-.647-.393-.968-.36-.21.017-.31.061-.443.2l-.177.177.006.686c0 .382-.011.691-.023.691-.06 0-1.023-.846-1.45-1.272-.442-.448-.995-1.123-.995-1.217 0-.044 1.516-.72 1.615-.72.034 0 .045.084.034.194-.011.105-.006.194.01.194.017 0 1.362-.747 2.989-1.66a204 204 0 0 1 3.005-1.66c.022 0 .038.343.038.758"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.84 24h.53c.096 0 .192-.048.224-.128C7.591 13.696 11.94 8.656 14.67 5.638c.112-.128.064-.225-.096-.225h-4.88a.55.55 0 0 0-.45.225L5.746 9.972c-.514.642-.642 1.236-.642 2.086v4.43c-1.14 3.194-1.862 5.361-2.392 7.32-.032.125.016.192.129.192M20.447.646c-.754-.802-4.157-.834-5.73-.224a3 3 0 0 0-.786.465 41 41 0 0 0-3.323 3.178c-.112.113-.064.225.097.225h5.409c.497 0 .786.289.786.786v6.1c0 .16.128.208.225.064l3.258-4.254c.53-.69.69-.898.835-1.861.192-1.413.08-3.58-.77-4.479m-6.982 16.18 2.231-3.676a.7.7 0 0 0 .064-.29V6.73c0-.16-.112-.225-.224-.097-3.355 3.74-5.971 7.672-8.395 12.407-.06.12.016.225.16.177l5.009-1.54c.565-.174.882-.402 1.155-.852"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.926 23.998 0 18.892 5.075.002 24 5.108ZM15.348 10.09l-5.282-1.453-1.414 5.273 5.282 1.453z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13.936 15.356-12.11-3.244L0 18.93 18.928 24l2.68-9.99-6.818-1.83zM5.072 0 2.394 9.992l6.816 1.83.854-3.178 12.11 3.246L24 5.072z"/></svg>
|