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="M5.36.037C2.41.037 0 2.447 0 5.397v13.207c0 2.95 2.41 5.36 5.36 5.36h13.28c2.945 0 5.36-2.41 5.36-5.36V5.396c0-2.95-2.415-5.36-5.36-5.36zm6.585 4.285a7.72 7.72 0 0 1 7.717 7.544l.005 7.896h-3.39v-1.326a7.7 7.7 0 0 1-4.327 1.326 7.8 7.8 0 0 1-2.384-.378v-4.63a3.65 3.65 0 0 0 2.416.91 3.666 3.666 0 0 0 3.599-2.97h-1.284a2.416 2.416 0 0 1-4.73-.66v-.031c0-1.095.728-2.023 1.728-2.316V8.403a3.67 3.67 0 0 0-2.975 3.6v6.852a7.72 7.72 0 0 1 3.625-14.533m.031 1.87V7.43h.006a4.575 4.575 0 0 1 4.573 4.574v.01h1.237v-.01a5.81 5.81 0 0 0-5.81-5.81zm0 2.149v1.246h.006a2.413 2.413 0 0 1 2.415 2.416v.01h1.247v-.01a3.66 3.66 0 0 0-3.662-3.662zm0 2.252c-.78 0-1.409.629-1.409 1.41s.629 1.409 1.41 1.409 1.409-.629 1.409-1.41-.629-1.409-1.41-1.409"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.006.006c-.237.02-.467.103-.647.236C1.727 2.254.173 4.976.292 8.29c.12 3.195 1.675 6.27 4.067 8.046.24.118.48.236.72.236.358 0 .716-.118.956-.473.478-.591.359-1.301-.24-1.656-1.913-1.302-3.11-3.786-3.11-6.153 0-2.485 1.077-4.616 3.11-6.154.599-.355.598-1.183.24-1.656-.225-.37-.636-.508-1.03-.473m13.753 0c-.314.03-.613.177-.792.473-.36.473-.36 1.301.238 1.656 2.034 1.538 3.11 3.67 3.11 6.154 0 2.367-1.196 4.851-3.11 6.153-.598.355-.717 1.065-.239 1.656.24.355.6.473.958.473.24 0 .478-.118.718-.236 2.512-1.775 4.067-4.851 4.067-8.046.107-3.313-1.435-6.035-4.067-8.047a1.3 1.3 0 0 0-.883-.236m-2.265 3.552a1.2 1.2 0 0 0-.83.376 1.17 1.17 0 0 0 .06 1.669c1.532 1.408 1.663 3.798-.012 5.371a1.195 1.195 0 0 0-.036 1.681 1.2 1.2 0 0 0 1.687.047c2.716-2.556 2.488-6.52-.012-8.827a1.18 1.18 0 0 0-.856-.317m-8.993.007a1.2 1.2 0 0 0-.856.31c-2.5 2.307-2.727 6.271-.011 8.827a1.2 1.2 0 0 0 1.686-.047 1.17 1.17 0 0 0-.048-1.668C6.597 9.413 6.741 7.022 8.26 5.614a1.17 1.17 0 0 0 .06-1.668 1.15 1.15 0 0 0-.819-.381m4.5 2.15a2.57 2.57 0 0 0-2.572 2.57 2.57 2.57 0 0 0 1.193 2.17L7.714 24h2.525l2.877-13.402a2.57 2.57 0 0 0 1.456-2.312A2.57 2.57 0 0 0 12 5.714"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.2.275 6.75.308a.26.26 0 0 0-.203.098L.056 8.602a.26.26 0 0 0-.05.219l2.356 10.194a.26.26 0 0 0 .14.174l9.43 4.511a.26.26 0 0 0 .224-.002l9.401-4.566a.26.26 0 0 0 .141-.175L23.993 8.75a.26.26 0 0 0-.051-.22L17.403.374A.26.26 0 0 0 17.2.275m-.123.517 6.385 7.966-2.242 9.964-9.177 4.457-9.205-4.402L.54 8.827 6.875.824zM11.46 2.857c-.933 0-1.84.1-2.426.332h-.002c-1.554.569-2.725 2.105-3.074 3.952v.004c-.309 1.463-.392 2.703-.556 3.824-.07.481-.159.94-.283 1.387-.628.497-1.079 1.263-1.244 2.138v.004c-.116.547-.181 1.04-.237 1.5h-.644v.518h8.891c-.061.464-.122.996-.181 1.42H7.596v.517h7.939c-.242-.078-.486-.218-.756-.502h-.697l-.85.488-.232-.396.162-.092h-1.069c.113-.776.17-1.601.373-2.564v-.004c.22-1.164.96-2.112 1.895-2.453l.004-.002h.002c.318-.127.928-.205 1.543-.205.613 0 1.244.075 1.622.207.935.341 1.676 1.29 1.895 2.453v.004c.204.963.26 1.788.373 2.564h-.742l.162.092-.233.396-.85-.488h-.75c-.219.25-.474.412-.747.502h4.392v-.518h-.842c-.103-.743-.181-1.67-.382-2.623v-.002a4 4 0 0 0-.264-.863h1.863v-.517h-2.13a3.5 3.5 0 0 0-.8-.906h1.8v-.518H17.95a9 9 0 0 1-.193-.775h1.484v-.518h-1.576q-.02-.12-.039-.244c-.164-1.12-.246-2.36-.555-3.824v-.004c-.348-1.848-1.52-3.383-3.075-3.952l-.002-.002h-.002c-.65-.227-1.596-.33-2.531-.33zm0 .386c.904 0 1.833.11 2.404.309h.002c1.4.514 2.5 1.934 2.826 3.666v.003c.303 1.436.385 2.66.552 3.805.076.515.173 1.013.315 1.505-.449-.135-1.05-.197-1.648-.197q-.179 0-.352.008l-1.863-1.865a2 2 0 0 0 .11-.246l2.13 1.23.13-.224-2.185-1.262q.023-.104.036-.21l2.302.616.068-.248-2.354-.63c-.02-1.153-1.008-2.078-2.208-2.078-1.205 0-2.196.931-2.206 2.091l-2.303.617.066.25 2.252-.605q.015.114.041.224L7.436 11.24l.129.222 2.087-1.207q.051.134.12.258l-1.266 1.266a7 7 0 0 0-1.045-.075c-.603 0-1.186.064-1.578.22a3 3 0 0 0-.285.124q.113-.502.187-1.021c.168-1.144.248-2.37.551-3.805l.002-.001v-.002c.326-1.733 1.426-3.153 2.828-3.666h.002l.004-.002c.488-.194 1.381-.307 2.287-.307zM8.473 5.194a1.3 1.3 0 0 0-.965.502l-.117.153.306.236.12-.152a.92.92 0 0 1 .673-.352.92.92 0 0 1 .67.262l.139.134.271-.275-.136-.137a1.3 1.3 0 0 0-.961-.37zm6.39 0a1.3 1.3 0 0 0-.96.371l-.138.137.274.275.136-.134a.92.92 0 0 1 .672-.262.92.92 0 0 1 .674.352l.119.152.307-.236-.12-.153c-.23-.3-.587-.486-.964-.502M8.53 6.708c-.642 0-1.164.538-1.164 1.19 0 .65.522 1.187 1.164 1.187.643 0 1.164-.536 1.164-1.188s-.521-1.19-1.164-1.19zm6.273 0c-.643 0-1.162.538-1.162 1.19 0 .65.52 1.187 1.162 1.187.643 0 1.164-.536 1.164-1.188s-.521-1.19-1.164-1.19zm-6.273.387c.428 0 .776.355.776.802s-.348.8-.776.8a.785.785 0 0 1-.775-.8q0-.053.006-.103c.07.191.248.318.445.318a.487.487 0 0 0 .477-.496.49.49 0 0 0-.383-.486.8.8 0 0 1 .23-.035m6.273 0c.428 0 .777.355.777.802s-.349.8-.777.8a.785.785 0 0 1-.77-.9c.072.19.248.315.444.315a.486.486 0 0 0 .479-.496.49.49 0 0 0-.383-.484.8.8 0 0 1 .23-.037m-3.08.716c1.012 0 1.819.775 1.819 1.723 0 .947-.807 1.722-1.819 1.722s-1.82-.775-1.82-1.722c0-.948.808-1.723 1.82-1.723m-.002.528c-.142 0-.258.043-.355.076a.8.8 0 0 1-.232.054c-.107 0-.2.047-.268.127a.6.6 0 0 0-.104.207c-.04.134-.062.268-.08.315a.28.28 0 0 0 .032.25c.033.056.071.1.117.146.09.092.206.183.322.268.12.088.237.166.326.224l-.008.09c-.043.036-.14.102-.324.178a.53.53 0 0 1-.299.025.43.43 0 0 1-.236-.172c.015-.138.044-.293.068-.449l-.376-.095c-.05.238-.067.43-.094.64l.037.059c.143.224.318.344.506.392a.9.9 0 0 0 .52-.033 1.6 1.6 0 0 0 .444-.242c.088.067.244.174.446.242a.9.9 0 0 0 .52.033.87.87 0 0 0 .507-.392l.037-.059a6 6 0 0 0-.096-.637l-.377.092c.032.148.051.32.07.451a.43.43 0 0 1-.237.17.53.53 0 0 1-.3-.025c-.178-.068-.272-.14-.325-.178l-.006-.084c.09-.058.209-.137.336-.23.115-.085.231-.176.322-.268a.7.7 0 0 0 .117-.146.27.27 0 0 0 .031-.25c-.018-.047-.039-.181-.08-.315a.6.6 0 0 0-.103-.207.34.34 0 0 0-.268-.127.8.8 0 0 1-.234-.054c-.097-.033-.212-.076-.354-.076zm.002.386c.057 0 .134.024.23.057.09.03.208.07.337.076.04.102.06.237.09.338a.4.4 0 0 1-.041.045 3 3 0 0 1-.276.228c-.165.122-.271.188-.342.233a5 5 0 0 1-.34-.233 3 3 0 0 1-.275-.228.3.3 0 0 1-.04-.047c.035-.119.046-.234.089-.34.08.012.246-.042.336-.072a.8.8 0 0 1 .232-.057m-3.234.61a.635.635 0 0 0-.611.517l1.084-.289a.61.61 0 0 0-.473-.228m6.336 0a.6.6 0 0 0-.436.187c.352.096.69.184 1.033.275a.63.63 0 0 0-.597-.462m-.623.607c-.007.035-.002.07-.002.103l.921.532a.65.65 0 0 0 .276-.313zm-5.086.05-1.18.315c.078.15.207.264.362.316l.797-.46c.018-.059.015-.12.021-.17zm4.441.714 1.656 1.658a4.2 4.2 0 0 0-.826.146l-.95-1.647a3 3 0 0 0 .12-.157m-3.646.03c.04.055.083.118.129.169l-.658 1.134a3 3 0 0 0-.276-.119l-.002-.002a3 3 0 0 0-.292-.082zm3.338.317.892 1.547c-.623.251-1.149.725-1.523 1.33h-1.652c-.262-.75-.741-1.38-1.358-1.764l.623-1.082c.394.347.919.559 1.492.559a2.25 2.25 0 0 0 1.526-.59M7.46 12.09c.574 0 1.167.073 1.518.195.867.319 1.555 1.203 1.76 2.285l.001.002v.002c.109.513.173.98.227 1.424H9.86a.386.386 0 0 0-.494 0H9.11a1.4 1.4 0 0 0-.078-.418.8.8 0 0 0 .569.238c.45 0 .814-.375.814-.828a.824.824 0 0 0-.814-.828.822.822 0 0 0-.791 1.016 1.5 1.5 0 0 0-1.18-.559c-.798 0-1.46.611-1.48 1.38h-.342a.386.386 0 0 0-.494 0H4.028c.054-.445.116-.912.224-1.425l.002-.002v-.002c.205-1.084.894-1.97 1.764-2.287h.002l.004-.002c.295-.117.863-.191 1.437-.19zm-1.91 1.105a.9.9 0 0 0-.67.348l-.119.154.307.237.119-.155a.53.53 0 0 1 .379-.197.52.52 0 0 1 .377.147l.138.136.272-.275-.137-.137a.9.9 0 0 0-.666-.258m4.094 0a.9.9 0 0 0-.668.258l-.137.137.273.275.137-.136a.52.52 0 0 1 .377-.147.53.53 0 0 1 .379.197l.119.155.307-.237-.12-.154a.9.9 0 0 0-.667-.348m4.222.735a.95.95 0 0 0-.707.365l-.117.154.306.237.12-.155a.57.57 0 0 1 .413-.213.57.57 0 0 1 .414.159l.14.136.27-.275-.138-.137a.94.94 0 0 0-.701-.271m4.374 0a.94.94 0 0 0-.7.271l-.14.137.272.275.139-.136a.57.57 0 0 1 .414-.159.57.57 0 0 1 .414.213l.119.155.306-.237-.117-.154a.95.95 0 0 0-.707-.365m-12.65.232a.824.824 0 0 0-.815.828c0 .453.365.828.814.828.45 0 .815-.375.815-.828a.824.824 0 0 0-.815-.828zm5.518.285h1.242a4 4 0 0 0-.263.864v.002q-.075.354-.127.685h-.602a17 17 0 0 0-.236-1.5l-.002-.002q-.006-.024-.012-.049m-5.519.102a.43.43 0 0 1 .426.441.43.43 0 0 1-.426.442c-.22 0-.4-.171-.422-.397a.3.3 0 0 0 .215.092.31.31 0 0 0 .305-.316.32.32 0 0 0-.129-.258q.015-.003.031-.004m4.014 0c.235 0 .427.193.427.441a.433.433 0 0 1-.427.442.427.427 0 0 1-.422-.405.3.3 0 0 0 .256.145.31.31 0 0 0 .304-.317.31.31 0 0 0-.207-.298q.034-.007.069-.008m4.304.414a.865.865 0 0 0-.856.87c0 .478.382.874.856.874a.87.87 0 0 0 .857-.873.867.867 0 0 0-.857-.871m4.292 0a.867.867 0 0 0-.814 1.14 1.6 1.6 0 0 0-1.295-.652c-.846 0-1.546.65-1.568 1.463l-1.525.408.066.248 1.477-.394c.004.028.009.06.015.087l-1.418.817.131.222 1.367-.789c.235.552.801.94 1.455.94.66 0 1.233-.397 1.463-.957l1.398.806.13-.222-1.45-.836q.007-.039.012-.078l1.511.404.067-.248-1.563-.418a1.4 1.4 0 0 0-.107-.5c.157.186.39.303.648.303a.867.867 0 0 0 .856-.873.865.865 0 0 0-.856-.871m-10.567.043c.598 0 1.071.444 1.092.992h-.41q.011-.014.023-.033a.24.24 0 0 0 .025-.22c-.005-.016-.021-.102-.05-.196a.4.4 0 0 0-.078-.156.28.28 0 0 0-.225-.108.5.5 0 0 1-.129-.031c-.062-.021-.142-.05-.248-.05s-.188.029-.25.05a.5.5 0 0 1-.127.031.29.29 0 0 0-.225.108.4.4 0 0 0-.08.156c-.029.094-.043.18-.048.195a.24.24 0 0 0 .023.22q.012.02.025.034h-.41c.02-.548.494-.992 1.092-.992m6.275.344c.259 0 .47.211.47.484a.477.477 0 0 1-.47.486.47.47 0 0 1-.467-.453.32.32 0 0 0 .246.115c.18 0 .326-.15.326-.338a.34.34 0 0 0-.156-.289q.025-.004.05-.005zm4.292 0c.26 0 .469.211.469.484 0 .272-.21.486-.469.486a.477.477 0 0 1-.47-.486q0-.024.004-.047a.33.33 0 0 0 .312.24c.18 0 .326-.15.326-.338a.34.34 0 0 0-.256-.332 1 1 0 0 1 .084-.007m-10.567.24q.032 0 .125.031c.086.03.117.039.186.049.012.041.022.088.033.129a1.5 1.5 0 0 1-.168.138c-.038.028-.064.045-.088.061h-.176c-.024-.016-.052-.033-.09-.06a2 2 0 0 1-.168-.14l.034-.128c.107-.014.146-.04.185-.049a.5.5 0 0 1 .127-.031m8.458.25c.661 0 1.184.502 1.184 1.113 0 .156-.035.304-.096.44l-.002-.024-.022-.156a2 2 0 0 0-.04-.24l-.377.093.044.274a.24.24 0 0 1-.115.074.3.3 0 0 1-.168-.014c-.087-.03-.132-.063-.18-.094.057-.037.13-.084.198-.134.08-.06.16-.123.226-.19a.5.5 0 0 0 .092-.111.25.25 0 0 0 .026-.225c-.008-.019-.022-.112-.053-.21a.44.44 0 0 0-.084-.163.29.29 0 0 0-.23-.107.6.6 0 0 1-.14-.037c-.065-.022-.152-.055-.263-.055-.11 0-.195.032-.262.055a.6.6 0 0 1-.14.037.3.3 0 0 0-.23.107.4.4 0 0 0-.083.162c-.03.1-.045.192-.052.211a.25.25 0 0 0 .025.225.5.5 0 0 0 .09.111c.066.067.146.13.226.19.068.05.138.095.194.132a.6.6 0 0 1-.18.096.3.3 0 0 1-.17.014.24.24 0 0 1-.111-.076c.008-.09.026-.177.04-.272l-.376-.094c-.032.146-.045.286-.063.409a1.05 1.05 0 0 1-.09-.428c0-.611.521-1.113 1.182-1.113m0 .623q.04 0 .14.033c.066.025.169.052.206.055l.035.156c-.04.04-.112.1-.184.152-.095.07-.14.095-.197.131-.056-.036-.1-.061-.195-.13a1.2 1.2 0 0 1-.184-.157l.035-.152a1 1 0 0 0 .206-.055.5.5 0 0 1 .138-.033m-2.22.353a.43.43 0 0 0-.385.272l.656-.176a.42.42 0 0 0-.271-.096m4.333 0a.4.4 0 0 0-.22.07l.603.16a.43.43 0 0 0-.383-.23m-4.054.567-.607.162a.4.4 0 0 0 .125.113zm3.925.002.407.234a.4.4 0 0 0 .087-.102zm-1.986.234c.067.047.165.108.285.148a.7.7 0 0 0 .389.024.6.6 0 0 0 .232-.121 1.2 1.2 0 0 1-.904.394c-.356 0-.67-.145-.885-.375a.6.6 0 0 0 .207.102c.144.036.28.014.391-.024.12-.04.218-.1.285-.148m-9.524 1.61v.517h6.214v-.518zm3.619 1.292v.517H15.3v-.517z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 12.513V8.36c0-.888-.717-1.608-1.603-1.615h-.013c-.498-.009-1.194-.123-1.688-.619-.44-.439-.584-1.172-.622-1.783l-.001.003q-.002-.022-.003-.044l-.001-.03a1.616 1.616 0 0 0-1.607-1.45H5.54a2 2 0 0 0-.164.008l-.055.009q-.051.005-.102.015l-.069.017q-.042.01-.083.022-.034.01-.07.024-.04.014-.08.03-.032.014-.063.029-.04.018-.08.038l-.059.034q-.038.022-.077.047l-.061.045q-.032.021-.065.05a1 1 0 0 0-.099.09q-.01.007-.018.016l-.014.016a2 2 0 0 0-.094.102q-.024.031-.046.062-.025.031-.047.063l-.045.074-.037.062-.036.076a.7.7 0 0 0-.058.143l-.027.075-.02.074a1 1 0 0 0-.018.078q-.008.044-.013.088-.006.033-.01.069-.004.033-.004.068l-.002-.002c-.036.61-.182 1.345-.62 1.784-.496.495-1.191.61-1.69.618h-.012q-.076 0-.147.007l-.072.012q-.043.005-.084.012l-.082.02-.072.018q-.039.014-.079.027-.036.012-.07.026-.036.015-.072.034a1 1 0 0 0-.072.033l-.068.04-.068.041-.072.054q-.028.02-.053.04a1.6 1.6 0 0 0-.226.227q-.021.026-.041.053l-.054.074q-.023.034-.041.067L.19 7.6q-.017.035-.033.07l-.034.073q-.014.035-.026.07-.016.04-.027.08-.01.035-.018.071l-.02.082-.012.084c-.003.024-.009.048-.01.072q-.01.079-.01.16v4.152c0 .888.717 1.609 1.603 1.616h.01c.5.008 1.196.123 1.69.618.43.43.577 1.143.618 1.746v4.13c0 .524.66.754.986.346l2.333-2.92h11.22c.861 0 1.563-.675 1.611-1.524l.001.003c.037-.61.183-1.344.622-1.783.495-.496 1.19-.61 1.689-.619h.012q.066 0 .132-.007l.022-.001A1.613 1.613 0 0 0 24 12.513m-3.85 1.69c-.502.503-1.215.613-1.717.619H5.566c-.501-.006-1.215-.114-1.717-.618-.408-.409-.565-1.117-.618-1.744V8.415c.052-.627.209-1.337.618-1.745.503-.503 1.216-.613 1.717-.619h12.867c.502.006 1.216.115 1.718.619.409.41.564 1.117.618 1.744v4.041c-.052.63-.209 1.339-.618 1.749zM8.424 7.99c-.892 0-1.615.723-1.615 1.615v1.616a1.615 1.615 0 1 0 3.23 0V9.604c0-.892-.723-1.615-1.615-1.615Zm7.154 0c-.893 0-1.616.723-1.616 1.615v1.616a1.615 1.615 0 1 0 3.231 0V9.604c0-.892-.723-1.615-1.615-1.615z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.604 0a19.14 19.14 0 0 1-5.268 13.213L2.396 0l13.583 13.583a19.15 19.15 0 0 1-13.583 5.624V0zm-1.911 17.297A24.46 24.46 0 0 1 7.189 24l-4.053-4.053a19.9 19.9 0 0 0 13.37-5.838z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.954 7.714h.434c.106 0 .193.087.193.197v3.726a.197.197 0 0 1-.193.193h-.434a.197.197 0 0 1-.197-.193V7.911c0-.11.087-.197.197-.197m1.213 1.085h.435c.105 0 .192.087.192.196v2.521a.197.197 0 0 1-.192.193h-.435a.197.197 0 0 1-.197-.193v-2.52c0-.114.087-.197.197-.197m1.206 1.383h.43c.11 0 .197.087.197.197v.718a.197.197 0 0 1-.197.192h-.43a.197.197 0 0 1-.197-.196v-.718a.19.19 0 0 1 .197-.19zm-3.629-2.827h.431a.197.197 0 0 1 .197.196v.719a.197.197 0 0 1-.197.189h-.435a.197.197 0 0 1-.196-.19v-.718a.197.197 0 0 1 .196-.196Zm0 1.444h.431a.197.197 0 0 1 .197.196v.658a.197.197 0 0 1-.197.193h-.435a.197.197 0 0 1-.196-.193v-.658a.197.197 0 0 1 .196-.196zm0 1.387h.431a.197.197 0 0 1 .197.193v1.08a.197.197 0 0 1-.197.193h-.435a.197.197 0 0 1-.196-.192v-1.081a.197.197 0 0 1 .196-.193zm-1.24-3.133h.435a.197.197 0 0 1 .193.196v1.138a.197.197 0 0 1-.193.196h-.434a.197.197 0 0 1-.197-.196V7.249a.197.197 0 0 1 .197-.196Zm0 1.927h.435a.197.197 0 0 1 .193.197v2.162a.197.197 0 0 1-.193.192h-.434a.197.197 0 0 1-.197-.192V9.177a.197.197 0 0 1 .197-.197ZM17.3 6.694h.435a.197.197 0 0 1 .196.192v4.574a.197.197 0 0 1-.196.192H17.3a.197.197 0 0 1-.197-.192V6.886a.197.197 0 0 1 .197-.192m0 10.174h.435a.197.197 0 0 1 .196.197v.718a.197.197 0 0 1-.196.192H17.3a.197.197 0 0 1-.197-.196v-.718a.197.197 0 0 1 .197-.19zm-1.24-.964h.435a.197.197 0 0 1 .196.197v1.678a.197.197 0 0 1-.196.196h-.431a.197.197 0 0 1-.193-.196V16.1a.197.197 0 0 1 .193-.197zm0-5.117h.435a.197.197 0 0 1 .196.196v1.134a.197.197 0 0 1-.196.2h-.431a.197.197 0 0 1-.193-.196v-1.138a.197.197 0 0 1 .193-.196zm0-4.396h.435a.197.197 0 0 1 .196.197v3.605a.197.197 0 0 1-.196.197h-.431a.197.197 0 0 1-.193-.197V6.588a.197.197 0 0 1 .193-.197zm-1.22.06h.434a.197.197 0 0 1 .197.197V8.75a.197.197 0 0 1-.197.192h-.435a.197.197 0 0 1-.192-.192V6.648a.197.197 0 0 1 .192-.196zm0 2.892h.434a.197.197 0 0 1 .197.193v6.138a.197.197 0 0 1-.197.196h-.435a.197.197 0 0 1-.192-.196V9.536a.197.197 0 0 1 .192-.193Zm0 6.924h.434a.197.197 0 0 1 .197.193v1.14a.197.197 0 0 1-.197.193h-.435a.197.197 0 0 1-.192-.193v-1.14a.197.197 0 0 1 .192-.193zm-1.21-9.638h.43a.197.197 0 0 1 .197.2v4.925a.197.197 0 0 1-.196.197h-.435a.197.197 0 0 1-.193-.197V6.83a.197.197 0 0 1 .193-.197Zm0 5.722h.43a.197.197 0 0 1 .197.197v3.908a.197.197 0 0 1-.196.197h-.435a.197.197 0 0 1-.193-.197v-3.908a.197.197 0 0 1 .193-.197Zm-1.217-5.9h.435a.197.197 0 0 1 .192.197v3.179a.197.197 0 0 1-.192.196h-.435a.197.197 0 0 1-.197-.196V6.652a.197.197 0 0 1 .197-.197zm0 3.977h.435a.197.197 0 0 1 .192.192v2.646a.197.197 0 0 1-.192.193h-.435a.197.197 0 0 1-.197-.193V10.62a.197.197 0 0 1 .197-.192m0 3.428h.435a.197.197 0 0 1 .192.196v1.198a.197.197 0 0 1-.192.197h-.435a.197.197 0 0 1-.197-.197v-1.198a.197.197 0 0 1 .197-.196m-1.22-7.522h.434a.197.197 0 0 1 .196.19v1.443a.197.197 0 0 1-.196.193h-.439a.197.197 0 0 1-.196-.193v-1.44a.197.197 0 0 1 .196-.196zm0 2.227h.434a.197.197 0 0 1 .196.192v5.534a.197.197 0 0 1-.196.196h-.439a.197.197 0 0 1-.196-.196V8.753a.197.197 0 0 1 .196-.192Zm-1.225 8.182h.434a.197.197 0 0 1 .197.197v.835a.197.197 0 0 1-.197.197h-.434a.197.197 0 0 1-.193-.197v-.835a.197.197 0 0 1 .193-.197m0-10.658h.434a.197.197 0 0 1 .197.197v5.113a.197.197 0 0 1-.197.193h-.434a.197.197 0 0 1-.193-.193v-5.11a.197.197 0 0 1 .193-.196Zm0 5.904h.434a.197.197 0 0 1 .197.192v2.102a.197.197 0 0 1-.197.196h-.434a.197.197 0 0 1-.193-.196V12.18a.197.197 0 0 1 .193-.192zm-1.221 3.855h.434a.197.197 0 0 1 .193.189v1.742a.197.197 0 0 1-.193.197h-.434a.197.197 0 0 1-.197-.197v-1.738a.197.197 0 0 1 .197-.197zm0-6.025h.434a.197.197 0 0 1 .193.197v4.27a.197.197 0 0 1-.193.193h-.434a.197.197 0 0 1-.197-.196v-4.267a.197.197 0 0 1 .197-.19Zm0-3.794h.434a.197.197 0 0 1 .193.196v3.005a.197.197 0 0 1-.193.196h-.434a.197.197 0 0 1-.197-.196V6.22a.197.197 0 0 1 .197-.196Zm-1.221.06h.435a.197.197 0 0 1 .196.197V7a.197.197 0 0 1-.196.192h-.435A.197.197 0 0 1 7.332 7v-.718a.197.197 0 0 1 .193-.197Zm0 1.448h.435a.197.197 0 0 1 .196.192v5.541a.197.197 0 0 1-.196.193h-.435a.197.197 0 0 1-.193-.193V7.73a.197.197 0 0 1 .193-.193Zm0 6.323h.435a.197.197 0 0 1 .196.193v1.5a.197.197 0 0 1-.196.197h-.435a.197.197 0 0 1-.193-.197v-1.5a.197.197 0 0 1 .193-.193m0 2.286h.435a.197.197 0 0 1 .196.197v.956a.197.197 0 0 1-.196.197h-.435a.197.197 0 0 1-.193-.197v-.956a.197.197 0 0 1 .193-.197M6.305 6.57h.434a.197.197 0 0 1 .193.196v3.606a.197.197 0 0 1-.193.193h-.435a.197.197 0 0 1-.196-.193V6.765a.197.197 0 0 1 .196-.196Zm0 4.395h.434a.197.197 0 0 1 .193.193v.84a.197.197 0 0 1-.193.196h-.435a.197.197 0 0 1-.196-.197v-.839a.197.197 0 0 1 .196-.193Zm0 1.505h.43a.197.197 0 0 1 .197.196v3.727a.197.197 0 0 1-.197.196h-.43a.197.197 0 0 1-.197-.196v-3.727a.197.197 0 0 1 .196-.196ZM5.018 9.577h.56a.136.136 0 0 1 .132.136v2.763a.136.136 0 0 1-.132.136h-.556a.136.136 0 0 1-.136-.136V9.717a.136.136 0 0 1 .136-.14zm0 3.432h.56a.136.136 0 0 1 .132.136v2.483a.136.136 0 0 1-.132.136h-.556a.136.136 0 0 1-.136-.136v-2.475a.136.136 0 0 1 .136-.136zm0-5.96h.56a.136.136 0 0 1 .132.136v1.92a.136.136 0 0 1-.132.136h-.556a.136.136 0 0 1-.136-.136v-1.92a.136.136 0 0 1 .136-.136Zm-1.217.597h.552a.136.136 0 0 1 .136.132v2.884a.136.136 0 0 1-.136.132h-.552a.136.136 0 0 1-.136-.132V7.778a.136.136 0 0 1 .136-.132m0 3.5h.552a.136.136 0 0 1 .136.136v3.904a.136.136 0 0 1-.136.136h-.556a.136.136 0 0 1-.132-.136v-3.9a.136.136 0 0 1 .132-.136Zm-1.168 5.722h.435a.197.197 0 0 1 .197.197v.718a.197.197 0 0 1-.197.192h-.43a.197.197 0 0 1-.194-.196v-.718a.197.197 0 0 1 .193-.19zm-.06-2.562h.563a.136.136 0 0 1 .136.136v1.262a.136.136 0 0 1-.136.136h-.56a.136.136 0 0 1-.132-.136v-1.262a.136.136 0 0 1 .133-.136zm0-4.725h.563a.136.136 0 0 1 .136.132v4.075a.136.136 0 0 1-.136.136h-.56a.136.136 0 0 1-.132-.136V9.713a.136.136 0 0 1 .133-.132Zm-1.213 5.95h.555a.136.136 0 0 1 .136.135v2.173a.136.136 0 0 1-.136.136h-.56a.136.136 0 0 1-.135-.136v-2.173a.136.136 0 0 1 .136-.136zm.06-3.225h.431a.197.197 0 0 1 .197.193v2.506a.197.197 0 0 1-.197.196h-.435a.197.197 0 0 1-.196-.196v-2.506a.197.197 0 0 1 .196-.193ZM.14 15.001h.552c.075 0 .136.06.136.136v2.052c0 .076-.06.136-.136.136H.136A.136.136 0 0 1 0 17.19v-2.052c0-.076.06-.136.136-.136z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.549 0-.457.555v11.191h11.19l.554-.457-9.4-1.89zM.719 12.26l-.555.457L9.563 14.6l1.886 9.4.457-.555V12.26Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0c2.39 0 4.328 1.127 4.328 2.517S14.39 5.034 12 5.034 7.672 3.907 7.672 2.517 9.61 0 12 0m0 18.966c2.39 0 4.328 1.127 4.328 2.517S14.39 24 12 24s-4.328-1.127-4.328-2.517S9.61 18.966 12 18.966M1.606 6C2.8 3.93 4.747 2.816 5.952 3.511s1.212 2.937.017 5.007-3.141 3.182-4.345 2.489S.411 8.07 1.606 6m16.427 9.483c1.2-2.07 3.139-3.184 4.343-2.489s1.211 2.936.016 5.006-3.14 3.185-4.344 2.49-1.211-2.937-.015-5.007m-16.409-2.49c1.205-.7 3.15.419 4.346 2.489s1.187 4.311-.018 5.007S2.8 20.07 1.607 18s-1.187-4.311.017-5.007m16.425-9.481c1.2-.695 3.149.419 4.344 2.489s1.188 4.311-.016 5.007-3.148-.42-4.343-2.49-1.188-4.311.015-5.006"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.569 16.102c-2.244 0-4.064-1.834-4.064-4.096s1.82-4.095 4.064-4.095 4.063 1.833 4.063 4.095-1.82 4.096-4.063 4.096m11.019-5.671-4.296 2.5.02-.118.012-.104.014-.173v-.013l.001-.012.009-.211.001-.232-.003-.168-.01-.24-.016-.22-.024-.239-.016-.13-.034-.233-.04-.228-.047-.223-.052-.219-.037-.135-.062-.211-.07-.207-.061-.168-.08-.2-.087-.195-.092-.19-.099-.189-.105-.185-.01-.015-.113-.183-.12-.18-.127-.176-.135-.175-.143-.172-.016-.02-.152-.17-.16-.168-.168-.167-.179-.166-.014-.013-.189-.165-.201-.166-.202-.158-.226-.167-.245-.172-.183-.124-.28-.181-.316-.197-.105-.063-.388-.23-.096-.057-.244-.142L1.705 0v3.175l4.296 2.5-.11.041-.096.042-.156.074-.012.006-.01.006-.186.098-.2.114-.142.087-.202.13-.181.124-.193.14-.106.08-.182.145-.175.149-.168.152-.162.155-.098.1-.15.16-.143.163-.114.14-.131.169-.125.172-.117.176-.112.18-.107.185-.01.017-.099.19-.094.194-.088.199-.082.204-.077.211-.009.025-.07.217-.065.223-.06.23-.053.24-.004.02-.047.246-.042.258-.034.256-.031.281-.026.299-.014.223-.016.334-.01.374-.003.125-.004.452V24l2.727-1.588v-5l.092.077.083.063.143.099.01.006.007.005.178.114.2.118.144.08.214.112.195.096.219.1.114.048.218.087.217.08.217.071.215.064.132.035.214.051.214.044.173.03.213.03.212.022.206.015.213.008h.227l.215-.008.216-.015.216-.022.22-.031.221-.039.02-.004.224-.047.226-.055.23-.065.233-.074.013-.004.238-.083.245-.093.233-.096.259-.115.272-.128.194-.097.298-.154.33-.18.102-.057.394-.225.094-.054.244-.142 8.697-5.06z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.82 16.342 5.692-3.287A.98.98 0 0 0 24 12.21V5.635a.98.98 0 0 0-.488-.846l-5.693-3.286a.98.98 0 0 0-.977 0L11.15 4.789a.98.98 0 0 0-.489.846v11.747L6.67 19.686l-3.992-2.304v-4.61l3.992-2.304 2.633 1.52V8.896L7.158 7.658a.98.98 0 0 0-.977 0L.488 10.945a.98.98 0 0 0-.488.846v6.573a.98.98 0 0 0 .488.847l5.693 3.286a.98.98 0 0 0 .977 0l5.692-3.286a.98.98 0 0 0 .489-.846V6.618l.072-.041 3.92-2.263 3.99 2.305v4.609l-3.99 2.304-2.63-1.517v3.092l2.14 1.236a.98.98 0 0 0 .978 0z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.4 3.686 7.2 16.16 4.8 12l4.8-8.314H4.8L0 12l2.4 4.159 2.4 4.155h4.8l7.2-12.469L19.2 12l-4.8 8.314h4.8l2.4-4.155L24 12l-2.4-4.155-2.4-4.159Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.125 0H4.875A4.865 4.865 0 0 0 0 4.875v14.25C0 21.825 2.175 24 4.875 24h6.6c2.7 0 4.875-2.175 4.875-4.875V16.65h2.775c2.7 0 4.875-2.175 4.875-4.875v-6.9C24 2.175 21.825 0 19.125 0M16.5 1.275h2.625a3.6 3.6 0 0 1 3.6 3.6v2.7H16.5zM15.075 9v6.45H8.85V9zM8.85 1.2h6.225v6.375H8.85zM1.275 4.8a3.6 3.6 0 0 1 3.6-3.6H7.5v6.375H1.275zM7.5 9v6.45H1.2V9zm0 13.725H4.8a3.6 3.6 0 0 1-3.6-3.6V16.8h6.3zm7.575-3.525a3.6 3.6 0 0 1-3.6 3.6H8.85v-5.925h6.225zm7.65-7.35a3.6 3.6 0 0 1-3.6 3.6H16.5V9h6.225z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 6.768v2.338l.038-.005A2.832 2.832 0 0 1 3.2 11.913v7.998h2.318v-9.023A2.687 2.687 0 0 1 7.95 8.213c1.288-.123 2.345.873 2.345 2.167v9.53h2.317v-9.265c0-1.685 1.271-3.1 2.948-3.281 1.565-.169 2.922 1.085 2.922 2.66v9.886H20.8v-9.875A3.635 3.635 0 0 1 24 6.422V4.089z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.504 11.385h.755c.92 0 1.747.286 1.741 1.388 0 1.047-.932 1.412-1.717 1.412-.993 0-1.75-.359-1.754-1.37v-.14h.944v.14c0 .384.442.53.798.53.233 0 .784-.085.784-.572.006-.475-.508-.572-.797-.572h-1.644V9.875h3.146v.853h-2.256Zm-4.167 2.745h-1.76V9.87h1.76c1.478 0 2.134.985 2.134 2.1 0 1.113-.632 2.16-2.134 2.16m0-3.402h-.816v2.526h.816c.932 0 1.19-.682 1.19-1.297s-.295-1.23-1.19-1.23zm-6.055 1.14v2.262h-.955V9.81l.134-.023 2.598 2.33V9.869h.957v4.333l-.1.017zm-4.431 2.367c-1.374 0-2.319-.848-2.319-2.235s.945-2.235 2.319-2.235c1.373 0 2.318.847 2.318 2.235s-.944 2.234-2.318 2.234zm0-3.618c-.816 0-1.38.61-1.38 1.382 0 .798.564 1.376 1.38 1.376.834 0 1.38-.584 1.38-1.376 0-.779-.546-1.382-1.38-1.382m-4.827 2.308h-.587v-.87h.587c.46 0 .686-.299.686-.64 0-.34-.232-.645-.686-.645H.957v3.36H0V9.87h2.024c1.097 0 1.642.705 1.642 1.527 0 .852-.552 1.516-1.643 1.528z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.372 0 0 5.373 0 12c0 6.628 5.372 12 12 12 6.627 0 12-5.372 12-12 0-6.627-5.373-12-12-12M9.64 2.918c1.091-.026 1.548.229 2.182.635a4.46 4.46 0 0 1 1.902 2.764c.254 1.141.178 2.029-.127 2.664v.05c-.609 1.294-1.622 2.335-3.043 2.842l1.217 3.172c.228.583.432 1.192.254 1.75-.177.558-.989.736-1.572.127-1.116-1.192-4.871-8.702-5.15-9.26s-.584-1.016-.584-1.574c.026-.837 1.318-1.7 1.953-2.131.634-.431 1.877-1.014 2.968-1.039m-.996 2.311c-.789.022-.358 1.669-.197 2.129.178.507.661 1.572 1.193 2.105.127.127.254.229.407.254.152.027.457-.127.584-.33a.93.93 0 0 0 .15-.559 3.2 3.2 0 0 0-.049-1.216c-.228-.787-.711-1.548-1.346-2.055-.127-.102-.279-.229-.457-.279a.9.9 0 0 0-.285-.049m8.414 2.027a2.28 2.28 0 0 1 1.588.636c.305.279.33.582.229.963-.102.38-.457 1.194-.736 1.777l-.709 1.344c-1.37 2.435-1.649 2.689-2.03 2.537-.456-.178-.304-2.614.127-5.582.127-.812.329-1.217.557-1.42.171-.152.6-.248.975-.254zm-1.859 8.332c.554.011.789.7.656 1.232a.86.86 0 0 1-.379.559c-.203.127-.685.127-.965-.102-.278-.228-.33-.609-.254-.914.076-.304.331-.635.686-.736a.8.8 0 0 1 .256-.039m-8.604 2.805h10.809c.52 0 .938.419.938.939v.074c0 .52-.418.94-.938.94H6.595a.936.936 0 0 1-.937-.94v-.074c0-.52.417-.939.937-.939"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A11.97 11.97 0 0 0 .018 11.982C.018 18.612 5.37 24 12 24s11.982-5.353 11.982-11.982C23.982 5.388 18.63 0 12 0M5.832 5.885c1.064.248 2.092.638 3.014 1.135-1.1.531-1.987 1.382-2.66 2.375a3.4 3.4 0 0 1-.674-2.057c0-.532.107-.992.32-1.453m12.336 0c.213.425.32.921.32 1.453 0 .78-.248 1.49-.674 2.057-.673-.993-1.596-1.844-2.66-2.375a10 10 0 0 1 3.014-1.135m-6.072.81a6.39 6.39 0 0 1 6.32 6.457v3.829a1.18 1.18 0 0 1-1.17 1.17 1.18 1.18 0 0 1-1.17-1.17v-.958H7.852v.957a1.18 1.18 0 0 1-1.17 1.17 1.18 1.18 0 0 1-1.17-1.17v-3.65c0-3.51 2.73-6.489 6.24-6.63q.173-.007.344-.005m1.5 3.8a.94.94 0 0 0-.922.921c0 .248.07.424.213.602.141.212.353.354.566.46-.142.071-.319.143-.496.143-.213 0-.39.176-.39.389s.177.39.39.39h.178c.602 0 1.134-.355 1.383-.851.39-.142.709-.39.921-.744.071-.107.034-.249-.037-.213-.106-.036-.212-.034-.283.072a1.04 1.04 0 0 1-.426.354v-.143c0-.39-.14-.709-.353-.992a.88.88 0 0 0-.744-.389m0 .53c.212 0 .353.141.388.354v.178c0 .177-.034.354-.105.496a1.06 1.06 0 0 1-.604-.426c-.035-.071-.07-.14-.07-.211 0-.24.206-.39.39-.39"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.972 0A26 26 0 0 0 9.93.091a28 28 0 0 0-4.248.685 24 24 0 0 0-2.975.966l-.06.022s.118 7.243.21 10.831a10 10 0 0 0 .569 3.098 15 15 0 0 0 1.622 3.214A12.9 12.9 0 0 0 7.56 21.66a11 11 0 0 0 1.192.873 15 15 0 0 0 2.038 1.031c.233.098.436.192.62.255A5 5 0 0 0 12 24a5 5 0 0 0 .59-.182c.182-.063.387-.156.62-.255a15 15 0 0 0 2.037-1.031 11 11 0 0 0 1.194-.873 12.9 12.9 0 0 0 2.511-2.752 15 15 0 0 0 1.622-3.214 10 10 0 0 0 .57-3.098c.091-3.588.21-10.827.21-10.827l-.057-.026a24 24 0 0 0-2.976-.966 28 28 0 0 0-4.248-.684A26 26 0 0 0 12.031 0zm0 .361h.057c.679.008 1.288.03 1.963.09a26.6 26.6 0 0 1 4.084.663 22.5 22.5 0 0 1 2.861.937l.057.025-.038 2.274-.019-.01a23 23 0 0 0-2.86-.937 26.6 26.6 0 0 0-4.085-.662c-.675-.06-1.281-.1-1.96-.108h-.058c-.679.009-1.29.048-1.965.108a26.6 26.6 0 0 0-4.084.665 23 23 0 0 0-2.861.938l-.02.01-.038-2.281.058-.022a22.5 22.5 0 0 1 2.86-.937A26.6 26.6 0 0 1 10.01.45c.675-.06 1.284-.08 1.963-.089zm.288.216a17 17 0 0 0-.902.008c-.121.005-.288.109-.29.23l-.007.648c-.002.132.172.236.305.239.462.01.87.002 1.318.03.033.003.062.023.062.056l-.003.13a.042.042 0 0 1-.045.046c-.521 0-1.066-.025-1.593.017-.028.002-.027-.005-.028.023l-.024.384-.002.03a16 16 0 0 1 1.882 0 .32.32 0 0 0 .305-.262l.006-.627c0-.129-.158-.224-.261-.23-.442-.028-.945-.013-1.394-.025a.046.046 0 0 1-.044-.05l.009-.145c0-.028.019-.036.047-.037.444-.016 1.107.005 1.562.019a.07.07 0 0 0 .06-.07V.674c0-.017-.032-.067-.063-.068V.605a33 33 0 0 0-.9-.028m-1.88.064c-.423.008-1.341.125-1.862.19L8.515 2.64v.023l.47-.06a.01.01 0 0 0 .01-.006.01.01 0 0 0 .003-.01v-.523l.947-.102c.083-.015.18.046.256.169a.9.9 0 0 1 .114.339l.467-.035c.01 0 .03 0 .028-.01a1 1 0 0 0-.307-.663.32.32 0 0 0 .197-.31 4 4 0 0 0-.022-.564.32.32 0 0 0-.3-.247zm3.59.019a.404.404 0 0 0-.413.332l-.01 1.195a.31.31 0 0 0 .24.289c.61.057 1.21.112 1.89.215.011 0 .032-.007.032-.017v-.416c0-.009-.02-.028-.027-.03-.454-.057-1.053-.137-1.589-.193a.08.08 0 0 1-.058-.07v-.812c0-.034.05-.052.084-.05.529.044 1.056.14 1.584.197.014.002.036-.007.037-.021l.01-.382a.04.04 0 0 0-.029-.033 36 36 0 0 0-1.75-.204zm1.98.237c-.012 0-.022.014-.022.025-.006.274-.045 1.457-.053 1.772v.027c.155.027.326.048.453.074.014.002.035-.008.035-.022-.002-.207 0-.448-.004-.636 0-.013.006-.014.02-.012a31 31 0 0 1 1.102.22c.008 0 .052.007.052.03-.003.217-.007.4-.013.617a.04.04 0 0 0 .027.04q.216.05.42.1c.037.008.043.001.044-.012.022-.451.03-1.174.036-1.784 0-.008-.003-.02-.01-.022-.153-.035-.297-.072-.453-.105-.014-.003-.022.02-.023.035-.015.223-.009.43-.026.652 0 .008 0 .012-.009.01-.37-.076-.765-.158-1.132-.227-.01-.002-.006-.02-.005-.031l.003-.653a.03.03 0 0 0-.026-.03zM7.934.92h-.037c-.543.086-1.089.201-1.64.32a.5.5 0 0 0-.23.143.32.32 0 0 0-.102.205l.004 1.118a.43.43 0 0 0 .106.266.24.24 0 0 0 .204.11 39 39 0 0 1 1.633-.323.5.5 0 0 0 .268-.166.36.36 0 0 0 .098-.23L8.236 1.2a.28.28 0 0 0-.11-.198.3.3 0 0 0-.191-.08zm2.157.197a.076.076 0 0 1 .08.069l.003.189a.17.17 0 0 1-.14.166l-1.062.104-.009-.008V1.23l.009-.004 1.111-.108zm-2.52.29a.2.2 0 0 1 .078.022.12.12 0 0 1 .054.106l-.009.704a.13.13 0 0 1-.049.105.3.3 0 0 1-.12.047 61 61 0 0 1-.997.19.1.1 0 0 1-.088-.017.13.13 0 0 1-.03-.1v-.726a.14.14 0 0 1 .04-.097.24.24 0 0 1 .12-.06c.29-.054.67-.129.968-.172zm10.81 0-.001.001c-.008 0-.008.012-.008.019-.014.606-.03 1.167-.035 1.773 0 .013.006.03.018.033a22 22 0 0 1 2.158.7c.032.011.031-.013.031-.022.003-.138.01-.278.003-.416a.04.04 0 0 0-.025-.033 17 17 0 0 0-1.66-.541.03.03 0 0 1-.019-.026l.008-.18c0-.008.014-.01.022-.008a22 22 0 0 1 1.67.542c.01.003.01-.01.01-.019a5 5 0 0 0 0-.468.03.03 0 0 0-.02-.026 22 22 0 0 0-1.638-.523c-.008-.002-.018-.01-.018-.018v-.192c0-.008.013-.013.021-.01.564.144 1.184.36 1.615.519.038.014.06.008.06-.027 0-.157.006-.168-.002-.324-.002-.02-.004-.04-.022-.047a21 21 0 0 0-2.169-.707zm-12.97.064a.4.4 0 0 0-.084.009c-.65.166-1.303.414-1.956.652a.06.06 0 0 0-.03.052V3.65l.003.33s.471-.177.573-.21c.013-.004.013-.017.013-.031l-.01-.52c0-.015.002-.037.016-.04l1.625-.502a.3.3 0 0 0 .138-.101.24.24 0 0 0 .052-.156l-.017-.683a.27.27 0 0 0-.119-.197.37.37 0 0 0-.204-.068zm-.286.496c.036-.01.07.031.072.063a2 2 0 0 1 .012.25c-.001.045-.066.097-.11.11l-1.184.386c-.011.004-.031 0-.031-.012l.002-.358c0-.017.02-.031.036-.036a11 11 0 0 1 1.203-.403m6.967.981c.653.01 1.246.03 1.9.088a26.6 26.6 0 0 1 4.083.663 22.5 22.5 0 0 1 2.861.937l.014.007-.007.448h-8.851zm-.317.002-.001 4.618H8.827c-.043-.004-.015-.023.015-.052a1.7 1.7 0 0 1 .715-.312c.022-.002.028-.014-.003-.054a.9.9 0 0 0-.93-.212.99.99 0 0 0-.624.603.04.04 0 0 1-.04.031 7 7 0 0 1-.47.013c-.025 0-.037-.032-.035-.056a.74.74 0 0 1 .343-.484 1.1 1.1 0 0 1 .519-.178.04.04 0 0 0 .02-.063.5.5 0 0 0-.105-.093.76.76 0 0 0-.504-.077 1.05 1.05 0 0 0-.948.964c-.01.06.006.074-.053.094-.112.038-.322.064-.434.088-.02.003-.05-.043-.045-.063a1.3 1.3 0 0 1 .244-.522 1 1 0 0 1 .342-.291c.026-.013.05-.044.026-.064-.253-.22-.771.012-.98.241a1.37 1.37 0 0 0-.275.91c0 .016.014.041 0 .047a5 5 0 0 1-.4.15c-.012.003-.014-.028-.016-.04a.93.93 0 0 1 .147-.677.66.66 0 0 1 .244-.241q.014-.011 0-.028c-.115-.149-.569-.042-.708.094-.32.312-.297.615-.312 1.097-.001.023-.03.111-.056.123a.6.6 0 0 1-.184.07c-.021.006-.023.014-.028-.007a.39.39 0 0 0-.57-.222.356.356 0 0 0-.077.532c.015.017.02.034-.003.041a.42.42 0 0 0-.275.534.34.34 0 0 0 .296.21.63.63 0 0 0 .37-.108.043.043 0 0 1 .06.01.386.386 0 0 0 .531.124c.162-.107.234-.273.114-.559-.007-.016.02-.046.034-.054a6.6 6.6 0 0 1 3.144-.88 1.8 1.8 0 0 1 .456.101l.023.008.002.941a.2.2 0 0 1-.034.025 1 1 0 0 0-.432.55c-.004.017-.006.021-.035.024-.193.019-.399.047-.591.062-.011.002-.032-.019-.028-.03a1.87 1.87 0 0 1 .725-.908.06.06 0 0 0 .01-.067.4.4 0 0 0-.168-.093 1.09 1.09 0 0 0-.895.362 1.42 1.42 0 0 0-.312.875c-.001.022.003.058-.019.065-.124.039-.261.074-.39.11-.015.004-.035-.011-.038-.027a1.01 1.01 0 0 1 .486-1.03c.051-.04-.038-.102-.102-.102a.96.96 0 0 0-.913.53 1.3 1.3 0 0 0-.03.793c.003.023.019.063-.006.069-.079.019-.265.09-.323.108q-.03.01-.047-.03a1.04 1.04 0 0 1-.021-.488 1.1 1.1 0 0 1 .268-.493c.008-.01.011-.032 0-.037a.54.54 0 0 0-.378-.025.74.74 0 0 0-.477.38c-.159.297-.118.583.051 1.005.008.02.018.058 0 .07l-.137.08c-.017.013-.032.002-.044-.015-.055-.078-.124-.202-.21-.24a.42.42 0 0 0-.428.035.41.41 0 0 0-.12.431 1 1 0 0 0 .1.152c.01.014-.001.036-.013.047-.059.052-.14.09-.188.14a.395.395 0 0 0-.01.471.365.365 0 0 0 .45.123 2 2 0 0 0 .232-.122c.027-.018.045-.051.07-.025a.55.55 0 0 0 .224.153.43.43 0 0 0 .354-.062.305.305 0 0 0 .168-.338.9.9 0 0 0-.143-.27c-.033-.035-.035-.033 0-.054a7.4 7.4 0 0 1 1.66-.724 5 5 0 0 1 1.69-.207h.046l.003 1.949H3.206c-.054-2.133-.116-5.51-.156-7.836l.014-.007a22.5 22.5 0 0 1 2.86-.937 26.6 26.6 0 0 1 4.084-.663 23 23 0 0 1 1.768-.086zm-3.088.816a1.24 1.24 0 0 0-.693.232c-.286.188-.456.773-.49.982a.044.044 0 0 1-.04.036 6 6 0 0 0-.676.125c-.007.001-.012-.01-.012-.017a1 1 0 0 1 .258-.59 3.5 3.5 0 0 1 .493-.396c.013-.011.004-.045-.012-.051a1.03 1.03 0 0 0-.797.012 1.13 1.13 0 0 0-.675.867 2 2 0 0 0-.029.41c.002.017-.03.018-.045.023-.246.077-.504.167-.71.236-.01.004-.039.002-.039-.01a1.17 1.17 0 0 1 .175-.655c.12-.195.343-.305.505-.469.011-.012.028-.044.011-.051-.41-.165-.797.004-1.124.375a1.4 1.4 0 0 0-.2 1.124c.009.036 0 .075-.019.083a2 2 0 0 1-.23.089.025.025 0 0 1-.033-.02c-.093-.296-.44-.238-.597-.148a.36.36 0 0 0-.139.489.03.03 0 0 1-.01.044.44.44 0 0 0-.205.596.35.35 0 0 0 .428.137 1.2 1.2 0 0 0 .246-.129.03.03 0 0 1 .03.004.393.393 0 0 0 .566.08c.115-.082.16-.096.204-.244a.4.4 0 0 0-.09-.3c-.012-.01-.001-.04.013-.047A9.7 9.7 0 0 1 8.947 5.51a2.35 2.35 0 0 1 1.446.553.07.07 0 0 0 .062.031.1.1 0 0 0 .054-.056.66.66 0 0 0-.204-.678 1.2 1.2 0 0 0-.612-.344c-.012-.003-.02-.029-.01-.037a1 1 0 0 1 .335-.22 3.6 3.6 0 0 1 .605-.05c.014-.001.035-.015.03-.028a.61.61 0 0 0-.527-.4 1.3 1.3 0 0 0-.693.1 1.12 1.12 0 0 0-.5.553.04.04 0 0 1-.032.02 12 12 0 0 0-.594-.007c-.014 0-.035 0-.035-.014a.94.94 0 0 1 .255-.517 2 2 0 0 1 .68-.386c.019-.006.04-.036.029-.051a.55.55 0 0 0-.201-.17 1.2 1.2 0 0 0-.347-.041zm3.405 1.607h8.845c-.012.686-.025 1.433-.04 2.195h-8.805zM8.681 7.801l6.666.003a.016.016 0 0 1 .017.013l-.002 5.138a2.4 2.4 0 0 1-.143.764 3.33 3.33 0 0 1-1.44 1.725 3.47 3.47 0 0 1-1.74.491 3.5 3.5 0 0 1-2.26-.86 3.08 3.08 0 0 1-1.105-2.31L8.667 7.82c0-.013.001-.019.014-.019m6.994.086h5.217c-.012.645-.025 1.296-.034 1.926h-5.183V8.318zm-6.839.071c-.013 0-.014.005-.014.018l.007 4.753a2.97 2.97 0 0 0 1.054 2.225 3.33 3.33 0 0 0 2.153.827 3.3 3.3 0 0 0 1.66-.473 3.2 3.2 0 0 0 1.374-1.66 2.3 2.3 0 0 0 .136-.734l.002-4.94a.015.015 0 0 0-.016-.014zm4.436.304za.11.11 0 0 1 .087.071l.242.715a.08.08 0 0 1-.003.07.07.07 0 0 1-.054.024.065.065 0 0 1-.063-.044l-.038-.125h-.33l-.036.128c-.01.04-.04.044-.071.044a.06.06 0 0 1-.044-.028.06.06 0 0 1-.01-.052l.232-.728a.1.1 0 0 1 .087-.075m-.763.007h.023a.23.23 0 0 1 .235.157.046.046 0 0 1-.031.059.053.053 0 0 1-.07-.02.17.17 0 0 0-.132-.09.15.15 0 0 0-.133.1.5.5 0 0 0-.055.222.5.5 0 0 0 .046.228.16.16 0 0 0 .154.102.23.23 0 0 0 .166-.243v-.039h-.135a.057.057 0 0 1-.059-.063c0-.023.007-.05.059-.05h.192c.064 0 .073.048.073.09a1 1 0 0 1-.011.152.4.4 0 0 1-.15.236.3.3 0 0 1-.15.043.26.26 0 0 1-.227-.145.6.6 0 0 1-.073-.31.6.6 0 0 1 .08-.304.23.23 0 0 1 .198-.125m-2.988.002h.004c.183.002.243.111.243.15 0 .035-.061.08-.095.039a.2.2 0 0 0-.157-.068.14.14 0 0 0-.15.096.114.114 0 0 0 .094.135.6.6 0 0 1 .267.08h-.001a.2.2 0 0 1 .081.18.25.25 0 0 1-.067.175.33.33 0 0 1-.247.088.3.3 0 0 1-.263-.14c-.004-.01-.01-.063.034-.078a.08.08 0 0 1 .082.026.24.24 0 0 0 .156.063.22.22 0 0 0 .148-.05.11.11 0 0 0 .024-.116.22.22 0 0 0-.193-.098.25.25 0 0 1-.172-.07.25.25 0 0 1-.069-.196.22.22 0 0 1 .1-.163.3.3 0 0 1 .181-.053m1.649 0zh.361a.06.06 0 1 1 0 .12l-.114.002v.682a.063.063 0 0 1-.125 0v-.683h-.116a.06.06 0 0 1-.007-.12zm.56 0zh.36a.06.06 0 1 1 0 .12l-.114.002v.682a.063.063 0 0 1-.125 0v-.683h-.115a.06.06 0 0 1-.007-.12zm2.74 0h.361a.06.06 0 1 1 0 .12l-.112.002v.682a.063.063 0 0 1-.125 0v-.683h-.116a.06.06 0 0 1-.007-.12zm-.677.004h.202a.36.36 0 0 1 .208.058.28.28 0 0 1 .108.206.24.24 0 0 1-.071.198.3.3 0 0 1-.117.075l-.02.007.158.2a.1.1 0 0 1 .023.056q-.004.049-.06.05a.07.07 0 0 1-.056-.027l-.187-.258h-.117v.23a.06.06 0 0 1-.063.067.06.06 0 0 1-.062-.067v-.726a.07.07 0 0 1 .016-.05.06.06 0 0 1 .038-.019m-3.87.002h.36a.06.06 0 0 1 0 .121h-.116v.684a.063.063 0 0 1-.125 0v-.684h-.116a.06.06 0 0 1-.003-.12zm.583 0h.002a.063.063 0 0 1 .065.064v.471a.26.26 0 0 0 .037.151.15.15 0 0 0 .127.056.14.14 0 0 0 .125-.056.27.27 0 0 0 .035-.15V8.34h.001a.063.063 0 0 1 .125 0v.432a.47.47 0 0 1-.056.262.25.25 0 0 1-.228.104.26.26 0 0 1-.23-.104.46.46 0 0 1-.061-.262V8.34a.063.063 0 0 1 .058-.063m3.354.115v.328h.13a.18.18 0 0 0 .2-.174.15.15 0 0 0-.051-.109.18.18 0 0 0-.13-.045zm-.584.015-.136.469h.278zm-1.14 1.005c.011 0 .021.002.022.011.002.018-.016.029-.042.042a.2.2 0 0 0-.094.08.3.3 0 0 0-.039.163.12.12 0 0 0 .063.079.3.3 0 0 0 .142.028.5.5 0 0 0 .215-.063.6.6 0 0 1 .276-.02.34.34 0 0 1 .194.063c.024.017.02.038.011.04-.014.005-.029-.012-.044-.01a.7.7 0 0 0-.142.03c-.06.027-.087.037-.116.09a.1.1 0 0 0-.007.073c.01.024.035.04.04.057a.5.5 0 0 0 .064.125l.03.023a3 3 0 0 1 .282.243.3.3 0 0 1 .04.093c.003.012-.007.03-.018.025a.3.3 0 0 1-.036-.029.2.2 0 0 0-.053-.039.4.4 0 0 0-.176-.025c-.027 0-.081.024-.05.036a.36.36 0 0 1 .132.116.43.43 0 0 1 .107.31c0 .006-.012.01-.015.006a.4.4 0 0 0-.102-.109.32.32 0 0 0-.21-.062c-.015.001-.06 0-.055.014a1.2 1.2 0 0 1 .123.191.56.56 0 0 1 .039.276c-.001.005-.02.01-.023.005a1 1 0 0 0-.077-.076.4.4 0 0 0-.094-.06.3.3 0 0 0-.204.028.33.33 0 0 0-.13.132.5.5 0 0 0-.062.205.46.46 0 0 0 .042.257.37.37 0 0 0 .19.164 1 1 0 0 0 .334.044c.139.005.278-.016.417-.02a2 2 0 0 1 .396.003.9.9 0 0 1 .3.12 3 3 0 0 1 .215.183c.008.006.026-.003.035-.009a.46.46 0 0 0 .131-.233.35.35 0 0 0-.056-.246c-.047-.085-.116-.18-.17-.27a3 3 0 0 1-.202-.296.3.3 0 0 1-.017-.221.24.24 0 0 1 .107-.128c.011-.007.022.006.017.021a.2.2 0 0 0-.008.112.3.3 0 0 0 .089.14c.013.01.047-.005.055-.021.018-.043.007-.11.023-.154a.6.6 0 0 1 .108-.226 1.5 1.5 0 0 1 .36-.196c.033-.019.054-.105.091-.091s.017.1-.011.142c-.04.062-.087.1-.131.156a1.5 1.5 0 0 0-.157.247.22.22 0 0 0-.029.137.14.14 0 0 0 .073.094c.022.01.05-.01.07-.025a.4.4 0 0 0 .097-.103c.023-.038.01-.089.032-.128.006-.009.03-.007.037 0a.14.14 0 0 1 .044.084.4.4 0 0 1-.01.113c-.003.008-.024.027-.031.045a.2.2 0 0 1-.02.04c-.036.063-.078.116-.125.126-.01.001-.017.021-.01.03a.4.4 0 0 0 .113.132.2.2 0 0 0 .152.01c.027-.008.048-.027.079-.037.013-.004.005.004.005.017a.3.3 0 0 1-.015.086.2.2 0 0 1-.075.083.4.4 0 0 1-.166.05c-.027.005-.068.025-.058.051a.3.3 0 0 0 .042.085.12.12 0 0 0 .08.039.2.2 0 0 0 .125-.036c.04-.026.061-.074.096-.108.007-.006.026 0 .026.01a.4.4 0 0 1-.041.158.5.5 0 0 1-.128.138c-.015.013-.033.029-.033.049a.2.2 0 0 0 .044.084.13.13 0 0 0 .083.054.3.3 0 0 0 .1 0c.013 0 .01.023-.001.031a.25.25 0 0 1-.117.068.25.25 0 0 1-.128.008c-.081-.02-.134-.05-.214-.073a.23.23 0 0 0-.135-.009.23.23 0 0 0-.106.083.13.13 0 0 0-.03.064c-.006.063.025.13.005.192a1.4 1.4 0 0 1-.081.234 1.3 1.3 0 0 1-.115.165c-.04.054-.093.074-.12.133a1 1 0 0 1-.038.063.5.5 0 0 0-.058.229.45.45 0 0 0 .085.209l.153.237a.15.15 0 0 1 .009.083.09.09 0 0 1-.044.07.9.9 0 0 0-.419.527l-.002.013v.004a.1.1 0 0 1-.021.042.33.33 0 0 1-.19.096q-.082.022-.165.046a.08.08 0 0 0-.044.031.08.08 0 0 0 .009.097.14.14 0 0 1 .03.071.06.06 0 0 1-.013.042.1.1 0 0 1-.028.022.9.9 0 0 1-.216.087c-.05.011-.086-.002-.07-.059a3 3 0 0 1 .098-.293.4.4 0 0 1 .133-.14 2 2 0 0 1 .212-.162.4.4 0 0 0 .119-.126 3 3 0 0 1 .19-.275.16.16 0 0 0 .029-.129.25.25 0 0 0-.142-.185l-.085-.034a.53.53 0 0 1-.246-.175.1.1 0 0 0-.062-.04c-.063.002-.081.09-.083.138a1 1 0 0 0 .004.212.2.2 0 0 1 .004.072.06.06 0 0 1-.039.034 2.7 2.7 0 0 0-.565.279.2.2 0 0 0-.063.07l-.017.029a.19.19 0 0 1-.223.08l-.044-.011a.1.1 0 0 0-.064.017.2.2 0 0 0-.041.036l-.01.019v.014l.004.017.022.06a.066.066 0 0 1-.038.096 1 1 0 0 1-.203.055c-.04.005-.075-.01-.065-.057a1 1 0 0 1 .07-.237.1.1 0 0 1 .057-.06.8.8 0 0 0 .179-.14.27.27 0 0 1 .169-.073.5.5 0 0 0 .262-.1 2 2 0 0 0 .225-.186.37.37 0 0 0-.006-.46l-.02-.035c-.019-.03-.03-.073-.046-.104a.24.24 0 0 1-.039-.104c0-.068.027-.133.031-.201a.024.024 0 0 0-.016-.025.5.5 0 0 0-.137-.03 2.7 2.7 0 0 1-.56.006 1.4 1.4 0 0 1-.39-.18c-.053-.033-.085-.07-.139-.101-.014-.008-.015-.005-.028.006a.67.67 0 0 1-.459.125h-.002a2 2 0 0 1-.294-.077c-.073-.027-.19-.074-.26-.015-.029.025-.022.06-.022.093a1.2 1.2 0 0 1-.01.305.04.04 0 0 0 .003.032l.006.006a.1.1 0 0 0 .036.02l.01.004c.028.01.033.023.05.058a.2.2 0 0 1 .016.062.2.2 0 0 1-.003.062l-.009.039a.2.2 0 0 0 .008.135.1.1 0 0 0 .042.053l.01.004.01.003h.02l.02-.008.004-.002a.05.05 0 0 1 .035-.012l.01.003a.08.08 0 0 1 .063.074.5.5 0 0 1-.046.221.06.06 0 0 1-.077.03l-.018-.007a.45.45 0 0 1-.14-.117.2.2 0 0 1-.049-.112.12.12 0 0 0-.028-.082.1.1 0 0 0-.032-.016.14.14 0 0 1-.07-.046.27.27 0 0 1-.052-.219 1.5 1.5 0 0 0-.046-.64.15.15 0 0 1 .002-.108l.016-.043.007-.016a.06.06 0 0 1 .042-.032l.029-.003a1.5 1.5 0 0 0 .45-.07.2.2 0 0 1 .062-.01l.073.002c.03 0 .06-.027.024-.05a1 1 0 0 1-.084-.087.05.05 0 0 0-.052-.022l-.01.005-.009.005a.098.098 0 0 1-.152-.029.8.8 0 0 1-.087-.202.56.56 0 0 0-.109-.238.24.24 0 0 0-.19-.063.22.22 0 0 0-.13.098l-.063.088a.14.14 0 0 0-.031.067v.016l.008.032a.13.13 0 0 1-.039.154l-.094.075a.1.1 0 0 0-.03.06l-.012.06a.1.1 0 0 0-.003.045l.002.012a.1.1 0 0 0 .031.04l.013.012.012.017a.06.06 0 0 1-.012.07l-.024.021a.8.8 0 0 1-.19.108l-.026.006c-.038.003-.05-.026-.052-.06q-.004-.066-.003-.134a.2.2 0 0 1 .057-.137.36.36 0 0 0 .072-.225.2.2 0 0 1 .04-.13.3.3 0 0 0 .057-.09.3.3 0 0 1 .039-.066 4 4 0 0 0 .281-.384c.054-.086.155-.192.237-.073a.4.4 0 0 0 .078.084 2 2 0 0 0 .259.164c.094.053.109-.042.125-.121v-.003a.3.3 0 0 1 .038-.092 1.3 1.3 0 0 1 .202-.247c.043-.038.105-.076.15-.113.018-.016.023-.018.03-.04.009-.022.024-.05.034-.078s.015-.055.024-.076a.3.3 0 0 0 .044-.098v-.015l-.003-.007a.05.05 0 0 0-.021-.024.2.2 0 0 0-.102-.026h-.003a.4.4 0 0 0-.148.031.1.1 0 0 0-.054.054.2.2 0 0 1-.042.063.1.1 0 0 1-.13.006c-.024-.016-.014-.043 0-.063a.4.4 0 0 0 .035-.05.04.04 0 0 0 .005-.025v-.004l-.002-.005-.005-.006a.05.05 0 0 0-.045-.007l-.083.027a.064.064 0 0 1-.094-.047.2.2 0 0 1-.003-.055.055.055 0 0 1 .04-.05c.02-.006.05-.017.046-.042v-.023a.1.1 0 0 1 .012-.024.1.1 0 0 1 .03-.025 4 4 0 0 0 .32-.234.05.05 0 0 1 .064-.01l.01.006a.22.22 0 0 0 .151.02.05.05 0 0 0 .041-.03v-.01l-.002-.006-.003-.004a.1.1 0 0 0-.035-.021l-.058-.021a.3.3 0 0 1-.052-.025.05.05 0 0 1-.025-.059c.023-.113.147-.114.241-.105h.004a.5.5 0 0 0 .14-.022c.06-.021.106-.067.163-.094s.117-.057.176-.08c.018-.006.033-.002.049-.009a.1.1 0 0 0 .035-.025 1 1 0 0 1 .142-.163.8.8 0 0 1 .236-.092.1.1 0 0 1 .03-.006zm-.425.557a.2.2 0 0 0-.105.026c-.009.005-.015.016-.008.024.018.021.049.03.07.05a.2.2 0 0 1 .035.046c.009.019.024.04.033.06a1 1 0 0 1 .045.123 1.2 1.2 0 0 1 .05.209c.01.057.007.117.01.175v.081q0 .035-.003.07a1 1 0 0 0-.004.098v.08c.002.07.013.12.044.12a.2.2 0 0 0 .084-.019.18.18 0 0 0 .085-.148 2 2 0 0 0-.003-.576.5.5 0 0 0-.188-.362.22.22 0 0 0-.144-.057zm3.96.161h5.177c-.017.825-.034 1.6-.05 2.263h-5.13l.004-1.862zm-.006 2.544h5.123a9.7 9.7 0 0 1-.545 2.911 14.5 14.5 0 0 1-1.56 3.118 12.5 12.5 0 0 1-2.415 2.669 11 11 0 0 1-1.147.848 14.6 14.6 0 0 1-1.96.999c-.224.096-.418.186-.596.247-.193.065-.358.125-.474.156v-.115l.003-7.295a4 4 0 0 0 .316-.023c.005.015.016.057.031.1a.33.33 0 0 0 .219.166.32.32 0 0 0 .306-.107.37.37 0 0 0 .388.067.235.235 0 0 0 .175-.227.43.43 0 0 0-.033-.208l-.036-.066a4 4 0 0 0 .744-.41l.02-.006c.373-.094 1.872-.631 2.791-.643a3.3 3.3 0 0 1 1.627.39 2.8 2.8 0 0 1 .682.56c.006.009.013.028.037.032a.04.04 0 0 0 .034-.022 1.14 1.14 0 0 0 .079-.516c-.02-.282-.3-.486-.383-.57-.003-.003-.01-.021.02-.041a.7.7 0 0 1 .105-.085 1 1 0 0 1 .562-.212c.03.003.02-.04.012-.076-.058-.25-.415-.412-.79-.354a.96.96 0 0 0-.613.417c-.007.011-.042.027-.056.013a3 3 0 0 0-.369-.107c-.045-.01-.021-.044-.019-.05a1 1 0 0 1 .304-.337 1.1 1.1 0 0 1 .494-.224c.022 0 .022-.03.016-.04a.55.55 0 0 0-.375-.302.84.84 0 0 0-.78.14 1.4 1.4 0 0 0-.445.673c-.014.02-.018.036-.036.032-.099-.02-.345-.007-.367-.022-.015-.007-.012-.03-.009-.045a.9.9 0 0 1 .222-.38.9.9 0 0 1 .364-.286.055.055 0 0 0 .01-.094.98.98 0 0 0-1.22.263 2.2 2.2 0 0 0-.304.696c-.002.009-.017.036-.036.036l-.508.112-.083.019-.022.023a3.3 3.3 0 0 0 .497-1.65zm-12.45.085h5.19v.09a3.15 3.15 0 0 0 .837 2.098H3.556a9.7 9.7 0 0 1-.342-2.188zm.415 2.443h5.863a3 3 0 0 0 .112.1 3.9 3.9 0 0 0 2.17.898v1.21h-7.22a14 14 0 0 1-.8-1.827 10 10 0 0 1-.125-.38zm10.584.29-.01.012h-.002l-.002-.002zm1.738.185a.9.9 0 0 0-.507.155.93.93 0 0 0-.392.41 2.7 2.7 0 0 0-.172.775.06.06 0 0 1-.038.035 3 3 0 0 0-.335.087.03.03 0 0 1-.023-.02 1.1 1.1 0 0 1 .15-.727.9.9 0 0 1 .218-.263.037.037 0 0 0-.017-.068.98.98 0 0 0-.648.114.89.89 0 0 0-.452.667 1.6 1.6 0 0 0 .042.594c0 .006.006.027-.016.031-.076.037-.282.145-.355.18-.005.002-.019.005-.022-.006a.58.58 0 0 0-.268-.358.53.53 0 0 0-.446.022.55.55 0 0 0-.216.224.375.375 0 0 0 .127.455c.006.006.017.02 0 .025-.09.049-.092.06-.16.161a.43.43 0 0 0 .052.45.465.465 0 0 0 .7.082c.004-.003.018.005.025.02a.6.6 0 0 0 .143.151.46.46 0 0 0 .455 0 .41.41 0 0 0 .21-.415.38.38 0 0 0-.111-.262c-.013-.016 0-.024.034-.046a5.4 5.4 0 0 1 1.96-.666 3.1 3.1 0 0 1 1.076.022 1.5 1.5 0 0 1 .629.312 3 3 0 0 1 .406.402.16.16 0 0 0 .117-.025.66.66 0 0 0 .014-.517 1.6 1.6 0 0 0-.384-.59c-.003-.002-.003-.013-.003-.02-.004-.03.015-.045.052-.079a1.2 1.2 0 0 1 .562-.297c.027-.002.038-.022.02-.053a.656.656 0 0 0-.808-.298h-.001a.92.92 0 0 0-.454.416c-.006.011-.022.05-.037.038-.09-.008-.242-.032-.331-.04-.041-.002-.025-.039-.024-.045a.74.74 0 0 1 .194-.316 1.2 1.2 0 0 1 .444-.318.02.02 0 0 0 .016-.031.63.63 0 0 0-.465-.229.8.8 0 0 0-.617.238 1.25 1.25 0 0 0-.337.74q-.012.035-.037.035a2 2 0 0 1-.278.025c-.015-.004-.014-.02-.014-.036a.9.9 0 0 1 .101-.406 1.5 1.5 0 0 1 .55-.582c.036-.025.038-.076.026-.082a.9.9 0 0 0-.355-.071M4.707 17.692h7.069v2.19H6.213a11 11 0 0 1-.898-1.181 17 17 0 0 1-.609-1.01zm10.076 1.176a.5.5 0 0 0-.273.069.98.98 0 0 0-.475.56 1.1 1.1 0 0 0 .012.571c.003.007.012.024-.002.03-.078.03-.136.065-.213.096-.004 0-.024.005-.028-.005a.63.63 0 0 1 .088-.736c.017-.015.027-.035-.008-.047a.59.59 0 0 0-.531.193.68.68 0 0 0-.117.659 1 1 0 0 0 .099.261c.003.005.03.021.014.028l-.15.115c-.003.003-.014.008-.019 0a.49.49 0 0 0-.29-.238.34.34 0 0 0-.317.088.36.36 0 0 0 .147.602c.007.003.017.012.005.02a.6.6 0 0 0-.19.212.38.38 0 0 0 .085.406.37.37 0 0 0 .29.089.6.6 0 0 0 .357-.313c.002-.003.021-.017.031-.006a.53.53 0 0 0 .264.2.32.32 0 0 0 .323-.065.35.35 0 0 0 .111-.4.6.6 0 0 0-.201-.216c-.013-.01-.003-.035.023-.055a3 3 0 0 1 1.402-.62 1.8 1.8 0 0 1 1.025.166 1.6 1.6 0 0 1 .337.267c.013.007.05.02.063.008a.397.397 0 0 0 .035-.548.7.7 0 0 0-.206-.165l-.007-.015a.9.9 0 0 1 .301-.393 1.4 1.4 0 0 1 .295-.143c.022-.006.018-.02.007-.047-.128-.293-.635-.304-.874-.15a1.1 1.1 0 0 0-.346.396c-.005.01-.012.04-.025.031l-.213-.064c-.004 0-.004-.024-.002-.028a1.12 1.12 0 0 1 .696-.565c.015-.006.01-.02.007-.028-.11-.268-.661-.245-.93-.074a1.17 1.17 0 0 0-.493.714c-.003.02.006.037-.007.04a1.2 1.2 0 0 1-.23.055.024.024 0 0 1-.022-.023.64.64 0 0 1 .067-.392 2 2 0 0 1 .324-.408.043.043 0 0 0-.003-.063.5.5 0 0 0-.236-.07zm-3.006 1.296v3.417c-.098-.032-.214-.074-.342-.117-.178-.06-.373-.151-.597-.247a14.6 14.6 0 0 1-1.96-1 11 11 0 0 1-1.147-.847 13 13 0 0 1-1.266-1.206h5.31z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C7.977 0 4.419 1.984 2.24 5.022c-1.816 4.295.987 7.619 4.001 7.532 2.925-.084 5.264-1.365 7.04-3.4l-3.02-3.015h10.635l-.037 10.577-2.788-2.782c-2.739 2.974-5.493 5.443-9.741 5.208C3.168 18.855.553 14.7.09 10.558.033 11.032 0 11.512 0 12c0 6.63 5.37 12 12 12s12-5.371 12-12S18.625 0 12 0"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.504 0v1.023l-.01-.015-6.106 3.526H3.417v.751h5.359v3.638h1.942V5.284h1.786V15.7c.027 0 .54-.01.751.091V5.285h.531v10.608c.293.147.55.312.751.54V5.286h6.046v-.75h-1.267l-6.061-3.5V0zm0 1.87v2.664H7.889zm.751.031 4.56 2.633h-4.56zM9.142 5.285h1.21v1.686h-1.21zm-4.736 2.73v1.951h1.942v-1.95zm2.19 0v1.951h1.941v-1.95zm-2.19 2.171v1.951h1.942v-1.95zm2.19 0v1.951h1.941v-1.95zm2.18 0v1.951h1.942v-1.95zM4.36 12.43a3.73 3.73 0 0 0-.494 1.851c0 1.227.604 2.308 1.52 2.986.239-.064.477-.1.724-.11.1 0 .165.01.266.019.284-1.191 1.383-1.988 2.665-1.988.724 0 1.438.201 1.924.668.229-.476.302-1.007.302-1.575 0-.65-.165-1.292-.494-1.85zm4.828 3.16c-1.21 0-2.226.844-2.492 1.97a1 1 0 0 0-.275-.009 2.56 2.56 0 0 0-2.564 2.556 2.565 2.565 0 0 0 3.096 2.5A2.58 2.58 0 0 0 9.233 24c.862 0 1.622-.43 2.09-1.081a2.557 2.557 0 0 0 4.186-1.97c0-.567-.193-1.099-.504-1.52a2.557 2.557 0 0 0-3.866-2.94 2.57 2.57 0 0 0-1.951-.898z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h10.718v-3.805l3.496-4.272h-3.496v-5.205H4.427l6.291-7.767V0Zm13.282 0v3.884L9.786 8.155h3.496v5.205h6.291l-6.291 7.767V24H24V0Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 .953v6.393l4.852 2.066-3.27 1.447v2.283l3.215 1.432L0 16.615v6.432l11.918-5.256.082-.035.082.035L24 23.047v-6.432l-4.797-2.04 3.215-1.433v-2.283l-3.27-1.447L24 7.346V.953L12 6.25Zm.879 1.352 10.039 4.431-4.96 2.19L.879 6.763Zm22.242 0v4.458l-5.066 2.162-4.973-2.19 10.04-4.431ZM12 7.209l4.945 2.19-4.95 2.107-4.94-2.108zM5.959 9.885l4.926 2.093-.006.002.006.002-4.979 2.12-3.446-1.529v-1.148zm12.082 0 3.514 1.54v1.15l-3.448 1.526-1.107.487-4.994 2.21L7 14.589l4.994-2.133L17 14.588l1.094-.487-4.973-2.12zM5.906 15.06l5.012 2.215-.066.03-9.973 4.404v-4.512zm12.201 0 5.014 2.137v4.512l-9.959-4.404-.066-.03z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.627.008q-.352.014-.706.065c-.226.024-.453.064-.672.097-.267.033-.534.05-.801.081-.252.033-.51.082-.762.123-.09.016-.178.048-.268.064-.194.04-.396.057-.59.122A16 16 0 0 0 6.79.917c-.316.13-.624.268-.923.43-.308.17-.6.373-.892.568q-.415.277-.82.592c-.257.203-.501.43-.736.657-.13.13-.235.284-.356.43-.203.236-.405.462-.6.706-.16.203-.308.414-.462.625-.275.373-.51.77-.728 1.168-.09.162-.17.325-.25.487-.123.243-.252.478-.366.73-.08.17-.146.357-.194.544a67 67 0 0 0-.332 1.2c-.098.358-.122.73-.13 1.096-.008.324.024.64.057.965.008.082-.04.18.056.244-.032.09-.008.138.04.154-.056.09.025.146-.007.227-.008.017.025.05.04.073 0 .025-.008.057 0 .08.01.074.04.147.04.229 0 .056.05.12.066.178.008.024 0 .065-.017.08-.048.058-.04.106.033.139.04.105.024.154.016.203.016.073-.008.097 0 .114.065.13.09.275.097.42 0 .034.016.066.033.107.008 0 0 .154 0 .154.04-.024.073-.032.113-.05q.036.16.081.294c.04.065.041.097.025.105.032.145.048.283.105.42 0-.153-.016-.307-.04-.453.113.04.21.08.275.08.008-.023.016-.055.025-.072-.049-.048-.09-.12-.138-.17.016.065 0 .09 0 .114a1 1 0 0 0-.114-.05c.033-.04.065-.08.114-.13 0-.072-.04-.137-.154-.13.05-.015.097-.04.154-.055.09-.048-.008-.138-.008-.25.008-.14-.073-.277-.097-.423-.04-.227-.033-.568-.057-.795-.049-.04-.09.065-.097.073q.04.293.064.584c-.048-.162-.08-.34-.12-.536-.01.057-.017.08-.017.114-.04.04-.008.09.016.146-.056-.025-.12-.016-.12-.016v.227c-.082-.08-.106-.146-.147-.203-.016-.065-.025-.13-.04-.194.015-.04 0-.065 0-.09l-.025-.195a1 1 0 0 0-.008-.13c.065.009.106.016.146.016-.08-.104-.025-.17.008-.234.016-.033.073-.04.09-.074.064-.12.17-.218.17-.373 0-.073.025-.154.032-.227q.027-.207.04-.414c.017-.178 0-.357.041-.527.065-.283.146-.568.235-.852.065-.203.138-.397.22-.6.12-.317.234-.633.388-.933.22-.438.47-.86.713-1.29.154-.268.316-.52.487-.78.16-.25.323-.51.51-.746.26-.332.543-.64.86-.917.323-.292.63-.592.98-.86a10 10 0 0 1 1.44-.925c.414-.219.843-.39 1.273-.552.275-.105.575-.154.859-.243.324-.106.648-.154.988-.162.219-.008.43-.033.648-.057a16 16 0 0 0 .6-.057.4.4 0 0 0-.04.065c-.09.13-.187.26-.276.39-.073.105-.154.218-.227.324-.13.17-.268.34-.39.52-.185.267-.356.543-.55.81-.194.26-.405.504-.608.755-.267.35-.518.706-.785 1.055-.244.332-.502.65-.737.982-.21.292-.398.6-.6.9-.3.446-.6.884-.9 1.33a84 84 0 0 1-.712 1.015c-.016.024-.04.032-.065.048-.064.105-.064.162-.09.21a4 4 0 0 1-.202.358c-.04.065-.097.122-.146.187-.008-.098.13-.147.065-.27-.04.067-.08.123-.12.188l-.1.194c.033.024.088.04.035.088-.005-.02-.032-.032-.053-.048a5 5 0 0 0-.194.293c.05.04.073.024.105-.033.03-.06.072-.104.11-.154l-.042.074a.3.3 0 0 0 .09-.08c0 .088-.05.16-.09.233-.033.065-.114.114-.17.163.008.008.065.032.073.04.073-.024.097-.064.106-.04.024-.033.048-.057.056-.08a.3.3 0 0 1 .162-.18q.046-.026.08-.064c.244-.252.495-.496.714-.764.34-.413.648-.843.973-1.265.137-.178.3-.357.445-.527.024.186.008.365 0 .535-.025.3-.04.6-.065.908-.008.122 0 .244-.008.366 0 .032-.025.056-.025.09 0 .08.025.17.025.25-.025.3-.057.592-.082.893-.008.064.024.13.04.186-.04.438.05.9-.024 1.364.057-.09.073-.147.073-.203.008-.05 0-.097 0-.154v-.08c.008-.147.04-.3.024-.448a1.5 1.5 0 0 1 .016-.47c.017-.065-.007-.146.033-.227v.12c-.008.463.01.926-.056 1.388-.008.04.024.114-.065.106-.073.146.016.252-.065.333-.016.016.016.09.024.138-.032.097-.032.097.016.105.008.18.025.34.033.51.13-.307.064-.624.122-.941.008.13.016.26.008.398 0 .21-.01.414-.017.625q-.002.06-.016.122c-.024.113-.032.227-.072.332-.033.08-.016.203-.016.3v.31c.032.137-.01.21.016.29-.025.083-.033.107-.025.13l.025.123c.162-.016.09.106.153.17-.048.065-.032.09-.032.122 0 .073-.008.138-.016.21 0 .188-.008.374-.008.553 0 .025.008.048.008.073l-.008.227c.016.024 0 .05-.025.073-.008 0-.032-1.03-.032-1.03h-.12c-.017.486.023.924-.066 1.38-.097.007-.13.023-.235.023q-.378-.002-.754.008c-.3 0-.59.008-.89.008-.147 0-.3.017-.446.017-.195 0-.397-.025-.59-.025-.3 0-.593.024-.893.032-.22.008-.437.008-.656.017-.146.008-.292.015-.438.032-.064.008-.12.032-.202.056-.025 0-.08-.008-.13 0-.08.017-.153.065-.235.082-.122.024-.154.056-.138.178v.08c-.008.017.178-.024.178-.024-.016 0-.024.05-.049.09.065-.025.106-.04.147-.057.121.057.226.025.323.05.316.08.64.113.964.145.21.016.414.025.624.032.3.017.6.033.9.033.25 0 .493-.025.744-.025.348 0 .697.016 1.045.025.073 0 .154-.008.235-.008h.592c.527-.016 1.053-.025 1.58-.04.3-.01.608-.025.907-.033l.924-.025c.357-.008.713-.008 1.062-.015.267 0 .526-.01.794-.017.3-.008.607-.032.907-.048.162-.008.324-.025.486-.04.195-.017.398-.04.592-.05.29-.016.59-.024.883-.04.365-.024.73-.057 1.102-.065.34-.016.689-.008 1.03-.016.3-.008.599-.025.907-.033l.51-.025s.34-.008.51-.024c.293-.016.584-.05.876-.057.186-.008.372 0 .559-.008.3-.008.606-.024.906-.024.113 0 .235.016.38.024-.064.057-.105.09-.153.13.032.008.064.025.097.04a.22.22 0 0 1-.13.04c-.016.042-.032.058-.048.139h.145c-.056 0-.105.073-.16.122-.066-.017-.123 0-.156.09.057.03.05.056.04.09-.096.03-.17.063-.128.169q-.05.022-.114.056c-.04.065-.113.08-.097.17.032.008.064.025.09.033-.042.016-.082.04-.123.056-.145.09-.08.13-.048.17q-.037.027-.073.04c.016.074.04.09.048.09l-.085.069.01-.027h-.032q0 .022.005.04l-.02.016c-.024.072-.056.104-.09.153-.03.048-.046.114-.087.162-.17.187-.292.406-.51.552-.081.057-.154.13-.227.203-.146.138-.276.292-.43.422a9 9 0 0 1-.631.478c-.267.187-.534.374-.802.552-.146.097-.308.17-.462.26s-.3.17-.454.26c-.097.064-.186.153-.291.202-.268.114-.551.211-.827.317-.268.114-.462.21-.664.284a5 5 0 0 1-.575.153c-.065.017-.138 0-.211.01-.138.024-.276.057-.414.073-.356.048-.713.08-1.07.13-.21.024-.413.064-.623.09-.146.007-.3-.009-.446-.009-.105 0-.218.025-.324.01-.17-.026-.34-.066-.51-.098-.04-.008-.097-.025-.13-.008-.064.032-.122-.016-.187 0-.04.008-.08-.025-.12-.025-.033-.008-.074.01-.115 0-.09-.024-.17-.056-.268-.048-.096.008-.194-.04-.298-.065l-.43-.097a.7.7 0 0 1-.162-.073c-.21 0-.348-.008-.478-.057-.113-.04-.22-.097-.34-.08-.032.007-.057-.009-.09-.009-.024-.033-.048-.098-.072-.098-.162.008-.26-.13-.397-.17-.073-.024-.13-.105-.202-.13-.18-.073-.324-.227-.527-.25-.064-.01-.13-.042-.202-.066.024.032.04.057.064.08-.235-.113-.453-.242-.672-.364-.032-.008-.056-.04-.08-.057l-.22-.147c-.12.024-.17-.025-.203-.04-.218-.154-.47-.252-.68-.421-.09-.074-.194-.122-.26-.212a1.3 1.3 0 0 0-.404-.316c-.122-.064-.235-.138-.348-.21-.057-.041-.114-.09-.114-.18 0-.056-.024-.113-.097-.08-.032-.05-.065-.106-.105-.122-.097-.04-.162-.114-.235-.18-.073-.064-.13-.153-.22-.185-.161-.065-.26-.203-.355-.316-.228-.268-.43-.56-.64-.844-.017-.024-.05-.04-.074-.065.033.09.073.162.114.243a.5.5 0 0 1-.186-.146c-.008.008.558.942.558.942.05.073.09.146.138.219a.25.25 0 0 1-.243-.13c-.073-.13-.154-.21-.316-.194a1.4 1.4 0 0 1-.04-.18.6.6 0 0 1-.114-.008c.114.179.21.333.316.51l-.08-.047c.145.154.25.349.436.446.04.187.25.276.3.454l-.114-.024c-.065-.081-.138-.162-.21-.251a.4.4 0 0 0 .072.145c.098.122.187.244.3.35.04.04.098.057.098.13.064.032.09.04.113.04.017.049-.008.122.09.106.064.12.128.12.218.08.105.105.162.114.235.05 0 .04.008.08.008.113.032-.017.025-.04.025-.081.04.033.064.049.08.065.08.114.154.219.268.307.154.13.29.268.437.39.283.235.6.43.916.608.39.22.762.455 1.16.665a6.2 6.2 0 0 0 1.513.545c.195.04.38.08.576.13.17.048.34.121.51.161.26.057.527.106.786.154l.179.025c.072.016.16-.016.177.008.04.065.073.032.122.024.057-.016.12-.016.186-.016.227.008.445.056.672.04.05 0 .122-.04.163.04.073-.032.113-.032.146-.04.008.073 0 .073-.016.08-.017.01-.04.017-.073.04.292.058.567.066.81 0a2.7 2.7 0 0 0 1.135-.136c.032.04.056.097.105.016.016-.025.056-.033.089-.04.073-.017.162-.05.227-.026.073.025.097-.04.154-.04.097 0 .186-.008.276-.024.048-.008.097-.033.153-.05a.4.4 0 0 0-.178-.04 7 7 0 0 1 .276-.13c-.017.025-.033.057-.065.057h.113c-.025 0-.057.073-.097.122.29-.073.558-.138.818-.204-.09-.17.097-.113.162-.21a3 3 0 0 1-.243.064c.275-.137.559-.26.834-.38-.04.048-.09.073-.162.114.049.008.08.008.106.015.129.04.097-.08.137-.154.154 0 .219-.024.292-.05q.12-.033.243-.08c.13-.056.25-.13.38-.194.025-.01.065 0 .098 0 .09-.057.12-.106.145-.098.114.017.194-.024.227-.13l.023-.015c.033.07.098.08.203.007q-.1-.002-.187-.016-.008.002-.011.006.06-.047.11-.08c.178-.096.347-.193.526-.29.065 0 .097 0 .113-.008a4 4 0 0 0 .3-.163c-.024-.008-.08-.04-.08-.04a1 1 0 0 0 .154-.04c.193-.23.46-.383.664-.56.089-.008.089-.032.089-.048.032-.041.064-.09.105-.122.177-.163.371-.3.533-.47q.354-.355.673-.732c.194-.227.39-.454.55-.705.228-.35.422-.706.625-1.072.146-.26.275-.52.422-.778.015-.025.048-.057.072-.057.22-.025.438-.04.65-.065.047-.008.104-.04.152-.065-.024-.04-.04-.09-.064-.13-.033-.05-.08-.09-.114-.138-.032-.04-.056-.09-.08-.138-.025-.04-.05-.072-.074-.114a3 3 0 0 1-.138-.275c-.008-.024-.025-.065-.016-.09.146-.315.202-.656.34-.972.138-.325.18-.69.243-1.04.057-.331.09-.664.13-.997.024-.235.057-.462.064-.697.05-.373.033-.723.025-1.072-.008-.308-.025-.624-.04-.933-.017-.317-.025-.633-.058-.95-.056-.43-.113-.868-.21-1.29a7 7 0 0 0-.316-1.014c-.154-.39-.308-.787-.503-1.16-.316-.6-.73-1.136-1.11-1.696-.252-.357-.576-.65-.82-1.014-.135-.21-.34-.39-.541-.55a14 14 0 0 0-1.004-.723 10 10 0 0 0-.794-.504c-.22-.122-.454-.22-.68-.325-.26-.12-.511-.268-.803-.324-.073-.016-.138-.04-.21-.065-.187-.065-.365-.138-.552-.195-.283-.089-.56-.194-.85-.267a8 8 0 0 0-.87-.163c-.323-.047-.655-.064-.98-.096a8 8 0 0 0-.623-.056c-.307-.018-.623-.018-.93-.025-.154-.008-.316-.024-.47-.016Zm.694.94q.156.027.3.041l.389.025c.292.023.583.04.875.08.243.033.486.081.737.122a10.4 10.4 0 0 1 1.572.405c.3.098.59.228.884.35.656.267 1.28.592 1.895.932.194.106.308.276.454.43.21.22.42.438.624.665.234.268.453.544.68.82.201.243.412.486.615.73.065.073.114.163.17.244.13.194.275.38.39.592.08.154.13.333.185.503.08.252.162.495.243.746.056.187.104.382.145.576.033.13.025.268.065.397.05.17 0 .358.05.528.007.017.015.04.023.057.033.032.057.065.008.114-.008.008-.008.04 0 .064.017-.016.025-.032.04-.057 0 .017.01.025.01.033 0 .032-.01.065 0 .097 0 .016.015.04.023.057.016-.017.032-.025.064-.05.073.276.082.552.082.836 0 .268.048.536-.065.795.024-.09-.033-.17-.008-.252l.003.002c-.008 0-.056-.05-.064-.057-.01.025 0 .05-.017.08-.008-.023-.064-.014-.064-.04-.01.115.048.228.04.34.024-.014.12-.023.146-.047a.1.1 0 0 0 .032.016c-.162.122-.12.244-.048.382.016.032.064.097.016.162-.016.016.008.065.016.106h.024v.015l-.073.025c-.016-.025-.113-.073-.113-.114v.414c.08.025.08.138.113.195a.2.2 0 0 0 .033-.064l.008.008q-.01.072-.032.146c-.016.072-.033.137-.04.21 0 .008.015.025.015.033-.09.203-.04.43-.072.64-.025.154 0 .317-.017.48a4 4 0 0 1-.08.42c-.009.025-.026.033-.066.05a.7.7 0 0 0-.008-.252c-.008 0-.114-.057-.122-.057 0 .114.065.268.09.398-.025-.008-.122-.065-.13-.065-.017.097-.017.227-.025.332-.008.082-.08.154-.09.244 0 .05.058.08.05.162h.064c0-.162.074-.308.074-.478h.023c.01.016.033.032.025.04-.016.09-.05.187-.04.276 0 .05.04.097.024.154a1 1 0 0 0-.033.17c-.008-.04-.016-.056-.016-.08l-.09-.008c-.007.05.058.097.05.138-.01.008-.017.008-.033.016l-.267-.39a82 82 0 0 1-.632-.932 2 2 0 0 1-.147-.244q-.372-.645-.833-1.24c-.235-.3-.422-.626-.64-.94-.203-.302-.405-.594-.608-.895-.073-.097-.162-.186-.227-.292-.21-.332-.397-.673-.607-1.006-.178-.276-.372-.544-.56-.81q-.097-.137-.194-.286a.1.1 0 0 1-.016-.055 12 12 0 0 1-.04-.528c0-.162.016-.324.016-.495V6.96c0-.04.008-.073.008-.113.008-.008.016-.025.024-.033-.235 0-.478-.01-.713 0-.154.008-.235-.057-.34-.17-.308-.35-.535-.747-.802-1.12a50 50 0 0 0-.77-1.055c-.211-.284-.422-.56-.632-.844-.236-.324-.462-.65-.705-.973q-.44-.585-.892-1.168c-.138-.179-.292-.35-.446-.536m-.752.426q.026.005.05.038c.218.276.437.56.655.835.163.204.325.398.48.61.185.26.364.52.55.778q.316.448.624.908c.308.455.6.91.907 1.363.227.333.454.658.672.99h-.413c-.38-.008-.77-.04-1.15-.024-.52.025-1.046.08-1.564.122a23 23 0 0 1-1.976.064c-.236 0-.47.033-.705.05-.284.016-.56.032-.843.04-.333.016-.656.024-.99.033-.185.008-.38 0-.582 0V7.18c.26-.357.527-.714.786-1.08.08-.105.145-.22.226-.324.025-.033.058-.05.098-.082l-.008-.015c.032-.04.064-.074.08-.106.042-.065.066-.138.099-.21a.1.1 0 0 1 .032-.033c.114.057.114-.064.154-.105a6 6 0 0 0 .21-.252c.05-.064.098-.12.139-.194.007-.025-.017-.065-.025-.098H9.05c.024-.016.049-.04.073-.056.008 0 .008 0 .016-.008a5 5 0 0 1 .146-.21c.097-.13.202-.26.315-.374q-.024.062-.048.113c.008 0 .008.008.016.008.097-.13.203-.252.3-.382q-.012-.014-.025-.016c-.04.04-.072.082-.113.122q-.012-.014-.025-.016c.082-.106.163-.21.243-.333.017.025.033.057.065.122.033-.08.065-.138.09-.195-.025.025-.057.05-.081.074l-.025-.025.146-.218c.154-.22.308-.447.462-.666.057-.08.13-.146.178-.227.154-.308.398-.552.584-.836.04-.056.097-.105.145-.154q.03-.035.056-.03zm-2.285 3.16c-.048.033-.09.057-.137.09-.01.008-.017.008-.01.008.01.04.01.073.017.13.057-.082.097-.147.146-.21zm6.838 3.342c.073 0 .113.025.154.09q.108.182.227.365c.008.016.024.04.024.064 0 .18 0 .365.008.544.008.187.025.365.032.552 0 .186-.016.38-.008.576.009.276.016.56.016.843h.002v.074c-.008 0-.016.008-.032.008-.033-.114-.065-.236-.106-.35a2.7 2.7 0 0 0-.316-.68c-.163-.228-.308-.463-.47-.698-.04-.057-.098-.106-.146-.154-.17-.187-.34-.382-.56-.52a6.6 6.6 0 0 0-1.012-.52 2 2 0 0 1-.284-.145h.194L15.23 7.9c.3-.008.59-.008.89-.024m-6.083.212q.088-.003.178.008c-.13.065-.26.13-.373.21-.146.098-.283.228-.43.334a2.4 2.4 0 0 0-.396.373c-.154.186-.324.348-.487.527-.113.13-.243.252-.34.39-.137.178-.26.372-.39.575.042-.77.09-1.533.058-2.312.382-.016.746-.04 1.12-.056.29-.017.59-.025.88-.04q.09-.008.18-.01zm2.033.415c.242.008.485.008.728.024.105.008.203.032.3.064.12.04.25.098.365.154q.204.11.397.244c.235.154.453.324.688.462.227.138.405.325.55.536.18.25.382.48.463.787l.12.535c.026.098.083.195.058.308-.04.203-.073.415-.105.617a1 1 0 0 0-.024.244c.015.252-.082.47-.18.698-.031.073-.08.146-.12.227a.2.2 0 0 0 .064.033l.073-.146c.009 0 .009 0 .016.008-.04.113-.072.235-.113.35-.097.25-.194.51-.316.753-.065.138-.178.25-.26.382-.08.113-.145.235-.226.34-.073.09-.145.18-.243.244a6 6 0 0 1-.68.454c-.146.09-.316.138-.478.178h.002c-.26.064-.527.138-.794.17-.227.033-.462.025-.697.025a8 8 0 0 1-.625-.025c-.235-.024-.47-.05-.696-.154-.195-.09-.398-.17-.591-.268-.196-.097-.39-.21-.536-.39-.105-.13-.251-.234-.38-.348a.38.38 0 0 0 .17.235c-.041.05-.098.025-.18-.106-.023.017-.047.025-.064.033.025-.057.049-.114.073-.162-.032-.065-.073-.138-.105-.204a7 7 0 0 1-.187-.324c-.016-.024-.016-.048-.032-.073a2 2 0 0 1-.114-.146c-.064-.097-.12-.202-.202-.3 0 .025.008.05.008.082-.008 0-.016.008-.016.008l-.17-.414c-.008 0-.008 0-.016.008l.145.535c-.008 0-.016.01-.024.01-.024-.034-.048-.066-.065-.106-.016-.066-.065-.066-.105-.04-.025.015-.041.072-.033.096q.088.207.187.414a1 1 0 0 0 .057.138c.008.016.032.032.032.056.033.065.057.13.098.187.073.097.154.195.227.292.072.097.137.203.2.3.009.016.034.016.04.025.043.12.18.21.277.162.025.186.227.25.308.43a4 4 0 0 1-.235-.106c-.008.008-.008.016-.016.032.097.05.195.098.283.154.082.05.163.098.236.155.097.09.21.138.348.17a.1.1 0 0 0-.016-.033c.227.106.462.22.64.308-.843.017-1.742.033-2.674.05 0-.155-.008-.3-.008-.455 0-.065.016-.122.008-.187-.025-.372-.025-.746-.073-1.11a8 8 0 0 1-.04-1.162c.007-.21-.01-.43-.017-.64 0-.284 0-.56.009-.844 0-.04.016-.073.032-.114h.025c.008.017 0 .04.015.05.025.024.066.064.082.056.048-.033.12-.065.138-.114a.8.8 0 0 0 .056-.3c0-.073.033-.12.065-.17.016-.025.025-.05.04-.08-.031-.025-.064-.042-.104-.074.032-.09.024-.195.146-.243.016-.008.016-.05.024-.073.008-.066.015-.14.024-.204.016.025.025.033.04.05q.015-.026.017-.026c0-.032-.008-.097 0-.097.097-.016.057-.122.105-.17.008-.01-.008-.033-.008-.05 0-.015 0-.04.008-.04.113-.024.097-.146.17-.203.024-.016.032-.04.065-.08.064.112-.05.17-.057.25.137-.08.178-.275.097-.332a.5.5 0 0 0 .089-.09c.09-.097.186-.186.267-.283.057-.073.09-.162.146-.235.033-.04.098-.073.146-.098.146-.08.284-.17.373-.307q.026-.025.064-.05c.025-.015.074-.015.082-.04.008-.016-.016-.057-.033-.08.032-.017.065-.05.13-.082-.025.05-.032.08-.05.114l.04.04c.074-.057.188-.12.26-.17 0-.008-.04-.04-.04-.04-.05.024-.121.065-.194.097.015-.024.015-.04.025-.05.113-.072.226-.144.348-.202.283-.13.567-.26.85-.38.049-.025.114-.01.17-.01.025 0 .04 0 .065-.006.13-.04.26-.082.39-.114a.7.7 0 0 1 .178-.024m-.316.12-.234.106c0 .008-.041.073-.033.073.04-.008.13-.073.178-.08.024 0 .057.007.082.015 0-.032 0-.065.007-.114m5.858 1.38c.08.107.17.204.227.309.187.34.43.634.656.942.195.268.373.56.552.835.218.333.429.665.648.998.162.252.332.503.502.747q.233.326.477.64c.137.187.283.374.42.56q.244.344.487.674c.08.113.17.227.26.34.05.065.121.114.17.154a.1.1 0 0 1-.032-.008q.034.05.056.073c.09.05.098.098.05.17v-.001c-.008.016-.025.033-.033.05-.008-.017-.008-.042-.016-.075-.05.13-.154.066-.227.066-.437.008-.883.008-1.32.008-.421 0-.85 0-1.271.008-.138 0-.284.032-.422.04a37 37 0 0 1-.997.033c-.024 0-.048-.04-.09-.073l-.048.073c-.008-.016-.024-.032-.04-.056l-.025.064h-.024c-.016-.113-.048-.22-.048-.332 0-.244.024-.487.032-.73.008-.114 0-.22 0-.325l.09.065a1 1 0 0 1 .048-.08s-.016-.008-.033-.025c.016-.008.033-.025.033-.033.008-.024.024-.05.024-.065 0-.057-.016-.105-.024-.153q.012.002.024-.008l.048.243h.025c-.032-.056.073-.106-.016-.17-.008-.008.008-.057.008-.082-.025-.048-.04-.097-.065-.162.008-.008.033-.016.057-.024q-.046-.026-.081-.04c.08-.073.08-.114.008-.195.016-.008.032-.008.032-.015 0-.074 0-.147-.016-.22-.016-.081.025-.178-.097-.227a.2.2 0 0 0 .032.065s-.024.008-.048.024c-.105-.097-.04-.228-.065-.373a1 1 0 0 1 .138.05c-.017-.058-.057-.123-.081-.196h-.033v-.536c0 .008.056.008.09.017 0-.008.007-.016.007-.025l-.09-.105.017-.016c-.065-.08-.032-.194-.032-.22v-.567c.08.082-.04.187.08.235v-.08h-.008c-.008-.122-.008-.244-.016-.366h-.016c-.008.017-.008.025-.016.04h-.016zm-13.65.665c-.098.113-.187.227-.276.34.015.008.04.065.055.082.09-.122.21-.276.3-.39-.008-.008-.072-.024-.08-.032m-.543.398c-.05.072-.17.202-.22.275.009.008.098-.032.106-.023.05-.073.098-.155.146-.228q-.022-.013-.032-.024m.17.12c-.05.034-.097.075-.146.107.016.016.016.025.016.04-.064-.007-.09.026-.12.114-.01.025-.05.033-.09.065-.01.016-.017.057-.033.097l.008.008a.1.1 0 0 1-.04.025c-.05.048-.106.09-.154.138q-.014.036-.016.073c.056-.057.153-.162.226-.227l.01.008c.03-.05.056-.098.09-.146.006.008.006.016.014.024-.024.065-.048.138-.073.203-.017.008-.04.024-.04.016-.033.025-.058.057-.09.08l-.146.098c-.08.073-.162.138-.25.21-.058.09-.114.17-.18.277.098-.025.122.016.114.097.113.016.122-.073.154-.138.008-.016.016-.05.032-.057.073-.065.154-.12.235-.186.017-.016.017-.05.017-.073 0-.008-.04-.008-.066-.017.073-.08.18-.218.25-.307.042-.025.083-.058.083-.082-.007-.075.032-.104.082-.13-.037.175-.144.325-.252.356.033.016.065.033.09.025s.04-.05.056-.074l.22-.316.072-.122-.032-.033c-.033.058-.065.107-.098.164l-.027-.014.002-.002c-.032-.025-.04-.05-.04-.057a.3.3 0 0 1 .04-.074c.017 0 .04-.008.04-.008.034-.056.034-.097.066-.146-.008-.008-.016-.008-.025-.016zm14.059.999h-.002v.006zm-.002.006a.2.2 0 0 0-.007.067q-.002-.034.007-.067m-.007.147v.008c.008.008.009.008.016 0-.008 0-.008 0-.016-.007zm0 .016c-.024.008-.05.008-.081.017.04.015.079.023.08.04zm0 .056v.002zm-1.192 1.422c-.016.925.09 1.833.21 2.75l-2.786.097a3.3 3.3 0 0 0 .94-.624 1 1 0 0 1 .13-.114c.34-.21.59-.503.818-.828.259-.373.429-.795.64-1.192a1 1 0 0 1 .048-.09m1.134.073.033.08c.04-.007.057-.007.073-.015q-.002-.012.008-.024c-.024-.01-.057-.024-.114-.04zm.024.074-.007.006c.008 0 .016.01.016.01l-.008-.01zM1.07 14.01a.2.2 0 0 0-.073.033c.032.08.073.17.105.252a.2.2 0 0 1 .065-.033c-.033-.08-.065-.17-.097-.252m-.228.333c-.024.04-.048.08-.04.113 0 .024.04.05.065.073 0-.008.008-.016.016-.023-.016-.057-.024-.106-.04-.163m21.657.008c0 .016.008.04 0 .057zm-21.235.18a.3.3 0 0 0-.073.03c.065.139.13.285.194.423.01 0 .073-.032.073-.032-.065-.14-.105-.293-.194-.422m-.162.324c0 .032-.04.024-.04.057-.049 0-.09-.008-.13-.008-.008.008.024.056.033.065h.17c0-.04-.008-.073-.008-.114zm7.453.316q.133.205.276.398l-.008.008c-.017-.008-.041-.017-.057-.033l-.194-.292a.1.1 0 0 1-.017-.08m9.043.438c-.008.097-.016.17-.016.243 0 .016.016.048.024.048.016.01.049-.008.065-.015a.06.06 0 0 0 .016-.032c-.024-.017-.048-.025-.073-.042.154-.08 0-.12-.016-.202m-14.114 4.59c.088.099.177.196.266.302-.048-.025-.105-.04-.13-.073-.056-.065-.104-.138-.16-.203zm.34.286c.024.04.04.089.064.138-.113-.008-.17-.057-.137-.122.024-.008.05-.008.073-.016m15.434 1.241c-.065.015-.114.024-.154.04-.016.033-.033.057-.05.09q.013.001.026.015c.049-.05.105-.09.178-.145m-.414.226c-.09.057-.186.113-.276.17.008.008.008.017.017.025a.8.8 0 0 0 .292-.146c-.008-.017-.025-.034-.033-.05m-3.97 1.542c-.371.106-.493.122-.534.065.187-.025.357-.04.535-.065m-.551.073c.008.016.008.032.016.048-.05 0-.081.017-.122.025-.113.024-.235.04-.348.057-.04.008-.09.05-.105-.025-.017.008-.033.008-.05.017.04.12.139.024.22.072-.18.025-.348.04-.52.065v-.016c.05-.008.107-.016.155-.025v-.024a2 2 0 0 0-.243-.016c-.024 0-.056.033-.08.04a.4.4 0 0 1-.106.017c-.138.008-.275.008-.405.016-.008 0-.025-.008-.033-.008v-.025c.543-.072 1.078-.145 1.62-.218zm-1.694.21v.024a4 4 0 0 1-.453.05v-.025z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.56 14.723a.5.5 0 0 0-.057-.12q-.21-.395-1.007-.231c-1.654.34-2.294.13-2.526-.02 1.342-2.048 2.445-4.522 3.041-6.83.272-1.05.798-3.523.122-4.73a1.6 1.6 0 0 0-.15-.236C21.693.91 19.8.025 17.51.001c-1.495-.016-2.77.346-3.116.479a10 10 0 0 0-.516-.082 8 8 0 0 0-1.312-.127c-1.182-.019-2.203.264-3.05.84C8.66.79 4.729-.534 2.296 1.19.935 2.153.309 3.873.43 6.304c.041.818.507 3.334 1.243 5.744q.69 2.26 1.433 3.582.83 1.493 1.714 1.79c.448.148 1.133.143 1.858-.729a56 56 0 0 1 1.945-2.206c.435.235.906.362 1.39.377v.004a11 11 0 0 0-.247.305c-.339.43-.41.52-1.5.745-.31.064-1.134.233-1.146.811a.6.6 0 0 0 .091.327c.227.423.922.61 1.015.633 1.335.333 2.505.092 3.372-.679-.017 2.231.077 4.418.345 5.088.221.553.762 1.904 2.47 1.904q.375.001.829-.094c1.782-.382 2.556-1.17 2.855-2.906.15-.87.402-2.875.539-4.101.017-.07.036-.12.057-.136 0 0 .07-.048.427.03l.044.007.254.022.015.001c.847.039 1.911-.142 2.531-.43.644-.3 1.806-1.033 1.595-1.67M2.37 11.876c-.744-2.435-1.178-4.885-1.212-5.571-.109-2.172.417-3.683 1.562-4.493 1.837-1.299 4.84-.54 6.108-.13l-.01.01C6.795 3.734 6.843 7.226 6.85 7.44c0 .082.006.199.016.36.034.586.1 1.68-.074 2.918-.16 1.15.194 2.276.973 3.089q.12.126.252.237c-.347.371-1.1 1.193-1.903 2.158-.568.682-.96.551-1.088.508-.392-.13-.813-.587-1.239-1.322-.48-.839-.963-2.032-1.415-3.512m6.007 5.088a1.6 1.6 0 0 1-.432-.178c.089-.039.237-.09.483-.14 1.284-.265 1.482-.451 1.915-1 .099-.127.211-.27.367-.443a.4.4 0 0 0 .074-.13c.17-.151.272-.11.436-.042.156.065.308.26.37.475.03.102.062.295-.045.445-.904 1.266-2.222 1.25-3.168 1.013m2.094-3.988-.052.14c-.133.357-.257.689-.334 1.004-.667-.002-1.317-.288-1.81-.803-.628-.655-.913-1.566-.783-2.5.183-1.308.116-2.447.08-3.059l-.013-.22c.296-.262 1.666-.996 2.643-.772.446.102.718.406.83.928.585 2.704.078 3.83-.33 4.736a9 9 0 0 0-.23.546m7.364 4.572q-.024.266-.062.596l-.146.438a.4.4 0 0 0-.018.108c-.006.475-.054.649-.115.87-.064.229-.135.488-.18 1.057-.11 1.414-.878 2.227-2.417 2.556-1.515.325-1.784-.496-2.02-1.221a7 7 0 0 0-.078-.227c-.215-.586-.19-1.412-.157-2.555.016-.561-.025-1.901-.33-2.646q.006-.44.019-.892a.4.4 0 0 0-.016-.113 2 2 0 0 0-.044-.208c-.122-.428-.42-.786-.78-.935-.142-.059-.403-.167-.717-.087.067-.276.183-.587.309-.925l.053-.142c.06-.16.134-.325.213-.5.426-.948 1.01-2.246.376-5.178-.237-1.098-1.03-1.634-2.232-1.51-.72.075-1.38.366-1.709.532a6 6 0 0 0-.196.104c.092-1.106.439-3.174 1.736-4.482a4 4 0 0 1 .303-.276.35.35 0 0 0 .145-.064c.752-.57 1.695-.85 2.802-.833q.616.01 1.174.081c1.94.355 3.244 1.447 4.036 2.383.814.962 1.255 1.931 1.431 2.454-1.323-.134-2.223.127-2.68.78-.992 1.418.544 4.172 1.282 5.496.135.242.252.452.289.54.24.583.551.972.778 1.256.07.087.138.171.189.245-.4.116-1.12.383-1.055 1.717-.013.156-.043.447-.084.815-.046.208-.07.46-.1.766m.89-1.621c-.04-.832.27-.919.597-1.01l.135-.041a1 1 0 0 0 .134.103c.57.376 1.583.421 3.007.134-.202.177-.519.4-.953.601-.41.19-1.096.333-1.747.364-.72.034-1.086-.08-1.173-.151m.57-9.271c-.006.35-.054.669-.105 1.001-.055.358-.112.728-.127 1.177-.014.436.04.89.093 1.33.107.887.216 1.8-.207 2.701a4 4 0 0 1-.188-.385 8 8 0 0 0-.325-.617c-.616-1.104-2.057-3.69-1.32-4.744.38-.543 1.342-.566 2.179-.463m.228 7.013-.085-.107-.035-.044c.726-1.2.584-2.387.457-3.439-.052-.432-.1-.84-.088-1.222.013-.407.066-.755.118-1.092.064-.415.13-.844.111-1.35a.6.6 0 0 0 .012-.19c-.046-.486-.6-1.938-1.73-3.253a7.8 7.8 0 0 0-2.688-2.04A9.3 9.3 0 0 1 17.62.746c2.052.046 3.675.814 4.824 2.283a1 1 0 0 1 .067.1c.723 1.356-.276 6.275-2.987 10.54m-8.816-6.116c-.025.18-.31.423-.621.423a1 1 0 0 1-.081-.006.8.8 0 0 1-.506-.315c-.046-.06-.12-.178-.106-.285a.22.22 0 0 1 .093-.149c.118-.089.352-.122.61-.086.316.044.642.193.61.418m7.93-.411c.011.08-.049.2-.153.31a.72.72 0 0 1-.408.223 1 1 0 0 1-.075.005c-.293 0-.541-.234-.56-.371-.024-.177.264-.31.56-.352.298-.042.612.009.636.185"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.854 14.5 5 9.647.854 5.5A.5.5 0 0 0 0 5.854V8.44a.5.5 0 0 0 .146.353L5 13.647l.147.146L9.854 18.5l.146.147v-.049q.098.047.207.049h2.586a.5.5 0 0 0 .353-.854zm0-5-4-4a.49.49 0 0 0-.409-.144.52.52 0 0 0-.356.21.5.5 0 0 0-.089.288V8.44a.5.5 0 0 0 .147.353l9 9a.5.5 0 0 0 .853-.354v-2.585a.5.5 0 0 0-.146-.354zm1-4a.5.5 0 0 0-.854.354V8.44a.5.5 0 0 0 .147.353l4 4a.5.5 0 0 0 .853-.354V9.854a.5.5 0 0 0-.146-.354zm12.647 11.515a3.86 3.86 0 0 1-2.232-1.1l-4.708-4.707a.5.5 0 0 0-.854.354v6.585a.5.5 0 0 0 .5.5H23.5a.5.5 0 0 0 .5-.5v-.6c0-.276-.225-.497-.499-.532m-5.394.032a.8.8 0 1 1 0-1.6.8.8 0 0 1 0 1.6M.854 15.5a.5.5 0 0 0-.854.354v2.293a.5.5 0 0 0 .5.5h2.293c.222 0 .39-.135.462-.309a.49.49 0 0 0-.109-.545zM5 14.647.854 10.5a.5.5 0 0 0-.854.353v2.586a.5.5 0 0 0 .146.353L4.854 18.5l.146.147h2.793a.5.5 0 0 0 .353-.854z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.902 0a15 15 0 0 0-1.123.063L8.165.886C7.21.96 6.731.996 6.38 1.21a1.72 1.72 0 0 0-.69.805c-.157.38-.12.857-.046 1.814l1.049 13.546c.074.956.111 1.435.326 1.786.188.308.469.55.803.688.38.158.859.121 1.815.047l10.613-.82c.957-.075 1.434-.112 1.785-.327.308-.188.55-.469.688-.803.158-.38.122-.859.047-1.815L21.722 2.585c-.074-.957-.11-1.435-.325-1.786a1.7 1.7 0 0 0-.804-.689c-.19-.079-.404-.109-.69-.11M4.852 3.472l-.293.067c-1.37.316-2.054.474-2.516.86a2.5 2.5 0 0 0-.822 1.317c-.146.584.013 1.27.329 2.639l2.825 12.252c.316 1.37.474 2.054.86 2.516.341.406.802.694 1.317.822.584.146 1.269-.011 2.639-.327l9.384-2.165c1.37-.316 2.054-.475 2.515-.862.305-.255.542-.577.697-.938-.46.11-1.073.157-1.982.227l-9.603.743c-1.4.109-2.101.163-2.658-.069a2.5 2.5 0 0 1-1.178-1.009c-.314-.514-.368-1.214-.477-2.615L4.92 4.393c-.026-.348-.05-.652-.067-.921m7.976.277.091 1.188q.247-.306.645-.528.395-.238.981-.282.538-.043 1.03.126.506.168.907.6.414.412.693 1.14.28.728.361 1.789a8.3 8.3 0 0 1-.024 1.532q-.069.77-.354 1.398-.287.627-.827 1.051-.526.408-1.366.472-.601.045-.962-.085a1.5 1.5 0 0 1-.554-.356l.299 3.85-2.237.745-.963-12.463zm1.077 1.573a.9.9 0 0 0-.538.25q-.255.21-.35.617l.341 4.417q.09.121.272.235a.85.85 0 0 0 .469.075.98.98 0 0 0 .675-.323q.264-.308.388-.764.14-.457.161-1 .037-.56-.006-1.098-.066-.871-.264-1.366-.182-.496-.405-.717-.225-.237-.436-.285a1 1 0 0 0-.307-.04"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.527.099C6.955-.744.942 3.9.099 10.473c-.843 6.572 3.8 12.584 10.373 13.428 6.573.843 12.587-3.801 13.428-10.374C24.744 6.955 20.101.943 13.527.099m2.471 7.485a.86.86 0 0 0-.593.25l-4.453 4.453-.307-.307-.643-.643c4.389-4.376 5.18-4.418 5.996-3.753m-4.863 4.861 4.44-4.44a.62.62 0 1 1 .847.903l-4.699 4.125zm.33.694-1.1.238a.06.06 0 0 1-.067-.032.06.06 0 0 1 .01-.073l.645-.645zm-2.803-.459 1.172-1.172.879.878-1.979.426a.074.074 0 0 1-.085-.039.07.07 0 0 1 .013-.093m-3.646 6.058a.076.076 0 0 1-.069-.083.08.08 0 0 1 .022-.046h.002l.946-.946 1.222 1.222zm2.425-1.256a.23.23 0 0 0-.117.256l.203.865a.125.125 0 0 1-.211.117h-.003l-.934-.934-.294-.295 3.762-3.758 1.82-.393.874.874c-1.255 1.102-2.971 2.201-5.1 3.268m5.279-3.428h-.002l-.839-.839 4.699-4.125a1 1 0 0 0 .119-.127c-.148 1.345-2.029 3.245-3.977 5.091m3.657-6.46-.003-.002a1.822 1.822 0 0 1 2.459-2.684l-1.61 1.613a.12.12 0 0 0 0 .169l1.247 1.247a1.82 1.82 0 0 1-2.093-.343m2.578 0a1.7 1.7 0 0 1-.271.218h-.001l-1.207-1.207 1.533-1.533c.661.72.637 1.832-.054 2.522m-.1-1.544a.14.14 0 0 0-.053.157.42.42 0 0 1-.053.45.14.14 0 0 0 .023.197.14.14 0 0 0 .084.03.14.14 0 0 0 .106-.05.69.69 0 0 0 .087-.751.14.14 0 0 0-.194-.033"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2.545 14.954.44-1.284-1.138.692-1.08-.88.342 1.35-1.109.74 1.35.143.396 1.338.492-1.263 1.352.087zm5.308-2.61-1.14.692-1.08-.88.342 1.349-1.108.74 1.35.144.396 1.336.493-1.261 1.352.087-1.046-.924zm-1.328 4.864-1.139.692-1.08-.881.342 1.35-1.108.74 1.35.144.396 1.338.492-1.263 1.353.087-1.046-.924zM15.95 6.744l.72.041a.123.122 0 0 0 .092-.032l1.78-1.67a.032.032 0 0 0-.02-.056l-.7-.04a.2.2 0 0 0-.14.05l-1.754 1.646a.035.035 0 0 0 .022.06zm7.55 3.377a3.1 3.098 0 0 0-4.976-.342l-1.108-.83c.277-.113.857-.368.896-.525.022-.093-.273-.158-.727-.187l2.079-1.896a.05.05 0 0 0 .009-.053l-.529-.996a.04.04 0 0 0-.063-.01l-2.163 1.97c-.646 0-1.796.085-2.127-.123-.528-.333-.59-.822-.785-.997s-.415-.197-.462-.346a.015.015 0 0 1 .011-.019c.102-.026.67-.186.8-.58.129-.396-.135-.932-.18-1.016a.02.02 0 0 1 0-.02l.604-.527a.018.018 0 0 0-.013-.03l-.886.108a.02.02 0 0 1-.015 0c-.047-.062-.4-.484-1.121-.189-.842.34-.687 1.068-.687 1.068.112.753.374.902.8 1.148.012 0 .017.02 0 .027-.274.228-3.035 2.494-5.585 3.378a.05.05 0 0 0 0 .093c.738.32 2.952.147 3.606-.232a.016.016 0 0 1 .025.018c-.072.273-.458 1.873.147 2.37l.034.026-.82.578a.21.21 0 0 0 .147.38l.422-.047a1.2 1.2 0 0 0 .725-.34l.148-.14 1.193.886-.158 1.261a3.1 3.098 0 1 0 2.56 1.623l.305-.195a.748.748 0 0 0 1.218-.756l1.262-.37a.205.205 0 0 0 .147-.24l-.008-.041a.21.21 0 0 0-.203-.164h-1.071a.02.02 0 0 1-.015-.01l-.322-.727.64-3.762 1.034.767a3.1 3.098 0 1 0 5.224 0zm-8.594-2.228 1.46-.025.192.361c-.338.012-.69.039-1.033.082-.247.03-.545-.287-.634-.387a.02.02 0 0 1 .015-.03zm-2.214 2.185c.122-.204.831-1.384.92-1.787a.018.018 0 0 1 .03-.007c.471.55 1.468.866 1.545.885h.008l1.28-.394.287.213-1.34 1.229a.9.9 0 0 0-.52-.228c-.77-.098-1.975.076-2.194.11a.016.016 0 0 1-.006-.021zm3.31 4.029a.8.8 0 0 0-.249.074l-.915-.7a.02.02 0 0 1 0-.019l.458-.948a.016.016 0 0 1 .03 0l.752 1.18zm-1.942-1.025-.626-.468 1.2-1.1zm0-1.623-.974.894-.977-.727a11.265 11.258 0 0 0 1.97-.16zm-.778 1.553.643.478-.077.211a.286.286 0 0 0 .172.369l1.34.488.04.03a.753.752 0 0 0-.019.473l-.295.192a3.09 3.088 0 0 0-1.919-1.217zm-.208 1.661a2.46 2.458 0 0 1 1.465.925l-1.717 1.092zm.822 4.48a2.46 2.46 0 1 1-1.235-4.53l-.309 2.456a.21.21 0 0 0 .096.203.21.21 0 0 0 .223 0l2.089-1.328a2.462 2.46 0 0 1-.866 3.198zm1.83-8.045a.01.01 0 0 1 0-.01 1.3 1.3 0 0 0-.063-.518l1.133-1.033-.49 2.875zm6.486 2.751a2.46 2.458 0 0 1-3.418-3.362l1.95 1.452a.21.21 0 0 0 .237.008.2.2 0 0 0 .054-.05.21.21 0 0 0-.043-.295l-1.953-1.45a2.4 2.4 0 0 1 .526-.443 2.46 2.46 0 1 1 2.644 4.147Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.31 12.347s-.008.73-.008 1.068c0 .34.339.544.777.544v.486h-2.988v-.486c.408 0 .79-.204.79-.544v-2.673c0-.545-.52-.557-.79-.595v-.466h2.55c1.042 0 2.403-.125 2.403 1.228 0 1.403-1.233 1.441-2.304 1.441zm-.017-2.212v1.559h.494c.35 0 .777-.063.777-.772 0-.749-.318-.795-.907-.795-.254 0-.364.008-.364.008M12 4.551l12 7.45-12 7.448L0 12zm-8.645 7.45c2.764 1.713 7.373 4.575 8.645 5.364L20.644 12A7142 7142 0 0 0 12 6.636c-1.272.787-5.881 3.649-8.645 5.365"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4.67a7.3 7.3 0 0 1 5.183 2.147 7.27 7.27 0 0 1 1.898 3.285l1.79-1.79a1.832 1.832 0 0 1 2.592 2.59l-6.28 6.281A7.3 7.3 0 0 1 12 19.33a7.3 7.3 0 0 1-5.183-2.147 7.3 7.3 0 0 1-1.898-3.285l-1.791 1.79a1.832 1.832 0 1 1-2.591-2.59c2.092-2.094 4.19-4.19 5.95-5.951C8.183 5.287 10.258 4.672 12 4.67m2.592 4.738a3.666 3.666 0 1 0-5.184 5.185 3.666 3.666 0 0 0 5.184-5.185"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 10.406A1.594 1.594 0 0 0 10.406 12 1.594 1.594 0 0 0 12 13.594 1.594 1.594 0 0 0 13.594 12 1.594 1.594 0 0 0 12 10.406m5.499-4.33a3 3 0 0 1 .643.054 1.7 1.7 0 0 1 .48.172 1.1 1.1 0 0 1 .29.235 1 1 0 0 1 .185.315 1.5 1.5 0 0 1 .084.452c.007.195-.015.398-.058.603a4.5 4.5 0 0 1-.244.778c-.137.334-.304.66-.49.978q-.37.624-.817 1.207c-.145.191-.3.376-.455.561q-.329-.357-.673-.7a24 24 0 0 0-2.05-1.797l-.23.296.23-.296-.018-.014-.461.592.018.014a23 23 0 0 1 1.984 1.74q.361.355.703.73c-.099.108-.194.22-.296.326q-.149.156-.301.308l.53.53q.159-.158.313-.32c.085-.088.164-.182.248-.272.065.078.135.152.198.231a13 13 0 0 1 .909 1.262c.211.336.404.681.564 1.036a5 5 0 0 1 .293.806 3 3 0 0 1 .102.637c.008.178-.007.351-.05.508a1.1 1.1 0 0 1-.157.338h-.001a1 1 0 0 1-.26.256 1.5 1.5 0 0 1-.418.191c-.188.054-.39.081-.6.09-.266.01-.538-.01-.814-.05a8 8 0 0 1-1.067-.238c-.464-.137-.92-.307-1.369-.5h-.001a18 18 0 0 1-1.71-.86l-.025-.015a24 24 0 0 0 1.686-1.194l-.21-.27.211.27.018-.015-.463-.59-.017.014a23 23 0 0 1-2.168 1.505 19 19 0 0 1-1.827.983 13 13 0 0 1-1.444.576 9 9 0 0 1-1.142.296 5 5 0 0 1-.853.09 3 3 0 0 1-.643-.055 1.7 1.7 0 0 1-.48-.172 1.026 1.026 0 0 1-.475-.549 1.5 1.5 0 0 1-.084-.453 2.5 2.5 0 0 1 .058-.603c.055-.261.14-.52.245-.777a8 8 0 0 1 .49-.978 12 12 0 0 1 1.271-1.767q.348.377.712.737a24 24 0 0 0 2.02 1.765l.461-.591a23 23 0 0 1-1.955-1.709q-.381-.375-.741-.769.147-.164.295-.325a23 23 0 0 1 .31-.317l-.53-.53q-.162.163-.321.328c-.085.089-.165.183-.248.273-.055-.066-.114-.128-.169-.195a14 14 0 0 1-.916-1.263 9 9 0 0 1-.571-1.04 5 5 0 0 1-.308-.838 3 3 0 0 1-.102-.637 1.7 1.7 0 0 1 .05-.507q.051-.187.157-.339h.001c.068-.098.158-.186.26-.256a1.5 1.5 0 0 1 .419-.19 2.5 2.5 0 0 1 .599-.09 4.6 4.6 0 0 1 .814.048 8 8 0 0 1 1.067.24 12 12 0 0 1 1.369.5 17 17 0 0 1 1.736.874 24 24 0 0 0-1.694 1.202l.462.59a23 23 0 0 1 2.13-1.484 19 19 0 0 1 1.83-.99c.474-.222.956-.42 1.448-.583a9 9 0 0 1 1.146-.303c.298-.056.595-.092.887-.096m-.01-.75h-.001a6 6 0 0 0-1.014.108 10 10 0 0 0-1.245.329 14 14 0 0 0-1.529.616c-.583.272-1.146.582-1.696.91a18.04 18.04 0 0 0-2.152-1.112 13 13 0 0 0-1.455-.531 8.4 8.4 0 0 0-1.172-.262 5.2 5.2 0 0 0-.95-.055c-.254.01-.516.043-.776.117a2.2 2.2 0 0 0-.636.294 1.77 1.77 0 0 0-.717 1.014 2.4 2.4 0 0 0-.077.737 3.7 3.7 0 0 0 .127.798 6 6 0 0 0 .351.959 10 10 0 0 0 .62 1.128 14 14 0 0 0 .967 1.335c.08.098.166.19.248.286a16 16 0 0 0-.552.679c-.311.408-.604.834-.867 1.282a8.4 8.4 0 0 0-.538 1.075 5.3 5.3 0 0 0-.283.908 3.2 3.2 0 0 0-.073.782 2.2 2.2 0 0 0 .13.688v.001a1.78 1.78 0 0 0 .81.94 2.4 2.4 0 0 0 .697.253 3.7 3.7 0 0 0 .805.07 6 6 0 0 0 .977-.102l.001-.001a9.4 9.4 0 0 0 1.24-.32 14 14 0 0 0 1.526-.61 19 19 0 0 0 1.742-.93q.181.108.366.214a18 18 0 0 0 1.785.898 13 13 0 0 0 1.455.53c.38.112.772.204 1.172.262a5.3 5.3 0 0 0 .95.056c.254-.01.516-.044.776-.118.218-.063.436-.156.636-.294a1.78 1.78 0 0 0 .717-1.014c.068-.248.087-.497.077-.736a3.7 3.7 0 0 0-.127-.799 6 6 0 0 0-.335-.923 10 10 0 0 0-.612-1.127 15 15 0 0 0-.959-1.333c-.09-.111-.188-.216-.28-.324q.284-.332.552-.679c.311-.409.604-.835.867-1.283a8.4 8.4 0 0 0 .538-1.075 5.3 5.3 0 0 0 .283-.907c.053-.25.083-.513.073-.783a2.2 2.2 0 0 0-.13-.688v-.001a1.78 1.78 0 0 0-.81-.94 2.4 2.4 0 0 0-.697-.252 3.7 3.7 0 0 0-.805-.07M12 0l10.392 6v12L12 24 1.607 18V6Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0c-.563 0-1.127.215-1.557.645L.645 10.443c-.86.86-.86 2.254 0 3.114l9.798 9.798c.86.86 2.254.86 3.114 0l9.798-9.798c.86-.86.86-2.254 0-3.114L13.557.645A2.2 2.2 0 0 0 12 0m0 1.74c.493 0 .987.186 1.361.56l8.339 8.34c.75.75.75 1.973 0 2.722L13.361 21.7c-.374.375-.868.56-1.361.56s-.987-.185-1.361-.56L2.3 13.361a1.93 1.93 0 0 1 0-2.722L10.639 2.3c.374-.375.868-.56 1.361-.56m0 .62c-.333 0-.664.127-.92.382L2.742 11.08a1.295 1.295 0 0 0 0 1.84l8.338 8.338a1.296 1.296 0 0 0 1.84 0l8.338-8.338a1.295 1.295 0 0 0 0-1.84L12.92 2.742A1.3 1.3 0 0 0 12 2.36M9.207 7.624h3.959q.824 0 1.4.238.578.24.942.633.362.393.527.897a3.34 3.34 0 0 1 0 2.084q-.165.51-.527.902a2.6 2.6 0 0 1-.942.633q-.576.239-1.4.238h-2.043v3.156H9.207zm1.916 1.484v2.657h1.514q.332 0 .64-.05a1.5 1.5 0 0 0 .547-.193 1.05 1.05 0 0 0 .38-.404q.141-.26.142-.682 0-.42-.143-.681a1.05 1.05 0 0 0-.379-.404 1.5 1.5 0 0 0-.547-.194 4 4 0 0 0-.64-.049z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8.003 4.288 4.002 12 0l7.713 4v8.004L12 16v8l-7.71-4v-8L12 16z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.46 4.075c.85 0 1.54.69 1.54 1.54v12.77c0 .85-.69 1.54-1.54 1.54H1.54c-.85 0-1.54-.69-1.54-1.54V5.615c0-.85.69-1.54 1.54-1.54ZM3.442 8.485c-.4 0-.725.323-.725.724v5.673a.725.725 0 0 0 1.08.631l5.043-2.836a.725.725 0 0 0 0-1.263L3.797 8.577a.7.7 0 0 0-.355-.093m17.162 5.372h-7.698a.68.68 0 1 0 0 1.358h7.698a.68.68 0 1 0 0-1.358m0-2.446h-7.698a.68.68 0 1 0 0 1.359h7.698a.68.68 0 1 0 0-1.359m-3.17-2.445h-4.528a.68.68 0 1 0 0 1.359h4.528a.68.68 0 1 0 0-1.359"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.176 0s-.681 1.938-.867 2.527C9.844 2.202 8.386 1.194 7.78.775c.14.806.356 2.124.403 2.403-.124-.093-.821-.698-1.875-1.194.589.682 1.008 1.736 1.271 2.588a10.57 10.57 0 0 1 5.238-1.379c.977 0 1.94.14 2.854.403.093-.884.279-1.968.682-2.758-.915.728-1.474 1.503-1.551 1.596-.031-.186-.093-1.52-.17-2.434-.372.403-1.8 2.016-2.063 2.264C12.384 1.938 11.176 0 11.176 0m1.674 3.86c-1.674 0-3.3.386-4.696 1.115.713.046 1.224.668 1.395 1.164-.558-.45-1.442-.667-1.985-.078-.511.589-.464 1.688.047 2.572-1.193-.605-1.194-2.185-.775-2.867A10.4 10.4 0 0 0 3.61 9.594l1.07.172c-1.24 1.426-2.107 3.953-2.107 5.146l1.75-.543c-.31 1.054-.401 4.602.653 6.385 0 0 1.38-.96 2.945-3.363.65 2.17.356 3.985 0 5.767 2.82 1.581 6.09.696 8.012-.683l.357 1.35c2.248-1.489 3.488-3.628 3.72-6.124l.837.93c1.286-3.829.28-6.883-1.565-9.502l-.078.637-.79-.87s.17-.077.31-.263c.03-.078-.046-.495-.371-.774-.31.078-.56.264-.684.45a3.2 3.2 0 0 0-.93-.543c.062.077.604.79.65 1.007.466.388 1.102.837 1.52 1.395-.34-.403-1.984-.497-2.728-.078 0 0-.744-.868-1.426-1.473-.14-.511.326-.96.326-.96s-.48-.03-.93.42c-.682-.512-1.55-.745-1.55-.745-.961.14-1.612.82-1.612.82.217.14.512.327.776.42.511.217 1.006.139 1.332.139.263 0 .636.078.636.078s.635.495 1.565 1.565c-1.426-.574-2.915.062-3.969-.45-1.24-.62-1.146-1.595-1.146-1.595s-.836-.11-.836-.141c0 0 .618-.82 1.548-1.1l-.464-.402c.558-.465 1.534-1.085 3.115-1.24 0 0 .683.262 2.11 1.285.232-.326.308-1.008.308-1.008.728.248 2.217 1.333 2.806 1.984-.325-.759-.559-1.223-.636-2.013-.357-.357-1.24-1.101-3.069-1.551.295.605.264 1.115.264 1.115-.34-.45-1.055-1.146-1.55-1.332-.295-.015-.605-.047-.93-.047zm3.271 7.068a4.3 4.3 0 0 0 1.256.697v1.348c-.465.403-1.985 1.675-3.008 1.566-.573-1.1-1.115-2.107-1.115-2.107s1.565-1.318 2.867-1.504m2.975.031c.465 1.131.59 2.48.078 3.379-.28-.605-.636-.947-1.008-1.35v-1.347s.418-.264.93-.682m-.977 3.395c.465.511.559 1.068.559 1.068-.202 1.131-.836 1.846-1.301 2.14.046-.821-.172-1.519-.172-1.519-.34.372-1.13.743-1.596.836l-.697-1.3c.822-.032 2.201-1.194 2.201-1.194z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.427 0 .1 5.372.102 12c0 6.628 5.327 12 11.898 12s11.898-5.374 11.898-12c0-6.628-5.327-12-11.898-12m1.408 7.16h1.127v3.914l.268-.185a3.57 3.57 0 0 1 2.252-.7q.015.001.029.003a3.493 3.493 0 0 1 3.297 3.673c-.216 3.54-5.07 4.585-6.625 1.395-.376-.776-.348-.484-.375-4.506zm-4.732.133a3.43 3.43 0 0 1 2.13.754 3.5 3.5 0 0 1-4.263 5.55c-.08-.053-.19-.106-.27-.16-.026 0-.027.857-.027 1.93v1.93H5.12v-3.19c0-3.861.001-4.076.377-4.828A3.6 3.6 0 0 1 7.91 7.375q.381-.085.766-.082m-.069 1.103a2.319 2.319 0 1 0 .59.08 2.2 2.2 0 0 0-.59-.08m8.42 2.897a2.379 2.379 0 0 0-.775 4.666 2.378 2.378 0 0 0 1.258-4.586 1.5 1.5 0 0 0-.483-.08"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.558 1.034C5.174 1.034 0 6.21 0 12.592c0 1.258.201 2.47.574 3.597l.002-.007a12.4 12.4 0 0 1 .53-1.787l.011-.03q.129-.333.277-.66l.084-.181q.12-.256.253-.507.053-.102.108-.203c.02-.038.044-.073.064-.11q.14-.25.29-.493l.075-.114q.187-.292.393-.573l.035-.05q.217-.289.451-.563l.1-.118q.232-.266.481-.517l.099-.097a10 10 0 0 1 .546-.503c.74-2.48 3.005-4.285 5.686-4.285 1.079 0 2.152.31 3.071.873a6 6 0 0 1 2.211 2.407l.007.015.04.074v.003l.004.002a10 10 0 0 1 1.567 1.198q.06.054.12.109c.002 0 .006.005.007.006l-.002-.006-.001-.004v-.003l.042-.084c.377-2.384 1.43-4.102 2.67-4.102.934 0 1.762.975 2.276 2.476l.005.016.001.002q.218.236.424.521l.007.01.021.067-.02-.078c-1.542-4.569-5.863-7.857-10.952-7.857zM9.927 5.477C7.586 5.52 5.34 7.132 4.574 9.365l-.012.034a10 10 0 0 1 1.315-.895c2.806-1.656 6.479-1.646 9.278.016-.895-1.653-2.631-2.819-4.5-3.004a5 5 0 0 0-.728-.039m9.834.5a1.4 1.4 0 0 0-.39.067c-1.265.562-1.719 2.073-2.031 3.303l-.016.072c.365-.62.808-1.215 1.396-1.642.835-.687 2.105-.655 2.916.053.308.326.141.008.031-.22-.342-.75-1.025-1.653-1.906-1.634zM12.35 8.315l-1.07 3.27-.002.005-.006.002-4.498 1.112h-.009l4.456 1.087q.159.166.36.28h.002q.063.035.129.065l.01.005q.062.026.126.047l.021.008q.06.019.12.032l.033.008a1.7 1.7 0 0 0 .318.033 1.55 1.55 0 0 0 1.43-.948c.08-.186.123-.39.123-.604v-.011l-.001-.012a2 2 0 0 0-.01-.16l-.001-.002a2 2 0 0 0-.026-.153l-.001-.004a1.5 1.5 0 0 0-.096-.288v-.003a1.5 1.5 0 0 0-.348-.49v-.003zm3.148.626c.048 1.008.036 2.046-.1 3.057-.17 2.018-1.19 3.798-1.972 5.616l-.03.08-.035.086c1.51-1.522 3.17-3.04 3.969-5.082.383-.636.118-1.342-.115-1.976-.17-.877-1.069-1.278-1.717-1.781m6.172.572-.588 2.688a2 2 0 0 0-.047.2q-.004.03-.01.06a2 2 0 0 0-.016.222l-.002.031h.003c0 .628.297 1.136.663 1.137a.4.4 0 0 0 .182-.045l.027-.015a1 1 0 0 0 .07-.047q.019-.016.036-.033a.8.8 0 0 0 .137-.168l.03-.054a1 1 0 0 0 .052-.108l.017-.04q.03-.08.053-.166l.002-.002.001-.003.404-.451-.407-.456v.001l-.02-.063zm-4.381.856c.69 1.716.85 3.707.091 5.43-.49 1.368-1.587 2.463-1.874 3.905q1.096.172 2.21.186c2.166.029 4.332-.42 6.284-1.365-2.04-2.869-4.121-5.755-6.711-8.156m-4.948.977a.583.583 0 1 1 0 1.166.583.583 0 0 1 0-1.166m9.352.37c.138 0 .249.19.249.426s-.111.426-.249.426c-.137 0-.248-.19-.248-.426 0-.235.11-.426.248-.426m-4.044.184a5 5 0 0 1-.05.29l-.006.023q-.016.076-.033.128c-.48 1.417-1.275 2.52-2.36 3.697q-.221.239-.459.484a59 59 0 0 1-1.196 1.205c-.112.11-.259.261-.425.436-.103.287-.22.61-.318.95q-.065-.023-.131-.049c-2.108-.815-3.519-1.904-3.519-1.904s1.086 1.414 2.915 2.74q.265.192.522.339c-.075 1.194.452 2.34 2.83 2.682a4.8 4.8 0 0 0 1.228.008l-.01-.029-.004-.01s-.167-.133-.379-.377a3.8 3.8 0 0 1-.584-.897 3.4 3.4 0 0 1-.266-.862 3.2 3.2 0 0 1-.006-.972q.025-.18.072-.366c.093-.374.255-.772.507-1.192l.002-.003.241-.404c1.103-1.86 1.797-3.275 1.506-5.441a9 9 0 0 0-.078-.476zm4.681.779.003.036v.01q-.001.019-.003.038.002-.02.003-.043 0-.02-.003-.04zm-.012.275zl-.002.01-.002.014zm1.353 5.928c-2.553 1.138-5.44 1.44-8.192 1.007-.14 1.108.384 2.218 1.214 2.93l.012.01c2.703-.433 4.975-2.168 6.966-3.946z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.372 0C.618 0 0 .618 0 1.372v21.256C0 23.383.618 24 1.37 24h21.257c.754 0 1.371-.617 1.371-1.372V1.372C24 .618 23.382 0 22.628 0zm11.96 4.485h.031a.854.854 0 0 1 .854.854.854.854 0 0 1-.854.854.854.854 0 0 1-.854-.854.854.854 0 0 1 .822-.854m-4.447.094h.007a.76.76 0 0 1 .76.76.76.76 0 0 1-.76.759.76.76 0 0 1-.759-.76.76.76 0 0 1 .752-.76m-4.463.095a.665.665 0 0 1 .664.665.665.665 0 0 1-.664.664.665.665 0 0 1-.665-.664.665.665 0 0 1 .665-.665m11.176 1.951a.95.95 0 0 1 .95.95.95.95 0 0 1-.95.947.95.95 0 0 1-.949-.948.95.95 0 0 1 .95-.949m-4.502.094h.032a.855.855 0 0 1 .855.854.855.855 0 0 1-.855.855.855.855 0 0 1-.855-.855.855.855 0 0 1 .823-.854m-4.446.095h.007a.76.76 0 0 1 .76.76.76.76 0 0 1-.76.76.76.76 0 0 1-.759-.76.76.76 0 0 1 .752-.76m11.167 1.951h.018a1.044 1.044 0 0 1 1.043 1.044 1.044 1.044 0 0 1-1.043 1.044 1.044 1.044 0 0 1-1.044-1.044 1.044 1.044 0 0 1 1.026-1.043m-4.454.095a.95.95 0 0 1 .95.95.95.95 0 0 1-.95.948.95.95 0 0 1-.949-.948.95.95 0 0 1 .95-.95m-4.47.095a.854.854 0 0 1 .854.854.854.854 0 0 1-.855.854.854.854 0 0 1-.854-.854.854.854 0 0 1 .854-.854m11.176 1.951a1.14 1.14 0 0 1 1.139 1.139 1.14 1.14 0 0 1-1.139 1.138 1.14 1.14 0 0 1-1.139-1.138 1.14 1.14 0 0 1 1.139-1.139m-4.47.095a1.044 1.044 0 0 1 1.043 1.044 1.044 1.044 0 0 1-1.043 1.043 1.044 1.044 0 0 1-1.044-1.043 1.044 1.044 0 0 1 1.044-1.044m-4.471.094a.95.95 0 0 1 .95.949.95.95 0 0 1-.95.949.95.95 0 0 1-.95-.949.95.95 0 0 1 .95-.949m6.706 2.046a1.14 1.14 0 0 1 1.139 1.14 1.14 1.14 0 0 1-1.14 1.137 1.14 1.14 0 0 1-1.138-1.138 1.14 1.14 0 0 1 1.139-1.139m-4.489.095h.018a1.044 1.044 0 0 1 1.044 1.043 1.044 1.044 0 0 1-1.044 1.044 1.044 1.044 0 0 1-1.044-1.044 1.044 1.044 0 0 1 1.026-1.043m-4.46.284h.007a.76.76 0 0 1 .76.76.76.76 0 0 1-.76.76.76.76 0 0 1-.759-.76.76.76 0 0 1 .752-.76m6.68 1.857h.033a1.14 1.14 0 0 1 1.14 1.138 1.14 1.14 0 0 1-1.14 1.139 1.14 1.14 0 0 1-1.139-1.14 1.14 1.14 0 0 1 1.106-1.137m-8.915.379h.007a.76.76 0 0 1 .76.759.76.76 0 0 1-.76.76.76.76 0 0 1-.759-.76.76.76 0 0 1 .752-.76m4.47 0h.008a.76.76 0 0 1 .76.759.76.76 0 0 1-.76.76.76.76 0 0 1-.76-.76.76.76 0 0 1 .753-.76M4.417 17.99h.007a.76.76 0 0 1 .76.76.76.76 0 0 1-.76.759.76.76 0 0 1-.76-.759.76.76 0 0 1 .753-.76zm4.47 0h.006a.76.76 0 0 1 .76.76.76.76 0 0 1-.76.76.76.76 0 0 1-.759-.76.76.76 0 0 1 .752-.76m4.477.002a.76.76 0 0 1 .538.222.76.76 0 0 1 0 1.073.76.76 0 0 1-1.075 0 .76.76 0 0 1 0-1.073.76.76 0 0 1 .537-.222"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.571 23.429A.57.57 0 0 1 8 24H2.286a.571.571 0 0 1 0-1.143H8c.316 0 .571.256.571.572M8 20.57H6.857a.571.571 0 0 0 0 1.143H8a.571.571 0 0 0 0-1.143m-5.714 1.143H4.57a.571.571 0 0 0 0-1.143H2.286a.571.571 0 0 0 0 1.143M8 18.286H2.286a.571.571 0 0 0 0 1.143H8a.571.571 0 0 0 0-1.143M16 16H5.714a.571.571 0 0 0 0 1.143H16A.571.571 0 0 0 16 16M2.286 17.143h1.143a.571.571 0 0 0 0-1.143H2.286a.571.571 0 0 0 0 1.143m17.143-3.429H16a.571.571 0 0 0 0 1.143h3.429a.571.571 0 0 0 0-1.143M9.143 14.857h4.571a.571.571 0 0 0 0-1.143H9.143a.571.571 0 0 0 0 1.143m-6.857 0h4.571a.571.571 0 0 0 0-1.143H2.286a.571.571 0 0 0 0 1.143M20.57 11.43h-9.14a.571.571 0 0 0 0 1.142h9.142a.571.571 0 0 0 0-1.142zM9.714 12a.57.57 0 0 0-.571-.571H5.714a.571.571 0 0 0 0 1.142h3.429A.57.57 0 0 0 9.714 12m-7.428.571h1.143a.571.571 0 0 0 0-1.142H2.286a.571.571 0 0 0 0 1.142m19.428-3.428H16a.571.571 0 0 0 0 1.143h5.714a.571.571 0 0 0 0-1.143M2.286 10.286H8a.571.571 0 0 0 0-1.143H2.286a.571.571 0 0 0 0 1.143m13.143-2.857A.57.57 0 0 0 16 8h5.714a.571.571 0 0 0 0-1.143H16a.57.57 0 0 0-.571.572m-8.572-.572a.571.571 0 0 0 0 1.143H8a.571.571 0 0 0 0-1.143zM2.286 8H4.57a.571.571 0 0 0 0-1.143H2.286a.571.571 0 0 0 0 1.143m16.571-2.857c0 .315.256.571.572.571h1.142a.571.571 0 0 0 0-1.143H19.43a.57.57 0 0 0-.572.572zm-1.143 0a.57.57 0 0 0-.571-.572H12.57a.571.571 0 0 0 0 1.143h4.572a.57.57 0 0 0 .571-.571zm-15.428.571h8a.571.571 0 0 0 0-1.143h-8a.571.571 0 0 0 0 1.143m5.143-2.857c0 .316.255.572.571.572h11.429a.571.571 0 0 0 0-1.143H8a.57.57 0 0 0-.571.571m-5.143.572h3.428a.571.571 0 0 0 0-1.143H2.286a.571.571 0 0 0 0 1.143m0-2.286H16A.571.571 0 0 0 16 0H2.286a.571.571 0 0 0 0 1.143"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.439.03 10.757 6.516a.3.3 0 0 0-.142.236v5.426l2.72 1.704v-5.54a.3.3 0 0 1 .143-.235l6.24-3.48a.286.286 0 0 1 .415.237v10.322a2.81 2.81 0 0 1-1.38 2.555 2.83 2.83 0 0 1-2.909-.02l-6.24-3.951-.03-.03a5.57 5.57 0 0 0-6.245.333 5.52 5.52 0 0 0-1.977 5.917 5.46 5.46 0 0 0 2.662 3.331A5.66 5.66 0 0 0 6.676 24a6 6 0 0 0 1.597-.236 5.54 5.54 0 0 0 3.43-2.919l.09-.236-2.308-1.474-.237.56a2.8 2.8 0 0 1-1.74 1.478 2.84 2.84 0 0 1-2.189-.236 2.74 2.74 0 0 1-1.36-1.704c-.413-1.42.414-2.949 1.805-3.45.294-.105.604-.153.916-.142a2.83 2.83 0 0 1 1.449.413l6.241 3.977h.03a5.56 5.56 0 0 0 2.898.797 6 6 0 0 0 1.597-.236 5.57 5.57 0 0 0 2.896-2.049 5.54 5.54 0 0 0 1.067-3.377V.266A.29.29 0 0 0 22.576 0a.3.3 0 0 0-.137.03"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.993 14.246h-.71v-1.891c0-.37-.211-.515-.508-.515-.327 0-.63.217-.63.768v1.638h-.689v-3.015h.688v.442h.015c.166-.298.478-.544.884-.544.565 0 .957.312.957.994zm-2.755-1.522c0 .986-.668 1.595-1.493 1.595s-1.479-.58-1.479-1.587c0-1.015.66-1.602 1.479-1.602s1.493.601 1.493 1.594m-.725.008c0-.63-.304-.979-.768-.979s-.768.363-.768.971c0 .595.304.972.768.972s.768-.37.768-.965zm-2.283-2.138a.403.403 0 0 1-.413.384.396.396 0 0 1-.385-.384.403.403 0 0 1 .385-.414.4.4 0 0 1 .413.384zm-.76.68h.724v3.045h-.725zm-.146 2.85c-.181.115-.333.194-.725.194-.551 0-.855-.318-.855-1.058v-1.412h-.377v-.588h.377v-.746l.754-.327v1.073h.768v.595h-.768v1.334c0 .347.08.485.282.485a.7.7 0 0 0 .348-.094zm-2.102.122h-.71v-1.891c0-.37-.21-.515-.508-.515-.326 0-.623.217-.623.768v1.638h-.696v-3.015h.688v.442h.015c.167-.298.479-.544.883-.544.566 0 .959.312.959.994zm-4.762-1.82c.08-.47.412-.666.732-.666.42 0 .66.298.667.668zm.652-1.296c-.877 0-1.399.652-1.399 1.594 0 .972.623 1.595 1.515 1.595.58 0 .877-.08 1.138-.275l-.203-.58c-.226.137-.478.218-.884.218-.537 0-.805-.393-.826-.72h2.087c.036-1.064-.283-1.832-1.427-1.832zm-4.081.145h.811l.69 2.073.66-2.073h.739L8.879 14.32h-.804zm.218 1.682H5.16c.022.325.29.717.827.717.405 0 .659-.073.883-.217l.203.58c-.267.195-.565.275-1.138.275-.891.007-1.514-.609-1.514-1.588 0-.95.521-1.594 1.398-1.594 1.146 0 1.465.768 1.428 1.827zm-.682-.53c-.007-.37-.247-.66-.668-.66-.318 0-.65.196-.73.66zm-1.928-1.233-.153.704a.8.8 0 0 0-.26-.043c-.602 0-.617.564-.617.732v1.66H2.9V11.23h.703v.465h.015c.137-.356.362-.56.696-.56a.7.7 0 0 1 .326.058zm-1.885.11c0 1.254-.898 1.624-1.957 1.624v1.318H0V9.781a8 8 0 0 1 1.095-.101c.898 0 1.66.405 1.66 1.623zm-.804 0c0-.703-.384-.942-.884-.942-.08 0-.167.02-.26.028v1.842c.6.028 1.144-.175 1.144-.929z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.996 0q-.315 0-.63.015l.134 2.547c.333-.02.66-.013.987 0L12.62.015A13 13 0 0 0 11.996 0m-1.89.148c-.413.067-.826.154-1.22.26l.667 2.467c.32-.086.64-.153.973-.206zm3.761 0-.387 2.52c.334.054.66.12.974.207L15.1.408a13 13 0 0 0-1.233-.26M7.699.795c-.393.154-.773.32-1.146.514l1.166 2.273q.443-.22.894-.4zm8.608.007-.92 2.38q.472.179.914.407l1.146-2.28c-.366-.187-.746-.36-1.14-.507M5.46 1.935a11 11 0 0 0-1.02.74l1.607 1.98c.26-.2.527-.4.807-.58zm13.062 0-1.38 2.147q.42.27.8.58l1.62-1.973a13 13 0 0 0-1.04-.754m-6.528 1.56c-1.167 0-2.253.22-3.32.674a8.4 8.4 0 0 0-2.707 1.82A8.3 8.3 0 0 0 4.16 8.703c-.467 1.04-.674 2.14-.674 3.307 0 1.154.207 2.254.674 3.307a8.5 8.5 0 0 0 1.807 2.7 8.4 8.4 0 0 0 2.7 1.82 8.5 8.5 0 0 0 3.32.674 8.4 8.4 0 0 0 3.308-.673 8.8 8.8 0 0 0 2.714-1.82 8.5 8.5 0 0 0 1.806-2.7 8.2 8.2 0 0 0 .687-3.308 8 8 0 0 0-.68-3.307c-.413-1.04-1.04-1.934-1.807-2.714a8.6 8.6 0 0 0-2.713-1.82 8.4 8.4 0 0 0-3.308-.673zm8.495.027-1.814 1.794c.234.24.46.487.674.753l1.98-1.62a11 11 0 0 0-.84-.927m-16.99.007q-.437.44-.826.92l1.994 1.6q.302-.378.653-.727zm8.489.667a7.6 7.6 0 0 1 3.033.606c.947.4 1.76.96 2.474 1.68.72.72 1.28 1.548 1.68 2.474a7.7 7.7 0 0 1 .627 3.054 7.7 7.7 0 0 1-.62 3.034c-.4.927-.96 1.76-1.68 2.48a7.8 7.8 0 0 1-2.474 1.68 7.8 7.8 0 0 1-3.034.607 7.85 7.85 0 0 1-3.033-.607c-.947-.4-1.76-.96-2.494-1.68a7.8 7.8 0 0 1-1.66-2.48A7.7 7.7 0 0 1 4.2 12.01c0-1.073.193-2.08.607-3.054.386-.926.96-1.76 1.66-2.473a7.9 7.9 0 0 1 2.487-1.68 7.6 7.6 0 0 1 3.034-.607m0 .686q-2.95.001-5.021 2.094C5.56 8.363 4.873 10.043 4.873 12.01c0 1.947.687 3.627 2.094 5 1.374 1.388 3.054 2.094 5.02 2.094 1.948 0 3.628-.706 5.021-2.093 1.394-1.374 2.074-3.054 2.074-5.001 0-1.967-.687-3.647-2.074-5.034-1.393-1.387-3.067-2.094-5.02-2.094m10.074.587-2.14 1.394c.187.273.347.56.494.853l2.273-1.167a11 11 0 0 0-.627-1.08m-20.136.007c-.226.353-.44.713-.633 1.093l2.274 1.16c.16-.306.326-.593.506-.873zm10.062.106c1.76 0 3.273.62 4.54 1.887 1.247 1.247 1.854 2.747 1.854 4.541 0 1.76-.607 3.274-1.854 4.52-1.26 1.248-2.78 1.868-4.54 1.868-1.774 0-3.294-.62-4.52-1.867-1.261-1.247-1.888-2.767-1.888-4.521 0-1.787.627-3.294 1.887-4.54 1.234-1.26 2.747-1.888 4.52-1.888zm0 .72c-1.567 0-2.927.547-4.04 1.66-1.121 1.121-1.661 2.461-1.661 4.041 0 1.567.54 2.907 1.66 4.028s2.474 1.68 4.04 1.68c1.58 0 2.908-.56 4.028-1.674q1.68-1.678 1.68-4.027 0-2.37-1.68-4.04c-1.12-1.12-2.44-1.667-4.027-1.667zM12 7.01q.129 0 .259.006c1.36.067 2.507.627 3.434 1.647.927 1.013 1.36 2.213 1.28 3.587-.047 1.387-.607 2.54-1.627 3.467-1.04.927-2.24 1.36-3.614 1.28q-2.078-.118-3.467-1.626c-.913-1.04-1.34-2.234-1.28-3.628.08-1.373.62-2.527 1.66-3.447.944-.869 2.07-1.286 3.355-1.286m11.2.68-2.386.926q.178.452.306.934l2.467-.654c-.106-.413-.24-.813-.386-1.207zM.786 7.71c-.147.386-.28.78-.387 1.186l2.467.66c.087-.32.194-.633.307-.94zm11.222.133c-.16 0-.314.013-.467.026v8.262h.007c.14.033.3.033.46.033s.32 0 .46-.033h.006V7.869c-.153-.013-.306-.026-.466-.026m-1.407.233a4 4 0 0 0-.927.467v6.907c.007.007.013.007.02.014.28.187.593.347.907.453zm2.814.007v7.841a4 4 0 0 0 .926-.467v-6.9q-.438-.301-.926-.474m-4.668 1.32a4.03 4.03 0 0 0-.907 2.594c0 .726.16 1.393.494 1.967a4 4 0 0 0 .413.633zm6.521.013v5.174c.16-.193.294-.406.414-.613.32-.587.473-1.254.473-1.967 0-.987-.287-1.854-.887-2.594m-15.129.707c-.06.414-.106.827-.126 1.247l2.547.133q.028-.498.106-.987zm23.71 0-2.52.4c.047.327.087.654.107.987v.007l2.547-.134v-.006c-.02-.427-.067-.84-.134-1.254m-2.407 2.367c-.026.34-.06.674-.113 1l2.527.394c.067-.414.107-.834.133-1.26zm-18.876.013-2.547.134c.02.42.067.827.127 1.227l2.52-.4a7 7 0 0 1-.1-.96zm18.563 1.947c-.087.32-.193.634-.307.94l2.387.914q.222-.588.394-1.207zm-18.256.014-2.467.653q.16.609.38 1.187l2.387-.9a13 13 0 0 1-.3-.94m.7 1.827L1.3 17.458q.28.55.62 1.073l2.147-1.38q-.262-.41-.494-.86m16.843.006a8 8 0 0 1-.494.854l2.14 1.393q.342-.532.634-1.093zm-15.77 1.64-1.98 1.614q.4.492.84.934l1.814-1.8a9 9 0 0 1-.673-.747zm14.683.014q-.302.392-.654.733l1.8 1.807q.448-.45.847-.94zm-13.276 1.4-1.613 1.98q.49.4 1.02.74l1.4-2.133c-.28-.187-.546-.38-.807-.587m11.882 0a8 8 0 0 1-.78.574l1.38 2.146q.531-.35 1.02-.74zM7.706 20.425l-1.16 2.273c.373.187.76.36 1.153.514l.9-2.387a10 10 0 0 1-.893-.4m8.588 0c-.293.146-.594.28-.9.393l.9 2.394c.4-.154.78-.327 1.16-.514zm-6.734.706-.667 2.467q.6.16 1.22.26l.407-2.52a9 9 0 0 1-.96-.207m4.887 0c-.32.087-.647.154-.973.207l.4 2.52a13 13 0 0 0 1.226-.26zm-2.94.307-.147 2.547q.628.03 1.267 0l-.134-2.547q-.498.03-.986 0"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.43 0 3.875 2.564l3.833.367L8.988 0Zm3.104 0L8.081 3.465 1.5 2.931l1.094 4.58 7.853 2.931h1.095V0Zm2.74 0v10.442h1.278l7.853-2.93 1.095-4.58-6.756.547L14.283 0Zm2.556 0 1.28 2.931 3.834-.367L17.387 0ZM2.778 8.244v6.229l4.383 3.663v-5.68l1.278-1.83-1.643.366-2.009-2.016zm18.261 0-2.009.732-2.009 2.016-1.643-.367 1.278 1.832v5.68l4.383-3.664zM9.17 10.625l-1.462 2.199v8.243l1.097 1.65L10.083 24h3.652l1.278-1.284 1.096-1.649v-8.243l-1.46-2.199-.914.55h-3.652zm-4.383 6.23v2.38l2.374 2.382V18.87zm14.243 0-2.374 2.015v2.747l2.374-2.381z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0 .784 3.984l1.711 14.772L12 24l9.506-5.244 1.71-14.772ZM8.354 4.212h1.674L9.19 6.124l-2.51-.24Zm2.032 0h1.315v6.812h-.717L5.843 9.112l-.717-2.988 4.308.35Zm1.794 0h1.314l.953 2.261 4.427-.349-.717 2.988-5.14 1.912h-.837Zm1.673 0h1.674L17.2 5.885l-2.51.239zM5.963 9.59l1.315.478 1.315 1.315 1.076-.24-.837 1.196v3.704l-2.87-2.39zm11.955 0v4.063l-2.87 2.39v-3.704l-.837-1.195 1.077.239 1.314-1.315zm-7.786 1.536.596.36h2.384l.597-.36.953 1.437v5.388l-.715 1.078-.835.838h-2.384l-.834-.838-.715-1.078v-5.388zm-2.854 4.08 1.554 1.315v1.793L7.278 16.76Zm9.324 0v1.554l-1.553 1.554V16.52z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.01 0c-1.212 0-2.297.62-2.903 1.66l-1.52 2.608H4.303A3.29 3.29 0 0 0 1.43 5.911a3.23 3.23 0 0 0 0 3.285l1.642 2.819-1.646 2.825a3.2 3.2 0 0 0 0 3.261 3.27 3.27 0 0 0 2.851 1.631h2.925l.865.856L9.09 22.34A3.32 3.32 0 0 0 11.991 24c1.211 0 2.296-.62 2.902-1.66l.816-1.4 1.22-1.208h2.77a3.29 3.29 0 0 0 2.87-1.643c.6-1.028.6-2.256 0-3.285l-1.642-2.82 1.646-2.824a3.2 3.2 0 0 0 0-3.261 3.27 3.27 0 0 0-2.851-1.631H16.43L14.91 1.66A3.32 3.32 0 0 0 12.01 0m0 .719c.948 0 1.798.486 2.273 1.3l1.31 2.249H8.425l1.31-2.248A2.6 2.6 0 0 1 12.01.719m.33 4.265v7.74h.962l5.904-2.174.014-.057.87 1.492-1.33 2.282.171-3.173-1.51.543-1.51 1.494-1.237-.27.962 1.357v4.212l1.452-1.296-.708 1.216v.001l-.744.622v.654l-.412.708V14.49l-1.098-1.63-.687.407h-2.746l-.687-.407-1.098 1.63v6.101l-.412-.706v-.912l-1.036-.867-.729-1.25 1.765 1.574v-4.212l.961-1.358-1.236.271-1.51-1.494-1.511-.543.188 3.455-1.477-2.534.942-1.617.122-.208.088.36 5.904 2.174h.824V4.985Zm1.512 0h.412l.96 2.17 1.935-.2.237.406-2.452.192zm-3.985.001h.412L9.187 7.552l-2.556-.205.072-.124.001.001.163-.28 2.04.21Zm-5.565.001h2.867L5.831 7.282l-1.592-.127.49 2.018-1.237 2.124-1.433-2.46a2.52 2.52 0 0 1 0-2.567 2.57 2.57 0 0 1 2.243-1.284m12.547 0h2.873c.928 0 1.759.476 2.223 1.272a2.5 2.5 0 0 1 0 2.543l-1.437 2.466-1.042-1.789.563-2.323-1.833.143Zm3.659 7.718 1.433 2.46a2.52 2.52 0 0 1 0 2.566 2.57 2.57 0 0 1-2.243 1.283h-2.277V18zm-17.016.03 3.22 5.525v.754H4.277a2.55 2.55 0 0 1-2.223-1.27 2.5 2.5 0 0 1 0-2.544z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.41 0 3.845 2.565l3.849.366L8.878.226l2.663 6.883.35.904.384-.93L14.75 1.09v-.001l.275-.667 1.1 2.51 3.848-.367L17.407 0h-8.43Zm2.391 1.72-.73 1.735-2.886-.221-3.723-.302 1.1 4.58 5.282 1.964.014.026 2.558.945h.244l-.001-.005h.882V8.797Zm6.282.16-2.808 6.799v1.763h1.006l-.002.005.244-.005h.035l.002-.001h.024l2.376-.878.01-.018 5.469-2.033 1.099-4.58-4.042.318-2.749.206zM2.745 8.245v6.228l4.398 3.664v-5.68l1.284-1.832-1.65.367L4.76 8.977Zm18.327 0-2.017.733-2.015 2.014-1.65-.367 1.284 1.832v5.68l4.398-3.664zM9.137 10.599l-.304.487.009.016-1.148 1.722v8.245l1.1 1.648L10.075 24h3.665l1.283-1.282 1.1-1.65v-8.244l-1.15-1.723.01-.015-.18-.24-.147-.22-.013.007-.025-.034-.791.487h-3.655zm-4.376 6.256v2.381l2.382 2.382V18.87zm14.295 0-2.382 2.015v2.748l2.382-2.382z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.678 4.8 12 9.6v9.6l8.322-4.8V4.8L12 0ZM12 19.2l-8.322-4.8V24Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.807 18.285 13.553.757a1.32 1.32 0 0 0-1.129-.755 1.31 1.31 0 0 0-1.206.626l-8.952 14.5a1.36 1.36 0 0 0 .016 1.455l4.376 6.778a1.41 1.41 0 0 0 1.58.581l12.703-3.757c.389-.115.707-.39.873-.755s.164-.783-.007-1.145m-1.848.752L9.18 22.224a.452.452 0 0 1-.575-.52l3.85-18.438c.072-.345.549-.4.699-.08l7.129 15.138a.515.515 0 0 1-.325.713"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.7 0C5.033 0 4.066.278 3.09.8A5.45 5.45 0 0 0 .825 3.07c-.522.977-.8 1.947-.8 4.622v.998c0 .199.078.388.218.529l1.77 1.774a.15.15 0 0 0 .257-.106V8.019c0-2.006.208-2.733.6-3.467A4.1 4.1 0 0 1 4.568 2.85c.731-.392 1.457-.6 3.459-.6h2.164c.199 0 .39-.08.53-.221l1.77-1.772A.15.15 0 0 0 12.387 0zm7.605 0c-.2 0-.392.08-.532.22l-1.769 1.775a.15.15 0 0 0-.044.104c0 .083.068.15.15.15h2.862c2.002 0 2.728.21 3.46.601a4.1 4.1 0 0 1 1.698 1.702c.39.734.599 1.461.599 3.467v2.17c0 .198.078.39.218.53l1.77 1.774a.15.15 0 0 0 .257-.106V7.692c0-2.675-.278-3.645-.8-4.623A5.45 5.45 0 0 0 20.91.801C19.935.278 18.968 0 16.3 0zM6.761 3.75a2.995 2.995 0 0 0-2.993 2.999v5.691a.75.75 0 0 0 .219.529l1.77 1.776a.149.149 0 0 0 .255-.106v-7.14a1.5 1.5 0 0 1 .097-.53c.072-.2.188-.385.348-.545l2.308-2.421a.15.15 0 0 0-.11-.253zm4.802 0c-.2 0-.39.08-.53.22L9.26 5.744A.151.151 0 0 0 9.366 6h7.124q.28.001.528.097c.2.072.386.188.546.347l2.413 2.313a.15.15 0 0 0 .255-.108v-1.9a2.995 2.995 0 0 0-2.993-3zm6.573 5.463a.15.15 0 0 0-.15.15v7.139a1.5 1.5 0 0 1-.095.53 1.5 1.5 0 0 1-.348.546l-2.308 2.42a.15.15 0 0 0 .108.255h1.896a2.997 2.997 0 0 0 2.993-3.002v-5.69a.75.75 0 0 0-.219-.53l-1.77-1.774a.15.15 0 0 0-.107-.044m-17.96 2.25a.15.15 0 0 0-.15.15v4.695c0 2.674.278 3.645.8 4.623a5.44 5.44 0 0 0 2.263 2.267c.976.522 1.943.802 4.612.802h.994c.2 0 .39-.08.53-.22l1.771-1.775a.149.149 0 0 0-.106-.255H8.027c-2.002 0-2.728-.208-3.46-.6a4.1 4.1 0 0 1-1.698-1.702c-.39-.734-.599-1.461-.599-3.467v-2.172a.75.75 0 0 0-.22-.528L.282 11.507a.15.15 0 0 0-.106-.044m21.703 1.5a.15.15 0 0 0-.15.15v2.868c0 2.006-.208 2.733-.6 3.467a4.1 4.1 0 0 1-1.698 1.702c-.731.392-1.457.6-3.459.6h-2.164a.75.75 0 0 0-.532.22l-1.769 1.773a.15.15 0 0 0-.043.107c0 .083.065.15.148.15H16.3c2.67 0 3.636-.28 4.612-.802a5.44 5.44 0 0 0 2.263-2.267c.522-.978.8-1.948.8-4.623v-.998a.75.75 0 0 0-.22-.529l-1.769-1.774a.15.15 0 0 0-.106-.044zm-17.96 2.238a.15.15 0 0 0-.151.15v1.898a2.997 2.997 0 0 0 2.993 3.001h5.676c.2 0 .39-.08.53-.22l1.773-1.775a.15.15 0 0 0 .044-.104.15.15 0 0 0-.15-.15H7.51a1.5 1.5 0 0 1-.53-.098 1.5 1.5 0 0 1-.546-.347l-2.413-2.313a.15.15 0 0 0-.103-.042z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.384.248A.42.42 0 0 0 11.998 0a.43.43 0 0 0-.387.248L6.172 12.002l5.441 11.752a.428.428 0 0 0 .616.18.43.43 0 0 0 .157-.18l5.443-11.752zm-.386 18.449-3.101-6.695 3.101-6.697 3.1 6.697z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.808 5.764a.812.812 0 1 0-.812.812.81.81 0 0 0 .812-.812m3.196-.812a.812.812 0 1 0 .811.812.81.81 0 0 0-.811-.812m-.876 2.154a1.686 1.686 0 0 1-2.257 0 .21.21 0 0 0-.286.31 2.065 2.065 0 0 0 2.83 0 .21.21 0 1 0-.286-.31M11.947 0A7.16 7.16 0 0 0 4.79 7.158v1.385l.002.03a1.7 1.7 0 0 0-1.389 1.646 2.4 2.4 0 0 0-.33 1.22v9.178a2.415 2.415 0 0 0 1.785 2.328A1.77 1.77 0 0 0 6.473 24h2.005a1.76 1.76 0 0 0 1.577-.967h3.681c.301.594.91.968 1.576.967h2.008a1.77 1.77 0 0 0 1.59-1 2.41 2.41 0 0 0 2.018-2.38V11.44a2.4 2.4 0 0 0-.315-1.197v-.01a1.69 1.69 0 0 0-1.23-1.625V7.16A7.16 7.16 0 0 0 12.223 0Zm.032 2.559h.214a4.48 4.48 0 0 1 4.483 4.48v1.504h-1.008a1.67 1.67 0 0 0-1.174.48H9.527a1.68 1.68 0 0 0-1.183-.48h-.848V7.039a4.48 4.48 0 0 1 4.483-4.48m.025 9.492v.004a1.974 1.974 0 0 1 1.105 3.603.31.31 0 0 0-.132.299l.486 3.297a.3.3 0 0 1-.07.246.31.31 0 0 1-.235.107h-2.316a.31.31 0 0 1-.305-.353l.484-3.297a.29.29 0 0 0-.129-.295 1.975 1.975 0 0 1 .885-3.598 2 2 0 0 1 .227-.013"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 .04a1.743 1.743 0 0 0-.537 3.401l-.631 2.579H2.456A2.456 2.456 0 0 0 0 8.476v13.029a2.456 2.456 0 0 0 2.456 2.456h19.088c1.356 0 2.456-1.1 2.456-2.456V8.476c0-1.356-1.1-2.456-2.456-2.456h-8.403l-.616-2.575A1.743 1.743 0 0 0 11.999.04zM3.933 7.881h16.136c1.101 0 1.994.893 1.994 1.994v10.117a1.994 1.994 0 0 1-1.994 1.994H3.933a1.994 1.994 0 0 1-1.994-1.994V9.875c0-1.101.893-1.994 1.994-1.994m3.254 2.312a4.575 4.575 0 1 0 0 9.15 4.575 4.575 0 0 0 0-9.15m9.743 0a4.575 4.575 0 1 0 0 9.15 4.575 4.575 0 0 0 0-9.15m-9.743 1.07a3.506 3.506 0 1 1 0 7.011 3.506 3.506 0 0 1 0-7.011m9.743 0a3.506 3.506 0 1 1 0 7.011 3.506 3.506 0 0 1 0-7.011m-9.743 1.663a1.843 1.843 0 1 0 0 3.686 1.843 1.843 0 0 0 0-3.686m9.743 0a1.843 1.843 0 1 0 0 3.686 1.843 1.843 0 0 0 0-3.686m-6.927 6.5v2.159h.706v-2.159zm1.077 0v2.159h.705v-2.159zm1.076 0v2.159h.706v-2.159zm1.077 0v2.159h.706v-2.159zm1.077.03v2.1a1.08 1.08 0 0 0 .829-1.049v-.001c0-.51-.354-.937-.829-1.05m-4.678.028a1.08 1.08 0 0 0-.731 1.021v.001c0 .474.306.876.731 1.021z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.999 0a12 12 0 1 0 0 24A12 12 0 0 0 12 0zm1.183 5.255h.048c3.273 0 5.247 1.48 5.247 4.103 0 2.727-1.974 4.536-5.295 4.669v-1.742c1.837-.11 2.801-1.061 2.801-2.744 0-1.498-.957-2.442-2.8-2.516zm-1.773.026.005 11.896c.779.052 1.583.18 2.26.337l-.269 1.324H6.788v-1.324a15 15 0 0 1 2.26-.337V6.993a15 15 0 0 1-2.26-.337V5.33h2.26c.64 0 1.469-.028 2.361-.05z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.91 12.058c0-2.504 1.175-4.546 3.37-4.546 2.216 0 3.352 2.167 3.352 4.46 0 2.542-1.203 4.526-3.351 4.526-2.129 0-3.37-1.965-3.37-4.44m9.072-.183c0-3.458-2.09-6.145-5.653-6.154-3.419 0-5.769 2.629-5.769 6.366 0 3.573 2.167 6.192 5.596 6.192 3.351 0 5.826-2.33 5.826-6.404m1.503.038.01 6.183h2.234v-5.162c0-.25.02-.52.087-.722.24-.665.847-1.3 1.733-1.3 1.204 0 1.676.953 1.676 2.215v4.96h2.215v-5.21c0-2.784-1.589-3.776-3.12-3.776-1.454 0-2.418.828-2.793 1.512h-.058l-.106-1.32h-1.946c.048.762.068 1.61.068 2.62M20.013 24H3.987A3.983 3.983 0 0 1 0 20.013V3.987A3.983 3.983 0 0 1 3.987 0h16.026A3.983 3.983 0 0 1 24 3.987v16.026A3.983 3.983 0 0 1 20.013 24"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.939 5.27C21.211 4.183 20 2.941 18.784 2.137 16.258.407 13.332-.207 10.744.061c-2.699.291-5.01 1.308-6.91 3.004C2.074 4.637.912 6.559.4 8.392c-.518 1.833-.449 3.53-.264 4.808.195 1.297.841 2.929.841 2.929.132.313.315.44.41.493.472.258 1.247.031 1.842-.637.03-.041.046-.098.03-.146-.166-.639-.226-1.12-.285-1.492-.135-.736-.195-1.969-.105-3.109a9 9 0 0 1 .375-1.969c.406-1.367 1.262-2.794 2.6-3.98 1.441-1.277 3.289-2.066 5.046-2.27a9 9 0 0 1 3.199.203 9.6 9.6 0 0 1 2.975 1.348 8.9 8.9 0 0 1 2.374 2.363c.568.797 1.185 2.141 1.366 3.125.256 1.12.256 2.307.074 3.463-.225 1.158-.631 2.284-1.262 3.275-.435.768-1.337 1.783-2.403 2.545a9.4 9.4 0 0 1-3.184 1.434 8.7 8.7 0 0 1-1.728.24c-.521.016-1.212 0-1.697-.082-.721-.115-.871-.299-1.036-.549 0 0-.115-.18-.147-.662.011-4.405.009-3.229.009-5.516 0-.646-.021-1.232-.015-1.764.03-.873.104-1.473.728-2.123a2.43 2.43 0 0 1 1.777-.768c.211 0 .938.01 1.577.541.685.572.8 1.354.827 1.563.156 1.223-.652 2.134-.962 2.365a3.5 3.5 0 0 1-.962.51 4.1 4.1 0 0 1-1.531.182.15.15 0 0 0-.158.119l-.165.856c-.161.65.2.888.41.972.671.207 1.266.293 1.971.24a4.93 4.93 0 0 0 3.052-1.346 4.47 4.47 0 0 0 1.359-2.645 5.88 5.88 0 0 0-.556-3.35 5.37 5.37 0 0 0-2.81-2.583c-1.291-.508-2.318-.526-3.642-.188l-.015.005c-.86.296-1.596.661-2.362 1.452a5.4 5.4 0 0 0-1.217 1.953c-.26.752-.33 1.313-.342 2.185-.016.646.015 1.246.015 1.808v3.701c0 1.184-.04 1.389 0 1.998.022.404.078.861.255 1.352.182.541.564 1.096.826 1.352.367.391.834.705 1.293.9 1.051.467 2.478.541 3.635.496a12 12 0 0 0 2.291-.314 12.2 12.2 0 0 0 4.235-1.918c1.367-.963 2.555-2.277 3.211-3.393.841-1.326 1.385-2.814 1.668-4.343.255-1.532.243-3.103-.099-4.612-.27-1.4-.991-2.936-1.823-4.176z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.604 8.4h-3.405V12h3.405a1.8 1.8 0 1 0 0-3.6M12 0C5.372 0 0 5.372 0 12s5.372 12 12 12 12-5.372 12-12S18.628 0 12 0m1.604 14.4h-3.405V18H7.801V6h5.804a4.2 4.2 0 1 1-.001 8.4"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.056 24a17 17 0 0 1-3.457-.698c-1.244-.364-2.899-1-2.913-2.319 0-.946.54-1.755 1.675-2.477a16 16 0 0 1 1.6-.844 40 40 0 0 1 2.2-.928V4.98l-4.41-.476v12.652a.85.85 0 0 1-.895.846.85.85 0 0 1-.904-.846V3.496a.906.906 0 0 1 .904-.903 1 1 0 0 1 .096.014l6.198.67a.9.9 0 0 1 .8.9v11.826a61 61 0 0 0 2.399-1.03c2.27-1.036 3.799-2.091 4.668-3.237 1.056-1.374 1.218-3.075 1.168-4.259a6.26 6.26 0 0 0-1.254-3.515 5.5 5.5 0 0 0-2.095-1.725 6.2 6.2 0 0 0-1.663-.486c-.6-.082-.896-.51-.864-.938s.384-.75.888-.8c.863-.071 1.503.147 2.375.536a7.76 7.76 0 0 1 2.86 2.32 8.17 8.17 0 0 1 1.6 4.522 9 9 0 0 1-.485 3.481 7.4 7.4 0 0 1-1.088 1.966c-1.584 2.065-4.39 3.34-5.31 3.764-.868.4-2.8 1.2-3.18 1.352V23.1a.9.9 0 0 1-.31.682.92.92 0 0 1-.567.218zm-.896-5.318c-.552.2-1.4.512-1.72.66-.32.147-1.215.565-1.61.91-.1.085-.417.385-.339.629s.446.374 1.904.766c.518.14 1.125.274 1.765.4z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.235 6.825v11.997a.92.92 0 0 1-.419.725l-.393.235c-1.961 1.135-3.687 2.134-5.431 3.14V9.948L5.759 3.454C7.703 2.338 9.64 1.211 11.586.1a.93.93 0 0 1 .837 0l10.81 6.243v.482zm-8.741 4.562A9632 9632 0 0 0 6.8 6.943a.94.94 0 0 0-.837 0q-2.6 1.5-5.199 3.004l8.113 4.684V24c1.732-.999 3.46-2.006 5.197-2.995a.93.93 0 0 0 .419-.724zM.765 19.317l5.613 3.241V16.07Z"/></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.372 0 12c0 6.627 5.373 12 12 12s12-5.373 12-12c0-6.628-5.373-12-12-12m0 22.46c-1.885 0-3.414-1.26-3.414-2.814h6.828c0 1.553-1.528 2.813-3.414 2.813zm5.64-3.745H6.36v-2.046h11.28zm-.04-3.098H6.391q-.056-.064-.111-.13c-1.155-1.401-1.427-2.133-1.69-2.879-.005-.025 1.4.287 2.395.511 0 0 .513.119 1.262.255-.72-.843-1.147-1.915-1.147-3.01 0-2.406 1.845-4.508 1.18-6.207.648.053 1.34 1.367 1.387 3.422.689-.951.977-2.69.977-3.755 0-1.103.727-2.385 1.454-2.429-.648 1.069.168 1.984.894 4.256.272.854.237 2.29.447 3.201.07-1.892.395-4.652 1.595-5.605-.529 1.2.079 2.702.494 3.424.671 1.164 1.078 2.047 1.078 3.716a4.64 4.64 0 0 1-1.11 2.996c.792-.149 1.34-.283 1.34-.283l2.573-.502s-.374 1.538-1.81 3.019z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.991 5.14c.058-.102.01-.185-.108-.185l-2.051.001a.41.41 0 0 0-.321.184l-5.027 8.503c-.702 1.156-1.681 1.411-2.622 1.297-1.615-.196-2.483-1.381-2.483-2.96a2.88 2.88 0 0 1 2.876-2.876h3.192a.41.41 0 0 0 .319-.184l1.15-2.01c.058-.101.01-.184-.107-.184H5.254A5.26 5.26 0 0 0 0 11.98c0 1.4.547 2.91 1.542 3.897.98.972 2.29 1.328 3.688 1.357.789.009 2.956-.009 3.972-1.817l5.79-10.277Zm7.467 2.984c-.98-.972-2.29-1.329-3.688-1.357-.789-.01-2.956.009-3.972 1.816-1.138 2.024-5.79 10.277-5.79 10.277-.057.102-.008.185.109.185l2.051-.001a.41.41 0 0 0 .321-.184l5.027-8.503c.702-1.156 1.681-1.411 2.622-1.297 1.615.196 2.483 1.381 2.483 2.96a2.88 2.88 0 0 1-2.876 2.876h-3.192a.4.4 0 0 0-.319.184l-1.15 2.01c-.058.101-.01.184.107.184h4.555A5.26 5.26 0 0 0 24 12.02c0-1.4-.547-2.91-1.542-3.896"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.24 0h23.44v6.64H.24m23.52 1.28V24H.24s2.88-7.84 10.48-12.48c7.12-4.4 13.04-3.6 13.04-3.6"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.405 4.799a1.205 1.205 0 0 1 2.41 0l-.002.01c.695.286 1.497.777 2.197 1.256.404.277.818.586 1.235.907a6 6 0 0 0-.426.268l-.067.048c-.34-.258-.68-.513-1.01-.739-.952-.653-1.619-1.006-2.08-1.194-.176.33-.495.557-.88.614.154.58.553 1.366 1.15 2.29l.718 1.045c.145.2.307.409.464.615a39 39 0 0 0 1.348 1.671q.175.205.357.412c.153.176.305.352.465.53q.447.497.924 1c.295.308.598.608.9.906q-.402-.006-.797-.02a42 42 0 0 1-.497-.51 47 47 0 0 1-1.4-1.541l-.29-.336a41 41 0 0 1-1.203-1.463l-.001-.002a33 33 0 0 1-.857-1.146l-.008-.01-.01-.014-.127-.19-.142-.21-.396-.589c-.633-.996-1.048-1.849-1.202-2.49a1.2 1.2 0 0 1-.773-1.118m15.292 13.243c-.328-.815-.913-1.805-1.637-2.844-.199.03-.407.053-.611.079.776 1.102 1.341 2.068 1.656 2.793-.47.151-.813.572-.832 1.089-.633-.267-1.46-.762-2.418-1.468a32 32 0 0 1-2.303-1.903l-.413.366c2.087 1.872 4.08 3.26 5.339 3.691.215.33.569.561.992.561.665 0 1.205-.54 1.205-1.205 0-.585-.425-1.05-.978-1.16m-6.182-2.492-.228.006q-.152.007-.302.008c-.098 0-.192-.006-.29-.006-.126.111-.249.21-.375.317a37 37 0 0 1-.821.684h.001c-1.554 1.251-2.927 2.137-3.842 2.526l.001-.005c0-.529-.346-.965-.821-1.127.27-.607.695-1.351 1.29-2.206.099-.143.217-.294.323-.44-.208-.024-.423-.045-.624-.072-.721 1.014-1.272 1.939-1.593 2.685-.556.106-.985.573-.985 1.16 0 .666.54 1.206 1.205 1.206.397 0 .733-.205.952-.502 1.553-.494 4.027-2.36 6.11-4.234m-5.664-4.67a5 5 0 0 0-.056.758c0 .938.261 1.81.7 2.567.061.007.118.016.18.024.738.083 1.501.14 2.277.179q-.16-.163-.319-.328a45 45 0 0 1-2.782-3.2m8.17-3.374q.404.3.743.672.28.31.508.663c.186.287.333.599.46.92a36 36 0 0 1-2 2.448c-.12.135-.24.273-.361.405a30 30 0 0 1-.762.8 40 40 0 0 1-.857.838l-.202.193c-.19.003-.376.017-.565.017-.173 0-.34-.012-.51-.014l-.191-.188c-.3-.296-.602-.594-.895-.902a45 45 0 0 1-.726-.783l-.366-.408A41 41 0 0 1 7.209 9.63a5 5 0 0 1 .376-.733 5 5 0 0 1 .51-.678c.258-.291.552-.55.87-.776a5 5 0 0 1 .492-.31 5.128 5.128 0 0 1 5.084.053 5 5 0 0 1 .48.32m-.92 6.892a34 34 0 0 0 2.13-.194c.064-.008.122-.02.185-.028.427-.75.683-1.612.683-2.538 0-.196-.021-.387-.043-.578a36 36 0 0 1-2.704 3.09zm-1.445 1.149c.358.322.712.633 1.052.918a5.2 5.2 0 0 0 1.764-1.077c-.928.091-1.871.14-2.816.159m-1.2 1.196c.163.016.323.048.49.048.164 0 .319-.032.478-.047-.156-.135-.315-.285-.473-.426q-.23.2-.495.425m-3.013-1.335a5.2 5.2 0 0 0 1.763 1.064q.528-.419 1.09-.904v-.01l.007-.01a41 41 0 0 1-2.86-.14m6.727-8.102.057.042c1.257-.972 2.359-1.663 3.144-1.95.173.34.498.572.888.631-.148.457-.48 1.169-1.163 2.237l-.637.93c-.196.279-.409.562-.621.844-.437.581-.906 1.163-1.391 1.733l-.18.207c-.48.555-.974 1.1-1.48 1.61a40 40 0 0 1-.863.843c.27-.007.541-.01.81-.024a36 36 0 0 0 .44-.435c.46-.465.91-.959 1.352-1.46l.247-.287c.427-.496.841-.998 1.233-1.506l.002-.002c.365-.473.718-.946 1.04-1.412l.63-.932c.5-.795.99-1.688 1.19-2.398a1.2 1.2 0 0 0 .771-1.118 1.205 1.205 0 0 0-2.408-.01c-.9.342-2.113 1.107-3.481 2.177.137.083.274.171.42.28m.941.915c.128.157.259.31.371.484l.122.188c.233.032.454.075.683.111l.38-.555a35 35 0 0 0-1.556-.228m-8.372.056c-.453.064-.893.147-1.334.228l.371.54c.16-.027.314-.062.476-.088l.122-.193c.108-.172.238-.328.365-.487M23.98 11.4c-.252-1.298-2.532-2.114-4.4-2.57-.25-.062-.53-.11-.796-.165l-.362.537c.435.087.864.178 1.264.283 2.215.579 3.564 1.319 3.702 2.03.039.201-.031.407-.214.629-.547.662-1.995 1.313-3.974 1.788-.876.21-1.836.378-2.84.505q-.048.008-.097.015a34 34 0 0 1-2.108.194c-.227.013-.459.01-.687.02-.272.012-.191.02-.464.025h-.353c-.226.025-.523.02-.746.02-1.522 0-2.91-.082-4.256-.234-3.227-.364-5.76-1.123-6.695-2.088q-.361-.372-.35-.741c.012-.372.771-1.216 3.544-2.018.48-.138.984-.263 1.503-.375l-.353-.524c-.448.1-.899.2-1.317.32C2.51 9.477.04 10.377 0 11.63c-.012.414.162.81.52 1.18 1.094 1.129 3.98 1.978 7.647 2.33 1.2.114 2.526.174 3.859.174.014 0-.014 0 0 0 .26-.001.514-.015.772-.02a36 36 0 0 0 2.95-.178c.185-.02.359-.047.54-.069l.42-.054c3.334-.458 6.022-1.365 6.93-2.465.3-.364.414-.743.34-1.127"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.55.927c-.723.046-1.266.47-1.614 1.261a5 5 0 0 0-.215.6 11 11 0 0 0-.42 3.585c.052 1.007-.187 1.888-.6 2.797C.858 11.024.27 12.967.03 15.004c-.136 1.164.169 2.15 1.13 2.871.41.308.834.603 1.28.855 1.24.702 2.573 1.192 3.924 1.634a.8.8 0 0 1 .297.162c1.12 1.033 2.423 1.75 3.846 2.276 1.011.373 2.005.364 3.016-.01 1.057-.391 2.089-.853 2.944-1.576.76-.642 1.612-1.011 2.527-1.334 1.307-.462 2.566-1.037 3.69-1.872.934-.695 1.413-1.596 1.298-2.778-.023-.238-.04-.476-.076-.712-.3-1.942-.888-3.802-1.705-5.58-.356-.776-.658-1.524-.441-2.403-.075-.856-.128-1.726-.233-2.588-.083-.687-.24-1.365-.574-1.983-.442-.82-1.126-1.164-2.037-1-.32.057-.642.144-.94.273-1.61.698-2.904 1.8-3.95 3.198-.1.137-.194.184-.368.182a190 190 0 0 0-3.329-.002c-.144 0-.24-.014-.334-.144-.623-.877-1.389-1.615-2.256-2.247-.735-.536-1.51-1-2.406-1.22a2.6 2.6 0 0 0-.783-.08zm.096 1.152q.13-.002.292.04a4.5 4.5 0 0 1 .996.357c1.43.747 2.596 1.793 3.443 3.174.088.144.178.186.338.178.904-.042 1.806-.097 2.71-.103.62-.004 1.24.06 1.86.103.164.012.25-.04.337-.182.855-1.387 2.024-2.44 3.469-3.182a4.6 4.6 0 0 1 .973-.348c.43-.107.702.006.863.418.188.484.352.99.43 1.5.123.816.166 1.643.226 2.282-.037.648-.07 1.108-.086 1.569a.7.7 0 0 0 .08.322 21.8 21.8 0 0 1 2.174 6.377c.073.416.077.85.064 1.273-.013.481-.324.812-.673 1.1-.873.72-1.888 1.188-2.926 1.602-.714.284-1.452.51-2.174.775-.15.055-.3.149-.418.259-1.224 1.13-2.625 1.94-4.26 2.285-.37.078-.805.014-1.175-.098-1.473-.445-2.788-1.18-3.892-2.27a.7.7 0 0 0-.272-.149c-1.35-.43-2.684-.905-3.931-1.588-.35-.19-.676-.42-1.014-.632-.81-.51-1.026-1.267-.893-2.166.355-2.387 1.13-4.632 2.235-6.772a.75.75 0 0 0 .07-.375c-.106-1.522-.064-3.034.293-4.525.064-.266.162-.529.281-.775.146-.299.32-.442.58-.449m9.222 6.72c-.354.04-.54.264-.72.72q-.048.126-.081.253c-.197.782-.122 1.563-.025 2.352.108.89.498 1.492 1.367 1.832 1.379.54 2.11 1.645 2.442 3.047.08.343.148.688.228 1.068.39-.138.764-.265 1.135-.404.998-.373 1.972-.794 2.863-1.39.15-.1.224-.212.195-.393-.091-.586-.142-1.18-.273-1.758-.409-1.806-1.407-3.178-3.08-4.018-.61-.305-1.222-.614-1.861-.845a9.6 9.6 0 0 0-1.774-.444 1.6 1.6 0 0 0-.416-.02m-4.208.01a2 2 0 0 0-.264.036c-1.57.32-2.996.965-4.298 1.892-.489.348-.91.766-1.225 1.282-.727 1.193-1.073 2.5-1.152 3.886-.01.178.053.288.199.364.722.375 1.433.777 2.172 1.117.583.268 1.2.462 1.824.697.083-.39.15-.737.23-1.08.331-1.402 1.073-2.48 2.436-3.06.05-.02.093-.052.143-.069.723-.249 1.07-.77 1.185-1.516.143-.919.26-1.829-.03-2.736-.22-.7-.494-.872-1.22-.812zm2.594 7.503c-.96.045-1.653.137-2.274.505-.426.254-.559.555-.396.98.366.951 1 1.69 1.89 2.19.33.184.685.193 1.02.01.919-.498 1.555-1.252 1.929-2.22.14-.365.044-.626-.274-.864-.147-.11-.312-.219-.486-.266-.544-.146-1.097-.263-1.409-.335"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 11.997a1.316 1.316 0 1 1 0-2.632 1.316 1.316 0 0 1 0 2.632m2.916-.021c0-2.828-1.109-5.397-2.916-7.298a10.56 10.56 0 0 0-2.916 7.298c0 1.297.234 2.535.66 3.683-.618.9-1.074 2.16-1.275 3.616.639-.767 1.422-1.306 2.292-1.591.363.555.78 1.096 1.239 1.574.461-.494.876-1.02 1.239-1.59.87.271 1.653.826 2.29 1.576-.199-1.456-.655-2.716-1.275-3.615.427-1.155.66-2.385.66-3.69zM12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10m0-22C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.474 17.75V24h4.401v-5.979c0-.582.232-1.14.645-1.551a2.2 2.2 0 0 1 1.556-.643h4.513a7.96 7.96 0 0 0 5.612-2.318 7.9 7.9 0 0 0 2.325-5.595 7.9 7.9 0 0 0-2.325-5.596A7.96 7.96 0 0 0 13.587 0H2.474v7.812h4.401V4.129h6.416c.995 0 1.951.394 2.656 1.097.704.7 1.1 1.653 1.101 2.646a3.74 3.74 0 0 1-1.101 2.648 3.77 3.77 0 0 1-2.656 1.097H8.627a6.16 6.16 0 0 0-4.352 1.795 6.13 6.13 0 0 0-1.801 4.338"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.172 14.818v7.032h-4.276v-1.147c0-.584.21-1.151.592-1.596l3.684-4.288zm-4.93 5.884c0-.741.266-1.46.75-2.022l4.673-5.32c.522-.591 1.524-.92 2.262-.92h.967V7.007a1.92 1.92 0 0 0-1.928-1.914H0v14.295c0 1.36 1.11 2.462 2.482 2.462h7.76zM18.8 5.197a2.54 2.54 0 0 1 .747 1.81v5.434H24V4.613c0-1.36-1.11-2.462-2.482-2.462H2.482A2.473 2.473 0 0 0 .006 4.438h16.96c.694 0 1.345.27 1.834.76zm.34 14.742c.817 0 1.45-.451 1.45-1.136a.95.95 0 0 0-.79-.971v-.013a.96.96 0 0 0 .485-.346.94.94 0 0 0 .185-.565c0-.632-.549-1.081-1.343-1.081-.99 0-1.384.712-1.415 1.21h.843a.54.54 0 0 1 .577-.495c.318 0 .549.196.549.48 0 .283-.213.473-.732.473h-.3v.713h.346c.536 0 .807.176.807.492s-.26.532-.655.532a.67.67 0 0 1-.686-.51h-.873c.063.733.683 1.222 1.551 1.217zm2-3.39v.806l.79-.532v3.06h.82v-3.988h-.635l-.974.655z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.744 0C.781 0 0 .781 0 1.744v20.512C0 23.219.781 24 1.744 24h20.512c.963 0 1.744-.782 1.744-1.74V1.744C24 .781 23.218 0 22.26 0zm14.729 2.205v.004c.37 0 .704.08.996.25 1.26.728 1.55 2.996.904 5.846 2.8.855 4.625 2.238 4.625 3.695s-1.813 2.836-4.6 3.691c.65 2.84.367 5.102-.894 5.83a2.03 2.03 0 0 1-1.012.25c-1.232 0-2.846-.869-4.478-2.384-1.633 1.525-3.245 2.404-4.477 2.404-.376 0-.712-.079-1.006-.25-1.26-.728-1.55-2.996-.904-5.846-2.8-.855-4.625-2.238-4.625-3.695 0-1.452 1.814-2.83 4.605-3.69-.65-2.84-.366-5.103.895-5.831a2.03 2.03 0 0 1 1.012-.25V3.23c-.206 0-.377.035-.514.118-.606.352-.866 1.687-.656 3.398q.081.625.236 1.299c.875-.22 1.838-.385 2.85-.492a21 21 0 0 1 1.851-2.24C9.82 3.962 8.446 3.227 7.518 3.227V2.225c1.231 0 2.846.87 4.478 2.384 1.633-1.525 3.245-2.404 4.477-2.404m-.006 1.002c-.929.003-2.3.745-3.758 2.102a22 22 0 0 1 1.867 2.244c1.007.107 1.964.273 2.844.488.098-.455.181-.9.23-1.32.206-1.711-.059-3.04-.67-3.393a1.04 1.04 0 0 0-.513-.117zm-4.483 2.81c-.41.43-.824.91-1.23 1.438a26 26 0 0 1 2.478 0 18 18 0 0 0-1.248-1.437zM12 8.428q-1.025 0-2.03.089a25 25 0 0 0-1.08 1.71 23 23 0 0 0-.927 1.79c.283.6.591 1.196.933 1.783q.528.904 1.084 1.705.999.082 2.02.084 1.025 0 2.03-.088a25 25 0 0 0 1.08-1.71c.332-.592.644-1.194.927-1.79a23 23 0 0 0-.933-1.785 26 26 0 0 0-1.086-1.705A25 25 0 0 0 12 8.428m-3.334.23a23 23 0 0 0-1.848.35c.171.582.377 1.185.621 1.786a26 26 0 0 1 1.227-2.137zm6.658 0a23 23 0 0 1 1.23 2.127c.235-.597.442-1.194.608-1.77a19 19 0 0 0-1.838-.358zm2.81.62a22 22 0 0 1-.997 2.72q.624 1.409 1.008 2.73c.435-.142.854-.287 1.24-.454 1.583-.674 2.61-1.57 2.625-2.27 0-.703-1.027-1.587-2.615-2.267a14 14 0 0 0-1.26-.459zm-12.282.006c-.435.142-.856.287-1.243.453-1.588.67-2.615 1.566-2.615 2.27s1.027 1.588 2.615 2.267c.391.167.812.318 1.252.46a22 22 0 0 1 .996-2.717 22 22 0 0 1-1.005-2.733m6.142.668A2.05 2.05 0 0 1 14.043 12a2.05 2.05 0 0 1-2.049 2.049A2.05 2.05 0 0 1 9.947 12a2.05 2.05 0 0 1 2.047-2.049zm4.56 3.252a24 24 0 0 1-.58 1.08 26 26 0 0 1-.646 1.06 20 20 0 0 0 1.848-.357 19 19 0 0 0-.621-1.783zm-9.115.024a20 20 0 0 0-.605 1.77q.882.211 1.838.35a37 37 0 0 1-.647-1.044c-.21-.357-.4-.72-.586-1.076m9.99 2.728a21 21 0 0 1-2.849.492 21 21 0 0 1-1.851 2.24c1.461 1.35 2.834 2.086 3.763 2.086.205 0 .377-.034.514-.117.606-.352.864-1.685.654-3.396q-.083-.623-.23-1.305zm-10.845.01c-.098.454-.182.9-.23 1.32-.206 1.711.058 3.039.67 3.39.131.079.304.119.51.124.928 0 2.301-.743 3.763-2.102a21.5 21.5 0 0 1-1.867-2.244 22 22 0 0 1-2.846-.488m4.18.586c.41.528.83 1.007 1.246 1.437.41-.43.831-.91 1.232-1.437a26 26 0 0 1-2.478 0"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 6.595v12.79c0 1.36-1.11 2.462-2.482 2.462h-1.62V9a2.925 2.925 0 0 0-2.93-2.914l-9.42.053a.94.94 0 0 1-.55-.172L4.905 4.493a2.9 2.9 0 0 0-1.694-.536H.1A2.47 2.47 0 0 1 2.482 2.15h4.657c.47 0 .928.148 1.305.424l1.559 1.134c.38.276.837.424 1.308.424h10.207A2.47 2.47 0 0 1 24 6.595M18.897 9v12.85H2.482A2.47 2.47 0 0 1 0 19.387V4.957h3.21c.4 0 .792.122 1.118.353l2.095 1.476a1.94 1.94 0 0 0 1.13.353l9.402-.052A1.92 1.92 0 0 1 18.897 9"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.24 8.998 3.656-3.073v15.81H2.482C1.11 21.735 0 20.609 0 19.223V6.944l7.58 6.38a2.186 2.186 0 0 0 2.871-.042l4.792-4.284zm-5.456 3.538 1.809-1.616a2.44 2.44 0 0 1-1.178-.533L.905 2.395A.552.552 0 0 0 0 2.826v2.811l8.226 6.923a1.186 1.186 0 0 0 1.558-.024M23.871 2.463a.55.55 0 0 0-.776-.068l-3.199 2.688v16.653h1.623c1.371 0 2.481-1.127 2.481-2.513V2.824a.55.55 0 0 0-.129-.36z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10.176 20.058.858-1.28 6.513-9.838c.57-.86.026-2.014-1.005-2.131L.378 4.95l8.373 15.055a.84.84 0 0 0 1.424.052h.001zM23.586 7.14l-9.662 14.61c-1.036 1.567-3.38 1.478-4.293-.162l-.093-.168c.3-.01.594-.086.855-.235a1.85 1.85 0 0 0 .612-.57l.86-1.28 6.516-9.844c.46-.694.525-1.56.173-2.314a2.38 2.38 0 0 0-1.899-1.364L.493 3.956l-.476-.054C-.163 2.392 1.101.95 2.784 1.143l18.991 2.16c1.856.21 2.835 2.289 1.812 3.838z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.505 15.452Q.27 14.63.14 13.762.01 12.891.01 12q0-2.49.94-4.673.94-2.184 2.572-3.804Q5.155 1.902 7.339.938 9.523 0 12.012 0q2.465 0 4.65.94 2.183.962 3.815 2.583 1.633 1.62 2.572 3.804t.94 4.673q0 .869-.118 1.714-.118.846-.352 1.644.21.047.34.07l.13.024-1.363 3.429-.188-.012-.54-.106Q21.1 19.937 20.02 20.9q-1.057.987-2.325 1.668t-2.724 1.056q-1.433.376-2.96.376-1.55 0-3.005-.376-1.433-.375-2.7-1.068-1.269-.693-2.35-1.656-1.08-.963-1.878-2.16-.282.094-.434.117l-.153.024-1.48-3.382.118.012zM22.744 12q0-2.23-.846-4.18-.845-1.95-2.301-3.405-1.456-1.456-3.429-2.301-1.949-.846-4.156-.846-2.231 0-4.18.846-1.973.845-3.429 2.3Q2.947 5.872 2.102 7.82 1.256 9.77 1.256 12q0 .751.106 1.491t.317 1.444q.892-.516 2.02-1.972 1.127-1.456 1.808-2.912.352-.728.916-1.597.54-.869 1.338-1.632.799-.763 1.855-1.256 1.057-.517 2.396-.517 1.315 0 2.419.587 1.103.587 1.913 1.35t1.304 1.492q.516.727.657.986.165.282.47.94.329.633.728 1.361.4.728.822 1.433.423.68.798 1.033.259.258.564.446t.61.329q.212-.728.33-1.48.117-.751.117-1.526M12.012 22.732q1.338 0 2.583-.305 1.268-.33 2.383-.916 1.116-.587 2.055-1.41.94-.821 1.668-1.83-.94-.494-2.173-1.645-1.233-1.15-2.5-3.358-.142-.235-.494-.94-.352-.704-.857-1.455t-1.115-1.339-1.268-.587q-.681 0-1.386.634-.704.61-1.303 1.386-.6.775-1.022 1.503-.423.704-.54.916-1.174 2.066-2.477 3.205-1.304 1.139-2.29 1.656.728 1.01 1.667 1.831.963.846 2.079 1.433 1.115.587 2.36.892 1.268.329 2.63.329"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.37 0 0 5.372 0 12s5.371 12 12 12 12-5.372 12-12S18.627 0 12 0m-.273 3.789v1.71h.545v-1.71a9.06 9.06 0 0 1 5.961 2.468l-1.277 1.278.386.386 1.277-1.278a9.06 9.06 0 0 1 2.469 5.96h-1.71v.546h1.717v2.001H2.905v-2H4.62v-.546H2.91a9.06 9.06 0 0 1 2.469-5.96L6.658 7.92l.386-.386-1.278-1.278a9.06 9.06 0 0 1 5.96-2.468zM12 6.965a5.91 5.91 0 0 0-5.913 5.912h11.824A5.91 5.91 0 0 0 12 6.965"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.928 1.825c-1.09.553-1.09.64-.07 1.78 5.655 6.295 7.004 7.782 7.107 7.782.139.017 7.971-8.542 8.058-8.801.034-.07-.208-.312-.519-.536-.415-.312-.864-.433-1.712-.467-1.59-.104-2.144.242-4.115 2.455-.899 1.003-1.66 1.833-1.66 1.833-.017 0-.76-.813-1.642-1.798S8.473 2.1 8.127 1.91c-.796-.45-2.421-.484-3.2-.086zM1.297 4.367C.45 4.695 0 5.007 0 5.248c0 .121 1.331 1.678 2.94 3.459 1.625 1.78 2.939 3.268 2.939 3.302s-1.331 1.522-2.94 3.303C1.314 17.11.017 18.683.035 18.822c.086.467 1.504 1.055 2.541 1.055 1.678-.018 2.058-.312 5.603-4.202 1.78-1.954 3.233-3.614 3.233-3.666 0-.069-1.435-1.694-3.199-3.63-2.3-2.508-3.423-3.632-3.96-3.874-.812-.398-2.126-.467-2.956-.138m18.467.12c-.502.26-1.764 1.505-3.943 3.891-1.763 1.937-3.199 3.562-3.199 3.631 0 .07 1.453 1.712 3.234 3.666 3.544 3.89 3.925 4.184 5.602 4.202 1.038 0 2.455-.588 2.542-1.055.017-.156-1.28-1.712-2.905-3.493-1.608-1.78-2.94-3.285-2.94-3.32s1.332-1.539 2.94-3.32C22.72 6.91 24.017 5.352 24 5.214c-.087-.45-1.366-.968-2.473-1.038-.795-.034-1.21.035-1.763.312zM7.954 16.973c-2.144 2.369-3.908 4.374-3.943 4.46-.034.07.208.312.52.537.414.311.864.432 1.711.467 1.574.103 2.161-.26 4.15-2.508.864-.968 1.608-1.78 1.625-1.78s.761.812 1.643 1.798c2.023 2.248 2.559 2.576 4.132 2.49.848-.035 1.297-.156 1.712-.467.311-.225.553-.467.519-.536-.087-.26-7.92-8.819-8.058-8.801-.069 0-1.867 1.954-4.011 4.34"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.236 3.775a8 8 0 0 0-.535.004c-.576 0-1.573.103-2.201.234-1.834.367-4.348 1.65-5.5 2.855-1.362 1.415-1.362 1.755 0 .917 1.074-.708 4.663-2.227 5.187-2.227.157 0 .287.106.287.264 0 .13.524-.132 1.153-.604.628-.445 1.363-.969 1.625-1.152.334-.197.372-.275-.016-.291m1.262 2.449c-.475.01-.894.041-1.143.094-1.676.34-3.457 1.388-5.29 3.117-.97.917-1.782 1.571-1.782 1.414s.104-.367.262-.445c.419-.262 2.698-3.56 2.54-3.692-.209-.236-3.902 1.57-5.605 2.723-1.99 1.362-4.19 3.746-4.95 5.422-.34.707-.575 1.336-.523 1.389.053.026.89-.525 1.86-1.258.969-.734 1.833-1.257 1.912-1.178s-.42.732-1.127 1.44c-.707.733-1.206 1.31-1.127 1.31s1.152-.42 2.357-.943l2.174-.916.395.601c1.283 1.991 3.325 2.882 6.547 2.803 1.729-.026 2.096.028 2.986.656.55.367 1.153.68 1.336.68s.393.183.498.393c.079.21.418.394.733.394.524-.026.55-.053.158-.289-.262-.13-.473-.394-.473-.55 0-.158.21-.444.473-.628.419-.314.419-.34 0-.367-.236 0-.525.105-.604.262-.288.471-1.1.261-1.545-.367-.393-.629-.393-.655.577-.97l.968-.314-1.832-.89c-.995-.472-2.044-.865-2.306-.865-.42 0-.47-.13-.313-.864.603-2.829 3.325-4.794 8.46-6.103C23.133 8.02 24 7.733 24 7.628c0-.288-4.166-1.23-6.026-1.361a15 15 0 0 0-1.476-.043m-12.354 5.36c.157 0 .159.156-.05.392-.184.236-.394.341-.446.29-.183-.184.182-.683.496-.683zm13.07 6.023a.54.54 0 0 0-.417.264c-.079.13-.054.261.103.261.131 0 .342-.13.42-.261.079-.157.052-.264-.105-.264zm-2.827.787c-.577 0-.628.052-.34.393.183.21.628.392.968.392.577 0 .628-.052.34-.392-.183-.21-.628-.393-.968-.393"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.425 20.693c-.107-.247-.132-.4-.131-.8 0-.376.015-.478.208-1.416a38 38 0 0 0 .2-1.015c-.1-.056-.481-.376-.7-.587-.49-.472-.799-.938-.942-1.415-.059-.195-.067-.282-.056-.592.013-.341.02-.378.127-.599a2 2 0 0 1 .257-.39c.14-.15.145-.161.188-.465.024-.171.072-.493.105-.715.054-.36.056-.424.018-.592a2.84 2.84 0 0 1 .082-1.529c.358-.99 1.39-1.681 3-2.007 1.226-.249 2.815-.265 4.374-.045 1.537.218 3.344.715 5.011 1.38.214.086.392.152.396.148.014-.014-1.28-.668-1.61-.814A17 17 0 0 0 8.28 8.073C7.472 7.92 7.22 7.9 6.147 7.9c-.931 0-1.068.007-1.46.073a7 7 0 0 0-.836.18c-.1.03-.056-.046.082-.141.516-.356 1.36-.69 2.23-.886.853-.191.851-.177.023-.165-.407.006-.74.002-.74-.009s.025-.041.055-.068a10 10 0 0 0 .342-.376c.493-.56 1.253-1.22 1.923-1.667 1.278-.854 2.553-1.345 4.124-1.588.51-.08 2.061-.08 2.6 0 1.682.245 2.964.707 4.14 1.49.554.37.864.624 1.339 1.101.953.958 1.613 2.02 2.191 3.527.31.808.601 1.76.756 2.474l.072.331.164.115c.09.063.183.152.206.198s.166.448.316.894c.151.445.286.814.3.82s.026.111.026.234c0 .213-.004.225-.086.264-.106.05-1.037.255-1.16.255-.127 0-.23-.11-.322-.343l-.177-.436c-.054-.128-.172-.416-.263-.638-.302-.739-.295-.725-.394-.766-.08-.033-.128-.026-.393.064-.166.057-.35.13-.407.165a.55.55 0 0 0-.221.4c-.001.091.23.762.289.84.067.089 1.591 1.11 1.688 1.131.06.013.253-.014.528-.074l.438-.094c.003 0 .016.215.028.478.021.45.018.486-.043.607-.104.204-.003.16-1.67.723-1.314.444-1.564.497-2.353.497a4.5 4.5 0 0 1-2.388-.644c-.48-.283-1.052-.767-1.224-1.037-.133-.209-.16-.04.34-2.195.1-.427.194-.781.211-.787.017-.005.09.1.163.236s.164.266.202.29.287.14.552.259c.409.182.515.217.695.228a.82.82 0 0 0 .79-.41c.083-.131.097-.2.213-1.07l.158-1.178c.098-.725.09-.957-.046-1.248-.153-.327-.328-.474-.881-.741-.918-.444-.862-.435-1.279-.204-.158.088-.29.161-.293.164a8 8 0 0 0 .313-.006l.318-.01.52.24c.408.19.555.275.678.392.301.29.393.655.31 1.241-.052.37-.085.458-.23.615-.185.202-.334.269-.596.27-.208 0-.243-.01-.732-.24-.509-.24-.516-.242-.79-.249l-.276-.007-.039.156-.166.685c-.162.673-.477 1.976-.735 3.038-.11.454-.258 1.063-.327 1.355-.159.668-.214.86-.307 1.075-.219.503-.689.99-1.2 1.245-.578.287-1.076.342-1.828.205a45 45 0 0 0-4.48-.615c-.606-.053-2.655-.053-3.051 0-.826.111-1.187.19-1.535.337a1.93 1.93 0 0 0-.847.672c-.174.257-.253.71-.191 1.092.029.177-.008.192-.079.03zm.317-3.394c0-.028.06-.365.165-.929.1-.538.212-.748.576-1.086.604-.56 1.758-.924 3.331-1.05.557-.045 2.451-.014 3.072.05 1.287.131 1.77.195 2.88.38.906.151.886.15.7.073a58 58 0 0 0-2.054-.744c-1.222-.412-1.941-.578-3.207-.74-.625-.08-2.496-.081-3.082-.001-1.13.154-1.95.382-2.568.717-.523.282-.895.643-1.049 1.02-.09.22-.075.702.03.956.124.299.332.586.65.9.436.428.556.526.556.454m-.558-4.09c.15-.107.649-.33.963-.43.525-.169.957-.256 1.805-.367.497-.065 2.617-.093 3.284-.043l.716.053c.286.022.316-.01.392-.418l.184-.974c.19-1 .248-1.318.249-1.375 0-.105-.107-.19-.281-.217-.792-.129-2.275-.198-3.255-.153-2.203.1-3.583.628-4.102 1.566a1.6 1.6 0 0 0-.219.662q-.018.188.01.105c.143-.436.52-.88.926-1.094.237-.125.26-.132.26-.088 0 .015-.063.058-.14.096q-.273.131-.513.593c-.153.295-.193.468-.297 1.291a61 61 0 0 1-.096.74c-.021.135-.008.14.114.053m9.586-.184c.066-.052.078-.085.078-.236 0-.159-.01-.184-.102-.266-.12-.108-.188-.114-.298-.028-.161.128-.122.44.069.544.11.06.16.057.253-.014m7.349-1.91c.223-.15.319-.421.251-.712-.118-.515-.662-.73-.966-.384-.283.322-.166.91.22 1.1.178.088.361.087.495-.004m-.321-.32c-.187-.102-.245-.433-.103-.586.108-.117.285-.115.4.006.166.172.172.42.016.551-.105.088-.19.096-.313.029m-6.548-.146c.098-.139.036-.446-.105-.521-.09-.049-.204-.039-.257.022-.14.16-.142.312-.003.476.1.12.29.132.366.023z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h24V0zm10.34 5.1c.083.014.114.096.156.158.054.354.1.71.154 1.065.157-.162.31-.328.49-.464.867-.666 2.05-.94 3.11-.63.72.21 1.315.72 1.756 1.316.187.263.348.547.45.855.198.582.225 1.206.198 1.815-.053 1.12-.433 2.244-1.169 3.103a4.03 4.03 0 0 1-2.616 1.41 4.4 4.4 0 0 1-2.188-.317q.029 1.514.038 3.028c.021.465-.021.938.087 1.396.031.14.123.292.28.308.302.036.608.013.912.02.057 0 .13.037.126.101.004.186.009.373-.004.56-.046.092-.17.07-.255.072a44 44 0 0 0-4.437 0l-.07-.056c-.004-.22-.063-.467.034-.671.3-.035.606.02.904-.032.191-.048.268-.26.295-.434.04-.32.027-.642.042-.963V8.348c0-.156.006-.31-.008-.465a.89.89 0 0 0-.34-.656c-.203-.158-.438-.265-.662-.388-.082-.052-.181-.097-.229-.187a1 1 0 0 1 .008-.337c.056-.066.144-.086.219-.122.73-.315 1.456-.636 2.185-.952.17-.068.346-.144.533-.144zm1.99 1.146c-.053 0-.104 0-.156.013a2.12 2.12 0 0 0-1.493.86c.005 1.44 0 2.88.003 4.32.005.327.073.676.302.924.524.512 1.302.692 2.014.593.577-.096 1.037-.538 1.279-1.054.344-.736.395-1.571.335-2.371-.053-.655-.181-1.312-.449-1.915-.184-.407-.442-.793-.811-1.054a1.7 1.7 0 0 0-1.024-.313z"/></svg>
|