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.
Files changed (14911) hide show
  1. docsforge/__init__.py +11 -0
  2. docsforge/__main__.py +313 -0
  3. docsforge/_vendor/mkdocs/__init__.py +5 -0
  4. docsforge/_vendor/mkdocs/__main__.py +370 -0
  5. docsforge/_vendor/mkdocs/commands/__init__.py +0 -0
  6. docsforge/_vendor/mkdocs/commands/build.py +369 -0
  7. docsforge/_vendor/mkdocs/commands/gh_deploy.py +169 -0
  8. docsforge/_vendor/mkdocs/commands/new.py +53 -0
  9. docsforge/_vendor/mkdocs/commands/serve.py +112 -0
  10. docsforge/_vendor/mkdocs/config/__init__.py +3 -0
  11. docsforge/_vendor/mkdocs/config/base.py +392 -0
  12. docsforge/_vendor/mkdocs/config/config_options.py +1226 -0
  13. docsforge/_vendor/mkdocs/config/defaults.py +218 -0
  14. docsforge/_vendor/mkdocs/contrib/__init__.py +0 -0
  15. docsforge/_vendor/mkdocs/contrib/search/__init__.py +120 -0
  16. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.ar.js +381 -0
  17. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.da.js +284 -0
  18. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.de.js +384 -0
  19. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.du.js +450 -0
  20. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.es.js +599 -0
  21. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.fi.js +541 -0
  22. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.fr.js +703 -0
  23. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.hi.js +123 -0
  24. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.hu.js +565 -0
  25. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.hy.js +98 -0
  26. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.it.js +617 -0
  27. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.ja.js +188 -0
  28. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.jp.js +5 -0
  29. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.kn.js +110 -0
  30. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.ko.js +114 -0
  31. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.multi.js +79 -0
  32. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.nl.js +448 -0
  33. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.no.js +258 -0
  34. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.pt.js +570 -0
  35. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.ro.js +558 -0
  36. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.ru.js +391 -0
  37. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.sa.js +110 -0
  38. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.stemmer.support.js +304 -0
  39. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.sv.js +256 -0
  40. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.ta.js +123 -0
  41. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.te.js +122 -0
  42. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.th.js +99 -0
  43. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.tr.js +1087 -0
  44. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.vi.js +84 -0
  45. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.zh.js +145 -0
  46. docsforge/_vendor/mkdocs/contrib/search/lunr-language/tinyseg.js +206 -0
  47. docsforge/_vendor/mkdocs/contrib/search/prebuild-index.js +56 -0
  48. docsforge/_vendor/mkdocs/contrib/search/search_index.py +225 -0
  49. docsforge/_vendor/mkdocs/contrib/search/templates/search/lunr.js +3475 -0
  50. docsforge/_vendor/mkdocs/contrib/search/templates/search/main.js +109 -0
  51. docsforge/_vendor/mkdocs/contrib/search/templates/search/worker.js +133 -0
  52. docsforge/_vendor/mkdocs/exceptions.py +41 -0
  53. docsforge/_vendor/mkdocs/livereload/__init__.py +381 -0
  54. docsforge/_vendor/mkdocs/localization.py +92 -0
  55. docsforge/_vendor/mkdocs/plugins.py +697 -0
  56. docsforge/_vendor/mkdocs/py.typed +0 -0
  57. docsforge/_vendor/mkdocs/structure/__init__.py +36 -0
  58. docsforge/_vendor/mkdocs/structure/files.py +626 -0
  59. docsforge/_vendor/mkdocs/structure/nav.py +251 -0
  60. docsforge/_vendor/mkdocs/structure/pages.py +569 -0
  61. docsforge/_vendor/mkdocs/structure/toc.py +80 -0
  62. docsforge/_vendor/mkdocs/templates/sitemap.xml +11 -0
  63. docsforge/_vendor/mkdocs/theme.py +166 -0
  64. docsforge/_vendor/mkdocs/themes/__init__.py +0 -0
  65. docsforge/_vendor/mkdocs/themes/mkdocs/404.html +12 -0
  66. docsforge/_vendor/mkdocs/themes/mkdocs/__init__.py +0 -0
  67. docsforge/_vendor/mkdocs/themes/mkdocs/base.html +251 -0
  68. docsforge/_vendor/mkdocs/themes/mkdocs/content.html +9 -0
  69. docsforge/_vendor/mkdocs/themes/mkdocs/css/base.css +366 -0
  70. docsforge/_vendor/mkdocs/themes/mkdocs/css/bootstrap.min.css +12 -0
  71. docsforge/_vendor/mkdocs/themes/mkdocs/css/bootstrap.min.css.map +1 -0
  72. docsforge/_vendor/mkdocs/themes/mkdocs/css/brands.min.css +6 -0
  73. docsforge/_vendor/mkdocs/themes/mkdocs/css/fontawesome.min.css +9 -0
  74. docsforge/_vendor/mkdocs/themes/mkdocs/css/solid.min.css +6 -0
  75. docsforge/_vendor/mkdocs/themes/mkdocs/css/v4-font-face.min.css +6 -0
  76. docsforge/_vendor/mkdocs/themes/mkdocs/img/favicon.ico +0 -0
  77. docsforge/_vendor/mkdocs/themes/mkdocs/img/grid.png +0 -0
  78. docsforge/_vendor/mkdocs/themes/mkdocs/js/base.js +287 -0
  79. docsforge/_vendor/mkdocs/themes/mkdocs/js/bootstrap.bundle.min.js +7 -0
  80. docsforge/_vendor/mkdocs/themes/mkdocs/js/bootstrap.bundle.min.js.map +1 -0
  81. docsforge/_vendor/mkdocs/themes/mkdocs/js/darkmode.js +65 -0
  82. docsforge/_vendor/mkdocs/themes/mkdocs/keyboard-modal.html +40 -0
  83. docsforge/_vendor/mkdocs/themes/mkdocs/locales/de/LC_MESSAGES/messages.mo +0 -0
  84. docsforge/_vendor/mkdocs/themes/mkdocs/locales/es/LC_MESSAGES/messages.mo +0 -0
  85. docsforge/_vendor/mkdocs/themes/mkdocs/locales/fa/LC_MESSAGES/messages.mo +0 -0
  86. docsforge/_vendor/mkdocs/themes/mkdocs/locales/fr/LC_MESSAGES/messages.mo +0 -0
  87. docsforge/_vendor/mkdocs/themes/mkdocs/locales/id/LC_MESSAGES/messages.mo +0 -0
  88. docsforge/_vendor/mkdocs/themes/mkdocs/locales/it/LC_MESSAGES/messages.mo +0 -0
  89. docsforge/_vendor/mkdocs/themes/mkdocs/locales/ja/LC_MESSAGES/messages.mo +0 -0
  90. docsforge/_vendor/mkdocs/themes/mkdocs/locales/nb/LC_MESSAGES/messages.mo +0 -0
  91. docsforge/_vendor/mkdocs/themes/mkdocs/locales/nl/LC_MESSAGES/messages.mo +0 -0
  92. docsforge/_vendor/mkdocs/themes/mkdocs/locales/nn/LC_MESSAGES/messages.mo +0 -0
  93. docsforge/_vendor/mkdocs/themes/mkdocs/locales/pl/LC_MESSAGES/messages.mo +0 -0
  94. docsforge/_vendor/mkdocs/themes/mkdocs/locales/pt_BR/LC_MESSAGES/messages.mo +0 -0
  95. docsforge/_vendor/mkdocs/themes/mkdocs/locales/ru/LC_MESSAGES/messages.mo +0 -0
  96. docsforge/_vendor/mkdocs/themes/mkdocs/locales/tr/LC_MESSAGES/messages.mo +0 -0
  97. docsforge/_vendor/mkdocs/themes/mkdocs/locales/uk/LC_MESSAGES/messages.mo +0 -0
  98. docsforge/_vendor/mkdocs/themes/mkdocs/locales/zh_CN/LC_MESSAGES/messages.mo +0 -0
  99. docsforge/_vendor/mkdocs/themes/mkdocs/locales/zh_TW/LC_MESSAGES/messages.mo +0 -0
  100. docsforge/_vendor/mkdocs/themes/mkdocs/main.html +10 -0
  101. docsforge/_vendor/mkdocs/themes/mkdocs/mkdocs_theme.yml +28 -0
  102. docsforge/_vendor/mkdocs/themes/mkdocs/nav-sub.html +14 -0
  103. docsforge/_vendor/mkdocs/themes/mkdocs/search-modal.html +21 -0
  104. docsforge/_vendor/mkdocs/themes/mkdocs/toc.html +26 -0
  105. docsforge/_vendor/mkdocs/themes/mkdocs/webfonts/fa-brands-400.ttf +0 -0
  106. docsforge/_vendor/mkdocs/themes/mkdocs/webfonts/fa-brands-400.woff2 +0 -0
  107. docsforge/_vendor/mkdocs/themes/mkdocs/webfonts/fa-regular-400.ttf +0 -0
  108. docsforge/_vendor/mkdocs/themes/mkdocs/webfonts/fa-regular-400.woff2 +0 -0
  109. docsforge/_vendor/mkdocs/themes/mkdocs/webfonts/fa-solid-900.ttf +0 -0
  110. docsforge/_vendor/mkdocs/themes/mkdocs/webfonts/fa-solid-900.woff2 +0 -0
  111. docsforge/_vendor/mkdocs/themes/mkdocs/webfonts/fa-v4compatibility.ttf +0 -0
  112. docsforge/_vendor/mkdocs/themes/mkdocs/webfonts/fa-v4compatibility.woff2 +0 -0
  113. docsforge/_vendor/mkdocs/themes/readthedocs/404.html +9 -0
  114. docsforge/_vendor/mkdocs/themes/readthedocs/__init__.py +0 -0
  115. docsforge/_vendor/mkdocs/themes/readthedocs/base.html +199 -0
  116. docsforge/_vendor/mkdocs/themes/readthedocs/breadcrumbs.html +44 -0
  117. docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/Roboto-Slab-Bold.woff +0 -0
  118. docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/Roboto-Slab-Bold.woff2 +0 -0
  119. docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/Roboto-Slab-Regular.woff +0 -0
  120. docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/Roboto-Slab-Regular.woff2 +0 -0
  121. docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/fontawesome-webfont.eot +0 -0
  122. docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/fontawesome-webfont.svg +2671 -0
  123. docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/fontawesome-webfont.ttf +0 -0
  124. docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/fontawesome-webfont.woff +0 -0
  125. docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/fontawesome-webfont.woff2 +0 -0
  126. docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/lato-bold-italic.woff +0 -0
  127. docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/lato-bold-italic.woff2 +0 -0
  128. docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/lato-bold.woff +0 -0
  129. docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/lato-bold.woff2 +0 -0
  130. docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/lato-normal-italic.woff +0 -0
  131. docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/lato-normal-italic.woff2 +0 -0
  132. docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/lato-normal.woff +0 -0
  133. docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/lato-normal.woff2 +0 -0
  134. docsforge/_vendor/mkdocs/themes/readthedocs/css/theme.css +13 -0
  135. docsforge/_vendor/mkdocs/themes/readthedocs/css/theme_extra.css +197 -0
  136. docsforge/_vendor/mkdocs/themes/readthedocs/footer.html +26 -0
  137. docsforge/_vendor/mkdocs/themes/readthedocs/img/favicon.ico +0 -0
  138. docsforge/_vendor/mkdocs/themes/readthedocs/js/html5shiv.min.js +4 -0
  139. docsforge/_vendor/mkdocs/themes/readthedocs/js/jquery-3.6.0.min.js +2 -0
  140. docsforge/_vendor/mkdocs/themes/readthedocs/js/theme.js +2 -0
  141. docsforge/_vendor/mkdocs/themes/readthedocs/js/theme_extra.js +8 -0
  142. docsforge/_vendor/mkdocs/themes/readthedocs/locales/de/LC_MESSAGES/messages.mo +0 -0
  143. docsforge/_vendor/mkdocs/themes/readthedocs/locales/es/LC_MESSAGES/messages.mo +0 -0
  144. docsforge/_vendor/mkdocs/themes/readthedocs/locales/fa/LC_MESSAGES/messages.mo +0 -0
  145. docsforge/_vendor/mkdocs/themes/readthedocs/locales/fr/LC_MESSAGES/messages.mo +0 -0
  146. docsforge/_vendor/mkdocs/themes/readthedocs/locales/id/LC_MESSAGES/messages.mo +0 -0
  147. docsforge/_vendor/mkdocs/themes/readthedocs/locales/it/LC_MESSAGES/messages.mo +0 -0
  148. docsforge/_vendor/mkdocs/themes/readthedocs/locales/ja/LC_MESSAGES/messages.mo +0 -0
  149. docsforge/_vendor/mkdocs/themes/readthedocs/locales/nl/LC_MESSAGES/messages.mo +0 -0
  150. docsforge/_vendor/mkdocs/themes/readthedocs/locales/pl/LC_MESSAGES/messages.mo +0 -0
  151. docsforge/_vendor/mkdocs/themes/readthedocs/locales/pt_BR/LC_MESSAGES/messages.mo +0 -0
  152. docsforge/_vendor/mkdocs/themes/readthedocs/locales/ru/LC_MESSAGES/messages.mo +0 -0
  153. docsforge/_vendor/mkdocs/themes/readthedocs/locales/tr/LC_MESSAGES/messages.mo +0 -0
  154. docsforge/_vendor/mkdocs/themes/readthedocs/locales/uk/LC_MESSAGES/messages.mo +0 -0
  155. docsforge/_vendor/mkdocs/themes/readthedocs/locales/zh_CN/LC_MESSAGES/messages.mo +0 -0
  156. docsforge/_vendor/mkdocs/themes/readthedocs/locales/zh_TW/LC_MESSAGES/messages.mo +0 -0
  157. docsforge/_vendor/mkdocs/themes/readthedocs/main.html +10 -0
  158. docsforge/_vendor/mkdocs/themes/readthedocs/mkdocs_theme.yml +25 -0
  159. docsforge/_vendor/mkdocs/themes/readthedocs/nav.html +22 -0
  160. docsforge/_vendor/mkdocs/themes/readthedocs/search.html +16 -0
  161. docsforge/_vendor/mkdocs/themes/readthedocs/searchbox.html +5 -0
  162. docsforge/_vendor/mkdocs/themes/readthedocs/toc.html +12 -0
  163. docsforge/_vendor/mkdocs/themes/readthedocs/versions.html +27 -0
  164. docsforge/_vendor/mkdocs/utils/__init__.py +410 -0
  165. docsforge/_vendor/mkdocs/utils/babel_stub.py +29 -0
  166. docsforge/_vendor/mkdocs/utils/cache.py +36 -0
  167. docsforge/_vendor/mkdocs/utils/filters.py +1 -0
  168. docsforge/_vendor/mkdocs/utils/meta.py +100 -0
  169. docsforge/_vendor/mkdocs/utils/rendering.py +104 -0
  170. docsforge/_vendor/mkdocs/utils/templates.py +55 -0
  171. docsforge/_vendor/mkdocs/utils/yaml.py +150 -0
  172. docsforge/_vendor/properdocs/__init__.py +1 -0
  173. docsforge/_vendor/properdocs/__main__.py +382 -0
  174. docsforge/_vendor/properdocs/commands/__init__.py +0 -0
  175. docsforge/_vendor/properdocs/commands/build.py +379 -0
  176. docsforge/_vendor/properdocs/commands/get_deps.py +250 -0
  177. docsforge/_vendor/properdocs/commands/gh_deploy.py +169 -0
  178. docsforge/_vendor/properdocs/commands/new.py +53 -0
  179. docsforge/_vendor/properdocs/commands/serve.py +125 -0
  180. docsforge/_vendor/properdocs/config/__init__.py +3 -0
  181. docsforge/_vendor/properdocs/config/base.py +381 -0
  182. docsforge/_vendor/properdocs/config/config_options.py +1226 -0
  183. docsforge/_vendor/properdocs/config/defaults.py +222 -0
  184. docsforge/_vendor/properdocs/contrib/__init__.py +0 -0
  185. docsforge/_vendor/properdocs/contrib/search/__init__.py +120 -0
  186. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.ar.js +381 -0
  187. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.da.js +284 -0
  188. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.de.js +384 -0
  189. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.du.js +450 -0
  190. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.es.js +599 -0
  191. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.fi.js +541 -0
  192. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.fr.js +703 -0
  193. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.hi.js +123 -0
  194. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.hu.js +565 -0
  195. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.hy.js +98 -0
  196. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.it.js +617 -0
  197. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.ja.js +188 -0
  198. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.jp.js +5 -0
  199. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.kn.js +110 -0
  200. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.ko.js +114 -0
  201. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.multi.js +79 -0
  202. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.nl.js +448 -0
  203. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.no.js +258 -0
  204. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.pt.js +570 -0
  205. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.ro.js +558 -0
  206. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.ru.js +391 -0
  207. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.sa.js +110 -0
  208. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.stemmer.support.js +304 -0
  209. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.sv.js +256 -0
  210. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.ta.js +123 -0
  211. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.te.js +122 -0
  212. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.th.js +99 -0
  213. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.tr.js +1087 -0
  214. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.vi.js +84 -0
  215. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.zh.js +145 -0
  216. docsforge/_vendor/properdocs/contrib/search/lunr-language/tinyseg.js +206 -0
  217. docsforge/_vendor/properdocs/contrib/search/prebuild-index.js +56 -0
  218. docsforge/_vendor/properdocs/contrib/search/search_index.py +225 -0
  219. docsforge/_vendor/properdocs/contrib/search/templates/search/lunr.js +3475 -0
  220. docsforge/_vendor/properdocs/contrib/search/templates/search/main.js +109 -0
  221. docsforge/_vendor/properdocs/contrib/search/templates/search/worker.js +133 -0
  222. docsforge/_vendor/properdocs/exceptions.py +44 -0
  223. docsforge/_vendor/properdocs/livereload/__init__.py +382 -0
  224. docsforge/_vendor/properdocs/localization.py +93 -0
  225. docsforge/_vendor/properdocs/plugins.py +707 -0
  226. docsforge/_vendor/properdocs/py.typed +0 -0
  227. docsforge/_vendor/properdocs/replacement.py +42 -0
  228. docsforge/_vendor/properdocs/replacement_warning.py +91 -0
  229. docsforge/_vendor/properdocs/structure/__init__.py +36 -0
  230. docsforge/_vendor/properdocs/structure/files.py +628 -0
  231. docsforge/_vendor/properdocs/structure/nav.py +259 -0
  232. docsforge/_vendor/properdocs/structure/pages.py +582 -0
  233. docsforge/_vendor/properdocs/structure/toc.py +82 -0
  234. docsforge/_vendor/properdocs/templates/sitemap.xml +11 -0
  235. docsforge/_vendor/properdocs/theme.py +167 -0
  236. docsforge/_vendor/properdocs/themes/__init__.py +0 -0
  237. docsforge/_vendor/properdocs/utils/__init__.py +419 -0
  238. docsforge/_vendor/properdocs/utils/babel_stub.py +29 -0
  239. docsforge/_vendor/properdocs/utils/cache.py +75 -0
  240. docsforge/_vendor/properdocs/utils/filters.py +1 -0
  241. docsforge/_vendor/properdocs/utils/meta.py +101 -0
  242. docsforge/_vendor/properdocs/utils/rendering.py +104 -0
  243. docsforge/_vendor/properdocs/utils/templates.py +57 -0
  244. docsforge/_vendor/properdocs/utils/yaml.py +165 -0
  245. docsforge/_vendor_shims/__init__.py +5 -0
  246. docsforge/commands/__init__.py +0 -0
  247. docsforge/commands/build.py +377 -0
  248. docsforge/commands/get_deps.py +246 -0
  249. docsforge/commands/gh_deploy.py +169 -0
  250. docsforge/commands/new.py +53 -0
  251. docsforge/commands/serve.py +126 -0
  252. docsforge/config/__init__.py +3 -0
  253. docsforge/config/base.py +379 -0
  254. docsforge/config/config_options.py +1228 -0
  255. docsforge/config/defaults.py +222 -0
  256. docsforge/contrib/__init__.py +0 -0
  257. docsforge/contrib/search/__init__.py +121 -0
  258. docsforge/contrib/search/lunr-language/lunr.ar.js +381 -0
  259. docsforge/contrib/search/lunr-language/lunr.da.js +284 -0
  260. docsforge/contrib/search/lunr-language/lunr.de.js +384 -0
  261. docsforge/contrib/search/lunr-language/lunr.du.js +450 -0
  262. docsforge/contrib/search/lunr-language/lunr.es.js +599 -0
  263. docsforge/contrib/search/lunr-language/lunr.fi.js +541 -0
  264. docsforge/contrib/search/lunr-language/lunr.fr.js +703 -0
  265. docsforge/contrib/search/lunr-language/lunr.hi.js +123 -0
  266. docsforge/contrib/search/lunr-language/lunr.hu.js +565 -0
  267. docsforge/contrib/search/lunr-language/lunr.hy.js +98 -0
  268. docsforge/contrib/search/lunr-language/lunr.it.js +617 -0
  269. docsforge/contrib/search/lunr-language/lunr.ja.js +188 -0
  270. docsforge/contrib/search/lunr-language/lunr.jp.js +5 -0
  271. docsforge/contrib/search/lunr-language/lunr.kn.js +110 -0
  272. docsforge/contrib/search/lunr-language/lunr.ko.js +114 -0
  273. docsforge/contrib/search/lunr-language/lunr.multi.js +79 -0
  274. docsforge/contrib/search/lunr-language/lunr.nl.js +448 -0
  275. docsforge/contrib/search/lunr-language/lunr.no.js +258 -0
  276. docsforge/contrib/search/lunr-language/lunr.pt.js +570 -0
  277. docsforge/contrib/search/lunr-language/lunr.ro.js +558 -0
  278. docsforge/contrib/search/lunr-language/lunr.ru.js +391 -0
  279. docsforge/contrib/search/lunr-language/lunr.sa.js +110 -0
  280. docsforge/contrib/search/lunr-language/lunr.stemmer.support.js +304 -0
  281. docsforge/contrib/search/lunr-language/lunr.sv.js +256 -0
  282. docsforge/contrib/search/lunr-language/lunr.ta.js +123 -0
  283. docsforge/contrib/search/lunr-language/lunr.te.js +122 -0
  284. docsforge/contrib/search/lunr-language/lunr.th.js +99 -0
  285. docsforge/contrib/search/lunr-language/lunr.tr.js +1087 -0
  286. docsforge/contrib/search/lunr-language/lunr.vi.js +84 -0
  287. docsforge/contrib/search/lunr-language/lunr.zh.js +145 -0
  288. docsforge/contrib/search/lunr-language/tinyseg.js +206 -0
  289. docsforge/contrib/search/prebuild-index.js +56 -0
  290. docsforge/contrib/search/search_index.py +225 -0
  291. docsforge/contrib/search/templates/search/lunr.js +3475 -0
  292. docsforge/contrib/search/templates/search/main.js +109 -0
  293. docsforge/contrib/search/templates/search/worker.js +133 -0
  294. docsforge/exceptions.py +44 -0
  295. docsforge/extensions/__init__.py +30 -0
  296. docsforge/extensions/emoji.py +108 -0
  297. docsforge/extensions/preview.py +234 -0
  298. docsforge/livereload/__init__.py +381 -0
  299. docsforge/overrides/assets/javascripts/custom.f46acd93.min.js +5 -0
  300. docsforge/overrides/assets/javascripts/custom.f46acd93.min.js.map +7 -0
  301. docsforge/overrides/assets/javascripts/iconsearch_index.json +1 -0
  302. docsforge/overrides/assets/stylesheets/custom.f120bdc6.min.css +1 -0
  303. docsforge/overrides/assets/stylesheets/custom.f120bdc6.min.css.map +1 -0
  304. docsforge/overrides/home.html +29 -0
  305. docsforge/overrides/hooks/shortcodes.py +305 -0
  306. docsforge/overrides/hooks/translations.html +23 -0
  307. docsforge/overrides/hooks/translations.py +208 -0
  308. docsforge/overrides/main.html +27 -0
  309. docsforge/plugins/__init__.py +46 -0
  310. docsforge/plugins/blog/__init__.py +44 -0
  311. docsforge/plugins/blog/author.py +51 -0
  312. docsforge/plugins/blog/config.py +113 -0
  313. docsforge/plugins/blog/plugin.py +1094 -0
  314. docsforge/plugins/blog/readtime/__init__.py +62 -0
  315. docsforge/plugins/blog/readtime/parser.py +85 -0
  316. docsforge/plugins/blog/structure/__init__.py +348 -0
  317. docsforge/plugins/blog/structure/config.py +50 -0
  318. docsforge/plugins/blog/structure/markdown.py +72 -0
  319. docsforge/plugins/blog/structure/options.py +139 -0
  320. docsforge/plugins/group/__init__.py +30 -0
  321. docsforge/plugins/group/config.py +42 -0
  322. docsforge/plugins/group/plugin.py +172 -0
  323. docsforge/plugins/info/__init__.py +30 -0
  324. docsforge/plugins/info/config.py +46 -0
  325. docsforge/plugins/info/patterns.py +27 -0
  326. docsforge/plugins/info/plugin.py +574 -0
  327. docsforge/plugins/meta/__init__.py +30 -0
  328. docsforge/plugins/meta/config.py +44 -0
  329. docsforge/plugins/meta/plugin.py +133 -0
  330. docsforge/plugins/minify/__init__.py +0 -0
  331. docsforge/plugins/minify/plugin.py +240 -0
  332. docsforge/plugins/offline/__init__.py +30 -0
  333. docsforge/plugins/offline/config.py +41 -0
  334. docsforge/plugins/offline/plugin.py +80 -0
  335. docsforge/plugins/optimize/__init__.py +30 -0
  336. docsforge/plugins/optimize/config.py +63 -0
  337. docsforge/plugins/optimize/plugin.py +399 -0
  338. docsforge/plugins/privacy/__init__.py +30 -0
  339. docsforge/plugins/privacy/config.py +89 -0
  340. docsforge/plugins/privacy/parser.py +52 -0
  341. docsforge/plugins/privacy/plugin.py +691 -0
  342. docsforge/plugins/projects/__init__.py +30 -0
  343. docsforge/plugins/projects/builder/__init__.py +331 -0
  344. docsforge/plugins/projects/builder/log.py +111 -0
  345. docsforge/plugins/projects/builder/watcher/__init__.py +109 -0
  346. docsforge/plugins/projects/builder/watcher/handler.py +116 -0
  347. docsforge/plugins/projects/config.py +75 -0
  348. docsforge/plugins/projects/plugin.py +303 -0
  349. docsforge/plugins/projects/structure/__init__.py +252 -0
  350. docsforge/plugins/search/__init__.py +30 -0
  351. docsforge/plugins/search/config.py +74 -0
  352. docsforge/plugins/search/plugin.py +605 -0
  353. docsforge/plugins/social/__init__.py +30 -0
  354. docsforge/plugins/social/config.py +79 -0
  355. docsforge/plugins/social/layout.py +164 -0
  356. docsforge/plugins/social/plugin.py +1138 -0
  357. docsforge/plugins/social/templates/__init__.py +40 -0
  358. docsforge/plugins/social/templates/default/accent.yml +234 -0
  359. docsforge/plugins/social/templates/default/invert.yml +244 -0
  360. docsforge/plugins/social/templates/default/only/image.yml +77 -0
  361. docsforge/plugins/social/templates/default/variant.yml +255 -0
  362. docsforge/plugins/social/templates/default.yml +244 -0
  363. docsforge/plugins/tags/__init__.py +57 -0
  364. docsforge/plugins/tags/config.py +99 -0
  365. docsforge/plugins/tags/plugin.py +324 -0
  366. docsforge/plugins/tags/renderer/__init__.py +110 -0
  367. docsforge/plugins/tags/structure/__init__.py +30 -0
  368. docsforge/plugins/tags/structure/listing/__init__.py +234 -0
  369. docsforge/plugins/tags/structure/listing/config.py +126 -0
  370. docsforge/plugins/tags/structure/listing/manager/__init__.py +532 -0
  371. docsforge/plugins/tags/structure/listing/manager/toc.py +145 -0
  372. docsforge/plugins/tags/structure/listing/tree/__init__.py +176 -0
  373. docsforge/plugins/tags/structure/mapping/__init__.py +109 -0
  374. docsforge/plugins/tags/structure/mapping/manager/__init__.py +265 -0
  375. docsforge/plugins/tags/structure/mapping/storage/__init__.py +222 -0
  376. docsforge/plugins/tags/structure/tag/__init__.py +189 -0
  377. docsforge/plugins/tags/structure/tag/options.py +119 -0
  378. docsforge/plugins/tags/structure/tag/reference/__init__.py +91 -0
  379. docsforge/plugins/typeset/__init__.py +30 -0
  380. docsforge/plugins/typeset/config.py +41 -0
  381. docsforge/plugins/typeset/plugin.py +134 -0
  382. docsforge/structure/__init__.py +36 -0
  383. docsforge/structure/files.py +623 -0
  384. docsforge/structure/nav.py +260 -0
  385. docsforge/structure/pages.py +582 -0
  386. docsforge/structure/toc.py +82 -0
  387. docsforge/theme.py +37 -0
  388. docsforge/themes/material/templates/.icons/fontawesome/LICENSE.txt +165 -0
  389. docsforge/themes/material/templates/.icons/fontawesome/brands/11ty.svg +1 -0
  390. docsforge/themes/material/templates/.icons/fontawesome/brands/42-group.svg +1 -0
  391. docsforge/themes/material/templates/.icons/fontawesome/brands/500px.svg +1 -0
  392. docsforge/themes/material/templates/.icons/fontawesome/brands/accessible-icon.svg +1 -0
  393. docsforge/themes/material/templates/.icons/fontawesome/brands/accusoft.svg +1 -0
  394. docsforge/themes/material/templates/.icons/fontawesome/brands/adn.svg +1 -0
  395. docsforge/themes/material/templates/.icons/fontawesome/brands/adversal.svg +1 -0
  396. docsforge/themes/material/templates/.icons/fontawesome/brands/affiliatetheme.svg +1 -0
  397. docsforge/themes/material/templates/.icons/fontawesome/brands/airbnb.svg +1 -0
  398. docsforge/themes/material/templates/.icons/fontawesome/brands/algolia.svg +1 -0
  399. docsforge/themes/material/templates/.icons/fontawesome/brands/alipay.svg +1 -0
  400. docsforge/themes/material/templates/.icons/fontawesome/brands/amazon-pay.svg +1 -0
  401. docsforge/themes/material/templates/.icons/fontawesome/brands/amazon.svg +1 -0
  402. docsforge/themes/material/templates/.icons/fontawesome/brands/amilia.svg +1 -0
  403. docsforge/themes/material/templates/.icons/fontawesome/brands/android.svg +1 -0
  404. docsforge/themes/material/templates/.icons/fontawesome/brands/angellist.svg +1 -0
  405. docsforge/themes/material/templates/.icons/fontawesome/brands/angrycreative.svg +1 -0
  406. docsforge/themes/material/templates/.icons/fontawesome/brands/angular.svg +1 -0
  407. docsforge/themes/material/templates/.icons/fontawesome/brands/app-store-ios.svg +1 -0
  408. docsforge/themes/material/templates/.icons/fontawesome/brands/app-store.svg +1 -0
  409. docsforge/themes/material/templates/.icons/fontawesome/brands/apper.svg +1 -0
  410. docsforge/themes/material/templates/.icons/fontawesome/brands/apple-pay.svg +1 -0
  411. docsforge/themes/material/templates/.icons/fontawesome/brands/apple.svg +1 -0
  412. docsforge/themes/material/templates/.icons/fontawesome/brands/artstation.svg +1 -0
  413. docsforge/themes/material/templates/.icons/fontawesome/brands/asymmetrik.svg +1 -0
  414. docsforge/themes/material/templates/.icons/fontawesome/brands/atlassian.svg +1 -0
  415. docsforge/themes/material/templates/.icons/fontawesome/brands/audible.svg +1 -0
  416. docsforge/themes/material/templates/.icons/fontawesome/brands/autoprefixer.svg +1 -0
  417. docsforge/themes/material/templates/.icons/fontawesome/brands/avianex.svg +1 -0
  418. docsforge/themes/material/templates/.icons/fontawesome/brands/aviato.svg +1 -0
  419. docsforge/themes/material/templates/.icons/fontawesome/brands/aws.svg +1 -0
  420. docsforge/themes/material/templates/.icons/fontawesome/brands/bandcamp.svg +1 -0
  421. docsforge/themes/material/templates/.icons/fontawesome/brands/battle-net.svg +1 -0
  422. docsforge/themes/material/templates/.icons/fontawesome/brands/behance-square.svg +1 -0
  423. docsforge/themes/material/templates/.icons/fontawesome/brands/behance.svg +1 -0
  424. docsforge/themes/material/templates/.icons/fontawesome/brands/bilibili.svg +1 -0
  425. docsforge/themes/material/templates/.icons/fontawesome/brands/bimobject.svg +1 -0
  426. docsforge/themes/material/templates/.icons/fontawesome/brands/bitbucket.svg +1 -0
  427. docsforge/themes/material/templates/.icons/fontawesome/brands/bitcoin.svg +1 -0
  428. docsforge/themes/material/templates/.icons/fontawesome/brands/bity.svg +1 -0
  429. docsforge/themes/material/templates/.icons/fontawesome/brands/black-tie.svg +1 -0
  430. docsforge/themes/material/templates/.icons/fontawesome/brands/blackberry.svg +1 -0
  431. docsforge/themes/material/templates/.icons/fontawesome/brands/blogger-b.svg +1 -0
  432. docsforge/themes/material/templates/.icons/fontawesome/brands/blogger.svg +1 -0
  433. docsforge/themes/material/templates/.icons/fontawesome/brands/bluesky.svg +1 -0
  434. docsforge/themes/material/templates/.icons/fontawesome/brands/bluetooth-b.svg +1 -0
  435. docsforge/themes/material/templates/.icons/fontawesome/brands/bluetooth.svg +1 -0
  436. docsforge/themes/material/templates/.icons/fontawesome/brands/bootstrap.svg +1 -0
  437. docsforge/themes/material/templates/.icons/fontawesome/brands/bots.svg +1 -0
  438. docsforge/themes/material/templates/.icons/fontawesome/brands/brave-reverse.svg +1 -0
  439. docsforge/themes/material/templates/.icons/fontawesome/brands/brave.svg +1 -0
  440. docsforge/themes/material/templates/.icons/fontawesome/brands/btc.svg +1 -0
  441. docsforge/themes/material/templates/.icons/fontawesome/brands/buffer.svg +1 -0
  442. docsforge/themes/material/templates/.icons/fontawesome/brands/buromobelexperte.svg +1 -0
  443. docsforge/themes/material/templates/.icons/fontawesome/brands/buy-n-large.svg +1 -0
  444. docsforge/themes/material/templates/.icons/fontawesome/brands/buysellads.svg +1 -0
  445. docsforge/themes/material/templates/.icons/fontawesome/brands/canadian-maple-leaf.svg +1 -0
  446. docsforge/themes/material/templates/.icons/fontawesome/brands/cash-app.svg +1 -0
  447. docsforge/themes/material/templates/.icons/fontawesome/brands/cc-amazon-pay.svg +1 -0
  448. docsforge/themes/material/templates/.icons/fontawesome/brands/cc-amex.svg +1 -0
  449. docsforge/themes/material/templates/.icons/fontawesome/brands/cc-apple-pay.svg +1 -0
  450. docsforge/themes/material/templates/.icons/fontawesome/brands/cc-diners-club.svg +1 -0
  451. docsforge/themes/material/templates/.icons/fontawesome/brands/cc-discover.svg +1 -0
  452. docsforge/themes/material/templates/.icons/fontawesome/brands/cc-jcb.svg +1 -0
  453. docsforge/themes/material/templates/.icons/fontawesome/brands/cc-mastercard.svg +1 -0
  454. docsforge/themes/material/templates/.icons/fontawesome/brands/cc-paypal.svg +1 -0
  455. docsforge/themes/material/templates/.icons/fontawesome/brands/cc-stripe.svg +1 -0
  456. docsforge/themes/material/templates/.icons/fontawesome/brands/cc-visa.svg +1 -0
  457. docsforge/themes/material/templates/.icons/fontawesome/brands/centercode.svg +1 -0
  458. docsforge/themes/material/templates/.icons/fontawesome/brands/centos.svg +1 -0
  459. docsforge/themes/material/templates/.icons/fontawesome/brands/chrome.svg +1 -0
  460. docsforge/themes/material/templates/.icons/fontawesome/brands/chromecast.svg +1 -0
  461. docsforge/themes/material/templates/.icons/fontawesome/brands/cloudflare.svg +1 -0
  462. docsforge/themes/material/templates/.icons/fontawesome/brands/cloudscale.svg +1 -0
  463. docsforge/themes/material/templates/.icons/fontawesome/brands/cloudsmith.svg +1 -0
  464. docsforge/themes/material/templates/.icons/fontawesome/brands/cloudversify.svg +1 -0
  465. docsforge/themes/material/templates/.icons/fontawesome/brands/cmplid.svg +1 -0
  466. docsforge/themes/material/templates/.icons/fontawesome/brands/codepen.svg +1 -0
  467. docsforge/themes/material/templates/.icons/fontawesome/brands/codiepie.svg +1 -0
  468. docsforge/themes/material/templates/.icons/fontawesome/brands/confluence.svg +1 -0
  469. docsforge/themes/material/templates/.icons/fontawesome/brands/connectdevelop.svg +1 -0
  470. docsforge/themes/material/templates/.icons/fontawesome/brands/contao.svg +1 -0
  471. docsforge/themes/material/templates/.icons/fontawesome/brands/cotton-bureau.svg +1 -0
  472. docsforge/themes/material/templates/.icons/fontawesome/brands/cpanel.svg +1 -0
  473. docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-by.svg +1 -0
  474. docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-nc-eu.svg +1 -0
  475. docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-nc-jp.svg +1 -0
  476. docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-nc.svg +1 -0
  477. docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-nd.svg +1 -0
  478. docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-pd-alt.svg +1 -0
  479. docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-pd.svg +1 -0
  480. docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-remix.svg +1 -0
  481. docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-sa.svg +1 -0
  482. docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-sampling-plus.svg +1 -0
  483. docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-sampling.svg +1 -0
  484. docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-share.svg +1 -0
  485. docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-zero.svg +1 -0
  486. docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons.svg +1 -0
  487. docsforge/themes/material/templates/.icons/fontawesome/brands/critical-role.svg +1 -0
  488. docsforge/themes/material/templates/.icons/fontawesome/brands/css.svg +1 -0
  489. docsforge/themes/material/templates/.icons/fontawesome/brands/css3-alt.svg +1 -0
  490. docsforge/themes/material/templates/.icons/fontawesome/brands/css3.svg +1 -0
  491. docsforge/themes/material/templates/.icons/fontawesome/brands/cuttlefish.svg +1 -0
  492. docsforge/themes/material/templates/.icons/fontawesome/brands/d-and-d-beyond.svg +1 -0
  493. docsforge/themes/material/templates/.icons/fontawesome/brands/d-and-d.svg +1 -0
  494. docsforge/themes/material/templates/.icons/fontawesome/brands/dailymotion.svg +1 -0
  495. docsforge/themes/material/templates/.icons/fontawesome/brands/dart-lang.svg +1 -0
  496. docsforge/themes/material/templates/.icons/fontawesome/brands/dashcube.svg +1 -0
  497. docsforge/themes/material/templates/.icons/fontawesome/brands/debian.svg +1 -0
  498. docsforge/themes/material/templates/.icons/fontawesome/brands/deezer.svg +1 -0
  499. docsforge/themes/material/templates/.icons/fontawesome/brands/delicious.svg +1 -0
  500. docsforge/themes/material/templates/.icons/fontawesome/brands/deploydog.svg +1 -0
  501. docsforge/themes/material/templates/.icons/fontawesome/brands/deskpro.svg +1 -0
  502. docsforge/themes/material/templates/.icons/fontawesome/brands/dev.svg +1 -0
  503. docsforge/themes/material/templates/.icons/fontawesome/brands/deviantart.svg +1 -0
  504. docsforge/themes/material/templates/.icons/fontawesome/brands/dhl.svg +1 -0
  505. docsforge/themes/material/templates/.icons/fontawesome/brands/diaspora.svg +1 -0
  506. docsforge/themes/material/templates/.icons/fontawesome/brands/digg.svg +1 -0
  507. docsforge/themes/material/templates/.icons/fontawesome/brands/digital-ocean.svg +1 -0
  508. docsforge/themes/material/templates/.icons/fontawesome/brands/discord.svg +1 -0
  509. docsforge/themes/material/templates/.icons/fontawesome/brands/discourse.svg +1 -0
  510. docsforge/themes/material/templates/.icons/fontawesome/brands/disqus.svg +1 -0
  511. docsforge/themes/material/templates/.icons/fontawesome/brands/dochub.svg +1 -0
  512. docsforge/themes/material/templates/.icons/fontawesome/brands/docker.svg +1 -0
  513. docsforge/themes/material/templates/.icons/fontawesome/brands/draft2digital.svg +1 -0
  514. docsforge/themes/material/templates/.icons/fontawesome/brands/dribbble-square.svg +1 -0
  515. docsforge/themes/material/templates/.icons/fontawesome/brands/dribbble.svg +1 -0
  516. docsforge/themes/material/templates/.icons/fontawesome/brands/dropbox.svg +1 -0
  517. docsforge/themes/material/templates/.icons/fontawesome/brands/drupal.svg +1 -0
  518. docsforge/themes/material/templates/.icons/fontawesome/brands/duolingo.svg +1 -0
  519. docsforge/themes/material/templates/.icons/fontawesome/brands/dyalog.svg +1 -0
  520. docsforge/themes/material/templates/.icons/fontawesome/brands/earlybirds.svg +1 -0
  521. docsforge/themes/material/templates/.icons/fontawesome/brands/ebay.svg +1 -0
  522. docsforge/themes/material/templates/.icons/fontawesome/brands/edge-legacy.svg +1 -0
  523. docsforge/themes/material/templates/.icons/fontawesome/brands/edge.svg +1 -0
  524. docsforge/themes/material/templates/.icons/fontawesome/brands/elementor.svg +1 -0
  525. docsforge/themes/material/templates/.icons/fontawesome/brands/eleventy.svg +1 -0
  526. docsforge/themes/material/templates/.icons/fontawesome/brands/ello.svg +1 -0
  527. docsforge/themes/material/templates/.icons/fontawesome/brands/ember.svg +1 -0
  528. docsforge/themes/material/templates/.icons/fontawesome/brands/empire.svg +1 -0
  529. docsforge/themes/material/templates/.icons/fontawesome/brands/envira.svg +1 -0
  530. docsforge/themes/material/templates/.icons/fontawesome/brands/erlang.svg +1 -0
  531. docsforge/themes/material/templates/.icons/fontawesome/brands/ethereum.svg +1 -0
  532. docsforge/themes/material/templates/.icons/fontawesome/brands/etsy.svg +1 -0
  533. docsforge/themes/material/templates/.icons/fontawesome/brands/evernote.svg +1 -0
  534. docsforge/themes/material/templates/.icons/fontawesome/brands/expeditedssl.svg +1 -0
  535. docsforge/themes/material/templates/.icons/fontawesome/brands/facebook-f.svg +1 -0
  536. docsforge/themes/material/templates/.icons/fontawesome/brands/facebook-messenger.svg +1 -0
  537. docsforge/themes/material/templates/.icons/fontawesome/brands/facebook-square.svg +1 -0
  538. docsforge/themes/material/templates/.icons/fontawesome/brands/facebook.svg +1 -0
  539. docsforge/themes/material/templates/.icons/fontawesome/brands/fantasy-flight-games.svg +1 -0
  540. docsforge/themes/material/templates/.icons/fontawesome/brands/fedex.svg +1 -0
  541. docsforge/themes/material/templates/.icons/fontawesome/brands/fedora.svg +1 -0
  542. docsforge/themes/material/templates/.icons/fontawesome/brands/figma.svg +1 -0
  543. docsforge/themes/material/templates/.icons/fontawesome/brands/files-pinwheel.svg +1 -0
  544. docsforge/themes/material/templates/.icons/fontawesome/brands/firefox-browser.svg +1 -0
  545. docsforge/themes/material/templates/.icons/fontawesome/brands/firefox.svg +1 -0
  546. docsforge/themes/material/templates/.icons/fontawesome/brands/first-order-alt.svg +1 -0
  547. docsforge/themes/material/templates/.icons/fontawesome/brands/first-order.svg +1 -0
  548. docsforge/themes/material/templates/.icons/fontawesome/brands/firstdraft.svg +1 -0
  549. docsforge/themes/material/templates/.icons/fontawesome/brands/flickr.svg +1 -0
  550. docsforge/themes/material/templates/.icons/fontawesome/brands/flipboard.svg +1 -0
  551. docsforge/themes/material/templates/.icons/fontawesome/brands/flutter.svg +1 -0
  552. docsforge/themes/material/templates/.icons/fontawesome/brands/fly.svg +1 -0
  553. docsforge/themes/material/templates/.icons/fontawesome/brands/font-awesome-alt.svg +1 -0
  554. docsforge/themes/material/templates/.icons/fontawesome/brands/font-awesome-flag.svg +1 -0
  555. docsforge/themes/material/templates/.icons/fontawesome/brands/font-awesome-logo-full.svg +1 -0
  556. docsforge/themes/material/templates/.icons/fontawesome/brands/font-awesome.svg +1 -0
  557. docsforge/themes/material/templates/.icons/fontawesome/brands/fonticons-fi.svg +1 -0
  558. docsforge/themes/material/templates/.icons/fontawesome/brands/fonticons.svg +1 -0
  559. docsforge/themes/material/templates/.icons/fontawesome/brands/fort-awesome-alt.svg +1 -0
  560. docsforge/themes/material/templates/.icons/fontawesome/brands/fort-awesome.svg +1 -0
  561. docsforge/themes/material/templates/.icons/fontawesome/brands/forumbee.svg +1 -0
  562. docsforge/themes/material/templates/.icons/fontawesome/brands/foursquare.svg +1 -0
  563. docsforge/themes/material/templates/.icons/fontawesome/brands/free-code-camp.svg +1 -0
  564. docsforge/themes/material/templates/.icons/fontawesome/brands/freebsd.svg +1 -0
  565. docsforge/themes/material/templates/.icons/fontawesome/brands/fulcrum.svg +1 -0
  566. docsforge/themes/material/templates/.icons/fontawesome/brands/galactic-republic.svg +1 -0
  567. docsforge/themes/material/templates/.icons/fontawesome/brands/galactic-senate.svg +1 -0
  568. docsforge/themes/material/templates/.icons/fontawesome/brands/get-pocket.svg +1 -0
  569. docsforge/themes/material/templates/.icons/fontawesome/brands/gg-circle.svg +1 -0
  570. docsforge/themes/material/templates/.icons/fontawesome/brands/gg.svg +1 -0
  571. docsforge/themes/material/templates/.icons/fontawesome/brands/git-alt.svg +1 -0
  572. docsforge/themes/material/templates/.icons/fontawesome/brands/git-square.svg +1 -0
  573. docsforge/themes/material/templates/.icons/fontawesome/brands/git.svg +1 -0
  574. docsforge/themes/material/templates/.icons/fontawesome/brands/github-alt.svg +1 -0
  575. docsforge/themes/material/templates/.icons/fontawesome/brands/github-square.svg +1 -0
  576. docsforge/themes/material/templates/.icons/fontawesome/brands/github.svg +1 -0
  577. docsforge/themes/material/templates/.icons/fontawesome/brands/gitkraken.svg +1 -0
  578. docsforge/themes/material/templates/.icons/fontawesome/brands/gitlab-square.svg +1 -0
  579. docsforge/themes/material/templates/.icons/fontawesome/brands/gitlab.svg +1 -0
  580. docsforge/themes/material/templates/.icons/fontawesome/brands/gitter.svg +1 -0
  581. docsforge/themes/material/templates/.icons/fontawesome/brands/glide-g.svg +1 -0
  582. docsforge/themes/material/templates/.icons/fontawesome/brands/glide.svg +1 -0
  583. docsforge/themes/material/templates/.icons/fontawesome/brands/gofore.svg +1 -0
  584. docsforge/themes/material/templates/.icons/fontawesome/brands/golang.svg +1 -0
  585. docsforge/themes/material/templates/.icons/fontawesome/brands/goodreads-g.svg +1 -0
  586. docsforge/themes/material/templates/.icons/fontawesome/brands/goodreads.svg +1 -0
  587. docsforge/themes/material/templates/.icons/fontawesome/brands/google-drive.svg +1 -0
  588. docsforge/themes/material/templates/.icons/fontawesome/brands/google-pay.svg +1 -0
  589. docsforge/themes/material/templates/.icons/fontawesome/brands/google-play.svg +1 -0
  590. docsforge/themes/material/templates/.icons/fontawesome/brands/google-plus-g.svg +1 -0
  591. docsforge/themes/material/templates/.icons/fontawesome/brands/google-plus-square.svg +1 -0
  592. docsforge/themes/material/templates/.icons/fontawesome/brands/google-plus.svg +1 -0
  593. docsforge/themes/material/templates/.icons/fontawesome/brands/google-scholar.svg +1 -0
  594. docsforge/themes/material/templates/.icons/fontawesome/brands/google-wallet.svg +1 -0
  595. docsforge/themes/material/templates/.icons/fontawesome/brands/google.svg +1 -0
  596. docsforge/themes/material/templates/.icons/fontawesome/brands/gratipay.svg +1 -0
  597. docsforge/themes/material/templates/.icons/fontawesome/brands/grav.svg +1 -0
  598. docsforge/themes/material/templates/.icons/fontawesome/brands/gripfire.svg +1 -0
  599. docsforge/themes/material/templates/.icons/fontawesome/brands/grunt.svg +1 -0
  600. docsforge/themes/material/templates/.icons/fontawesome/brands/guilded.svg +1 -0
  601. docsforge/themes/material/templates/.icons/fontawesome/brands/gulp.svg +1 -0
  602. docsforge/themes/material/templates/.icons/fontawesome/brands/hacker-news-square.svg +1 -0
  603. docsforge/themes/material/templates/.icons/fontawesome/brands/hacker-news.svg +1 -0
  604. docsforge/themes/material/templates/.icons/fontawesome/brands/hackerrank.svg +1 -0
  605. docsforge/themes/material/templates/.icons/fontawesome/brands/hashnode.svg +1 -0
  606. docsforge/themes/material/templates/.icons/fontawesome/brands/hips.svg +1 -0
  607. docsforge/themes/material/templates/.icons/fontawesome/brands/hire-a-helper.svg +1 -0
  608. docsforge/themes/material/templates/.icons/fontawesome/brands/hive.svg +1 -0
  609. docsforge/themes/material/templates/.icons/fontawesome/brands/hooli.svg +1 -0
  610. docsforge/themes/material/templates/.icons/fontawesome/brands/hornbill.svg +1 -0
  611. docsforge/themes/material/templates/.icons/fontawesome/brands/hotjar.svg +1 -0
  612. docsforge/themes/material/templates/.icons/fontawesome/brands/houzz.svg +1 -0
  613. docsforge/themes/material/templates/.icons/fontawesome/brands/html5.svg +1 -0
  614. docsforge/themes/material/templates/.icons/fontawesome/brands/hubspot.svg +1 -0
  615. docsforge/themes/material/templates/.icons/fontawesome/brands/ideal.svg +1 -0
  616. docsforge/themes/material/templates/.icons/fontawesome/brands/imdb.svg +1 -0
  617. docsforge/themes/material/templates/.icons/fontawesome/brands/innosoft.svg +1 -0
  618. docsforge/themes/material/templates/.icons/fontawesome/brands/instagram-square.svg +1 -0
  619. docsforge/themes/material/templates/.icons/fontawesome/brands/instagram.svg +1 -0
  620. docsforge/themes/material/templates/.icons/fontawesome/brands/instalod.svg +1 -0
  621. docsforge/themes/material/templates/.icons/fontawesome/brands/intercom.svg +1 -0
  622. docsforge/themes/material/templates/.icons/fontawesome/brands/internet-explorer.svg +1 -0
  623. docsforge/themes/material/templates/.icons/fontawesome/brands/invision.svg +1 -0
  624. docsforge/themes/material/templates/.icons/fontawesome/brands/ioxhost.svg +1 -0
  625. docsforge/themes/material/templates/.icons/fontawesome/brands/itch-io.svg +1 -0
  626. docsforge/themes/material/templates/.icons/fontawesome/brands/itunes-note.svg +1 -0
  627. docsforge/themes/material/templates/.icons/fontawesome/brands/itunes.svg +1 -0
  628. docsforge/themes/material/templates/.icons/fontawesome/brands/java.svg +1 -0
  629. docsforge/themes/material/templates/.icons/fontawesome/brands/jedi-order.svg +1 -0
  630. docsforge/themes/material/templates/.icons/fontawesome/brands/jenkins.svg +1 -0
  631. docsforge/themes/material/templates/.icons/fontawesome/brands/jira.svg +1 -0
  632. docsforge/themes/material/templates/.icons/fontawesome/brands/joget.svg +1 -0
  633. docsforge/themes/material/templates/.icons/fontawesome/brands/joomla.svg +1 -0
  634. docsforge/themes/material/templates/.icons/fontawesome/brands/js-square.svg +1 -0
  635. docsforge/themes/material/templates/.icons/fontawesome/brands/js.svg +1 -0
  636. docsforge/themes/material/templates/.icons/fontawesome/brands/jsfiddle.svg +1 -0
  637. docsforge/themes/material/templates/.icons/fontawesome/brands/jxl.svg +1 -0
  638. docsforge/themes/material/templates/.icons/fontawesome/brands/kaggle.svg +1 -0
  639. docsforge/themes/material/templates/.icons/fontawesome/brands/kakao-talk.svg +1 -0
  640. docsforge/themes/material/templates/.icons/fontawesome/brands/keybase.svg +1 -0
  641. docsforge/themes/material/templates/.icons/fontawesome/brands/keycdn.svg +1 -0
  642. docsforge/themes/material/templates/.icons/fontawesome/brands/kickstarter-k.svg +1 -0
  643. docsforge/themes/material/templates/.icons/fontawesome/brands/kickstarter.svg +1 -0
  644. docsforge/themes/material/templates/.icons/fontawesome/brands/korvue.svg +1 -0
  645. docsforge/themes/material/templates/.icons/fontawesome/brands/laravel.svg +1 -0
  646. docsforge/themes/material/templates/.icons/fontawesome/brands/lastfm-square.svg +1 -0
  647. docsforge/themes/material/templates/.icons/fontawesome/brands/lastfm.svg +1 -0
  648. docsforge/themes/material/templates/.icons/fontawesome/brands/leanpub.svg +1 -0
  649. docsforge/themes/material/templates/.icons/fontawesome/brands/less.svg +1 -0
  650. docsforge/themes/material/templates/.icons/fontawesome/brands/letterboxd.svg +1 -0
  651. docsforge/themes/material/templates/.icons/fontawesome/brands/line.svg +1 -0
  652. docsforge/themes/material/templates/.icons/fontawesome/brands/linkedin-in.svg +1 -0
  653. docsforge/themes/material/templates/.icons/fontawesome/brands/linkedin.svg +1 -0
  654. docsforge/themes/material/templates/.icons/fontawesome/brands/linktree.svg +1 -0
  655. docsforge/themes/material/templates/.icons/fontawesome/brands/linode.svg +1 -0
  656. docsforge/themes/material/templates/.icons/fontawesome/brands/linux.svg +1 -0
  657. docsforge/themes/material/templates/.icons/fontawesome/brands/lumon-drop.svg +1 -0
  658. docsforge/themes/material/templates/.icons/fontawesome/brands/lumon.svg +1 -0
  659. docsforge/themes/material/templates/.icons/fontawesome/brands/lyft.svg +1 -0
  660. docsforge/themes/material/templates/.icons/fontawesome/brands/magento.svg +1 -0
  661. docsforge/themes/material/templates/.icons/fontawesome/brands/mailchimp.svg +1 -0
  662. docsforge/themes/material/templates/.icons/fontawesome/brands/mandalorian.svg +1 -0
  663. docsforge/themes/material/templates/.icons/fontawesome/brands/markdown.svg +1 -0
  664. docsforge/themes/material/templates/.icons/fontawesome/brands/mastodon.svg +1 -0
  665. docsforge/themes/material/templates/.icons/fontawesome/brands/maxcdn.svg +1 -0
  666. docsforge/themes/material/templates/.icons/fontawesome/brands/mdb.svg +1 -0
  667. docsforge/themes/material/templates/.icons/fontawesome/brands/medapps.svg +1 -0
  668. docsforge/themes/material/templates/.icons/fontawesome/brands/medium-m.svg +1 -0
  669. docsforge/themes/material/templates/.icons/fontawesome/brands/medium.svg +1 -0
  670. docsforge/themes/material/templates/.icons/fontawesome/brands/medrt.svg +1 -0
  671. docsforge/themes/material/templates/.icons/fontawesome/brands/meetup.svg +1 -0
  672. docsforge/themes/material/templates/.icons/fontawesome/brands/megaport.svg +1 -0
  673. docsforge/themes/material/templates/.icons/fontawesome/brands/mendeley.svg +1 -0
  674. docsforge/themes/material/templates/.icons/fontawesome/brands/meta.svg +1 -0
  675. docsforge/themes/material/templates/.icons/fontawesome/brands/microblog.svg +1 -0
  676. docsforge/themes/material/templates/.icons/fontawesome/brands/microsoft.svg +1 -0
  677. docsforge/themes/material/templates/.icons/fontawesome/brands/mintbit.svg +1 -0
  678. docsforge/themes/material/templates/.icons/fontawesome/brands/mix.svg +1 -0
  679. docsforge/themes/material/templates/.icons/fontawesome/brands/mixcloud.svg +1 -0
  680. docsforge/themes/material/templates/.icons/fontawesome/brands/mixer.svg +1 -0
  681. docsforge/themes/material/templates/.icons/fontawesome/brands/mizuni.svg +1 -0
  682. docsforge/themes/material/templates/.icons/fontawesome/brands/modx.svg +1 -0
  683. docsforge/themes/material/templates/.icons/fontawesome/brands/monero.svg +1 -0
  684. docsforge/themes/material/templates/.icons/fontawesome/brands/napster.svg +1 -0
  685. docsforge/themes/material/templates/.icons/fontawesome/brands/neos.svg +1 -0
  686. docsforge/themes/material/templates/.icons/fontawesome/brands/nfc-directional.svg +1 -0
  687. docsforge/themes/material/templates/.icons/fontawesome/brands/nfc-symbol.svg +1 -0
  688. docsforge/themes/material/templates/.icons/fontawesome/brands/nimblr.svg +1 -0
  689. docsforge/themes/material/templates/.icons/fontawesome/brands/node-js.svg +1 -0
  690. docsforge/themes/material/templates/.icons/fontawesome/brands/node.svg +1 -0
  691. docsforge/themes/material/templates/.icons/fontawesome/brands/notion.svg +1 -0
  692. docsforge/themes/material/templates/.icons/fontawesome/brands/npm.svg +1 -0
  693. docsforge/themes/material/templates/.icons/fontawesome/brands/ns8.svg +1 -0
  694. docsforge/themes/material/templates/.icons/fontawesome/brands/nutritionix.svg +1 -0
  695. docsforge/themes/material/templates/.icons/fontawesome/brands/octopus-deploy.svg +1 -0
  696. docsforge/themes/material/templates/.icons/fontawesome/brands/odnoklassniki-square.svg +1 -0
  697. docsforge/themes/material/templates/.icons/fontawesome/brands/odnoklassniki.svg +1 -0
  698. docsforge/themes/material/templates/.icons/fontawesome/brands/odysee.svg +1 -0
  699. docsforge/themes/material/templates/.icons/fontawesome/brands/old-republic.svg +1 -0
  700. docsforge/themes/material/templates/.icons/fontawesome/brands/openai.svg +1 -0
  701. docsforge/themes/material/templates/.icons/fontawesome/brands/opencart.svg +1 -0
  702. docsforge/themes/material/templates/.icons/fontawesome/brands/openid.svg +1 -0
  703. docsforge/themes/material/templates/.icons/fontawesome/brands/opensuse.svg +1 -0
  704. docsforge/themes/material/templates/.icons/fontawesome/brands/opera.svg +1 -0
  705. docsforge/themes/material/templates/.icons/fontawesome/brands/optin-monster.svg +1 -0
  706. docsforge/themes/material/templates/.icons/fontawesome/brands/orcid.svg +1 -0
  707. docsforge/themes/material/templates/.icons/fontawesome/brands/osi.svg +1 -0
  708. docsforge/themes/material/templates/.icons/fontawesome/brands/padlet.svg +1 -0
  709. docsforge/themes/material/templates/.icons/fontawesome/brands/page4.svg +1 -0
  710. docsforge/themes/material/templates/.icons/fontawesome/brands/pagelines.svg +1 -0
  711. docsforge/themes/material/templates/.icons/fontawesome/brands/palfed.svg +1 -0
  712. docsforge/themes/material/templates/.icons/fontawesome/brands/pandora.svg +1 -0
  713. docsforge/themes/material/templates/.icons/fontawesome/brands/patreon.svg +1 -0
  714. docsforge/themes/material/templates/.icons/fontawesome/brands/paypal.svg +1 -0
  715. docsforge/themes/material/templates/.icons/fontawesome/brands/perbyte.svg +1 -0
  716. docsforge/themes/material/templates/.icons/fontawesome/brands/periscope.svg +1 -0
  717. docsforge/themes/material/templates/.icons/fontawesome/brands/phabricator.svg +1 -0
  718. docsforge/themes/material/templates/.icons/fontawesome/brands/phoenix-framework.svg +1 -0
  719. docsforge/themes/material/templates/.icons/fontawesome/brands/phoenix-squadron.svg +1 -0
  720. docsforge/themes/material/templates/.icons/fontawesome/brands/php.svg +1 -0
  721. docsforge/themes/material/templates/.icons/fontawesome/brands/pied-piper-alt.svg +1 -0
  722. docsforge/themes/material/templates/.icons/fontawesome/brands/pied-piper-hat.svg +1 -0
  723. docsforge/themes/material/templates/.icons/fontawesome/brands/pied-piper-pp.svg +1 -0
  724. docsforge/themes/material/templates/.icons/fontawesome/brands/pied-piper-square.svg +1 -0
  725. docsforge/themes/material/templates/.icons/fontawesome/brands/pied-piper.svg +1 -0
  726. docsforge/themes/material/templates/.icons/fontawesome/brands/pinterest-p.svg +1 -0
  727. docsforge/themes/material/templates/.icons/fontawesome/brands/pinterest-square.svg +1 -0
  728. docsforge/themes/material/templates/.icons/fontawesome/brands/pinterest.svg +1 -0
  729. docsforge/themes/material/templates/.icons/fontawesome/brands/pix.svg +1 -0
  730. docsforge/themes/material/templates/.icons/fontawesome/brands/pixelfed.svg +1 -0
  731. docsforge/themes/material/templates/.icons/fontawesome/brands/pixiv.svg +1 -0
  732. docsforge/themes/material/templates/.icons/fontawesome/brands/playstation.svg +1 -0
  733. docsforge/themes/material/templates/.icons/fontawesome/brands/product-hunt.svg +1 -0
  734. docsforge/themes/material/templates/.icons/fontawesome/brands/pushed.svg +1 -0
  735. docsforge/themes/material/templates/.icons/fontawesome/brands/python.svg +1 -0
  736. docsforge/themes/material/templates/.icons/fontawesome/brands/qq.svg +1 -0
  737. docsforge/themes/material/templates/.icons/fontawesome/brands/quinscape.svg +1 -0
  738. docsforge/themes/material/templates/.icons/fontawesome/brands/quora.svg +1 -0
  739. docsforge/themes/material/templates/.icons/fontawesome/brands/r-project.svg +1 -0
  740. docsforge/themes/material/templates/.icons/fontawesome/brands/raspberry-pi.svg +1 -0
  741. docsforge/themes/material/templates/.icons/fontawesome/brands/ravelry.svg +1 -0
  742. docsforge/themes/material/templates/.icons/fontawesome/brands/react.svg +1 -0
  743. docsforge/themes/material/templates/.icons/fontawesome/brands/reacteurope.svg +1 -0
  744. docsforge/themes/material/templates/.icons/fontawesome/brands/readme.svg +1 -0
  745. docsforge/themes/material/templates/.icons/fontawesome/brands/rebel.svg +1 -0
  746. docsforge/themes/material/templates/.icons/fontawesome/brands/red-river.svg +1 -0
  747. docsforge/themes/material/templates/.icons/fontawesome/brands/reddit-alien.svg +1 -0
  748. docsforge/themes/material/templates/.icons/fontawesome/brands/reddit-square.svg +1 -0
  749. docsforge/themes/material/templates/.icons/fontawesome/brands/reddit.svg +1 -0
  750. docsforge/themes/material/templates/.icons/fontawesome/brands/redhat.svg +1 -0
  751. docsforge/themes/material/templates/.icons/fontawesome/brands/rendact.svg +1 -0
  752. docsforge/themes/material/templates/.icons/fontawesome/brands/renren.svg +1 -0
  753. docsforge/themes/material/templates/.icons/fontawesome/brands/replyd.svg +1 -0
  754. docsforge/themes/material/templates/.icons/fontawesome/brands/researchgate.svg +1 -0
  755. docsforge/themes/material/templates/.icons/fontawesome/brands/resolving.svg +1 -0
  756. docsforge/themes/material/templates/.icons/fontawesome/brands/rev.svg +1 -0
  757. docsforge/themes/material/templates/.icons/fontawesome/brands/rocketchat.svg +1 -0
  758. docsforge/themes/material/templates/.icons/fontawesome/brands/rockrms.svg +1 -0
  759. docsforge/themes/material/templates/.icons/fontawesome/brands/rust.svg +1 -0
  760. docsforge/themes/material/templates/.icons/fontawesome/brands/safari.svg +1 -0
  761. docsforge/themes/material/templates/.icons/fontawesome/brands/salesforce.svg +1 -0
  762. docsforge/themes/material/templates/.icons/fontawesome/brands/sass.svg +1 -0
  763. docsforge/themes/material/templates/.icons/fontawesome/brands/schlix.svg +1 -0
  764. docsforge/themes/material/templates/.icons/fontawesome/brands/screenpal.svg +1 -0
  765. docsforge/themes/material/templates/.icons/fontawesome/brands/scribd.svg +1 -0
  766. docsforge/themes/material/templates/.icons/fontawesome/brands/searchengin.svg +1 -0
  767. docsforge/themes/material/templates/.icons/fontawesome/brands/sellcast.svg +1 -0
  768. docsforge/themes/material/templates/.icons/fontawesome/brands/sellsy.svg +1 -0
  769. docsforge/themes/material/templates/.icons/fontawesome/brands/servicestack.svg +1 -0
  770. docsforge/themes/material/templates/.icons/fontawesome/brands/shirtsinbulk.svg +1 -0
  771. docsforge/themes/material/templates/.icons/fontawesome/brands/shoelace.svg +1 -0
  772. docsforge/themes/material/templates/.icons/fontawesome/brands/shopify.svg +1 -0
  773. docsforge/themes/material/templates/.icons/fontawesome/brands/shopware.svg +1 -0
  774. docsforge/themes/material/templates/.icons/fontawesome/brands/signal-messenger.svg +1 -0
  775. docsforge/themes/material/templates/.icons/fontawesome/brands/simplybuilt.svg +1 -0
  776. docsforge/themes/material/templates/.icons/fontawesome/brands/sistrix.svg +1 -0
  777. docsforge/themes/material/templates/.icons/fontawesome/brands/sith.svg +1 -0
  778. docsforge/themes/material/templates/.icons/fontawesome/brands/sitrox.svg +1 -0
  779. docsforge/themes/material/templates/.icons/fontawesome/brands/sketch.svg +1 -0
  780. docsforge/themes/material/templates/.icons/fontawesome/brands/skyatlas.svg +1 -0
  781. docsforge/themes/material/templates/.icons/fontawesome/brands/skype.svg +1 -0
  782. docsforge/themes/material/templates/.icons/fontawesome/brands/slack-hash.svg +1 -0
  783. docsforge/themes/material/templates/.icons/fontawesome/brands/slack.svg +1 -0
  784. docsforge/themes/material/templates/.icons/fontawesome/brands/slideshare.svg +1 -0
  785. docsforge/themes/material/templates/.icons/fontawesome/brands/snapchat-ghost.svg +1 -0
  786. docsforge/themes/material/templates/.icons/fontawesome/brands/snapchat-square.svg +1 -0
  787. docsforge/themes/material/templates/.icons/fontawesome/brands/snapchat.svg +1 -0
  788. docsforge/themes/material/templates/.icons/fontawesome/brands/soundcloud.svg +1 -0
  789. docsforge/themes/material/templates/.icons/fontawesome/brands/sourcetree.svg +1 -0
  790. docsforge/themes/material/templates/.icons/fontawesome/brands/space-awesome.svg +1 -0
  791. docsforge/themes/material/templates/.icons/fontawesome/brands/speakap.svg +1 -0
  792. docsforge/themes/material/templates/.icons/fontawesome/brands/speaker-deck.svg +1 -0
  793. docsforge/themes/material/templates/.icons/fontawesome/brands/spotify.svg +1 -0
  794. docsforge/themes/material/templates/.icons/fontawesome/brands/square-behance.svg +1 -0
  795. docsforge/themes/material/templates/.icons/fontawesome/brands/square-bluesky.svg +1 -0
  796. docsforge/themes/material/templates/.icons/fontawesome/brands/square-dribbble.svg +1 -0
  797. docsforge/themes/material/templates/.icons/fontawesome/brands/square-facebook.svg +1 -0
  798. docsforge/themes/material/templates/.icons/fontawesome/brands/square-figma.svg +1 -0
  799. docsforge/themes/material/templates/.icons/fontawesome/brands/square-font-awesome-stroke.svg +1 -0
  800. docsforge/themes/material/templates/.icons/fontawesome/brands/square-font-awesome.svg +1 -0
  801. docsforge/themes/material/templates/.icons/fontawesome/brands/square-git.svg +1 -0
  802. docsforge/themes/material/templates/.icons/fontawesome/brands/square-github.svg +1 -0
  803. docsforge/themes/material/templates/.icons/fontawesome/brands/square-gitlab.svg +1 -0
  804. docsforge/themes/material/templates/.icons/fontawesome/brands/square-google-plus.svg +1 -0
  805. docsforge/themes/material/templates/.icons/fontawesome/brands/square-hacker-news.svg +1 -0
  806. docsforge/themes/material/templates/.icons/fontawesome/brands/square-instagram.svg +1 -0
  807. docsforge/themes/material/templates/.icons/fontawesome/brands/square-js.svg +1 -0
  808. docsforge/themes/material/templates/.icons/fontawesome/brands/square-kickstarter.svg +1 -0
  809. docsforge/themes/material/templates/.icons/fontawesome/brands/square-lastfm.svg +1 -0
  810. docsforge/themes/material/templates/.icons/fontawesome/brands/square-letterboxd.svg +1 -0
  811. docsforge/themes/material/templates/.icons/fontawesome/brands/square-linkedin.svg +1 -0
  812. docsforge/themes/material/templates/.icons/fontawesome/brands/square-odnoklassniki.svg +1 -0
  813. docsforge/themes/material/templates/.icons/fontawesome/brands/square-pied-piper.svg +1 -0
  814. docsforge/themes/material/templates/.icons/fontawesome/brands/square-pinterest.svg +1 -0
  815. docsforge/themes/material/templates/.icons/fontawesome/brands/square-reddit.svg +1 -0
  816. docsforge/themes/material/templates/.icons/fontawesome/brands/square-snapchat.svg +1 -0
  817. docsforge/themes/material/templates/.icons/fontawesome/brands/square-steam.svg +1 -0
  818. docsforge/themes/material/templates/.icons/fontawesome/brands/square-threads.svg +1 -0
  819. docsforge/themes/material/templates/.icons/fontawesome/brands/square-tumblr.svg +1 -0
  820. docsforge/themes/material/templates/.icons/fontawesome/brands/square-twitter.svg +1 -0
  821. docsforge/themes/material/templates/.icons/fontawesome/brands/square-upwork.svg +1 -0
  822. docsforge/themes/material/templates/.icons/fontawesome/brands/square-viadeo.svg +1 -0
  823. docsforge/themes/material/templates/.icons/fontawesome/brands/square-vimeo.svg +1 -0
  824. docsforge/themes/material/templates/.icons/fontawesome/brands/square-web-awesome-stroke.svg +1 -0
  825. docsforge/themes/material/templates/.icons/fontawesome/brands/square-web-awesome.svg +1 -0
  826. docsforge/themes/material/templates/.icons/fontawesome/brands/square-whatsapp.svg +1 -0
  827. docsforge/themes/material/templates/.icons/fontawesome/brands/square-x-twitter.svg +1 -0
  828. docsforge/themes/material/templates/.icons/fontawesome/brands/square-xing.svg +1 -0
  829. docsforge/themes/material/templates/.icons/fontawesome/brands/square-youtube.svg +1 -0
  830. docsforge/themes/material/templates/.icons/fontawesome/brands/squarespace.svg +1 -0
  831. docsforge/themes/material/templates/.icons/fontawesome/brands/stack-exchange.svg +1 -0
  832. docsforge/themes/material/templates/.icons/fontawesome/brands/stack-overflow.svg +1 -0
  833. docsforge/themes/material/templates/.icons/fontawesome/brands/stackpath.svg +1 -0
  834. docsforge/themes/material/templates/.icons/fontawesome/brands/staylinked.svg +1 -0
  835. docsforge/themes/material/templates/.icons/fontawesome/brands/steam-square.svg +1 -0
  836. docsforge/themes/material/templates/.icons/fontawesome/brands/steam-symbol.svg +1 -0
  837. docsforge/themes/material/templates/.icons/fontawesome/brands/steam.svg +1 -0
  838. docsforge/themes/material/templates/.icons/fontawesome/brands/sticker-mule.svg +1 -0
  839. docsforge/themes/material/templates/.icons/fontawesome/brands/strava.svg +1 -0
  840. docsforge/themes/material/templates/.icons/fontawesome/brands/stripe-s.svg +1 -0
  841. docsforge/themes/material/templates/.icons/fontawesome/brands/stripe.svg +1 -0
  842. docsforge/themes/material/templates/.icons/fontawesome/brands/stubber.svg +1 -0
  843. docsforge/themes/material/templates/.icons/fontawesome/brands/studiovinari.svg +1 -0
  844. docsforge/themes/material/templates/.icons/fontawesome/brands/stumbleupon-circle.svg +1 -0
  845. docsforge/themes/material/templates/.icons/fontawesome/brands/stumbleupon.svg +1 -0
  846. docsforge/themes/material/templates/.icons/fontawesome/brands/superpowers.svg +1 -0
  847. docsforge/themes/material/templates/.icons/fontawesome/brands/supple.svg +1 -0
  848. docsforge/themes/material/templates/.icons/fontawesome/brands/suse.svg +1 -0
  849. docsforge/themes/material/templates/.icons/fontawesome/brands/swift.svg +1 -0
  850. docsforge/themes/material/templates/.icons/fontawesome/brands/symfony.svg +1 -0
  851. docsforge/themes/material/templates/.icons/fontawesome/brands/teamspeak.svg +1 -0
  852. docsforge/themes/material/templates/.icons/fontawesome/brands/telegram-plane.svg +1 -0
  853. docsforge/themes/material/templates/.icons/fontawesome/brands/telegram.svg +1 -0
  854. docsforge/themes/material/templates/.icons/fontawesome/brands/tencent-weibo.svg +1 -0
  855. docsforge/themes/material/templates/.icons/fontawesome/brands/tex.svg +1 -0
  856. docsforge/themes/material/templates/.icons/fontawesome/brands/the-red-yeti.svg +1 -0
  857. docsforge/themes/material/templates/.icons/fontawesome/brands/themeco.svg +1 -0
  858. docsforge/themes/material/templates/.icons/fontawesome/brands/themeisle.svg +1 -0
  859. docsforge/themes/material/templates/.icons/fontawesome/brands/think-peaks.svg +1 -0
  860. docsforge/themes/material/templates/.icons/fontawesome/brands/threads.svg +1 -0
  861. docsforge/themes/material/templates/.icons/fontawesome/brands/tidal.svg +1 -0
  862. docsforge/themes/material/templates/.icons/fontawesome/brands/tiktok.svg +1 -0
  863. docsforge/themes/material/templates/.icons/fontawesome/brands/trade-federation.svg +1 -0
  864. docsforge/themes/material/templates/.icons/fontawesome/brands/trello.svg +1 -0
  865. docsforge/themes/material/templates/.icons/fontawesome/brands/tumblr-square.svg +1 -0
  866. docsforge/themes/material/templates/.icons/fontawesome/brands/tumblr.svg +1 -0
  867. docsforge/themes/material/templates/.icons/fontawesome/brands/twitch.svg +1 -0
  868. docsforge/themes/material/templates/.icons/fontawesome/brands/twitter-square.svg +1 -0
  869. docsforge/themes/material/templates/.icons/fontawesome/brands/twitter.svg +1 -0
  870. docsforge/themes/material/templates/.icons/fontawesome/brands/typo3.svg +1 -0
  871. docsforge/themes/material/templates/.icons/fontawesome/brands/uber.svg +1 -0
  872. docsforge/themes/material/templates/.icons/fontawesome/brands/ubuntu.svg +1 -0
  873. docsforge/themes/material/templates/.icons/fontawesome/brands/uikit.svg +1 -0
  874. docsforge/themes/material/templates/.icons/fontawesome/brands/umbraco.svg +1 -0
  875. docsforge/themes/material/templates/.icons/fontawesome/brands/uncharted.svg +1 -0
  876. docsforge/themes/material/templates/.icons/fontawesome/brands/uniregistry.svg +1 -0
  877. docsforge/themes/material/templates/.icons/fontawesome/brands/unity.svg +1 -0
  878. docsforge/themes/material/templates/.icons/fontawesome/brands/unsplash.svg +1 -0
  879. docsforge/themes/material/templates/.icons/fontawesome/brands/untappd.svg +1 -0
  880. docsforge/themes/material/templates/.icons/fontawesome/brands/ups.svg +1 -0
  881. docsforge/themes/material/templates/.icons/fontawesome/brands/upwork.svg +1 -0
  882. docsforge/themes/material/templates/.icons/fontawesome/brands/usb.svg +1 -0
  883. docsforge/themes/material/templates/.icons/fontawesome/brands/usps.svg +1 -0
  884. docsforge/themes/material/templates/.icons/fontawesome/brands/ussunnah.svg +1 -0
  885. docsforge/themes/material/templates/.icons/fontawesome/brands/vaadin.svg +1 -0
  886. docsforge/themes/material/templates/.icons/fontawesome/brands/viacoin.svg +1 -0
  887. docsforge/themes/material/templates/.icons/fontawesome/brands/viadeo-square.svg +1 -0
  888. docsforge/themes/material/templates/.icons/fontawesome/brands/viadeo.svg +1 -0
  889. docsforge/themes/material/templates/.icons/fontawesome/brands/viber.svg +1 -0
  890. docsforge/themes/material/templates/.icons/fontawesome/brands/vimeo-square.svg +1 -0
  891. docsforge/themes/material/templates/.icons/fontawesome/brands/vimeo-v.svg +1 -0
  892. docsforge/themes/material/templates/.icons/fontawesome/brands/vimeo.svg +1 -0
  893. docsforge/themes/material/templates/.icons/fontawesome/brands/vine.svg +1 -0
  894. docsforge/themes/material/templates/.icons/fontawesome/brands/vk.svg +1 -0
  895. docsforge/themes/material/templates/.icons/fontawesome/brands/vnv.svg +1 -0
  896. docsforge/themes/material/templates/.icons/fontawesome/brands/vsco.svg +1 -0
  897. docsforge/themes/material/templates/.icons/fontawesome/brands/vuejs.svg +1 -0
  898. docsforge/themes/material/templates/.icons/fontawesome/brands/w3c.svg +1 -0
  899. docsforge/themes/material/templates/.icons/fontawesome/brands/watchman-monitoring.svg +1 -0
  900. docsforge/themes/material/templates/.icons/fontawesome/brands/waze.svg +1 -0
  901. docsforge/themes/material/templates/.icons/fontawesome/brands/web-awesome.svg +1 -0
  902. docsforge/themes/material/templates/.icons/fontawesome/brands/webflow.svg +1 -0
  903. docsforge/themes/material/templates/.icons/fontawesome/brands/weebly.svg +1 -0
  904. docsforge/themes/material/templates/.icons/fontawesome/brands/weibo.svg +1 -0
  905. docsforge/themes/material/templates/.icons/fontawesome/brands/weixin.svg +1 -0
  906. docsforge/themes/material/templates/.icons/fontawesome/brands/whatsapp-square.svg +1 -0
  907. docsforge/themes/material/templates/.icons/fontawesome/brands/whatsapp.svg +1 -0
  908. docsforge/themes/material/templates/.icons/fontawesome/brands/whmcs.svg +1 -0
  909. docsforge/themes/material/templates/.icons/fontawesome/brands/wikipedia-w.svg +1 -0
  910. docsforge/themes/material/templates/.icons/fontawesome/brands/windows.svg +1 -0
  911. docsforge/themes/material/templates/.icons/fontawesome/brands/wirsindhandwerk.svg +1 -0
  912. docsforge/themes/material/templates/.icons/fontawesome/brands/wix.svg +1 -0
  913. docsforge/themes/material/templates/.icons/fontawesome/brands/wizards-of-the-coast.svg +1 -0
  914. docsforge/themes/material/templates/.icons/fontawesome/brands/wodu.svg +1 -0
  915. docsforge/themes/material/templates/.icons/fontawesome/brands/wolf-pack-battalion.svg +1 -0
  916. docsforge/themes/material/templates/.icons/fontawesome/brands/wordpress-simple.svg +1 -0
  917. docsforge/themes/material/templates/.icons/fontawesome/brands/wordpress.svg +1 -0
  918. docsforge/themes/material/templates/.icons/fontawesome/brands/wpbeginner.svg +1 -0
  919. docsforge/themes/material/templates/.icons/fontawesome/brands/wpexplorer.svg +1 -0
  920. docsforge/themes/material/templates/.icons/fontawesome/brands/wpforms.svg +1 -0
  921. docsforge/themes/material/templates/.icons/fontawesome/brands/wpressr.svg +1 -0
  922. docsforge/themes/material/templates/.icons/fontawesome/brands/wsh.svg +1 -0
  923. docsforge/themes/material/templates/.icons/fontawesome/brands/x-twitter.svg +1 -0
  924. docsforge/themes/material/templates/.icons/fontawesome/brands/xbox.svg +1 -0
  925. docsforge/themes/material/templates/.icons/fontawesome/brands/xing-square.svg +1 -0
  926. docsforge/themes/material/templates/.icons/fontawesome/brands/xing.svg +1 -0
  927. docsforge/themes/material/templates/.icons/fontawesome/brands/y-combinator.svg +1 -0
  928. docsforge/themes/material/templates/.icons/fontawesome/brands/yahoo.svg +1 -0
  929. docsforge/themes/material/templates/.icons/fontawesome/brands/yammer.svg +1 -0
  930. docsforge/themes/material/templates/.icons/fontawesome/brands/yandex-international.svg +1 -0
  931. docsforge/themes/material/templates/.icons/fontawesome/brands/yandex.svg +1 -0
  932. docsforge/themes/material/templates/.icons/fontawesome/brands/yarn.svg +1 -0
  933. docsforge/themes/material/templates/.icons/fontawesome/brands/yelp.svg +1 -0
  934. docsforge/themes/material/templates/.icons/fontawesome/brands/yoast.svg +1 -0
  935. docsforge/themes/material/templates/.icons/fontawesome/brands/youtube-square.svg +1 -0
  936. docsforge/themes/material/templates/.icons/fontawesome/brands/youtube.svg +1 -0
  937. docsforge/themes/material/templates/.icons/fontawesome/brands/zhihu.svg +1 -0
  938. docsforge/themes/material/templates/.icons/fontawesome/regular/address-book.svg +1 -0
  939. docsforge/themes/material/templates/.icons/fontawesome/regular/address-card.svg +1 -0
  940. docsforge/themes/material/templates/.icons/fontawesome/regular/alarm-clock.svg +1 -0
  941. docsforge/themes/material/templates/.icons/fontawesome/regular/angry.svg +1 -0
  942. docsforge/themes/material/templates/.icons/fontawesome/regular/arrow-alt-circle-down.svg +1 -0
  943. docsforge/themes/material/templates/.icons/fontawesome/regular/arrow-alt-circle-left.svg +1 -0
  944. docsforge/themes/material/templates/.icons/fontawesome/regular/arrow-alt-circle-right.svg +1 -0
  945. docsforge/themes/material/templates/.icons/fontawesome/regular/arrow-alt-circle-up.svg +1 -0
  946. docsforge/themes/material/templates/.icons/fontawesome/regular/bar-chart.svg +1 -0
  947. docsforge/themes/material/templates/.icons/fontawesome/regular/bell-slash.svg +1 -0
  948. docsforge/themes/material/templates/.icons/fontawesome/regular/bell.svg +1 -0
  949. docsforge/themes/material/templates/.icons/fontawesome/regular/bookmark.svg +1 -0
  950. docsforge/themes/material/templates/.icons/fontawesome/regular/building.svg +1 -0
  951. docsforge/themes/material/templates/.icons/fontawesome/regular/calendar-alt.svg +1 -0
  952. docsforge/themes/material/templates/.icons/fontawesome/regular/calendar-check.svg +1 -0
  953. docsforge/themes/material/templates/.icons/fontawesome/regular/calendar-days.svg +1 -0
  954. docsforge/themes/material/templates/.icons/fontawesome/regular/calendar-minus.svg +1 -0
  955. docsforge/themes/material/templates/.icons/fontawesome/regular/calendar-plus.svg +1 -0
  956. docsforge/themes/material/templates/.icons/fontawesome/regular/calendar-times.svg +1 -0
  957. docsforge/themes/material/templates/.icons/fontawesome/regular/calendar-xmark.svg +1 -0
  958. docsforge/themes/material/templates/.icons/fontawesome/regular/calendar.svg +1 -0
  959. docsforge/themes/material/templates/.icons/fontawesome/regular/camera-alt.svg +1 -0
  960. docsforge/themes/material/templates/.icons/fontawesome/regular/camera.svg +1 -0
  961. docsforge/themes/material/templates/.icons/fontawesome/regular/caret-square-down.svg +1 -0
  962. docsforge/themes/material/templates/.icons/fontawesome/regular/caret-square-left.svg +1 -0
  963. docsforge/themes/material/templates/.icons/fontawesome/regular/caret-square-right.svg +1 -0
  964. docsforge/themes/material/templates/.icons/fontawesome/regular/caret-square-up.svg +1 -0
  965. docsforge/themes/material/templates/.icons/fontawesome/regular/chart-bar.svg +1 -0
  966. docsforge/themes/material/templates/.icons/fontawesome/regular/check-circle.svg +1 -0
  967. docsforge/themes/material/templates/.icons/fontawesome/regular/check-square.svg +1 -0
  968. docsforge/themes/material/templates/.icons/fontawesome/regular/chess-bishop.svg +1 -0
  969. docsforge/themes/material/templates/.icons/fontawesome/regular/chess-king.svg +1 -0
  970. docsforge/themes/material/templates/.icons/fontawesome/regular/chess-knight.svg +1 -0
  971. docsforge/themes/material/templates/.icons/fontawesome/regular/chess-pawn.svg +1 -0
  972. docsforge/themes/material/templates/.icons/fontawesome/regular/chess-queen.svg +1 -0
  973. docsforge/themes/material/templates/.icons/fontawesome/regular/chess-rook.svg +1 -0
  974. docsforge/themes/material/templates/.icons/fontawesome/regular/circle-check.svg +1 -0
  975. docsforge/themes/material/templates/.icons/fontawesome/regular/circle-dot.svg +1 -0
  976. docsforge/themes/material/templates/.icons/fontawesome/regular/circle-down.svg +1 -0
  977. docsforge/themes/material/templates/.icons/fontawesome/regular/circle-left.svg +1 -0
  978. docsforge/themes/material/templates/.icons/fontawesome/regular/circle-pause.svg +1 -0
  979. docsforge/themes/material/templates/.icons/fontawesome/regular/circle-play.svg +1 -0
  980. docsforge/themes/material/templates/.icons/fontawesome/regular/circle-question.svg +1 -0
  981. docsforge/themes/material/templates/.icons/fontawesome/regular/circle-right.svg +1 -0
  982. docsforge/themes/material/templates/.icons/fontawesome/regular/circle-stop.svg +1 -0
  983. docsforge/themes/material/templates/.icons/fontawesome/regular/circle-up.svg +1 -0
  984. docsforge/themes/material/templates/.icons/fontawesome/regular/circle-user.svg +1 -0
  985. docsforge/themes/material/templates/.icons/fontawesome/regular/circle-xmark.svg +1 -0
  986. docsforge/themes/material/templates/.icons/fontawesome/regular/circle.svg +1 -0
  987. docsforge/themes/material/templates/.icons/fontawesome/regular/clipboard.svg +1 -0
  988. docsforge/themes/material/templates/.icons/fontawesome/regular/clock-four.svg +1 -0
  989. docsforge/themes/material/templates/.icons/fontawesome/regular/clock.svg +1 -0
  990. docsforge/themes/material/templates/.icons/fontawesome/regular/clone.svg +1 -0
  991. docsforge/themes/material/templates/.icons/fontawesome/regular/closed-captioning.svg +1 -0
  992. docsforge/themes/material/templates/.icons/fontawesome/regular/cloud.svg +1 -0
  993. docsforge/themes/material/templates/.icons/fontawesome/regular/comment-alt.svg +1 -0
  994. docsforge/themes/material/templates/.icons/fontawesome/regular/comment-dots.svg +1 -0
  995. docsforge/themes/material/templates/.icons/fontawesome/regular/comment.svg +1 -0
  996. docsforge/themes/material/templates/.icons/fontawesome/regular/commenting.svg +1 -0
  997. docsforge/themes/material/templates/.icons/fontawesome/regular/comments.svg +1 -0
  998. docsforge/themes/material/templates/.icons/fontawesome/regular/compass.svg +1 -0
  999. docsforge/themes/material/templates/.icons/fontawesome/regular/contact-book.svg +1 -0
  1000. docsforge/themes/material/templates/.icons/fontawesome/regular/contact-card.svg +1 -0
  1001. docsforge/themes/material/templates/.icons/fontawesome/regular/copy.svg +1 -0
  1002. docsforge/themes/material/templates/.icons/fontawesome/regular/copyright.svg +1 -0
  1003. docsforge/themes/material/templates/.icons/fontawesome/regular/credit-card-alt.svg +1 -0
  1004. docsforge/themes/material/templates/.icons/fontawesome/regular/credit-card.svg +1 -0
  1005. docsforge/themes/material/templates/.icons/fontawesome/regular/dizzy.svg +1 -0
  1006. docsforge/themes/material/templates/.icons/fontawesome/regular/dot-circle.svg +1 -0
  1007. docsforge/themes/material/templates/.icons/fontawesome/regular/drivers-license.svg +1 -0
  1008. docsforge/themes/material/templates/.icons/fontawesome/regular/edit.svg +1 -0
  1009. docsforge/themes/material/templates/.icons/fontawesome/regular/envelope-open.svg +1 -0
  1010. docsforge/themes/material/templates/.icons/fontawesome/regular/envelope.svg +1 -0
  1011. docsforge/themes/material/templates/.icons/fontawesome/regular/eye-slash.svg +1 -0
  1012. docsforge/themes/material/templates/.icons/fontawesome/regular/eye.svg +1 -0
  1013. docsforge/themes/material/templates/.icons/fontawesome/regular/face-angry.svg +1 -0
  1014. docsforge/themes/material/templates/.icons/fontawesome/regular/face-dizzy.svg +1 -0
  1015. docsforge/themes/material/templates/.icons/fontawesome/regular/face-flushed.svg +1 -0
  1016. docsforge/themes/material/templates/.icons/fontawesome/regular/face-frown-open.svg +1 -0
  1017. docsforge/themes/material/templates/.icons/fontawesome/regular/face-frown.svg +1 -0
  1018. docsforge/themes/material/templates/.icons/fontawesome/regular/face-grimace.svg +1 -0
  1019. docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-beam-sweat.svg +1 -0
  1020. docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-beam.svg +1 -0
  1021. docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-hearts.svg +1 -0
  1022. docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-squint-tears.svg +1 -0
  1023. docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-squint.svg +1 -0
  1024. docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-stars.svg +1 -0
  1025. docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-tears.svg +1 -0
  1026. docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-tongue-squint.svg +1 -0
  1027. docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-tongue-wink.svg +1 -0
  1028. docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-tongue.svg +1 -0
  1029. docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-wide.svg +1 -0
  1030. docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-wink.svg +1 -0
  1031. docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin.svg +1 -0
  1032. docsforge/themes/material/templates/.icons/fontawesome/regular/face-kiss-beam.svg +1 -0
  1033. docsforge/themes/material/templates/.icons/fontawesome/regular/face-kiss-wink-heart.svg +1 -0
  1034. docsforge/themes/material/templates/.icons/fontawesome/regular/face-kiss.svg +1 -0
  1035. docsforge/themes/material/templates/.icons/fontawesome/regular/face-laugh-beam.svg +1 -0
  1036. docsforge/themes/material/templates/.icons/fontawesome/regular/face-laugh-squint.svg +1 -0
  1037. docsforge/themes/material/templates/.icons/fontawesome/regular/face-laugh-wink.svg +1 -0
  1038. docsforge/themes/material/templates/.icons/fontawesome/regular/face-laugh.svg +1 -0
  1039. docsforge/themes/material/templates/.icons/fontawesome/regular/face-meh-blank.svg +1 -0
  1040. docsforge/themes/material/templates/.icons/fontawesome/regular/face-meh.svg +1 -0
  1041. docsforge/themes/material/templates/.icons/fontawesome/regular/face-rolling-eyes.svg +1 -0
  1042. docsforge/themes/material/templates/.icons/fontawesome/regular/face-sad-cry.svg +1 -0
  1043. docsforge/themes/material/templates/.icons/fontawesome/regular/face-sad-tear.svg +1 -0
  1044. docsforge/themes/material/templates/.icons/fontawesome/regular/face-smile-beam.svg +1 -0
  1045. docsforge/themes/material/templates/.icons/fontawesome/regular/face-smile-wink.svg +1 -0
  1046. docsforge/themes/material/templates/.icons/fontawesome/regular/face-smile.svg +1 -0
  1047. docsforge/themes/material/templates/.icons/fontawesome/regular/face-surprise.svg +1 -0
  1048. docsforge/themes/material/templates/.icons/fontawesome/regular/face-tired.svg +1 -0
  1049. docsforge/themes/material/templates/.icons/fontawesome/regular/file-alt.svg +1 -0
  1050. docsforge/themes/material/templates/.icons/fontawesome/regular/file-archive.svg +1 -0
  1051. docsforge/themes/material/templates/.icons/fontawesome/regular/file-audio.svg +1 -0
  1052. docsforge/themes/material/templates/.icons/fontawesome/regular/file-clipboard.svg +1 -0
  1053. docsforge/themes/material/templates/.icons/fontawesome/regular/file-code.svg +1 -0
  1054. docsforge/themes/material/templates/.icons/fontawesome/regular/file-excel.svg +1 -0
  1055. docsforge/themes/material/templates/.icons/fontawesome/regular/file-image.svg +1 -0
  1056. docsforge/themes/material/templates/.icons/fontawesome/regular/file-lines.svg +1 -0
  1057. docsforge/themes/material/templates/.icons/fontawesome/regular/file-pdf.svg +1 -0
  1058. docsforge/themes/material/templates/.icons/fontawesome/regular/file-powerpoint.svg +1 -0
  1059. docsforge/themes/material/templates/.icons/fontawesome/regular/file-text.svg +1 -0
  1060. docsforge/themes/material/templates/.icons/fontawesome/regular/file-video.svg +1 -0
  1061. docsforge/themes/material/templates/.icons/fontawesome/regular/file-word.svg +1 -0
  1062. docsforge/themes/material/templates/.icons/fontawesome/regular/file-zipper.svg +1 -0
  1063. docsforge/themes/material/templates/.icons/fontawesome/regular/file.svg +1 -0
  1064. docsforge/themes/material/templates/.icons/fontawesome/regular/flag.svg +1 -0
  1065. docsforge/themes/material/templates/.icons/fontawesome/regular/floppy-disk.svg +1 -0
  1066. docsforge/themes/material/templates/.icons/fontawesome/regular/flushed.svg +1 -0
  1067. docsforge/themes/material/templates/.icons/fontawesome/regular/folder-blank.svg +1 -0
  1068. docsforge/themes/material/templates/.icons/fontawesome/regular/folder-closed.svg +1 -0
  1069. docsforge/themes/material/templates/.icons/fontawesome/regular/folder-open.svg +1 -0
  1070. docsforge/themes/material/templates/.icons/fontawesome/regular/folder.svg +1 -0
  1071. docsforge/themes/material/templates/.icons/fontawesome/regular/font-awesome-flag.svg +1 -0
  1072. docsforge/themes/material/templates/.icons/fontawesome/regular/font-awesome-logo-full.svg +1 -0
  1073. docsforge/themes/material/templates/.icons/fontawesome/regular/font-awesome.svg +1 -0
  1074. docsforge/themes/material/templates/.icons/fontawesome/regular/frown-open.svg +1 -0
  1075. docsforge/themes/material/templates/.icons/fontawesome/regular/frown.svg +1 -0
  1076. docsforge/themes/material/templates/.icons/fontawesome/regular/futbol-ball.svg +1 -0
  1077. docsforge/themes/material/templates/.icons/fontawesome/regular/futbol.svg +1 -0
  1078. docsforge/themes/material/templates/.icons/fontawesome/regular/gem.svg +1 -0
  1079. docsforge/themes/material/templates/.icons/fontawesome/regular/grimace.svg +1 -0
  1080. docsforge/themes/material/templates/.icons/fontawesome/regular/grin-alt.svg +1 -0
  1081. docsforge/themes/material/templates/.icons/fontawesome/regular/grin-beam-sweat.svg +1 -0
  1082. docsforge/themes/material/templates/.icons/fontawesome/regular/grin-beam.svg +1 -0
  1083. docsforge/themes/material/templates/.icons/fontawesome/regular/grin-hearts.svg +1 -0
  1084. docsforge/themes/material/templates/.icons/fontawesome/regular/grin-squint-tears.svg +1 -0
  1085. docsforge/themes/material/templates/.icons/fontawesome/regular/grin-squint.svg +1 -0
  1086. docsforge/themes/material/templates/.icons/fontawesome/regular/grin-stars.svg +1 -0
  1087. docsforge/themes/material/templates/.icons/fontawesome/regular/grin-tears.svg +1 -0
  1088. docsforge/themes/material/templates/.icons/fontawesome/regular/grin-tongue-squint.svg +1 -0
  1089. docsforge/themes/material/templates/.icons/fontawesome/regular/grin-tongue-wink.svg +1 -0
  1090. docsforge/themes/material/templates/.icons/fontawesome/regular/grin-tongue.svg +1 -0
  1091. docsforge/themes/material/templates/.icons/fontawesome/regular/grin-wink.svg +1 -0
  1092. docsforge/themes/material/templates/.icons/fontawesome/regular/grin.svg +1 -0
  1093. docsforge/themes/material/templates/.icons/fontawesome/regular/hand-back-fist.svg +1 -0
  1094. docsforge/themes/material/templates/.icons/fontawesome/regular/hand-lizard.svg +1 -0
  1095. docsforge/themes/material/templates/.icons/fontawesome/regular/hand-paper.svg +1 -0
  1096. docsforge/themes/material/templates/.icons/fontawesome/regular/hand-peace.svg +1 -0
  1097. docsforge/themes/material/templates/.icons/fontawesome/regular/hand-point-down.svg +1 -0
  1098. docsforge/themes/material/templates/.icons/fontawesome/regular/hand-point-left.svg +1 -0
  1099. docsforge/themes/material/templates/.icons/fontawesome/regular/hand-point-right.svg +1 -0
  1100. docsforge/themes/material/templates/.icons/fontawesome/regular/hand-point-up.svg +1 -0
  1101. docsforge/themes/material/templates/.icons/fontawesome/regular/hand-pointer.svg +1 -0
  1102. docsforge/themes/material/templates/.icons/fontawesome/regular/hand-rock.svg +1 -0
  1103. docsforge/themes/material/templates/.icons/fontawesome/regular/hand-scissors.svg +1 -0
  1104. docsforge/themes/material/templates/.icons/fontawesome/regular/hand-spock.svg +1 -0
  1105. docsforge/themes/material/templates/.icons/fontawesome/regular/hand.svg +1 -0
  1106. docsforge/themes/material/templates/.icons/fontawesome/regular/handshake-alt.svg +1 -0
  1107. docsforge/themes/material/templates/.icons/fontawesome/regular/handshake-simple.svg +1 -0
  1108. docsforge/themes/material/templates/.icons/fontawesome/regular/handshake.svg +1 -0
  1109. docsforge/themes/material/templates/.icons/fontawesome/regular/hard-drive.svg +1 -0
  1110. docsforge/themes/material/templates/.icons/fontawesome/regular/hdd.svg +1 -0
  1111. docsforge/themes/material/templates/.icons/fontawesome/regular/headphones-alt.svg +1 -0
  1112. docsforge/themes/material/templates/.icons/fontawesome/regular/headphones-simple.svg +1 -0
  1113. docsforge/themes/material/templates/.icons/fontawesome/regular/headphones.svg +1 -0
  1114. docsforge/themes/material/templates/.icons/fontawesome/regular/heart.svg +1 -0
  1115. docsforge/themes/material/templates/.icons/fontawesome/regular/home-alt.svg +1 -0
  1116. docsforge/themes/material/templates/.icons/fontawesome/regular/home-lg-alt.svg +1 -0
  1117. docsforge/themes/material/templates/.icons/fontawesome/regular/home.svg +1 -0
  1118. docsforge/themes/material/templates/.icons/fontawesome/regular/hospital-alt.svg +1 -0
  1119. docsforge/themes/material/templates/.icons/fontawesome/regular/hospital-wide.svg +1 -0
  1120. docsforge/themes/material/templates/.icons/fontawesome/regular/hospital.svg +1 -0
  1121. docsforge/themes/material/templates/.icons/fontawesome/regular/hourglass-2.svg +1 -0
  1122. docsforge/themes/material/templates/.icons/fontawesome/regular/hourglass-empty.svg +1 -0
  1123. docsforge/themes/material/templates/.icons/fontawesome/regular/hourglass-half.svg +1 -0
  1124. docsforge/themes/material/templates/.icons/fontawesome/regular/hourglass.svg +1 -0
  1125. docsforge/themes/material/templates/.icons/fontawesome/regular/house.svg +1 -0
  1126. docsforge/themes/material/templates/.icons/fontawesome/regular/id-badge.svg +1 -0
  1127. docsforge/themes/material/templates/.icons/fontawesome/regular/id-card.svg +1 -0
  1128. docsforge/themes/material/templates/.icons/fontawesome/regular/image.svg +1 -0
  1129. docsforge/themes/material/templates/.icons/fontawesome/regular/images.svg +1 -0
  1130. docsforge/themes/material/templates/.icons/fontawesome/regular/keyboard.svg +1 -0
  1131. docsforge/themes/material/templates/.icons/fontawesome/regular/kiss-beam.svg +1 -0
  1132. docsforge/themes/material/templates/.icons/fontawesome/regular/kiss-wink-heart.svg +1 -0
  1133. docsforge/themes/material/templates/.icons/fontawesome/regular/kiss.svg +1 -0
  1134. docsforge/themes/material/templates/.icons/fontawesome/regular/laugh-beam.svg +1 -0
  1135. docsforge/themes/material/templates/.icons/fontawesome/regular/laugh-squint.svg +1 -0
  1136. docsforge/themes/material/templates/.icons/fontawesome/regular/laugh-wink.svg +1 -0
  1137. docsforge/themes/material/templates/.icons/fontawesome/regular/laugh.svg +1 -0
  1138. docsforge/themes/material/templates/.icons/fontawesome/regular/lemon.svg +1 -0
  1139. docsforge/themes/material/templates/.icons/fontawesome/regular/life-ring.svg +1 -0
  1140. docsforge/themes/material/templates/.icons/fontawesome/regular/lightbulb.svg +1 -0
  1141. docsforge/themes/material/templates/.icons/fontawesome/regular/list-alt.svg +1 -0
  1142. docsforge/themes/material/templates/.icons/fontawesome/regular/map.svg +1 -0
  1143. docsforge/themes/material/templates/.icons/fontawesome/regular/meh-blank.svg +1 -0
  1144. docsforge/themes/material/templates/.icons/fontawesome/regular/meh-rolling-eyes.svg +1 -0
  1145. docsforge/themes/material/templates/.icons/fontawesome/regular/meh.svg +1 -0
  1146. docsforge/themes/material/templates/.icons/fontawesome/regular/message.svg +1 -0
  1147. docsforge/themes/material/templates/.icons/fontawesome/regular/minus-square.svg +1 -0
  1148. docsforge/themes/material/templates/.icons/fontawesome/regular/money-bill-1.svg +1 -0
  1149. docsforge/themes/material/templates/.icons/fontawesome/regular/money-bill-alt.svg +1 -0
  1150. docsforge/themes/material/templates/.icons/fontawesome/regular/moon.svg +1 -0
  1151. docsforge/themes/material/templates/.icons/fontawesome/regular/newspaper.svg +1 -0
  1152. docsforge/themes/material/templates/.icons/fontawesome/regular/note-sticky.svg +1 -0
  1153. docsforge/themes/material/templates/.icons/fontawesome/regular/object-group.svg +1 -0
  1154. docsforge/themes/material/templates/.icons/fontawesome/regular/object-ungroup.svg +1 -0
  1155. docsforge/themes/material/templates/.icons/fontawesome/regular/paper-plane.svg +1 -0
  1156. docsforge/themes/material/templates/.icons/fontawesome/regular/paste.svg +1 -0
  1157. docsforge/themes/material/templates/.icons/fontawesome/regular/pause-circle.svg +1 -0
  1158. docsforge/themes/material/templates/.icons/fontawesome/regular/pen-to-square.svg +1 -0
  1159. docsforge/themes/material/templates/.icons/fontawesome/regular/play-circle.svg +1 -0
  1160. docsforge/themes/material/templates/.icons/fontawesome/regular/plus-square.svg +1 -0
  1161. docsforge/themes/material/templates/.icons/fontawesome/regular/question-circle.svg +1 -0
  1162. docsforge/themes/material/templates/.icons/fontawesome/regular/rectangle-list.svg +1 -0
  1163. docsforge/themes/material/templates/.icons/fontawesome/regular/rectangle-times.svg +1 -0
  1164. docsforge/themes/material/templates/.icons/fontawesome/regular/rectangle-xmark.svg +1 -0
  1165. docsforge/themes/material/templates/.icons/fontawesome/regular/registered.svg +1 -0
  1166. docsforge/themes/material/templates/.icons/fontawesome/regular/sad-cry.svg +1 -0
  1167. docsforge/themes/material/templates/.icons/fontawesome/regular/sad-tear.svg +1 -0
  1168. docsforge/themes/material/templates/.icons/fontawesome/regular/save.svg +1 -0
  1169. docsforge/themes/material/templates/.icons/fontawesome/regular/share-from-square.svg +1 -0
  1170. docsforge/themes/material/templates/.icons/fontawesome/regular/share-square.svg +1 -0
  1171. docsforge/themes/material/templates/.icons/fontawesome/regular/smile-beam.svg +1 -0
  1172. docsforge/themes/material/templates/.icons/fontawesome/regular/smile-wink.svg +1 -0
  1173. docsforge/themes/material/templates/.icons/fontawesome/regular/smile.svg +1 -0
  1174. docsforge/themes/material/templates/.icons/fontawesome/regular/snowflake.svg +1 -0
  1175. docsforge/themes/material/templates/.icons/fontawesome/regular/soccer-ball.svg +1 -0
  1176. docsforge/themes/material/templates/.icons/fontawesome/regular/square-caret-down.svg +1 -0
  1177. docsforge/themes/material/templates/.icons/fontawesome/regular/square-caret-left.svg +1 -0
  1178. docsforge/themes/material/templates/.icons/fontawesome/regular/square-caret-right.svg +1 -0
  1179. docsforge/themes/material/templates/.icons/fontawesome/regular/square-caret-up.svg +1 -0
  1180. docsforge/themes/material/templates/.icons/fontawesome/regular/square-check.svg +1 -0
  1181. docsforge/themes/material/templates/.icons/fontawesome/regular/square-full.svg +1 -0
  1182. docsforge/themes/material/templates/.icons/fontawesome/regular/square-minus.svg +1 -0
  1183. docsforge/themes/material/templates/.icons/fontawesome/regular/square-plus.svg +1 -0
  1184. docsforge/themes/material/templates/.icons/fontawesome/regular/square.svg +1 -0
  1185. docsforge/themes/material/templates/.icons/fontawesome/regular/star-half-alt.svg +1 -0
  1186. docsforge/themes/material/templates/.icons/fontawesome/regular/star-half-stroke.svg +1 -0
  1187. docsforge/themes/material/templates/.icons/fontawesome/regular/star-half.svg +1 -0
  1188. docsforge/themes/material/templates/.icons/fontawesome/regular/star.svg +1 -0
  1189. docsforge/themes/material/templates/.icons/fontawesome/regular/sticky-note.svg +1 -0
  1190. docsforge/themes/material/templates/.icons/fontawesome/regular/stop-circle.svg +1 -0
  1191. docsforge/themes/material/templates/.icons/fontawesome/regular/sun.svg +1 -0
  1192. docsforge/themes/material/templates/.icons/fontawesome/regular/surprise.svg +1 -0
  1193. docsforge/themes/material/templates/.icons/fontawesome/regular/thumbs-down.svg +1 -0
  1194. docsforge/themes/material/templates/.icons/fontawesome/regular/thumbs-up.svg +1 -0
  1195. docsforge/themes/material/templates/.icons/fontawesome/regular/times-circle.svg +1 -0
  1196. docsforge/themes/material/templates/.icons/fontawesome/regular/times-rectangle.svg +1 -0
  1197. docsforge/themes/material/templates/.icons/fontawesome/regular/tired.svg +1 -0
  1198. docsforge/themes/material/templates/.icons/fontawesome/regular/trash-alt.svg +1 -0
  1199. docsforge/themes/material/templates/.icons/fontawesome/regular/trash-can.svg +1 -0
  1200. docsforge/themes/material/templates/.icons/fontawesome/regular/truck.svg +1 -0
  1201. docsforge/themes/material/templates/.icons/fontawesome/regular/user-alt.svg +1 -0
  1202. docsforge/themes/material/templates/.icons/fontawesome/regular/user-circle.svg +1 -0
  1203. docsforge/themes/material/templates/.icons/fontawesome/regular/user-large.svg +1 -0
  1204. docsforge/themes/material/templates/.icons/fontawesome/regular/user.svg +1 -0
  1205. docsforge/themes/material/templates/.icons/fontawesome/regular/vcard.svg +1 -0
  1206. docsforge/themes/material/templates/.icons/fontawesome/regular/window-close.svg +1 -0
  1207. docsforge/themes/material/templates/.icons/fontawesome/regular/window-maximize.svg +1 -0
  1208. docsforge/themes/material/templates/.icons/fontawesome/regular/window-minimize.svg +1 -0
  1209. docsforge/themes/material/templates/.icons/fontawesome/regular/window-restore.svg +1 -0
  1210. docsforge/themes/material/templates/.icons/fontawesome/regular/xmark-circle.svg +1 -0
  1211. docsforge/themes/material/templates/.icons/fontawesome/solid/0.svg +1 -0
  1212. docsforge/themes/material/templates/.icons/fontawesome/solid/1.svg +1 -0
  1213. docsforge/themes/material/templates/.icons/fontawesome/solid/2.svg +1 -0
  1214. docsforge/themes/material/templates/.icons/fontawesome/solid/3.svg +1 -0
  1215. docsforge/themes/material/templates/.icons/fontawesome/solid/4.svg +1 -0
  1216. docsforge/themes/material/templates/.icons/fontawesome/solid/5.svg +1 -0
  1217. docsforge/themes/material/templates/.icons/fontawesome/solid/6.svg +1 -0
  1218. docsforge/themes/material/templates/.icons/fontawesome/solid/7.svg +1 -0
  1219. docsforge/themes/material/templates/.icons/fontawesome/solid/8.svg +1 -0
  1220. docsforge/themes/material/templates/.icons/fontawesome/solid/9.svg +1 -0
  1221. docsforge/themes/material/templates/.icons/fontawesome/solid/a.svg +1 -0
  1222. docsforge/themes/material/templates/.icons/fontawesome/solid/ad.svg +1 -0
  1223. docsforge/themes/material/templates/.icons/fontawesome/solid/add.svg +1 -0
  1224. docsforge/themes/material/templates/.icons/fontawesome/solid/address-book.svg +1 -0
  1225. docsforge/themes/material/templates/.icons/fontawesome/solid/address-card.svg +1 -0
  1226. docsforge/themes/material/templates/.icons/fontawesome/solid/adjust.svg +1 -0
  1227. docsforge/themes/material/templates/.icons/fontawesome/solid/air-freshener.svg +1 -0
  1228. docsforge/themes/material/templates/.icons/fontawesome/solid/alarm-clock.svg +1 -0
  1229. docsforge/themes/material/templates/.icons/fontawesome/solid/align-center.svg +1 -0
  1230. docsforge/themes/material/templates/.icons/fontawesome/solid/align-justify.svg +1 -0
  1231. docsforge/themes/material/templates/.icons/fontawesome/solid/align-left.svg +1 -0
  1232. docsforge/themes/material/templates/.icons/fontawesome/solid/align-right.svg +1 -0
  1233. docsforge/themes/material/templates/.icons/fontawesome/solid/allergies.svg +1 -0
  1234. docsforge/themes/material/templates/.icons/fontawesome/solid/ambulance.svg +1 -0
  1235. docsforge/themes/material/templates/.icons/fontawesome/solid/american-sign-language-interpreting.svg +1 -0
  1236. docsforge/themes/material/templates/.icons/fontawesome/solid/anchor-circle-check.svg +1 -0
  1237. docsforge/themes/material/templates/.icons/fontawesome/solid/anchor-circle-exclamation.svg +1 -0
  1238. docsforge/themes/material/templates/.icons/fontawesome/solid/anchor-circle-xmark.svg +1 -0
  1239. docsforge/themes/material/templates/.icons/fontawesome/solid/anchor-lock.svg +1 -0
  1240. docsforge/themes/material/templates/.icons/fontawesome/solid/anchor.svg +1 -0
  1241. docsforge/themes/material/templates/.icons/fontawesome/solid/angle-double-down.svg +1 -0
  1242. docsforge/themes/material/templates/.icons/fontawesome/solid/angle-double-left.svg +1 -0
  1243. docsforge/themes/material/templates/.icons/fontawesome/solid/angle-double-right.svg +1 -0
  1244. docsforge/themes/material/templates/.icons/fontawesome/solid/angle-double-up.svg +1 -0
  1245. docsforge/themes/material/templates/.icons/fontawesome/solid/angle-down.svg +1 -0
  1246. docsforge/themes/material/templates/.icons/fontawesome/solid/angle-left.svg +1 -0
  1247. docsforge/themes/material/templates/.icons/fontawesome/solid/angle-right.svg +1 -0
  1248. docsforge/themes/material/templates/.icons/fontawesome/solid/angle-up.svg +1 -0
  1249. docsforge/themes/material/templates/.icons/fontawesome/solid/angles-down.svg +1 -0
  1250. docsforge/themes/material/templates/.icons/fontawesome/solid/angles-left.svg +1 -0
  1251. docsforge/themes/material/templates/.icons/fontawesome/solid/angles-right.svg +1 -0
  1252. docsforge/themes/material/templates/.icons/fontawesome/solid/angles-up.svg +1 -0
  1253. docsforge/themes/material/templates/.icons/fontawesome/solid/angry.svg +1 -0
  1254. docsforge/themes/material/templates/.icons/fontawesome/solid/ankh.svg +1 -0
  1255. docsforge/themes/material/templates/.icons/fontawesome/solid/apple-alt.svg +1 -0
  1256. docsforge/themes/material/templates/.icons/fontawesome/solid/apple-whole.svg +1 -0
  1257. docsforge/themes/material/templates/.icons/fontawesome/solid/archive.svg +1 -0
  1258. docsforge/themes/material/templates/.icons/fontawesome/solid/archway.svg +1 -0
  1259. docsforge/themes/material/templates/.icons/fontawesome/solid/area-chart.svg +1 -0
  1260. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-alt-circle-down.svg +1 -0
  1261. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-alt-circle-left.svg +1 -0
  1262. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-alt-circle-right.svg +1 -0
  1263. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-alt-circle-up.svg +1 -0
  1264. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-circle-down.svg +1 -0
  1265. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-circle-left.svg +1 -0
  1266. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-circle-right.svg +1 -0
  1267. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-circle-up.svg +1 -0
  1268. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-1-9.svg +1 -0
  1269. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-9-1.svg +1 -0
  1270. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-a-z.svg +1 -0
  1271. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-long.svg +1 -0
  1272. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-short-wide.svg +1 -0
  1273. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-up-across-line.svg +1 -0
  1274. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-up-lock.svg +1 -0
  1275. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-wide-short.svg +1 -0
  1276. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-z-a.svg +1 -0
  1277. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down.svg +1 -0
  1278. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-left-long.svg +1 -0
  1279. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-left-rotate.svg +1 -0
  1280. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-left.svg +1 -0
  1281. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-pointer.svg +1 -0
  1282. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right-arrow-left.svg +1 -0
  1283. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right-from-bracket.svg +1 -0
  1284. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right-from-file.svg +1 -0
  1285. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right-long.svg +1 -0
  1286. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right-rotate.svg +1 -0
  1287. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right-to-bracket.svg +1 -0
  1288. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right-to-city.svg +1 -0
  1289. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right-to-file.svg +1 -0
  1290. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right.svg +1 -0
  1291. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-rotate-back.svg +1 -0
  1292. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-rotate-backward.svg +1 -0
  1293. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-rotate-forward.svg +1 -0
  1294. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-rotate-left.svg +1 -0
  1295. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-rotate-right.svg +1 -0
  1296. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-trend-down.svg +1 -0
  1297. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-trend-up.svg +1 -0
  1298. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-turn-down.svg +1 -0
  1299. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-turn-up.svg +1 -0
  1300. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-1-9.svg +1 -0
  1301. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-9-1.svg +1 -0
  1302. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-a-z.svg +1 -0
  1303. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-from-bracket.svg +1 -0
  1304. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-from-ground-water.svg +1 -0
  1305. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-from-water-pump.svg +1 -0
  1306. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-long.svg +1 -0
  1307. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-right-dots.svg +1 -0
  1308. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-right-from-square.svg +1 -0
  1309. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-short-wide.svg +1 -0
  1310. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-wide-short.svg +1 -0
  1311. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-z-a.svg +1 -0
  1312. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up.svg +1 -0
  1313. docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-alt-h.svg +1 -0
  1314. docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-alt-v.svg +1 -0
  1315. docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-alt.svg +1 -0
  1316. docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-down-to-line.svg +1 -0
  1317. docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-down-to-people.svg +1 -0
  1318. docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-h.svg +1 -0
  1319. docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-left-right-to-line.svg +1 -0
  1320. docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-left-right.svg +1 -0
  1321. docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-rotate.svg +1 -0
  1322. docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-spin.svg +1 -0
  1323. docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-split-up-and-left.svg +1 -0
  1324. docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-to-circle.svg +1 -0
  1325. docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-to-dot.svg +1 -0
  1326. docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-to-eye.svg +1 -0
  1327. docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-turn-right.svg +1 -0
  1328. docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-turn-to-dots.svg +1 -0
  1329. docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-up-down-left-right.svg +1 -0
  1330. docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-up-down.svg +1 -0
  1331. docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-up-to-line.svg +1 -0
  1332. docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-v.svg +1 -0
  1333. docsforge/themes/material/templates/.icons/fontawesome/solid/arrows.svg +1 -0
  1334. docsforge/themes/material/templates/.icons/fontawesome/solid/asl-interpreting.svg +1 -0
  1335. docsforge/themes/material/templates/.icons/fontawesome/solid/assistive-listening-systems.svg +1 -0
  1336. docsforge/themes/material/templates/.icons/fontawesome/solid/asterisk.svg +1 -0
  1337. docsforge/themes/material/templates/.icons/fontawesome/solid/at.svg +1 -0
  1338. docsforge/themes/material/templates/.icons/fontawesome/solid/atlas.svg +1 -0
  1339. docsforge/themes/material/templates/.icons/fontawesome/solid/atom.svg +1 -0
  1340. docsforge/themes/material/templates/.icons/fontawesome/solid/audio-description.svg +1 -0
  1341. docsforge/themes/material/templates/.icons/fontawesome/solid/austral-sign.svg +1 -0
  1342. docsforge/themes/material/templates/.icons/fontawesome/solid/automobile.svg +1 -0
  1343. docsforge/themes/material/templates/.icons/fontawesome/solid/award.svg +1 -0
  1344. docsforge/themes/material/templates/.icons/fontawesome/solid/b.svg +1 -0
  1345. docsforge/themes/material/templates/.icons/fontawesome/solid/baby-carriage.svg +1 -0
  1346. docsforge/themes/material/templates/.icons/fontawesome/solid/baby.svg +1 -0
  1347. docsforge/themes/material/templates/.icons/fontawesome/solid/backspace.svg +1 -0
  1348. docsforge/themes/material/templates/.icons/fontawesome/solid/backward-fast.svg +1 -0
  1349. docsforge/themes/material/templates/.icons/fontawesome/solid/backward-step.svg +1 -0
  1350. docsforge/themes/material/templates/.icons/fontawesome/solid/backward.svg +1 -0
  1351. docsforge/themes/material/templates/.icons/fontawesome/solid/bacon.svg +1 -0
  1352. docsforge/themes/material/templates/.icons/fontawesome/solid/bacteria.svg +1 -0
  1353. docsforge/themes/material/templates/.icons/fontawesome/solid/bacterium.svg +1 -0
  1354. docsforge/themes/material/templates/.icons/fontawesome/solid/bag-shopping.svg +1 -0
  1355. docsforge/themes/material/templates/.icons/fontawesome/solid/bahai.svg +1 -0
  1356. docsforge/themes/material/templates/.icons/fontawesome/solid/baht-sign.svg +1 -0
  1357. docsforge/themes/material/templates/.icons/fontawesome/solid/balance-scale-left.svg +1 -0
  1358. docsforge/themes/material/templates/.icons/fontawesome/solid/balance-scale-right.svg +1 -0
  1359. docsforge/themes/material/templates/.icons/fontawesome/solid/balance-scale.svg +1 -0
  1360. docsforge/themes/material/templates/.icons/fontawesome/solid/ban-smoking.svg +1 -0
  1361. docsforge/themes/material/templates/.icons/fontawesome/solid/ban.svg +1 -0
  1362. docsforge/themes/material/templates/.icons/fontawesome/solid/band-aid.svg +1 -0
  1363. docsforge/themes/material/templates/.icons/fontawesome/solid/bandage.svg +1 -0
  1364. docsforge/themes/material/templates/.icons/fontawesome/solid/bangladeshi-taka-sign.svg +1 -0
  1365. docsforge/themes/material/templates/.icons/fontawesome/solid/bank.svg +1 -0
  1366. docsforge/themes/material/templates/.icons/fontawesome/solid/bar-chart.svg +1 -0
  1367. docsforge/themes/material/templates/.icons/fontawesome/solid/barcode.svg +1 -0
  1368. docsforge/themes/material/templates/.icons/fontawesome/solid/bars-progress.svg +1 -0
  1369. docsforge/themes/material/templates/.icons/fontawesome/solid/bars-staggered.svg +1 -0
  1370. docsforge/themes/material/templates/.icons/fontawesome/solid/bars.svg +1 -0
  1371. docsforge/themes/material/templates/.icons/fontawesome/solid/baseball-ball.svg +1 -0
  1372. docsforge/themes/material/templates/.icons/fontawesome/solid/baseball-bat-ball.svg +1 -0
  1373. docsforge/themes/material/templates/.icons/fontawesome/solid/baseball.svg +1 -0
  1374. docsforge/themes/material/templates/.icons/fontawesome/solid/basket-shopping.svg +1 -0
  1375. docsforge/themes/material/templates/.icons/fontawesome/solid/basketball-ball.svg +1 -0
  1376. docsforge/themes/material/templates/.icons/fontawesome/solid/basketball.svg +1 -0
  1377. docsforge/themes/material/templates/.icons/fontawesome/solid/bath.svg +1 -0
  1378. docsforge/themes/material/templates/.icons/fontawesome/solid/bathtub.svg +1 -0
  1379. docsforge/themes/material/templates/.icons/fontawesome/solid/battery-0.svg +1 -0
  1380. docsforge/themes/material/templates/.icons/fontawesome/solid/battery-2.svg +1 -0
  1381. docsforge/themes/material/templates/.icons/fontawesome/solid/battery-3.svg +1 -0
  1382. docsforge/themes/material/templates/.icons/fontawesome/solid/battery-4.svg +1 -0
  1383. docsforge/themes/material/templates/.icons/fontawesome/solid/battery-5.svg +1 -0
  1384. docsforge/themes/material/templates/.icons/fontawesome/solid/battery-car.svg +1 -0
  1385. docsforge/themes/material/templates/.icons/fontawesome/solid/battery-empty.svg +1 -0
  1386. docsforge/themes/material/templates/.icons/fontawesome/solid/battery-full.svg +1 -0
  1387. docsforge/themes/material/templates/.icons/fontawesome/solid/battery-half.svg +1 -0
  1388. docsforge/themes/material/templates/.icons/fontawesome/solid/battery-quarter.svg +1 -0
  1389. docsforge/themes/material/templates/.icons/fontawesome/solid/battery-three-quarters.svg +1 -0
  1390. docsforge/themes/material/templates/.icons/fontawesome/solid/battery.svg +1 -0
  1391. docsforge/themes/material/templates/.icons/fontawesome/solid/bed-pulse.svg +1 -0
  1392. docsforge/themes/material/templates/.icons/fontawesome/solid/bed.svg +1 -0
  1393. docsforge/themes/material/templates/.icons/fontawesome/solid/beer-mug-empty.svg +1 -0
  1394. docsforge/themes/material/templates/.icons/fontawesome/solid/beer.svg +1 -0
  1395. docsforge/themes/material/templates/.icons/fontawesome/solid/bell-concierge.svg +1 -0
  1396. docsforge/themes/material/templates/.icons/fontawesome/solid/bell-slash.svg +1 -0
  1397. docsforge/themes/material/templates/.icons/fontawesome/solid/bell.svg +1 -0
  1398. docsforge/themes/material/templates/.icons/fontawesome/solid/bezier-curve.svg +1 -0
  1399. docsforge/themes/material/templates/.icons/fontawesome/solid/bible.svg +1 -0
  1400. docsforge/themes/material/templates/.icons/fontawesome/solid/bicycle.svg +1 -0
  1401. docsforge/themes/material/templates/.icons/fontawesome/solid/biking.svg +1 -0
  1402. docsforge/themes/material/templates/.icons/fontawesome/solid/binoculars.svg +1 -0
  1403. docsforge/themes/material/templates/.icons/fontawesome/solid/biohazard.svg +1 -0
  1404. docsforge/themes/material/templates/.icons/fontawesome/solid/birthday-cake.svg +1 -0
  1405. docsforge/themes/material/templates/.icons/fontawesome/solid/bitcoin-sign.svg +1 -0
  1406. docsforge/themes/material/templates/.icons/fontawesome/solid/blackboard.svg +1 -0
  1407. docsforge/themes/material/templates/.icons/fontawesome/solid/blender-phone.svg +1 -0
  1408. docsforge/themes/material/templates/.icons/fontawesome/solid/blender.svg +1 -0
  1409. docsforge/themes/material/templates/.icons/fontawesome/solid/blind.svg +1 -0
  1410. docsforge/themes/material/templates/.icons/fontawesome/solid/blog.svg +1 -0
  1411. docsforge/themes/material/templates/.icons/fontawesome/solid/bold.svg +1 -0
  1412. docsforge/themes/material/templates/.icons/fontawesome/solid/bolt-lightning.svg +1 -0
  1413. docsforge/themes/material/templates/.icons/fontawesome/solid/bolt.svg +1 -0
  1414. docsforge/themes/material/templates/.icons/fontawesome/solid/bomb.svg +1 -0
  1415. docsforge/themes/material/templates/.icons/fontawesome/solid/bone.svg +1 -0
  1416. docsforge/themes/material/templates/.icons/fontawesome/solid/bong.svg +1 -0
  1417. docsforge/themes/material/templates/.icons/fontawesome/solid/book-atlas.svg +1 -0
  1418. docsforge/themes/material/templates/.icons/fontawesome/solid/book-bible.svg +1 -0
  1419. docsforge/themes/material/templates/.icons/fontawesome/solid/book-bookmark.svg +1 -0
  1420. docsforge/themes/material/templates/.icons/fontawesome/solid/book-dead.svg +1 -0
  1421. docsforge/themes/material/templates/.icons/fontawesome/solid/book-journal-whills.svg +1 -0
  1422. docsforge/themes/material/templates/.icons/fontawesome/solid/book-medical.svg +1 -0
  1423. docsforge/themes/material/templates/.icons/fontawesome/solid/book-open-reader.svg +1 -0
  1424. docsforge/themes/material/templates/.icons/fontawesome/solid/book-open.svg +1 -0
  1425. docsforge/themes/material/templates/.icons/fontawesome/solid/book-quran.svg +1 -0
  1426. docsforge/themes/material/templates/.icons/fontawesome/solid/book-reader.svg +1 -0
  1427. docsforge/themes/material/templates/.icons/fontawesome/solid/book-skull.svg +1 -0
  1428. docsforge/themes/material/templates/.icons/fontawesome/solid/book-tanakh.svg +1 -0
  1429. docsforge/themes/material/templates/.icons/fontawesome/solid/book.svg +1 -0
  1430. docsforge/themes/material/templates/.icons/fontawesome/solid/bookmark.svg +1 -0
  1431. docsforge/themes/material/templates/.icons/fontawesome/solid/border-all.svg +1 -0
  1432. docsforge/themes/material/templates/.icons/fontawesome/solid/border-none.svg +1 -0
  1433. docsforge/themes/material/templates/.icons/fontawesome/solid/border-style.svg +1 -0
  1434. docsforge/themes/material/templates/.icons/fontawesome/solid/border-top-left.svg +1 -0
  1435. docsforge/themes/material/templates/.icons/fontawesome/solid/bore-hole.svg +1 -0
  1436. docsforge/themes/material/templates/.icons/fontawesome/solid/bottle-droplet.svg +1 -0
  1437. docsforge/themes/material/templates/.icons/fontawesome/solid/bottle-water.svg +1 -0
  1438. docsforge/themes/material/templates/.icons/fontawesome/solid/bowl-food.svg +1 -0
  1439. docsforge/themes/material/templates/.icons/fontawesome/solid/bowl-rice.svg +1 -0
  1440. docsforge/themes/material/templates/.icons/fontawesome/solid/bowling-ball.svg +1 -0
  1441. docsforge/themes/material/templates/.icons/fontawesome/solid/box-archive.svg +1 -0
  1442. docsforge/themes/material/templates/.icons/fontawesome/solid/box-open.svg +1 -0
  1443. docsforge/themes/material/templates/.icons/fontawesome/solid/box-tissue.svg +1 -0
  1444. docsforge/themes/material/templates/.icons/fontawesome/solid/box.svg +1 -0
  1445. docsforge/themes/material/templates/.icons/fontawesome/solid/boxes-alt.svg +1 -0
  1446. docsforge/themes/material/templates/.icons/fontawesome/solid/boxes-packing.svg +1 -0
  1447. docsforge/themes/material/templates/.icons/fontawesome/solid/boxes-stacked.svg +1 -0
  1448. docsforge/themes/material/templates/.icons/fontawesome/solid/boxes.svg +1 -0
  1449. docsforge/themes/material/templates/.icons/fontawesome/solid/braille.svg +1 -0
  1450. docsforge/themes/material/templates/.icons/fontawesome/solid/brain.svg +1 -0
  1451. docsforge/themes/material/templates/.icons/fontawesome/solid/brazilian-real-sign.svg +1 -0
  1452. docsforge/themes/material/templates/.icons/fontawesome/solid/bread-slice.svg +1 -0
  1453. docsforge/themes/material/templates/.icons/fontawesome/solid/bridge-circle-check.svg +1 -0
  1454. docsforge/themes/material/templates/.icons/fontawesome/solid/bridge-circle-exclamation.svg +1 -0
  1455. docsforge/themes/material/templates/.icons/fontawesome/solid/bridge-circle-xmark.svg +1 -0
  1456. docsforge/themes/material/templates/.icons/fontawesome/solid/bridge-lock.svg +1 -0
  1457. docsforge/themes/material/templates/.icons/fontawesome/solid/bridge-water.svg +1 -0
  1458. docsforge/themes/material/templates/.icons/fontawesome/solid/bridge.svg +1 -0
  1459. docsforge/themes/material/templates/.icons/fontawesome/solid/briefcase-clock.svg +1 -0
  1460. docsforge/themes/material/templates/.icons/fontawesome/solid/briefcase-medical.svg +1 -0
  1461. docsforge/themes/material/templates/.icons/fontawesome/solid/briefcase.svg +1 -0
  1462. docsforge/themes/material/templates/.icons/fontawesome/solid/broadcast-tower.svg +1 -0
  1463. docsforge/themes/material/templates/.icons/fontawesome/solid/broom-ball.svg +1 -0
  1464. docsforge/themes/material/templates/.icons/fontawesome/solid/broom.svg +1 -0
  1465. docsforge/themes/material/templates/.icons/fontawesome/solid/brush.svg +1 -0
  1466. docsforge/themes/material/templates/.icons/fontawesome/solid/bucket.svg +1 -0
  1467. docsforge/themes/material/templates/.icons/fontawesome/solid/bug-slash.svg +1 -0
  1468. docsforge/themes/material/templates/.icons/fontawesome/solid/bug.svg +1 -0
  1469. docsforge/themes/material/templates/.icons/fontawesome/solid/bugs.svg +1 -0
  1470. docsforge/themes/material/templates/.icons/fontawesome/solid/building-circle-arrow-right.svg +1 -0
  1471. docsforge/themes/material/templates/.icons/fontawesome/solid/building-circle-check.svg +1 -0
  1472. docsforge/themes/material/templates/.icons/fontawesome/solid/building-circle-exclamation.svg +1 -0
  1473. docsforge/themes/material/templates/.icons/fontawesome/solid/building-circle-xmark.svg +1 -0
  1474. docsforge/themes/material/templates/.icons/fontawesome/solid/building-columns.svg +1 -0
  1475. docsforge/themes/material/templates/.icons/fontawesome/solid/building-flag.svg +1 -0
  1476. docsforge/themes/material/templates/.icons/fontawesome/solid/building-lock.svg +1 -0
  1477. docsforge/themes/material/templates/.icons/fontawesome/solid/building-ngo.svg +1 -0
  1478. docsforge/themes/material/templates/.icons/fontawesome/solid/building-shield.svg +1 -0
  1479. docsforge/themes/material/templates/.icons/fontawesome/solid/building-un.svg +1 -0
  1480. docsforge/themes/material/templates/.icons/fontawesome/solid/building-user.svg +1 -0
  1481. docsforge/themes/material/templates/.icons/fontawesome/solid/building-wheat.svg +1 -0
  1482. docsforge/themes/material/templates/.icons/fontawesome/solid/building.svg +1 -0
  1483. docsforge/themes/material/templates/.icons/fontawesome/solid/bullhorn.svg +1 -0
  1484. docsforge/themes/material/templates/.icons/fontawesome/solid/bullseye.svg +1 -0
  1485. docsforge/themes/material/templates/.icons/fontawesome/solid/burger.svg +1 -0
  1486. docsforge/themes/material/templates/.icons/fontawesome/solid/burn.svg +1 -0
  1487. docsforge/themes/material/templates/.icons/fontawesome/solid/burst.svg +1 -0
  1488. docsforge/themes/material/templates/.icons/fontawesome/solid/bus-alt.svg +1 -0
  1489. docsforge/themes/material/templates/.icons/fontawesome/solid/bus-side.svg +1 -0
  1490. docsforge/themes/material/templates/.icons/fontawesome/solid/bus-simple.svg +1 -0
  1491. docsforge/themes/material/templates/.icons/fontawesome/solid/bus.svg +1 -0
  1492. docsforge/themes/material/templates/.icons/fontawesome/solid/business-time.svg +1 -0
  1493. docsforge/themes/material/templates/.icons/fontawesome/solid/c.svg +1 -0
  1494. docsforge/themes/material/templates/.icons/fontawesome/solid/cab.svg +1 -0
  1495. docsforge/themes/material/templates/.icons/fontawesome/solid/cable-car.svg +1 -0
  1496. docsforge/themes/material/templates/.icons/fontawesome/solid/cake-candles.svg +1 -0
  1497. docsforge/themes/material/templates/.icons/fontawesome/solid/cake.svg +1 -0
  1498. docsforge/themes/material/templates/.icons/fontawesome/solid/calculator.svg +1 -0
  1499. docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-alt.svg +1 -0
  1500. docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-check.svg +1 -0
  1501. docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-day.svg +1 -0
  1502. docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-days.svg +1 -0
  1503. docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-minus.svg +1 -0
  1504. docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-plus.svg +1 -0
  1505. docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-times.svg +1 -0
  1506. docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-week.svg +1 -0
  1507. docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-xmark.svg +1 -0
  1508. docsforge/themes/material/templates/.icons/fontawesome/solid/calendar.svg +1 -0
  1509. docsforge/themes/material/templates/.icons/fontawesome/solid/camera-alt.svg +1 -0
  1510. docsforge/themes/material/templates/.icons/fontawesome/solid/camera-retro.svg +1 -0
  1511. docsforge/themes/material/templates/.icons/fontawesome/solid/camera-rotate.svg +1 -0
  1512. docsforge/themes/material/templates/.icons/fontawesome/solid/camera.svg +1 -0
  1513. docsforge/themes/material/templates/.icons/fontawesome/solid/campground.svg +1 -0
  1514. docsforge/themes/material/templates/.icons/fontawesome/solid/cancel.svg +1 -0
  1515. docsforge/themes/material/templates/.icons/fontawesome/solid/candy-cane.svg +1 -0
  1516. docsforge/themes/material/templates/.icons/fontawesome/solid/cannabis.svg +1 -0
  1517. docsforge/themes/material/templates/.icons/fontawesome/solid/capsules.svg +1 -0
  1518. docsforge/themes/material/templates/.icons/fontawesome/solid/car-alt.svg +1 -0
  1519. docsforge/themes/material/templates/.icons/fontawesome/solid/car-battery.svg +1 -0
  1520. docsforge/themes/material/templates/.icons/fontawesome/solid/car-burst.svg +1 -0
  1521. docsforge/themes/material/templates/.icons/fontawesome/solid/car-crash.svg +1 -0
  1522. docsforge/themes/material/templates/.icons/fontawesome/solid/car-on.svg +1 -0
  1523. docsforge/themes/material/templates/.icons/fontawesome/solid/car-rear.svg +1 -0
  1524. docsforge/themes/material/templates/.icons/fontawesome/solid/car-side.svg +1 -0
  1525. docsforge/themes/material/templates/.icons/fontawesome/solid/car-tunnel.svg +1 -0
  1526. docsforge/themes/material/templates/.icons/fontawesome/solid/car.svg +1 -0
  1527. docsforge/themes/material/templates/.icons/fontawesome/solid/caravan.svg +1 -0
  1528. docsforge/themes/material/templates/.icons/fontawesome/solid/caret-down.svg +1 -0
  1529. docsforge/themes/material/templates/.icons/fontawesome/solid/caret-left.svg +1 -0
  1530. docsforge/themes/material/templates/.icons/fontawesome/solid/caret-right.svg +1 -0
  1531. docsforge/themes/material/templates/.icons/fontawesome/solid/caret-square-down.svg +1 -0
  1532. docsforge/themes/material/templates/.icons/fontawesome/solid/caret-square-left.svg +1 -0
  1533. docsforge/themes/material/templates/.icons/fontawesome/solid/caret-square-right.svg +1 -0
  1534. docsforge/themes/material/templates/.icons/fontawesome/solid/caret-square-up.svg +1 -0
  1535. docsforge/themes/material/templates/.icons/fontawesome/solid/caret-up.svg +1 -0
  1536. docsforge/themes/material/templates/.icons/fontawesome/solid/carriage-baby.svg +1 -0
  1537. docsforge/themes/material/templates/.icons/fontawesome/solid/carrot.svg +1 -0
  1538. docsforge/themes/material/templates/.icons/fontawesome/solid/cart-arrow-down.svg +1 -0
  1539. docsforge/themes/material/templates/.icons/fontawesome/solid/cart-flatbed-suitcase.svg +1 -0
  1540. docsforge/themes/material/templates/.icons/fontawesome/solid/cart-flatbed.svg +1 -0
  1541. docsforge/themes/material/templates/.icons/fontawesome/solid/cart-plus.svg +1 -0
  1542. docsforge/themes/material/templates/.icons/fontawesome/solid/cart-shopping.svg +1 -0
  1543. docsforge/themes/material/templates/.icons/fontawesome/solid/cash-register.svg +1 -0
  1544. docsforge/themes/material/templates/.icons/fontawesome/solid/cat.svg +1 -0
  1545. docsforge/themes/material/templates/.icons/fontawesome/solid/cedi-sign.svg +1 -0
  1546. docsforge/themes/material/templates/.icons/fontawesome/solid/cent-sign.svg +1 -0
  1547. docsforge/themes/material/templates/.icons/fontawesome/solid/certificate.svg +1 -0
  1548. docsforge/themes/material/templates/.icons/fontawesome/solid/chain-broken.svg +1 -0
  1549. docsforge/themes/material/templates/.icons/fontawesome/solid/chain-slash.svg +1 -0
  1550. docsforge/themes/material/templates/.icons/fontawesome/solid/chain.svg +1 -0
  1551. docsforge/themes/material/templates/.icons/fontawesome/solid/chair.svg +1 -0
  1552. docsforge/themes/material/templates/.icons/fontawesome/solid/chalkboard-teacher.svg +1 -0
  1553. docsforge/themes/material/templates/.icons/fontawesome/solid/chalkboard-user.svg +1 -0
  1554. docsforge/themes/material/templates/.icons/fontawesome/solid/chalkboard.svg +1 -0
  1555. docsforge/themes/material/templates/.icons/fontawesome/solid/champagne-glasses.svg +1 -0
  1556. docsforge/themes/material/templates/.icons/fontawesome/solid/charging-station.svg +1 -0
  1557. docsforge/themes/material/templates/.icons/fontawesome/solid/chart-area.svg +1 -0
  1558. docsforge/themes/material/templates/.icons/fontawesome/solid/chart-bar.svg +1 -0
  1559. docsforge/themes/material/templates/.icons/fontawesome/solid/chart-column.svg +1 -0
  1560. docsforge/themes/material/templates/.icons/fontawesome/solid/chart-diagram.svg +1 -0
  1561. docsforge/themes/material/templates/.icons/fontawesome/solid/chart-gantt.svg +1 -0
  1562. docsforge/themes/material/templates/.icons/fontawesome/solid/chart-line.svg +1 -0
  1563. docsforge/themes/material/templates/.icons/fontawesome/solid/chart-pie.svg +1 -0
  1564. docsforge/themes/material/templates/.icons/fontawesome/solid/chart-simple.svg +1 -0
  1565. docsforge/themes/material/templates/.icons/fontawesome/solid/check-circle.svg +1 -0
  1566. docsforge/themes/material/templates/.icons/fontawesome/solid/check-double.svg +1 -0
  1567. docsforge/themes/material/templates/.icons/fontawesome/solid/check-square.svg +1 -0
  1568. docsforge/themes/material/templates/.icons/fontawesome/solid/check-to-slot.svg +1 -0
  1569. docsforge/themes/material/templates/.icons/fontawesome/solid/check.svg +1 -0
  1570. docsforge/themes/material/templates/.icons/fontawesome/solid/cheese.svg +1 -0
  1571. docsforge/themes/material/templates/.icons/fontawesome/solid/chess-bishop.svg +1 -0
  1572. docsforge/themes/material/templates/.icons/fontawesome/solid/chess-board.svg +1 -0
  1573. docsforge/themes/material/templates/.icons/fontawesome/solid/chess-king.svg +1 -0
  1574. docsforge/themes/material/templates/.icons/fontawesome/solid/chess-knight.svg +1 -0
  1575. docsforge/themes/material/templates/.icons/fontawesome/solid/chess-pawn.svg +1 -0
  1576. docsforge/themes/material/templates/.icons/fontawesome/solid/chess-queen.svg +1 -0
  1577. docsforge/themes/material/templates/.icons/fontawesome/solid/chess-rook.svg +1 -0
  1578. docsforge/themes/material/templates/.icons/fontawesome/solid/chess.svg +1 -0
  1579. docsforge/themes/material/templates/.icons/fontawesome/solid/chevron-circle-down.svg +1 -0
  1580. docsforge/themes/material/templates/.icons/fontawesome/solid/chevron-circle-left.svg +1 -0
  1581. docsforge/themes/material/templates/.icons/fontawesome/solid/chevron-circle-right.svg +1 -0
  1582. docsforge/themes/material/templates/.icons/fontawesome/solid/chevron-circle-up.svg +1 -0
  1583. docsforge/themes/material/templates/.icons/fontawesome/solid/chevron-down.svg +1 -0
  1584. docsforge/themes/material/templates/.icons/fontawesome/solid/chevron-left.svg +1 -0
  1585. docsforge/themes/material/templates/.icons/fontawesome/solid/chevron-right.svg +1 -0
  1586. docsforge/themes/material/templates/.icons/fontawesome/solid/chevron-up.svg +1 -0
  1587. docsforge/themes/material/templates/.icons/fontawesome/solid/child-combatant.svg +1 -0
  1588. docsforge/themes/material/templates/.icons/fontawesome/solid/child-dress.svg +1 -0
  1589. docsforge/themes/material/templates/.icons/fontawesome/solid/child-reaching.svg +1 -0
  1590. docsforge/themes/material/templates/.icons/fontawesome/solid/child-rifle.svg +1 -0
  1591. docsforge/themes/material/templates/.icons/fontawesome/solid/child.svg +1 -0
  1592. docsforge/themes/material/templates/.icons/fontawesome/solid/children.svg +1 -0
  1593. docsforge/themes/material/templates/.icons/fontawesome/solid/church.svg +1 -0
  1594. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-arrow-down.svg +1 -0
  1595. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-arrow-left.svg +1 -0
  1596. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-arrow-right.svg +1 -0
  1597. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-arrow-up.svg +1 -0
  1598. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-check.svg +1 -0
  1599. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-chevron-down.svg +1 -0
  1600. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-chevron-left.svg +1 -0
  1601. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-chevron-right.svg +1 -0
  1602. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-chevron-up.svg +1 -0
  1603. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-dollar-to-slot.svg +1 -0
  1604. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-dot.svg +1 -0
  1605. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-down.svg +1 -0
  1606. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-exclamation.svg +1 -0
  1607. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-h.svg +1 -0
  1608. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-half-stroke.svg +1 -0
  1609. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-info.svg +1 -0
  1610. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-left.svg +1 -0
  1611. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-minus.svg +1 -0
  1612. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-nodes.svg +1 -0
  1613. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-notch.svg +1 -0
  1614. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-pause.svg +1 -0
  1615. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-play.svg +1 -0
  1616. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-plus.svg +1 -0
  1617. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-question.svg +1 -0
  1618. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-radiation.svg +1 -0
  1619. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-right.svg +1 -0
  1620. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-stop.svg +1 -0
  1621. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-up.svg +1 -0
  1622. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-user.svg +1 -0
  1623. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-xmark.svg +1 -0
  1624. docsforge/themes/material/templates/.icons/fontawesome/solid/circle.svg +1 -0
  1625. docsforge/themes/material/templates/.icons/fontawesome/solid/city.svg +1 -0
  1626. docsforge/themes/material/templates/.icons/fontawesome/solid/clapperboard.svg +1 -0
  1627. docsforge/themes/material/templates/.icons/fontawesome/solid/clinic-medical.svg +1 -0
  1628. docsforge/themes/material/templates/.icons/fontawesome/solid/clipboard-check.svg +1 -0
  1629. docsforge/themes/material/templates/.icons/fontawesome/solid/clipboard-list.svg +1 -0
  1630. docsforge/themes/material/templates/.icons/fontawesome/solid/clipboard-question.svg +1 -0
  1631. docsforge/themes/material/templates/.icons/fontawesome/solid/clipboard-user.svg +1 -0
  1632. docsforge/themes/material/templates/.icons/fontawesome/solid/clipboard.svg +1 -0
  1633. docsforge/themes/material/templates/.icons/fontawesome/solid/clock-four.svg +1 -0
  1634. docsforge/themes/material/templates/.icons/fontawesome/solid/clock-rotate-left.svg +1 -0
  1635. docsforge/themes/material/templates/.icons/fontawesome/solid/clock.svg +1 -0
  1636. docsforge/themes/material/templates/.icons/fontawesome/solid/clone.svg +1 -0
  1637. docsforge/themes/material/templates/.icons/fontawesome/solid/close.svg +1 -0
  1638. docsforge/themes/material/templates/.icons/fontawesome/solid/closed-captioning.svg +1 -0
  1639. docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-arrow-down.svg +1 -0
  1640. docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-arrow-up.svg +1 -0
  1641. docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-bolt.svg +1 -0
  1642. docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-download-alt.svg +1 -0
  1643. docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-download.svg +1 -0
  1644. docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-meatball.svg +1 -0
  1645. docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-moon-rain.svg +1 -0
  1646. docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-moon.svg +1 -0
  1647. docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-rain.svg +1 -0
  1648. docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-showers-heavy.svg +1 -0
  1649. docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-showers-water.svg +1 -0
  1650. docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-sun-rain.svg +1 -0
  1651. docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-sun.svg +1 -0
  1652. docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-upload-alt.svg +1 -0
  1653. docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-upload.svg +1 -0
  1654. docsforge/themes/material/templates/.icons/fontawesome/solid/cloud.svg +1 -0
  1655. docsforge/themes/material/templates/.icons/fontawesome/solid/clover.svg +1 -0
  1656. docsforge/themes/material/templates/.icons/fontawesome/solid/cny.svg +1 -0
  1657. docsforge/themes/material/templates/.icons/fontawesome/solid/cocktail.svg +1 -0
  1658. docsforge/themes/material/templates/.icons/fontawesome/solid/code-branch.svg +1 -0
  1659. docsforge/themes/material/templates/.icons/fontawesome/solid/code-commit.svg +1 -0
  1660. docsforge/themes/material/templates/.icons/fontawesome/solid/code-compare.svg +1 -0
  1661. docsforge/themes/material/templates/.icons/fontawesome/solid/code-fork.svg +1 -0
  1662. docsforge/themes/material/templates/.icons/fontawesome/solid/code-merge.svg +1 -0
  1663. docsforge/themes/material/templates/.icons/fontawesome/solid/code-pull-request.svg +1 -0
  1664. docsforge/themes/material/templates/.icons/fontawesome/solid/code.svg +1 -0
  1665. docsforge/themes/material/templates/.icons/fontawesome/solid/coffee.svg +1 -0
  1666. docsforge/themes/material/templates/.icons/fontawesome/solid/cog.svg +1 -0
  1667. docsforge/themes/material/templates/.icons/fontawesome/solid/cogs.svg +1 -0
  1668. docsforge/themes/material/templates/.icons/fontawesome/solid/coins.svg +1 -0
  1669. docsforge/themes/material/templates/.icons/fontawesome/solid/colon-sign.svg +1 -0
  1670. docsforge/themes/material/templates/.icons/fontawesome/solid/columns.svg +1 -0
  1671. docsforge/themes/material/templates/.icons/fontawesome/solid/comment-alt.svg +1 -0
  1672. docsforge/themes/material/templates/.icons/fontawesome/solid/comment-dollar.svg +1 -0
  1673. docsforge/themes/material/templates/.icons/fontawesome/solid/comment-dots.svg +1 -0
  1674. docsforge/themes/material/templates/.icons/fontawesome/solid/comment-medical.svg +1 -0
  1675. docsforge/themes/material/templates/.icons/fontawesome/solid/comment-nodes.svg +1 -0
  1676. docsforge/themes/material/templates/.icons/fontawesome/solid/comment-slash.svg +1 -0
  1677. docsforge/themes/material/templates/.icons/fontawesome/solid/comment-sms.svg +1 -0
  1678. docsforge/themes/material/templates/.icons/fontawesome/solid/comment.svg +1 -0
  1679. docsforge/themes/material/templates/.icons/fontawesome/solid/commenting.svg +1 -0
  1680. docsforge/themes/material/templates/.icons/fontawesome/solid/comments-dollar.svg +1 -0
  1681. docsforge/themes/material/templates/.icons/fontawesome/solid/comments.svg +1 -0
  1682. docsforge/themes/material/templates/.icons/fontawesome/solid/compact-disc.svg +1 -0
  1683. docsforge/themes/material/templates/.icons/fontawesome/solid/compass-drafting.svg +1 -0
  1684. docsforge/themes/material/templates/.icons/fontawesome/solid/compass.svg +1 -0
  1685. docsforge/themes/material/templates/.icons/fontawesome/solid/compress-alt.svg +1 -0
  1686. docsforge/themes/material/templates/.icons/fontawesome/solid/compress-arrows-alt.svg +1 -0
  1687. docsforge/themes/material/templates/.icons/fontawesome/solid/compress.svg +1 -0
  1688. docsforge/themes/material/templates/.icons/fontawesome/solid/computer-mouse.svg +1 -0
  1689. docsforge/themes/material/templates/.icons/fontawesome/solid/computer.svg +1 -0
  1690. docsforge/themes/material/templates/.icons/fontawesome/solid/concierge-bell.svg +1 -0
  1691. docsforge/themes/material/templates/.icons/fontawesome/solid/contact-book.svg +1 -0
  1692. docsforge/themes/material/templates/.icons/fontawesome/solid/contact-card.svg +1 -0
  1693. docsforge/themes/material/templates/.icons/fontawesome/solid/cookie-bite.svg +1 -0
  1694. docsforge/themes/material/templates/.icons/fontawesome/solid/cookie.svg +1 -0
  1695. docsforge/themes/material/templates/.icons/fontawesome/solid/copy.svg +1 -0
  1696. docsforge/themes/material/templates/.icons/fontawesome/solid/copyright.svg +1 -0
  1697. docsforge/themes/material/templates/.icons/fontawesome/solid/couch.svg +1 -0
  1698. docsforge/themes/material/templates/.icons/fontawesome/solid/cow.svg +1 -0
  1699. docsforge/themes/material/templates/.icons/fontawesome/solid/credit-card-alt.svg +1 -0
  1700. docsforge/themes/material/templates/.icons/fontawesome/solid/credit-card.svg +1 -0
  1701. docsforge/themes/material/templates/.icons/fontawesome/solid/crop-alt.svg +1 -0
  1702. docsforge/themes/material/templates/.icons/fontawesome/solid/crop-simple.svg +1 -0
  1703. docsforge/themes/material/templates/.icons/fontawesome/solid/crop.svg +1 -0
  1704. docsforge/themes/material/templates/.icons/fontawesome/solid/cross.svg +1 -0
  1705. docsforge/themes/material/templates/.icons/fontawesome/solid/crosshairs.svg +1 -0
  1706. docsforge/themes/material/templates/.icons/fontawesome/solid/crow.svg +1 -0
  1707. docsforge/themes/material/templates/.icons/fontawesome/solid/crown.svg +1 -0
  1708. docsforge/themes/material/templates/.icons/fontawesome/solid/crutch.svg +1 -0
  1709. docsforge/themes/material/templates/.icons/fontawesome/solid/cruzeiro-sign.svg +1 -0
  1710. docsforge/themes/material/templates/.icons/fontawesome/solid/cube.svg +1 -0
  1711. docsforge/themes/material/templates/.icons/fontawesome/solid/cubes-stacked.svg +1 -0
  1712. docsforge/themes/material/templates/.icons/fontawesome/solid/cubes.svg +1 -0
  1713. docsforge/themes/material/templates/.icons/fontawesome/solid/cut.svg +1 -0
  1714. docsforge/themes/material/templates/.icons/fontawesome/solid/cutlery.svg +1 -0
  1715. docsforge/themes/material/templates/.icons/fontawesome/solid/d.svg +1 -0
  1716. docsforge/themes/material/templates/.icons/fontawesome/solid/dashboard.svg +1 -0
  1717. docsforge/themes/material/templates/.icons/fontawesome/solid/database.svg +1 -0
  1718. docsforge/themes/material/templates/.icons/fontawesome/solid/deaf.svg +1 -0
  1719. docsforge/themes/material/templates/.icons/fontawesome/solid/deafness.svg +1 -0
  1720. docsforge/themes/material/templates/.icons/fontawesome/solid/dedent.svg +1 -0
  1721. docsforge/themes/material/templates/.icons/fontawesome/solid/delete-left.svg +1 -0
  1722. docsforge/themes/material/templates/.icons/fontawesome/solid/democrat.svg +1 -0
  1723. docsforge/themes/material/templates/.icons/fontawesome/solid/desktop-alt.svg +1 -0
  1724. docsforge/themes/material/templates/.icons/fontawesome/solid/desktop.svg +1 -0
  1725. docsforge/themes/material/templates/.icons/fontawesome/solid/dharmachakra.svg +1 -0
  1726. docsforge/themes/material/templates/.icons/fontawesome/solid/diagnoses.svg +1 -0
  1727. docsforge/themes/material/templates/.icons/fontawesome/solid/diagram-next.svg +1 -0
  1728. docsforge/themes/material/templates/.icons/fontawesome/solid/diagram-predecessor.svg +1 -0
  1729. docsforge/themes/material/templates/.icons/fontawesome/solid/diagram-project.svg +1 -0
  1730. docsforge/themes/material/templates/.icons/fontawesome/solid/diagram-successor.svg +1 -0
  1731. docsforge/themes/material/templates/.icons/fontawesome/solid/diamond-turn-right.svg +1 -0
  1732. docsforge/themes/material/templates/.icons/fontawesome/solid/diamond.svg +1 -0
  1733. docsforge/themes/material/templates/.icons/fontawesome/solid/dice-d20.svg +1 -0
  1734. docsforge/themes/material/templates/.icons/fontawesome/solid/dice-d6.svg +1 -0
  1735. docsforge/themes/material/templates/.icons/fontawesome/solid/dice-five.svg +1 -0
  1736. docsforge/themes/material/templates/.icons/fontawesome/solid/dice-four.svg +1 -0
  1737. docsforge/themes/material/templates/.icons/fontawesome/solid/dice-one.svg +1 -0
  1738. docsforge/themes/material/templates/.icons/fontawesome/solid/dice-six.svg +1 -0
  1739. docsforge/themes/material/templates/.icons/fontawesome/solid/dice-three.svg +1 -0
  1740. docsforge/themes/material/templates/.icons/fontawesome/solid/dice-two.svg +1 -0
  1741. docsforge/themes/material/templates/.icons/fontawesome/solid/dice.svg +1 -0
  1742. docsforge/themes/material/templates/.icons/fontawesome/solid/digging.svg +1 -0
  1743. docsforge/themes/material/templates/.icons/fontawesome/solid/digital-tachograph.svg +1 -0
  1744. docsforge/themes/material/templates/.icons/fontawesome/solid/directions.svg +1 -0
  1745. docsforge/themes/material/templates/.icons/fontawesome/solid/disease.svg +1 -0
  1746. docsforge/themes/material/templates/.icons/fontawesome/solid/display.svg +1 -0
  1747. docsforge/themes/material/templates/.icons/fontawesome/solid/divide.svg +1 -0
  1748. docsforge/themes/material/templates/.icons/fontawesome/solid/dizzy.svg +1 -0
  1749. docsforge/themes/material/templates/.icons/fontawesome/solid/dna.svg +1 -0
  1750. docsforge/themes/material/templates/.icons/fontawesome/solid/dog.svg +1 -0
  1751. docsforge/themes/material/templates/.icons/fontawesome/solid/dollar-sign.svg +1 -0
  1752. docsforge/themes/material/templates/.icons/fontawesome/solid/dollar.svg +1 -0
  1753. docsforge/themes/material/templates/.icons/fontawesome/solid/dolly-box.svg +1 -0
  1754. docsforge/themes/material/templates/.icons/fontawesome/solid/dolly-flatbed.svg +1 -0
  1755. docsforge/themes/material/templates/.icons/fontawesome/solid/dolly.svg +1 -0
  1756. docsforge/themes/material/templates/.icons/fontawesome/solid/donate.svg +1 -0
  1757. docsforge/themes/material/templates/.icons/fontawesome/solid/dong-sign.svg +1 -0
  1758. docsforge/themes/material/templates/.icons/fontawesome/solid/door-closed.svg +1 -0
  1759. docsforge/themes/material/templates/.icons/fontawesome/solid/door-open.svg +1 -0
  1760. docsforge/themes/material/templates/.icons/fontawesome/solid/dot-circle.svg +1 -0
  1761. docsforge/themes/material/templates/.icons/fontawesome/solid/dove.svg +1 -0
  1762. docsforge/themes/material/templates/.icons/fontawesome/solid/down-left-and-up-right-to-center.svg +1 -0
  1763. docsforge/themes/material/templates/.icons/fontawesome/solid/down-long.svg +1 -0
  1764. docsforge/themes/material/templates/.icons/fontawesome/solid/download.svg +1 -0
  1765. docsforge/themes/material/templates/.icons/fontawesome/solid/drafting-compass.svg +1 -0
  1766. docsforge/themes/material/templates/.icons/fontawesome/solid/dragon.svg +1 -0
  1767. docsforge/themes/material/templates/.icons/fontawesome/solid/draw-polygon.svg +1 -0
  1768. docsforge/themes/material/templates/.icons/fontawesome/solid/drivers-license.svg +1 -0
  1769. docsforge/themes/material/templates/.icons/fontawesome/solid/droplet-slash.svg +1 -0
  1770. docsforge/themes/material/templates/.icons/fontawesome/solid/droplet.svg +1 -0
  1771. docsforge/themes/material/templates/.icons/fontawesome/solid/drum-steelpan.svg +1 -0
  1772. docsforge/themes/material/templates/.icons/fontawesome/solid/drum.svg +1 -0
  1773. docsforge/themes/material/templates/.icons/fontawesome/solid/drumstick-bite.svg +1 -0
  1774. docsforge/themes/material/templates/.icons/fontawesome/solid/dumbbell.svg +1 -0
  1775. docsforge/themes/material/templates/.icons/fontawesome/solid/dumpster-fire.svg +1 -0
  1776. docsforge/themes/material/templates/.icons/fontawesome/solid/dumpster.svg +1 -0
  1777. docsforge/themes/material/templates/.icons/fontawesome/solid/dungeon.svg +1 -0
  1778. docsforge/themes/material/templates/.icons/fontawesome/solid/e.svg +1 -0
  1779. docsforge/themes/material/templates/.icons/fontawesome/solid/ear-deaf.svg +1 -0
  1780. docsforge/themes/material/templates/.icons/fontawesome/solid/ear-listen.svg +1 -0
  1781. docsforge/themes/material/templates/.icons/fontawesome/solid/earth-africa.svg +1 -0
  1782. docsforge/themes/material/templates/.icons/fontawesome/solid/earth-america.svg +1 -0
  1783. docsforge/themes/material/templates/.icons/fontawesome/solid/earth-americas.svg +1 -0
  1784. docsforge/themes/material/templates/.icons/fontawesome/solid/earth-asia.svg +1 -0
  1785. docsforge/themes/material/templates/.icons/fontawesome/solid/earth-europe.svg +1 -0
  1786. docsforge/themes/material/templates/.icons/fontawesome/solid/earth-oceania.svg +1 -0
  1787. docsforge/themes/material/templates/.icons/fontawesome/solid/earth.svg +1 -0
  1788. docsforge/themes/material/templates/.icons/fontawesome/solid/edit.svg +1 -0
  1789. docsforge/themes/material/templates/.icons/fontawesome/solid/egg.svg +1 -0
  1790. docsforge/themes/material/templates/.icons/fontawesome/solid/eject.svg +1 -0
  1791. docsforge/themes/material/templates/.icons/fontawesome/solid/elevator.svg +1 -0
  1792. docsforge/themes/material/templates/.icons/fontawesome/solid/ellipsis-h.svg +1 -0
  1793. docsforge/themes/material/templates/.icons/fontawesome/solid/ellipsis-v.svg +1 -0
  1794. docsforge/themes/material/templates/.icons/fontawesome/solid/ellipsis-vertical.svg +1 -0
  1795. docsforge/themes/material/templates/.icons/fontawesome/solid/ellipsis.svg +1 -0
  1796. docsforge/themes/material/templates/.icons/fontawesome/solid/envelope-circle-check.svg +1 -0
  1797. docsforge/themes/material/templates/.icons/fontawesome/solid/envelope-open-text.svg +1 -0
  1798. docsforge/themes/material/templates/.icons/fontawesome/solid/envelope-open.svg +1 -0
  1799. docsforge/themes/material/templates/.icons/fontawesome/solid/envelope-square.svg +1 -0
  1800. docsforge/themes/material/templates/.icons/fontawesome/solid/envelope.svg +1 -0
  1801. docsforge/themes/material/templates/.icons/fontawesome/solid/envelopes-bulk.svg +1 -0
  1802. docsforge/themes/material/templates/.icons/fontawesome/solid/equals.svg +1 -0
  1803. docsforge/themes/material/templates/.icons/fontawesome/solid/eraser.svg +1 -0
  1804. docsforge/themes/material/templates/.icons/fontawesome/solid/ethernet.svg +1 -0
  1805. docsforge/themes/material/templates/.icons/fontawesome/solid/eur.svg +1 -0
  1806. docsforge/themes/material/templates/.icons/fontawesome/solid/euro-sign.svg +1 -0
  1807. docsforge/themes/material/templates/.icons/fontawesome/solid/euro.svg +1 -0
  1808. docsforge/themes/material/templates/.icons/fontawesome/solid/exchange-alt.svg +1 -0
  1809. docsforge/themes/material/templates/.icons/fontawesome/solid/exchange.svg +1 -0
  1810. docsforge/themes/material/templates/.icons/fontawesome/solid/exclamation-circle.svg +1 -0
  1811. docsforge/themes/material/templates/.icons/fontawesome/solid/exclamation-triangle.svg +1 -0
  1812. docsforge/themes/material/templates/.icons/fontawesome/solid/exclamation.svg +1 -0
  1813. docsforge/themes/material/templates/.icons/fontawesome/solid/expand-alt.svg +1 -0
  1814. docsforge/themes/material/templates/.icons/fontawesome/solid/expand-arrows-alt.svg +1 -0
  1815. docsforge/themes/material/templates/.icons/fontawesome/solid/expand.svg +1 -0
  1816. docsforge/themes/material/templates/.icons/fontawesome/solid/explosion.svg +1 -0
  1817. docsforge/themes/material/templates/.icons/fontawesome/solid/external-link-alt.svg +1 -0
  1818. docsforge/themes/material/templates/.icons/fontawesome/solid/external-link-square-alt.svg +1 -0
  1819. docsforge/themes/material/templates/.icons/fontawesome/solid/external-link-square.svg +1 -0
  1820. docsforge/themes/material/templates/.icons/fontawesome/solid/external-link.svg +1 -0
  1821. docsforge/themes/material/templates/.icons/fontawesome/solid/eye-dropper-empty.svg +1 -0
  1822. docsforge/themes/material/templates/.icons/fontawesome/solid/eye-dropper.svg +1 -0
  1823. docsforge/themes/material/templates/.icons/fontawesome/solid/eye-low-vision.svg +1 -0
  1824. docsforge/themes/material/templates/.icons/fontawesome/solid/eye-slash.svg +1 -0
  1825. docsforge/themes/material/templates/.icons/fontawesome/solid/eye.svg +1 -0
  1826. docsforge/themes/material/templates/.icons/fontawesome/solid/eyedropper.svg +1 -0
  1827. docsforge/themes/material/templates/.icons/fontawesome/solid/f.svg +1 -0
  1828. docsforge/themes/material/templates/.icons/fontawesome/solid/face-angry.svg +1 -0
  1829. docsforge/themes/material/templates/.icons/fontawesome/solid/face-dizzy.svg +1 -0
  1830. docsforge/themes/material/templates/.icons/fontawesome/solid/face-flushed.svg +1 -0
  1831. docsforge/themes/material/templates/.icons/fontawesome/solid/face-frown-open.svg +1 -0
  1832. docsforge/themes/material/templates/.icons/fontawesome/solid/face-frown.svg +1 -0
  1833. docsforge/themes/material/templates/.icons/fontawesome/solid/face-grimace.svg +1 -0
  1834. docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-beam-sweat.svg +1 -0
  1835. docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-beam.svg +1 -0
  1836. docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-hearts.svg +1 -0
  1837. docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-squint-tears.svg +1 -0
  1838. docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-squint.svg +1 -0
  1839. docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-stars.svg +1 -0
  1840. docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-tears.svg +1 -0
  1841. docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-tongue-squint.svg +1 -0
  1842. docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-tongue-wink.svg +1 -0
  1843. docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-tongue.svg +1 -0
  1844. docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-wide.svg +1 -0
  1845. docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-wink.svg +1 -0
  1846. docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin.svg +1 -0
  1847. docsforge/themes/material/templates/.icons/fontawesome/solid/face-kiss-beam.svg +1 -0
  1848. docsforge/themes/material/templates/.icons/fontawesome/solid/face-kiss-wink-heart.svg +1 -0
  1849. docsforge/themes/material/templates/.icons/fontawesome/solid/face-kiss.svg +1 -0
  1850. docsforge/themes/material/templates/.icons/fontawesome/solid/face-laugh-beam.svg +1 -0
  1851. docsforge/themes/material/templates/.icons/fontawesome/solid/face-laugh-squint.svg +1 -0
  1852. docsforge/themes/material/templates/.icons/fontawesome/solid/face-laugh-wink.svg +1 -0
  1853. docsforge/themes/material/templates/.icons/fontawesome/solid/face-laugh.svg +1 -0
  1854. docsforge/themes/material/templates/.icons/fontawesome/solid/face-meh-blank.svg +1 -0
  1855. docsforge/themes/material/templates/.icons/fontawesome/solid/face-meh.svg +1 -0
  1856. docsforge/themes/material/templates/.icons/fontawesome/solid/face-rolling-eyes.svg +1 -0
  1857. docsforge/themes/material/templates/.icons/fontawesome/solid/face-sad-cry.svg +1 -0
  1858. docsforge/themes/material/templates/.icons/fontawesome/solid/face-sad-tear.svg +1 -0
  1859. docsforge/themes/material/templates/.icons/fontawesome/solid/face-smile-beam.svg +1 -0
  1860. docsforge/themes/material/templates/.icons/fontawesome/solid/face-smile-wink.svg +1 -0
  1861. docsforge/themes/material/templates/.icons/fontawesome/solid/face-smile.svg +1 -0
  1862. docsforge/themes/material/templates/.icons/fontawesome/solid/face-surprise.svg +1 -0
  1863. docsforge/themes/material/templates/.icons/fontawesome/solid/face-tired.svg +1 -0
  1864. docsforge/themes/material/templates/.icons/fontawesome/solid/fan.svg +1 -0
  1865. docsforge/themes/material/templates/.icons/fontawesome/solid/fast-backward.svg +1 -0
  1866. docsforge/themes/material/templates/.icons/fontawesome/solid/fast-forward.svg +1 -0
  1867. docsforge/themes/material/templates/.icons/fontawesome/solid/faucet-drip.svg +1 -0
  1868. docsforge/themes/material/templates/.icons/fontawesome/solid/faucet.svg +1 -0
  1869. docsforge/themes/material/templates/.icons/fontawesome/solid/fax.svg +1 -0
  1870. docsforge/themes/material/templates/.icons/fontawesome/solid/feather-alt.svg +1 -0
  1871. docsforge/themes/material/templates/.icons/fontawesome/solid/feather-pointed.svg +1 -0
  1872. docsforge/themes/material/templates/.icons/fontawesome/solid/feather.svg +1 -0
  1873. docsforge/themes/material/templates/.icons/fontawesome/solid/feed.svg +1 -0
  1874. docsforge/themes/material/templates/.icons/fontawesome/solid/female.svg +1 -0
  1875. docsforge/themes/material/templates/.icons/fontawesome/solid/ferry.svg +1 -0
  1876. docsforge/themes/material/templates/.icons/fontawesome/solid/fighter-jet.svg +1 -0
  1877. docsforge/themes/material/templates/.icons/fontawesome/solid/file-alt.svg +1 -0
  1878. docsforge/themes/material/templates/.icons/fontawesome/solid/file-archive.svg +1 -0
  1879. docsforge/themes/material/templates/.icons/fontawesome/solid/file-arrow-down.svg +1 -0
  1880. docsforge/themes/material/templates/.icons/fontawesome/solid/file-arrow-up.svg +1 -0
  1881. docsforge/themes/material/templates/.icons/fontawesome/solid/file-audio.svg +1 -0
  1882. docsforge/themes/material/templates/.icons/fontawesome/solid/file-circle-check.svg +1 -0
  1883. docsforge/themes/material/templates/.icons/fontawesome/solid/file-circle-exclamation.svg +1 -0
  1884. docsforge/themes/material/templates/.icons/fontawesome/solid/file-circle-minus.svg +1 -0
  1885. docsforge/themes/material/templates/.icons/fontawesome/solid/file-circle-plus.svg +1 -0
  1886. docsforge/themes/material/templates/.icons/fontawesome/solid/file-circle-question.svg +1 -0
  1887. docsforge/themes/material/templates/.icons/fontawesome/solid/file-circle-xmark.svg +1 -0
  1888. docsforge/themes/material/templates/.icons/fontawesome/solid/file-clipboard.svg +1 -0
  1889. docsforge/themes/material/templates/.icons/fontawesome/solid/file-code.svg +1 -0
  1890. docsforge/themes/material/templates/.icons/fontawesome/solid/file-contract.svg +1 -0
  1891. docsforge/themes/material/templates/.icons/fontawesome/solid/file-csv.svg +1 -0
  1892. docsforge/themes/material/templates/.icons/fontawesome/solid/file-download.svg +1 -0
  1893. docsforge/themes/material/templates/.icons/fontawesome/solid/file-edit.svg +1 -0
  1894. docsforge/themes/material/templates/.icons/fontawesome/solid/file-excel.svg +1 -0
  1895. docsforge/themes/material/templates/.icons/fontawesome/solid/file-export.svg +1 -0
  1896. docsforge/themes/material/templates/.icons/fontawesome/solid/file-fragment.svg +1 -0
  1897. docsforge/themes/material/templates/.icons/fontawesome/solid/file-half-dashed.svg +1 -0
  1898. docsforge/themes/material/templates/.icons/fontawesome/solid/file-image.svg +1 -0
  1899. docsforge/themes/material/templates/.icons/fontawesome/solid/file-import.svg +1 -0
  1900. docsforge/themes/material/templates/.icons/fontawesome/solid/file-invoice-dollar.svg +1 -0
  1901. docsforge/themes/material/templates/.icons/fontawesome/solid/file-invoice.svg +1 -0
  1902. docsforge/themes/material/templates/.icons/fontawesome/solid/file-lines.svg +1 -0
  1903. docsforge/themes/material/templates/.icons/fontawesome/solid/file-medical-alt.svg +1 -0
  1904. docsforge/themes/material/templates/.icons/fontawesome/solid/file-medical.svg +1 -0
  1905. docsforge/themes/material/templates/.icons/fontawesome/solid/file-pdf.svg +1 -0
  1906. docsforge/themes/material/templates/.icons/fontawesome/solid/file-pen.svg +1 -0
  1907. docsforge/themes/material/templates/.icons/fontawesome/solid/file-powerpoint.svg +1 -0
  1908. docsforge/themes/material/templates/.icons/fontawesome/solid/file-prescription.svg +1 -0
  1909. docsforge/themes/material/templates/.icons/fontawesome/solid/file-shield.svg +1 -0
  1910. docsforge/themes/material/templates/.icons/fontawesome/solid/file-signature.svg +1 -0
  1911. docsforge/themes/material/templates/.icons/fontawesome/solid/file-text.svg +1 -0
  1912. docsforge/themes/material/templates/.icons/fontawesome/solid/file-upload.svg +1 -0
  1913. docsforge/themes/material/templates/.icons/fontawesome/solid/file-video.svg +1 -0
  1914. docsforge/themes/material/templates/.icons/fontawesome/solid/file-waveform.svg +1 -0
  1915. docsforge/themes/material/templates/.icons/fontawesome/solid/file-word.svg +1 -0
  1916. docsforge/themes/material/templates/.icons/fontawesome/solid/file-zipper.svg +1 -0
  1917. docsforge/themes/material/templates/.icons/fontawesome/solid/file.svg +1 -0
  1918. docsforge/themes/material/templates/.icons/fontawesome/solid/fill-drip.svg +1 -0
  1919. docsforge/themes/material/templates/.icons/fontawesome/solid/fill.svg +1 -0
  1920. docsforge/themes/material/templates/.icons/fontawesome/solid/film-alt.svg +1 -0
  1921. docsforge/themes/material/templates/.icons/fontawesome/solid/film-simple.svg +1 -0
  1922. docsforge/themes/material/templates/.icons/fontawesome/solid/film.svg +1 -0
  1923. docsforge/themes/material/templates/.icons/fontawesome/solid/filter-circle-dollar.svg +1 -0
  1924. docsforge/themes/material/templates/.icons/fontawesome/solid/filter-circle-xmark.svg +1 -0
  1925. docsforge/themes/material/templates/.icons/fontawesome/solid/filter.svg +1 -0
  1926. docsforge/themes/material/templates/.icons/fontawesome/solid/fingerprint.svg +1 -0
  1927. docsforge/themes/material/templates/.icons/fontawesome/solid/fire-alt.svg +1 -0
  1928. docsforge/themes/material/templates/.icons/fontawesome/solid/fire-burner.svg +1 -0
  1929. docsforge/themes/material/templates/.icons/fontawesome/solid/fire-extinguisher.svg +1 -0
  1930. docsforge/themes/material/templates/.icons/fontawesome/solid/fire-flame-curved.svg +1 -0
  1931. docsforge/themes/material/templates/.icons/fontawesome/solid/fire-flame-simple.svg +1 -0
  1932. docsforge/themes/material/templates/.icons/fontawesome/solid/fire.svg +1 -0
  1933. docsforge/themes/material/templates/.icons/fontawesome/solid/first-aid.svg +1 -0
  1934. docsforge/themes/material/templates/.icons/fontawesome/solid/fish-fins.svg +1 -0
  1935. docsforge/themes/material/templates/.icons/fontawesome/solid/fish.svg +1 -0
  1936. docsforge/themes/material/templates/.icons/fontawesome/solid/fist-raised.svg +1 -0
  1937. docsforge/themes/material/templates/.icons/fontawesome/solid/flag-checkered.svg +1 -0
  1938. docsforge/themes/material/templates/.icons/fontawesome/solid/flag-usa.svg +1 -0
  1939. docsforge/themes/material/templates/.icons/fontawesome/solid/flag.svg +1 -0
  1940. docsforge/themes/material/templates/.icons/fontawesome/solid/flask-vial.svg +1 -0
  1941. docsforge/themes/material/templates/.icons/fontawesome/solid/flask.svg +1 -0
  1942. docsforge/themes/material/templates/.icons/fontawesome/solid/floppy-disk.svg +1 -0
  1943. docsforge/themes/material/templates/.icons/fontawesome/solid/florin-sign.svg +1 -0
  1944. docsforge/themes/material/templates/.icons/fontawesome/solid/flushed.svg +1 -0
  1945. docsforge/themes/material/templates/.icons/fontawesome/solid/folder-blank.svg +1 -0
  1946. docsforge/themes/material/templates/.icons/fontawesome/solid/folder-closed.svg +1 -0
  1947. docsforge/themes/material/templates/.icons/fontawesome/solid/folder-minus.svg +1 -0
  1948. docsforge/themes/material/templates/.icons/fontawesome/solid/folder-open.svg +1 -0
  1949. docsforge/themes/material/templates/.icons/fontawesome/solid/folder-plus.svg +1 -0
  1950. docsforge/themes/material/templates/.icons/fontawesome/solid/folder-tree.svg +1 -0
  1951. docsforge/themes/material/templates/.icons/fontawesome/solid/folder.svg +1 -0
  1952. docsforge/themes/material/templates/.icons/fontawesome/solid/font-awesome-flag.svg +1 -0
  1953. docsforge/themes/material/templates/.icons/fontawesome/solid/font-awesome-logo-full.svg +1 -0
  1954. docsforge/themes/material/templates/.icons/fontawesome/solid/font-awesome.svg +1 -0
  1955. docsforge/themes/material/templates/.icons/fontawesome/solid/font.svg +1 -0
  1956. docsforge/themes/material/templates/.icons/fontawesome/solid/football-ball.svg +1 -0
  1957. docsforge/themes/material/templates/.icons/fontawesome/solid/football.svg +1 -0
  1958. docsforge/themes/material/templates/.icons/fontawesome/solid/forward-fast.svg +1 -0
  1959. docsforge/themes/material/templates/.icons/fontawesome/solid/forward-step.svg +1 -0
  1960. docsforge/themes/material/templates/.icons/fontawesome/solid/forward.svg +1 -0
  1961. docsforge/themes/material/templates/.icons/fontawesome/solid/franc-sign.svg +1 -0
  1962. docsforge/themes/material/templates/.icons/fontawesome/solid/frog.svg +1 -0
  1963. docsforge/themes/material/templates/.icons/fontawesome/solid/frown-open.svg +1 -0
  1964. docsforge/themes/material/templates/.icons/fontawesome/solid/frown.svg +1 -0
  1965. docsforge/themes/material/templates/.icons/fontawesome/solid/funnel-dollar.svg +1 -0
  1966. docsforge/themes/material/templates/.icons/fontawesome/solid/futbol-ball.svg +1 -0
  1967. docsforge/themes/material/templates/.icons/fontawesome/solid/futbol.svg +1 -0
  1968. docsforge/themes/material/templates/.icons/fontawesome/solid/g.svg +1 -0
  1969. docsforge/themes/material/templates/.icons/fontawesome/solid/gamepad.svg +1 -0
  1970. docsforge/themes/material/templates/.icons/fontawesome/solid/gas-pump.svg +1 -0
  1971. docsforge/themes/material/templates/.icons/fontawesome/solid/gauge-high.svg +1 -0
  1972. docsforge/themes/material/templates/.icons/fontawesome/solid/gauge-med.svg +1 -0
  1973. docsforge/themes/material/templates/.icons/fontawesome/solid/gauge-simple-high.svg +1 -0
  1974. docsforge/themes/material/templates/.icons/fontawesome/solid/gauge-simple-med.svg +1 -0
  1975. docsforge/themes/material/templates/.icons/fontawesome/solid/gauge-simple.svg +1 -0
  1976. docsforge/themes/material/templates/.icons/fontawesome/solid/gauge.svg +1 -0
  1977. docsforge/themes/material/templates/.icons/fontawesome/solid/gavel.svg +1 -0
  1978. docsforge/themes/material/templates/.icons/fontawesome/solid/gbp.svg +1 -0
  1979. docsforge/themes/material/templates/.icons/fontawesome/solid/gear.svg +1 -0
  1980. docsforge/themes/material/templates/.icons/fontawesome/solid/gears.svg +1 -0
  1981. docsforge/themes/material/templates/.icons/fontawesome/solid/gem.svg +1 -0
  1982. docsforge/themes/material/templates/.icons/fontawesome/solid/genderless.svg +1 -0
  1983. docsforge/themes/material/templates/.icons/fontawesome/solid/ghost.svg +1 -0
  1984. docsforge/themes/material/templates/.icons/fontawesome/solid/gift.svg +1 -0
  1985. docsforge/themes/material/templates/.icons/fontawesome/solid/gifts.svg +1 -0
  1986. docsforge/themes/material/templates/.icons/fontawesome/solid/glass-cheers.svg +1 -0
  1987. docsforge/themes/material/templates/.icons/fontawesome/solid/glass-martini-alt.svg +1 -0
  1988. docsforge/themes/material/templates/.icons/fontawesome/solid/glass-martini.svg +1 -0
  1989. docsforge/themes/material/templates/.icons/fontawesome/solid/glass-water-droplet.svg +1 -0
  1990. docsforge/themes/material/templates/.icons/fontawesome/solid/glass-water.svg +1 -0
  1991. docsforge/themes/material/templates/.icons/fontawesome/solid/glass-whiskey.svg +1 -0
  1992. docsforge/themes/material/templates/.icons/fontawesome/solid/glasses.svg +1 -0
  1993. docsforge/themes/material/templates/.icons/fontawesome/solid/globe-africa.svg +1 -0
  1994. docsforge/themes/material/templates/.icons/fontawesome/solid/globe-americas.svg +1 -0
  1995. docsforge/themes/material/templates/.icons/fontawesome/solid/globe-asia.svg +1 -0
  1996. docsforge/themes/material/templates/.icons/fontawesome/solid/globe-europe.svg +1 -0
  1997. docsforge/themes/material/templates/.icons/fontawesome/solid/globe-oceania.svg +1 -0
  1998. docsforge/themes/material/templates/.icons/fontawesome/solid/globe.svg +1 -0
  1999. docsforge/themes/material/templates/.icons/fontawesome/solid/golf-ball-tee.svg +1 -0
  2000. docsforge/themes/material/templates/.icons/fontawesome/solid/golf-ball.svg +1 -0
  2001. docsforge/themes/material/templates/.icons/fontawesome/solid/gopuram.svg +1 -0
  2002. docsforge/themes/material/templates/.icons/fontawesome/solid/graduation-cap.svg +1 -0
  2003. docsforge/themes/material/templates/.icons/fontawesome/solid/greater-than-equal.svg +1 -0
  2004. docsforge/themes/material/templates/.icons/fontawesome/solid/greater-than.svg +1 -0
  2005. docsforge/themes/material/templates/.icons/fontawesome/solid/grid-horizontal.svg +1 -0
  2006. docsforge/themes/material/templates/.icons/fontawesome/solid/grid-vertical.svg +1 -0
  2007. docsforge/themes/material/templates/.icons/fontawesome/solid/grimace.svg +1 -0
  2008. docsforge/themes/material/templates/.icons/fontawesome/solid/grin-alt.svg +1 -0
  2009. docsforge/themes/material/templates/.icons/fontawesome/solid/grin-beam-sweat.svg +1 -0
  2010. docsforge/themes/material/templates/.icons/fontawesome/solid/grin-beam.svg +1 -0
  2011. docsforge/themes/material/templates/.icons/fontawesome/solid/grin-hearts.svg +1 -0
  2012. docsforge/themes/material/templates/.icons/fontawesome/solid/grin-squint-tears.svg +1 -0
  2013. docsforge/themes/material/templates/.icons/fontawesome/solid/grin-squint.svg +1 -0
  2014. docsforge/themes/material/templates/.icons/fontawesome/solid/grin-stars.svg +1 -0
  2015. docsforge/themes/material/templates/.icons/fontawesome/solid/grin-tears.svg +1 -0
  2016. docsforge/themes/material/templates/.icons/fontawesome/solid/grin-tongue-squint.svg +1 -0
  2017. docsforge/themes/material/templates/.icons/fontawesome/solid/grin-tongue-wink.svg +1 -0
  2018. docsforge/themes/material/templates/.icons/fontawesome/solid/grin-tongue.svg +1 -0
  2019. docsforge/themes/material/templates/.icons/fontawesome/solid/grin-wink.svg +1 -0
  2020. docsforge/themes/material/templates/.icons/fontawesome/solid/grin.svg +1 -0
  2021. docsforge/themes/material/templates/.icons/fontawesome/solid/grip-horizontal.svg +1 -0
  2022. docsforge/themes/material/templates/.icons/fontawesome/solid/grip-lines-vertical.svg +1 -0
  2023. docsforge/themes/material/templates/.icons/fontawesome/solid/grip-lines.svg +1 -0
  2024. docsforge/themes/material/templates/.icons/fontawesome/solid/grip-vertical.svg +1 -0
  2025. docsforge/themes/material/templates/.icons/fontawesome/solid/grip.svg +1 -0
  2026. docsforge/themes/material/templates/.icons/fontawesome/solid/group-arrows-rotate.svg +1 -0
  2027. docsforge/themes/material/templates/.icons/fontawesome/solid/guarani-sign.svg +1 -0
  2028. docsforge/themes/material/templates/.icons/fontawesome/solid/guitar.svg +1 -0
  2029. docsforge/themes/material/templates/.icons/fontawesome/solid/gun.svg +1 -0
  2030. docsforge/themes/material/templates/.icons/fontawesome/solid/h-square.svg +1 -0
  2031. docsforge/themes/material/templates/.icons/fontawesome/solid/h.svg +1 -0
  2032. docsforge/themes/material/templates/.icons/fontawesome/solid/hamburger.svg +1 -0
  2033. docsforge/themes/material/templates/.icons/fontawesome/solid/hammer.svg +1 -0
  2034. docsforge/themes/material/templates/.icons/fontawesome/solid/hamsa.svg +1 -0
  2035. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-back-fist.svg +1 -0
  2036. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-dots.svg +1 -0
  2037. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-fist.svg +1 -0
  2038. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-holding-dollar.svg +1 -0
  2039. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-holding-droplet.svg +1 -0
  2040. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-holding-hand.svg +1 -0
  2041. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-holding-heart.svg +1 -0
  2042. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-holding-medical.svg +1 -0
  2043. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-holding-usd.svg +1 -0
  2044. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-holding-water.svg +1 -0
  2045. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-holding.svg +1 -0
  2046. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-lizard.svg +1 -0
  2047. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-middle-finger.svg +1 -0
  2048. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-paper.svg +1 -0
  2049. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-peace.svg +1 -0
  2050. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-point-down.svg +1 -0
  2051. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-point-left.svg +1 -0
  2052. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-point-right.svg +1 -0
  2053. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-point-up.svg +1 -0
  2054. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-pointer.svg +1 -0
  2055. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-rock.svg +1 -0
  2056. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-scissors.svg +1 -0
  2057. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-sparkles.svg +1 -0
  2058. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-spock.svg +1 -0
  2059. docsforge/themes/material/templates/.icons/fontawesome/solid/hand.svg +1 -0
  2060. docsforge/themes/material/templates/.icons/fontawesome/solid/handcuffs.svg +1 -0
  2061. docsforge/themes/material/templates/.icons/fontawesome/solid/hands-american-sign-language-interpreting.svg +1 -0
  2062. docsforge/themes/material/templates/.icons/fontawesome/solid/hands-asl-interpreting.svg +1 -0
  2063. docsforge/themes/material/templates/.icons/fontawesome/solid/hands-bound.svg +1 -0
  2064. docsforge/themes/material/templates/.icons/fontawesome/solid/hands-bubbles.svg +1 -0
  2065. docsforge/themes/material/templates/.icons/fontawesome/solid/hands-clapping.svg +1 -0
  2066. docsforge/themes/material/templates/.icons/fontawesome/solid/hands-helping.svg +1 -0
  2067. docsforge/themes/material/templates/.icons/fontawesome/solid/hands-holding-child.svg +1 -0
  2068. docsforge/themes/material/templates/.icons/fontawesome/solid/hands-holding-circle.svg +1 -0
  2069. docsforge/themes/material/templates/.icons/fontawesome/solid/hands-holding.svg +1 -0
  2070. docsforge/themes/material/templates/.icons/fontawesome/solid/hands-praying.svg +1 -0
  2071. docsforge/themes/material/templates/.icons/fontawesome/solid/hands-wash.svg +1 -0
  2072. docsforge/themes/material/templates/.icons/fontawesome/solid/hands.svg +1 -0
  2073. docsforge/themes/material/templates/.icons/fontawesome/solid/handshake-alt-slash.svg +1 -0
  2074. docsforge/themes/material/templates/.icons/fontawesome/solid/handshake-alt.svg +1 -0
  2075. docsforge/themes/material/templates/.icons/fontawesome/solid/handshake-angle.svg +1 -0
  2076. docsforge/themes/material/templates/.icons/fontawesome/solid/handshake-simple-slash.svg +1 -0
  2077. docsforge/themes/material/templates/.icons/fontawesome/solid/handshake-simple.svg +1 -0
  2078. docsforge/themes/material/templates/.icons/fontawesome/solid/handshake-slash.svg +1 -0
  2079. docsforge/themes/material/templates/.icons/fontawesome/solid/handshake.svg +1 -0
  2080. docsforge/themes/material/templates/.icons/fontawesome/solid/hanukiah.svg +1 -0
  2081. docsforge/themes/material/templates/.icons/fontawesome/solid/hard-drive.svg +1 -0
  2082. docsforge/themes/material/templates/.icons/fontawesome/solid/hard-hat.svg +1 -0
  2083. docsforge/themes/material/templates/.icons/fontawesome/solid/hard-of-hearing.svg +1 -0
  2084. docsforge/themes/material/templates/.icons/fontawesome/solid/hashtag.svg +1 -0
  2085. docsforge/themes/material/templates/.icons/fontawesome/solid/hat-cowboy-side.svg +1 -0
  2086. docsforge/themes/material/templates/.icons/fontawesome/solid/hat-cowboy.svg +1 -0
  2087. docsforge/themes/material/templates/.icons/fontawesome/solid/hat-hard.svg +1 -0
  2088. docsforge/themes/material/templates/.icons/fontawesome/solid/hat-wizard.svg +1 -0
  2089. docsforge/themes/material/templates/.icons/fontawesome/solid/haykal.svg +1 -0
  2090. docsforge/themes/material/templates/.icons/fontawesome/solid/hdd.svg +1 -0
  2091. docsforge/themes/material/templates/.icons/fontawesome/solid/head-side-cough-slash.svg +1 -0
  2092. docsforge/themes/material/templates/.icons/fontawesome/solid/head-side-cough.svg +1 -0
  2093. docsforge/themes/material/templates/.icons/fontawesome/solid/head-side-mask.svg +1 -0
  2094. docsforge/themes/material/templates/.icons/fontawesome/solid/head-side-virus.svg +1 -0
  2095. docsforge/themes/material/templates/.icons/fontawesome/solid/header.svg +1 -0
  2096. docsforge/themes/material/templates/.icons/fontawesome/solid/heading.svg +1 -0
  2097. docsforge/themes/material/templates/.icons/fontawesome/solid/headphones-alt.svg +1 -0
  2098. docsforge/themes/material/templates/.icons/fontawesome/solid/headphones-simple.svg +1 -0
  2099. docsforge/themes/material/templates/.icons/fontawesome/solid/headphones.svg +1 -0
  2100. docsforge/themes/material/templates/.icons/fontawesome/solid/headset.svg +1 -0
  2101. docsforge/themes/material/templates/.icons/fontawesome/solid/heart-broken.svg +1 -0
  2102. docsforge/themes/material/templates/.icons/fontawesome/solid/heart-circle-bolt.svg +1 -0
  2103. docsforge/themes/material/templates/.icons/fontawesome/solid/heart-circle-check.svg +1 -0
  2104. docsforge/themes/material/templates/.icons/fontawesome/solid/heart-circle-exclamation.svg +1 -0
  2105. docsforge/themes/material/templates/.icons/fontawesome/solid/heart-circle-minus.svg +1 -0
  2106. docsforge/themes/material/templates/.icons/fontawesome/solid/heart-circle-plus.svg +1 -0
  2107. docsforge/themes/material/templates/.icons/fontawesome/solid/heart-circle-xmark.svg +1 -0
  2108. docsforge/themes/material/templates/.icons/fontawesome/solid/heart-crack.svg +1 -0
  2109. docsforge/themes/material/templates/.icons/fontawesome/solid/heart-music-camera-bolt.svg +1 -0
  2110. docsforge/themes/material/templates/.icons/fontawesome/solid/heart-pulse.svg +1 -0
  2111. docsforge/themes/material/templates/.icons/fontawesome/solid/heart.svg +1 -0
  2112. docsforge/themes/material/templates/.icons/fontawesome/solid/heartbeat.svg +1 -0
  2113. docsforge/themes/material/templates/.icons/fontawesome/solid/helicopter-symbol.svg +1 -0
  2114. docsforge/themes/material/templates/.icons/fontawesome/solid/helicopter.svg +1 -0
  2115. docsforge/themes/material/templates/.icons/fontawesome/solid/helmet-safety.svg +1 -0
  2116. docsforge/themes/material/templates/.icons/fontawesome/solid/helmet-un.svg +1 -0
  2117. docsforge/themes/material/templates/.icons/fontawesome/solid/heptagon.svg +1 -0
  2118. docsforge/themes/material/templates/.icons/fontawesome/solid/hexagon-nodes-bolt.svg +1 -0
  2119. docsforge/themes/material/templates/.icons/fontawesome/solid/hexagon-nodes.svg +1 -0
  2120. docsforge/themes/material/templates/.icons/fontawesome/solid/hexagon.svg +1 -0
  2121. docsforge/themes/material/templates/.icons/fontawesome/solid/highlighter.svg +1 -0
  2122. docsforge/themes/material/templates/.icons/fontawesome/solid/hiking.svg +1 -0
  2123. docsforge/themes/material/templates/.icons/fontawesome/solid/hill-avalanche.svg +1 -0
  2124. docsforge/themes/material/templates/.icons/fontawesome/solid/hill-rockslide.svg +1 -0
  2125. docsforge/themes/material/templates/.icons/fontawesome/solid/hippo.svg +1 -0
  2126. docsforge/themes/material/templates/.icons/fontawesome/solid/history.svg +1 -0
  2127. docsforge/themes/material/templates/.icons/fontawesome/solid/hockey-puck.svg +1 -0
  2128. docsforge/themes/material/templates/.icons/fontawesome/solid/holly-berry.svg +1 -0
  2129. docsforge/themes/material/templates/.icons/fontawesome/solid/home-alt.svg +1 -0
  2130. docsforge/themes/material/templates/.icons/fontawesome/solid/home-lg-alt.svg +1 -0
  2131. docsforge/themes/material/templates/.icons/fontawesome/solid/home-lg.svg +1 -0
  2132. docsforge/themes/material/templates/.icons/fontawesome/solid/home-user.svg +1 -0
  2133. docsforge/themes/material/templates/.icons/fontawesome/solid/home.svg +1 -0
  2134. docsforge/themes/material/templates/.icons/fontawesome/solid/horse-head.svg +1 -0
  2135. docsforge/themes/material/templates/.icons/fontawesome/solid/horse.svg +1 -0
  2136. docsforge/themes/material/templates/.icons/fontawesome/solid/hospital-alt.svg +1 -0
  2137. docsforge/themes/material/templates/.icons/fontawesome/solid/hospital-symbol.svg +1 -0
  2138. docsforge/themes/material/templates/.icons/fontawesome/solid/hospital-user.svg +1 -0
  2139. docsforge/themes/material/templates/.icons/fontawesome/solid/hospital-wide.svg +1 -0
  2140. docsforge/themes/material/templates/.icons/fontawesome/solid/hospital.svg +1 -0
  2141. docsforge/themes/material/templates/.icons/fontawesome/solid/hot-tub-person.svg +1 -0
  2142. docsforge/themes/material/templates/.icons/fontawesome/solid/hot-tub.svg +1 -0
  2143. docsforge/themes/material/templates/.icons/fontawesome/solid/hotdog.svg +1 -0
  2144. docsforge/themes/material/templates/.icons/fontawesome/solid/hotel.svg +1 -0
  2145. docsforge/themes/material/templates/.icons/fontawesome/solid/hourglass-1.svg +1 -0
  2146. docsforge/themes/material/templates/.icons/fontawesome/solid/hourglass-2.svg +1 -0
  2147. docsforge/themes/material/templates/.icons/fontawesome/solid/hourglass-3.svg +1 -0
  2148. docsforge/themes/material/templates/.icons/fontawesome/solid/hourglass-empty.svg +1 -0
  2149. docsforge/themes/material/templates/.icons/fontawesome/solid/hourglass-end.svg +1 -0
  2150. docsforge/themes/material/templates/.icons/fontawesome/solid/hourglass-half.svg +1 -0
  2151. docsforge/themes/material/templates/.icons/fontawesome/solid/hourglass-start.svg +1 -0
  2152. docsforge/themes/material/templates/.icons/fontawesome/solid/hourglass.svg +1 -0
  2153. docsforge/themes/material/templates/.icons/fontawesome/solid/house-chimney-crack.svg +1 -0
  2154. docsforge/themes/material/templates/.icons/fontawesome/solid/house-chimney-medical.svg +1 -0
  2155. docsforge/themes/material/templates/.icons/fontawesome/solid/house-chimney-user.svg +1 -0
  2156. docsforge/themes/material/templates/.icons/fontawesome/solid/house-chimney-window.svg +1 -0
  2157. docsforge/themes/material/templates/.icons/fontawesome/solid/house-chimney.svg +1 -0
  2158. docsforge/themes/material/templates/.icons/fontawesome/solid/house-circle-check.svg +1 -0
  2159. docsforge/themes/material/templates/.icons/fontawesome/solid/house-circle-exclamation.svg +1 -0
  2160. docsforge/themes/material/templates/.icons/fontawesome/solid/house-circle-xmark.svg +1 -0
  2161. docsforge/themes/material/templates/.icons/fontawesome/solid/house-crack.svg +1 -0
  2162. docsforge/themes/material/templates/.icons/fontawesome/solid/house-damage.svg +1 -0
  2163. docsforge/themes/material/templates/.icons/fontawesome/solid/house-fire.svg +1 -0
  2164. docsforge/themes/material/templates/.icons/fontawesome/solid/house-flag.svg +1 -0
  2165. docsforge/themes/material/templates/.icons/fontawesome/solid/house-flood-water-circle-arrow-right.svg +1 -0
  2166. docsforge/themes/material/templates/.icons/fontawesome/solid/house-flood-water.svg +1 -0
  2167. docsforge/themes/material/templates/.icons/fontawesome/solid/house-laptop.svg +1 -0
  2168. docsforge/themes/material/templates/.icons/fontawesome/solid/house-lock.svg +1 -0
  2169. docsforge/themes/material/templates/.icons/fontawesome/solid/house-medical-circle-check.svg +1 -0
  2170. docsforge/themes/material/templates/.icons/fontawesome/solid/house-medical-circle-exclamation.svg +1 -0
  2171. docsforge/themes/material/templates/.icons/fontawesome/solid/house-medical-circle-xmark.svg +1 -0
  2172. docsforge/themes/material/templates/.icons/fontawesome/solid/house-medical-flag.svg +1 -0
  2173. docsforge/themes/material/templates/.icons/fontawesome/solid/house-medical.svg +1 -0
  2174. docsforge/themes/material/templates/.icons/fontawesome/solid/house-signal.svg +1 -0
  2175. docsforge/themes/material/templates/.icons/fontawesome/solid/house-tsunami.svg +1 -0
  2176. docsforge/themes/material/templates/.icons/fontawesome/solid/house-user.svg +1 -0
  2177. docsforge/themes/material/templates/.icons/fontawesome/solid/house.svg +1 -0
  2178. docsforge/themes/material/templates/.icons/fontawesome/solid/hryvnia-sign.svg +1 -0
  2179. docsforge/themes/material/templates/.icons/fontawesome/solid/hryvnia.svg +1 -0
  2180. docsforge/themes/material/templates/.icons/fontawesome/solid/hurricane.svg +1 -0
  2181. docsforge/themes/material/templates/.icons/fontawesome/solid/i-cursor.svg +1 -0
  2182. docsforge/themes/material/templates/.icons/fontawesome/solid/i.svg +1 -0
  2183. docsforge/themes/material/templates/.icons/fontawesome/solid/ice-cream.svg +1 -0
  2184. docsforge/themes/material/templates/.icons/fontawesome/solid/icicles.svg +1 -0
  2185. docsforge/themes/material/templates/.icons/fontawesome/solid/icons.svg +1 -0
  2186. docsforge/themes/material/templates/.icons/fontawesome/solid/id-badge.svg +1 -0
  2187. docsforge/themes/material/templates/.icons/fontawesome/solid/id-card-alt.svg +1 -0
  2188. docsforge/themes/material/templates/.icons/fontawesome/solid/id-card-clip.svg +1 -0
  2189. docsforge/themes/material/templates/.icons/fontawesome/solid/id-card.svg +1 -0
  2190. docsforge/themes/material/templates/.icons/fontawesome/solid/igloo.svg +1 -0
  2191. docsforge/themes/material/templates/.icons/fontawesome/solid/ils.svg +1 -0
  2192. docsforge/themes/material/templates/.icons/fontawesome/solid/image-portrait.svg +1 -0
  2193. docsforge/themes/material/templates/.icons/fontawesome/solid/image.svg +1 -0
  2194. docsforge/themes/material/templates/.icons/fontawesome/solid/images.svg +1 -0
  2195. docsforge/themes/material/templates/.icons/fontawesome/solid/inbox.svg +1 -0
  2196. docsforge/themes/material/templates/.icons/fontawesome/solid/indent.svg +1 -0
  2197. docsforge/themes/material/templates/.icons/fontawesome/solid/indian-rupee-sign.svg +1 -0
  2198. docsforge/themes/material/templates/.icons/fontawesome/solid/indian-rupee.svg +1 -0
  2199. docsforge/themes/material/templates/.icons/fontawesome/solid/industry.svg +1 -0
  2200. docsforge/themes/material/templates/.icons/fontawesome/solid/infinity.svg +1 -0
  2201. docsforge/themes/material/templates/.icons/fontawesome/solid/info-circle.svg +1 -0
  2202. docsforge/themes/material/templates/.icons/fontawesome/solid/info.svg +1 -0
  2203. docsforge/themes/material/templates/.icons/fontawesome/solid/inr.svg +1 -0
  2204. docsforge/themes/material/templates/.icons/fontawesome/solid/institution.svg +1 -0
  2205. docsforge/themes/material/templates/.icons/fontawesome/solid/italic.svg +1 -0
  2206. docsforge/themes/material/templates/.icons/fontawesome/solid/j.svg +1 -0
  2207. docsforge/themes/material/templates/.icons/fontawesome/solid/jar-wheat.svg +1 -0
  2208. docsforge/themes/material/templates/.icons/fontawesome/solid/jar.svg +1 -0
  2209. docsforge/themes/material/templates/.icons/fontawesome/solid/jedi.svg +1 -0
  2210. docsforge/themes/material/templates/.icons/fontawesome/solid/jet-fighter-up.svg +1 -0
  2211. docsforge/themes/material/templates/.icons/fontawesome/solid/jet-fighter.svg +1 -0
  2212. docsforge/themes/material/templates/.icons/fontawesome/solid/joint.svg +1 -0
  2213. docsforge/themes/material/templates/.icons/fontawesome/solid/journal-whills.svg +1 -0
  2214. docsforge/themes/material/templates/.icons/fontawesome/solid/jpy.svg +1 -0
  2215. docsforge/themes/material/templates/.icons/fontawesome/solid/jug-detergent.svg +1 -0
  2216. docsforge/themes/material/templates/.icons/fontawesome/solid/k.svg +1 -0
  2217. docsforge/themes/material/templates/.icons/fontawesome/solid/kaaba.svg +1 -0
  2218. docsforge/themes/material/templates/.icons/fontawesome/solid/key.svg +1 -0
  2219. docsforge/themes/material/templates/.icons/fontawesome/solid/keyboard.svg +1 -0
  2220. docsforge/themes/material/templates/.icons/fontawesome/solid/khanda.svg +1 -0
  2221. docsforge/themes/material/templates/.icons/fontawesome/solid/kip-sign.svg +1 -0
  2222. docsforge/themes/material/templates/.icons/fontawesome/solid/kiss-beam.svg +1 -0
  2223. docsforge/themes/material/templates/.icons/fontawesome/solid/kiss-wink-heart.svg +1 -0
  2224. docsforge/themes/material/templates/.icons/fontawesome/solid/kiss.svg +1 -0
  2225. docsforge/themes/material/templates/.icons/fontawesome/solid/kit-medical.svg +1 -0
  2226. docsforge/themes/material/templates/.icons/fontawesome/solid/kitchen-set.svg +1 -0
  2227. docsforge/themes/material/templates/.icons/fontawesome/solid/kiwi-bird.svg +1 -0
  2228. docsforge/themes/material/templates/.icons/fontawesome/solid/krw.svg +1 -0
  2229. docsforge/themes/material/templates/.icons/fontawesome/solid/l.svg +1 -0
  2230. docsforge/themes/material/templates/.icons/fontawesome/solid/ladder-water.svg +1 -0
  2231. docsforge/themes/material/templates/.icons/fontawesome/solid/land-mine-on.svg +1 -0
  2232. docsforge/themes/material/templates/.icons/fontawesome/solid/landmark-alt.svg +1 -0
  2233. docsforge/themes/material/templates/.icons/fontawesome/solid/landmark-dome.svg +1 -0
  2234. docsforge/themes/material/templates/.icons/fontawesome/solid/landmark-flag.svg +1 -0
  2235. docsforge/themes/material/templates/.icons/fontawesome/solid/landmark.svg +1 -0
  2236. docsforge/themes/material/templates/.icons/fontawesome/solid/language.svg +1 -0
  2237. docsforge/themes/material/templates/.icons/fontawesome/solid/laptop-code.svg +1 -0
  2238. docsforge/themes/material/templates/.icons/fontawesome/solid/laptop-file.svg +1 -0
  2239. docsforge/themes/material/templates/.icons/fontawesome/solid/laptop-house.svg +1 -0
  2240. docsforge/themes/material/templates/.icons/fontawesome/solid/laptop-medical.svg +1 -0
  2241. docsforge/themes/material/templates/.icons/fontawesome/solid/laptop.svg +1 -0
  2242. docsforge/themes/material/templates/.icons/fontawesome/solid/lari-sign.svg +1 -0
  2243. docsforge/themes/material/templates/.icons/fontawesome/solid/laugh-beam.svg +1 -0
  2244. docsforge/themes/material/templates/.icons/fontawesome/solid/laugh-squint.svg +1 -0
  2245. docsforge/themes/material/templates/.icons/fontawesome/solid/laugh-wink.svg +1 -0
  2246. docsforge/themes/material/templates/.icons/fontawesome/solid/laugh.svg +1 -0
  2247. docsforge/themes/material/templates/.icons/fontawesome/solid/layer-group.svg +1 -0
  2248. docsforge/themes/material/templates/.icons/fontawesome/solid/leaf.svg +1 -0
  2249. docsforge/themes/material/templates/.icons/fontawesome/solid/left-long.svg +1 -0
  2250. docsforge/themes/material/templates/.icons/fontawesome/solid/left-right.svg +1 -0
  2251. docsforge/themes/material/templates/.icons/fontawesome/solid/legal.svg +1 -0
  2252. docsforge/themes/material/templates/.icons/fontawesome/solid/lemon.svg +1 -0
  2253. docsforge/themes/material/templates/.icons/fontawesome/solid/less-than-equal.svg +1 -0
  2254. docsforge/themes/material/templates/.icons/fontawesome/solid/less-than.svg +1 -0
  2255. docsforge/themes/material/templates/.icons/fontawesome/solid/level-down-alt.svg +1 -0
  2256. docsforge/themes/material/templates/.icons/fontawesome/solid/level-down.svg +1 -0
  2257. docsforge/themes/material/templates/.icons/fontawesome/solid/level-up-alt.svg +1 -0
  2258. docsforge/themes/material/templates/.icons/fontawesome/solid/level-up.svg +1 -0
  2259. docsforge/themes/material/templates/.icons/fontawesome/solid/life-ring.svg +1 -0
  2260. docsforge/themes/material/templates/.icons/fontawesome/solid/lightbulb.svg +1 -0
  2261. docsforge/themes/material/templates/.icons/fontawesome/solid/line-chart.svg +1 -0
  2262. docsforge/themes/material/templates/.icons/fontawesome/solid/lines-leaning.svg +1 -0
  2263. docsforge/themes/material/templates/.icons/fontawesome/solid/link-slash.svg +1 -0
  2264. docsforge/themes/material/templates/.icons/fontawesome/solid/link.svg +1 -0
  2265. docsforge/themes/material/templates/.icons/fontawesome/solid/lira-sign.svg +1 -0
  2266. docsforge/themes/material/templates/.icons/fontawesome/solid/list-1-2.svg +1 -0
  2267. docsforge/themes/material/templates/.icons/fontawesome/solid/list-alt.svg +1 -0
  2268. docsforge/themes/material/templates/.icons/fontawesome/solid/list-check.svg +1 -0
  2269. docsforge/themes/material/templates/.icons/fontawesome/solid/list-dots.svg +1 -0
  2270. docsforge/themes/material/templates/.icons/fontawesome/solid/list-numeric.svg +1 -0
  2271. docsforge/themes/material/templates/.icons/fontawesome/solid/list-ol.svg +1 -0
  2272. docsforge/themes/material/templates/.icons/fontawesome/solid/list-squares.svg +1 -0
  2273. docsforge/themes/material/templates/.icons/fontawesome/solid/list-ul.svg +1 -0
  2274. docsforge/themes/material/templates/.icons/fontawesome/solid/list.svg +1 -0
  2275. docsforge/themes/material/templates/.icons/fontawesome/solid/litecoin-sign.svg +1 -0
  2276. docsforge/themes/material/templates/.icons/fontawesome/solid/location-arrow.svg +1 -0
  2277. docsforge/themes/material/templates/.icons/fontawesome/solid/location-crosshairs.svg +1 -0
  2278. docsforge/themes/material/templates/.icons/fontawesome/solid/location-dot.svg +1 -0
  2279. docsforge/themes/material/templates/.icons/fontawesome/solid/location-pin-lock.svg +1 -0
  2280. docsforge/themes/material/templates/.icons/fontawesome/solid/location-pin.svg +1 -0
  2281. docsforge/themes/material/templates/.icons/fontawesome/solid/location.svg +1 -0
  2282. docsforge/themes/material/templates/.icons/fontawesome/solid/lock-open.svg +1 -0
  2283. docsforge/themes/material/templates/.icons/fontawesome/solid/lock.svg +1 -0
  2284. docsforge/themes/material/templates/.icons/fontawesome/solid/locust.svg +1 -0
  2285. docsforge/themes/material/templates/.icons/fontawesome/solid/long-arrow-alt-down.svg +1 -0
  2286. docsforge/themes/material/templates/.icons/fontawesome/solid/long-arrow-alt-left.svg +1 -0
  2287. docsforge/themes/material/templates/.icons/fontawesome/solid/long-arrow-alt-right.svg +1 -0
  2288. docsforge/themes/material/templates/.icons/fontawesome/solid/long-arrow-alt-up.svg +1 -0
  2289. docsforge/themes/material/templates/.icons/fontawesome/solid/long-arrow-down.svg +1 -0
  2290. docsforge/themes/material/templates/.icons/fontawesome/solid/long-arrow-left.svg +1 -0
  2291. docsforge/themes/material/templates/.icons/fontawesome/solid/long-arrow-right.svg +1 -0
  2292. docsforge/themes/material/templates/.icons/fontawesome/solid/long-arrow-up.svg +1 -0
  2293. docsforge/themes/material/templates/.icons/fontawesome/solid/low-vision.svg +1 -0
  2294. docsforge/themes/material/templates/.icons/fontawesome/solid/luggage-cart.svg +1 -0
  2295. docsforge/themes/material/templates/.icons/fontawesome/solid/lungs-virus.svg +1 -0
  2296. docsforge/themes/material/templates/.icons/fontawesome/solid/lungs.svg +1 -0
  2297. docsforge/themes/material/templates/.icons/fontawesome/solid/m.svg +1 -0
  2298. docsforge/themes/material/templates/.icons/fontawesome/solid/magic-wand-sparkles.svg +1 -0
  2299. docsforge/themes/material/templates/.icons/fontawesome/solid/magic.svg +1 -0
  2300. docsforge/themes/material/templates/.icons/fontawesome/solid/magnet.svg +1 -0
  2301. docsforge/themes/material/templates/.icons/fontawesome/solid/magnifying-glass-arrow-right.svg +1 -0
  2302. docsforge/themes/material/templates/.icons/fontawesome/solid/magnifying-glass-chart.svg +1 -0
  2303. docsforge/themes/material/templates/.icons/fontawesome/solid/magnifying-glass-dollar.svg +1 -0
  2304. docsforge/themes/material/templates/.icons/fontawesome/solid/magnifying-glass-location.svg +1 -0
  2305. docsforge/themes/material/templates/.icons/fontawesome/solid/magnifying-glass-minus.svg +1 -0
  2306. docsforge/themes/material/templates/.icons/fontawesome/solid/magnifying-glass-plus.svg +1 -0
  2307. docsforge/themes/material/templates/.icons/fontawesome/solid/magnifying-glass.svg +1 -0
  2308. docsforge/themes/material/templates/.icons/fontawesome/solid/mail-bulk.svg +1 -0
  2309. docsforge/themes/material/templates/.icons/fontawesome/solid/mail-forward.svg +1 -0
  2310. docsforge/themes/material/templates/.icons/fontawesome/solid/mail-reply-all.svg +1 -0
  2311. docsforge/themes/material/templates/.icons/fontawesome/solid/mail-reply.svg +1 -0
  2312. docsforge/themes/material/templates/.icons/fontawesome/solid/male.svg +1 -0
  2313. docsforge/themes/material/templates/.icons/fontawesome/solid/manat-sign.svg +1 -0
  2314. docsforge/themes/material/templates/.icons/fontawesome/solid/map-location-dot.svg +1 -0
  2315. docsforge/themes/material/templates/.icons/fontawesome/solid/map-location.svg +1 -0
  2316. docsforge/themes/material/templates/.icons/fontawesome/solid/map-marked-alt.svg +1 -0
  2317. docsforge/themes/material/templates/.icons/fontawesome/solid/map-marked.svg +1 -0
  2318. docsforge/themes/material/templates/.icons/fontawesome/solid/map-marker-alt.svg +1 -0
  2319. docsforge/themes/material/templates/.icons/fontawesome/solid/map-marker.svg +1 -0
  2320. docsforge/themes/material/templates/.icons/fontawesome/solid/map-pin.svg +1 -0
  2321. docsforge/themes/material/templates/.icons/fontawesome/solid/map-signs.svg +1 -0
  2322. docsforge/themes/material/templates/.icons/fontawesome/solid/map.svg +1 -0
  2323. docsforge/themes/material/templates/.icons/fontawesome/solid/marker.svg +1 -0
  2324. docsforge/themes/material/templates/.icons/fontawesome/solid/mars-and-venus-burst.svg +1 -0
  2325. docsforge/themes/material/templates/.icons/fontawesome/solid/mars-and-venus.svg +1 -0
  2326. docsforge/themes/material/templates/.icons/fontawesome/solid/mars-double.svg +1 -0
  2327. docsforge/themes/material/templates/.icons/fontawesome/solid/mars-stroke-h.svg +1 -0
  2328. docsforge/themes/material/templates/.icons/fontawesome/solid/mars-stroke-right.svg +1 -0
  2329. docsforge/themes/material/templates/.icons/fontawesome/solid/mars-stroke-up.svg +1 -0
  2330. docsforge/themes/material/templates/.icons/fontawesome/solid/mars-stroke-v.svg +1 -0
  2331. docsforge/themes/material/templates/.icons/fontawesome/solid/mars-stroke.svg +1 -0
  2332. docsforge/themes/material/templates/.icons/fontawesome/solid/mars.svg +1 -0
  2333. docsforge/themes/material/templates/.icons/fontawesome/solid/martini-glass-citrus.svg +1 -0
  2334. docsforge/themes/material/templates/.icons/fontawesome/solid/martini-glass-empty.svg +1 -0
  2335. docsforge/themes/material/templates/.icons/fontawesome/solid/martini-glass.svg +1 -0
  2336. docsforge/themes/material/templates/.icons/fontawesome/solid/mask-face.svg +1 -0
  2337. docsforge/themes/material/templates/.icons/fontawesome/solid/mask-ventilator.svg +1 -0
  2338. docsforge/themes/material/templates/.icons/fontawesome/solid/mask.svg +1 -0
  2339. docsforge/themes/material/templates/.icons/fontawesome/solid/masks-theater.svg +1 -0
  2340. docsforge/themes/material/templates/.icons/fontawesome/solid/mattress-pillow.svg +1 -0
  2341. docsforge/themes/material/templates/.icons/fontawesome/solid/maximize.svg +1 -0
  2342. docsforge/themes/material/templates/.icons/fontawesome/solid/medal.svg +1 -0
  2343. docsforge/themes/material/templates/.icons/fontawesome/solid/medkit.svg +1 -0
  2344. docsforge/themes/material/templates/.icons/fontawesome/solid/meh-blank.svg +1 -0
  2345. docsforge/themes/material/templates/.icons/fontawesome/solid/meh-rolling-eyes.svg +1 -0
  2346. docsforge/themes/material/templates/.icons/fontawesome/solid/meh.svg +1 -0
  2347. docsforge/themes/material/templates/.icons/fontawesome/solid/memory.svg +1 -0
  2348. docsforge/themes/material/templates/.icons/fontawesome/solid/menorah.svg +1 -0
  2349. docsforge/themes/material/templates/.icons/fontawesome/solid/mercury.svg +1 -0
  2350. docsforge/themes/material/templates/.icons/fontawesome/solid/message.svg +1 -0
  2351. docsforge/themes/material/templates/.icons/fontawesome/solid/meteor.svg +1 -0
  2352. docsforge/themes/material/templates/.icons/fontawesome/solid/microchip.svg +1 -0
  2353. docsforge/themes/material/templates/.icons/fontawesome/solid/microphone-alt-slash.svg +1 -0
  2354. docsforge/themes/material/templates/.icons/fontawesome/solid/microphone-alt.svg +1 -0
  2355. docsforge/themes/material/templates/.icons/fontawesome/solid/microphone-lines-slash.svg +1 -0
  2356. docsforge/themes/material/templates/.icons/fontawesome/solid/microphone-lines.svg +1 -0
  2357. docsforge/themes/material/templates/.icons/fontawesome/solid/microphone-slash.svg +1 -0
  2358. docsforge/themes/material/templates/.icons/fontawesome/solid/microphone.svg +1 -0
  2359. docsforge/themes/material/templates/.icons/fontawesome/solid/microscope.svg +1 -0
  2360. docsforge/themes/material/templates/.icons/fontawesome/solid/mill-sign.svg +1 -0
  2361. docsforge/themes/material/templates/.icons/fontawesome/solid/minimize.svg +1 -0
  2362. docsforge/themes/material/templates/.icons/fontawesome/solid/minus-circle.svg +1 -0
  2363. docsforge/themes/material/templates/.icons/fontawesome/solid/minus-square.svg +1 -0
  2364. docsforge/themes/material/templates/.icons/fontawesome/solid/minus.svg +1 -0
  2365. docsforge/themes/material/templates/.icons/fontawesome/solid/mitten.svg +1 -0
  2366. docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-alt.svg +1 -0
  2367. docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-android-alt.svg +1 -0
  2368. docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-android.svg +1 -0
  2369. docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-button.svg +1 -0
  2370. docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-phone.svg +1 -0
  2371. docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-retro.svg +1 -0
  2372. docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-screen-button.svg +1 -0
  2373. docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-screen.svg +1 -0
  2374. docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-vibrate.svg +1 -0
  2375. docsforge/themes/material/templates/.icons/fontawesome/solid/mobile.svg +1 -0
  2376. docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill-1-wave.svg +1 -0
  2377. docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill-1.svg +1 -0
  2378. docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill-alt.svg +1 -0
  2379. docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill-transfer.svg +1 -0
  2380. docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill-trend-up.svg +1 -0
  2381. docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill-wave-alt.svg +1 -0
  2382. docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill-wave.svg +1 -0
  2383. docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill-wheat.svg +1 -0
  2384. docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill.svg +1 -0
  2385. docsforge/themes/material/templates/.icons/fontawesome/solid/money-bills.svg +1 -0
  2386. docsforge/themes/material/templates/.icons/fontawesome/solid/money-check-alt.svg +1 -0
  2387. docsforge/themes/material/templates/.icons/fontawesome/solid/money-check-dollar.svg +1 -0
  2388. docsforge/themes/material/templates/.icons/fontawesome/solid/money-check.svg +1 -0
  2389. docsforge/themes/material/templates/.icons/fontawesome/solid/monument.svg +1 -0
  2390. docsforge/themes/material/templates/.icons/fontawesome/solid/moon.svg +1 -0
  2391. docsforge/themes/material/templates/.icons/fontawesome/solid/mortar-board.svg +1 -0
  2392. docsforge/themes/material/templates/.icons/fontawesome/solid/mortar-pestle.svg +1 -0
  2393. docsforge/themes/material/templates/.icons/fontawesome/solid/mosque.svg +1 -0
  2394. docsforge/themes/material/templates/.icons/fontawesome/solid/mosquito-net.svg +1 -0
  2395. docsforge/themes/material/templates/.icons/fontawesome/solid/mosquito.svg +1 -0
  2396. docsforge/themes/material/templates/.icons/fontawesome/solid/motorcycle.svg +1 -0
  2397. docsforge/themes/material/templates/.icons/fontawesome/solid/mound.svg +1 -0
  2398. docsforge/themes/material/templates/.icons/fontawesome/solid/mountain-city.svg +1 -0
  2399. docsforge/themes/material/templates/.icons/fontawesome/solid/mountain-sun.svg +1 -0
  2400. docsforge/themes/material/templates/.icons/fontawesome/solid/mountain.svg +1 -0
  2401. docsforge/themes/material/templates/.icons/fontawesome/solid/mouse-pointer.svg +1 -0
  2402. docsforge/themes/material/templates/.icons/fontawesome/solid/mouse.svg +1 -0
  2403. docsforge/themes/material/templates/.icons/fontawesome/solid/mug-hot.svg +1 -0
  2404. docsforge/themes/material/templates/.icons/fontawesome/solid/mug-saucer.svg +1 -0
  2405. docsforge/themes/material/templates/.icons/fontawesome/solid/multiply.svg +1 -0
  2406. docsforge/themes/material/templates/.icons/fontawesome/solid/museum.svg +1 -0
  2407. docsforge/themes/material/templates/.icons/fontawesome/solid/music.svg +1 -0
  2408. docsforge/themes/material/templates/.icons/fontawesome/solid/n.svg +1 -0
  2409. docsforge/themes/material/templates/.icons/fontawesome/solid/naira-sign.svg +1 -0
  2410. docsforge/themes/material/templates/.icons/fontawesome/solid/navicon.svg +1 -0
  2411. docsforge/themes/material/templates/.icons/fontawesome/solid/network-wired.svg +1 -0
  2412. docsforge/themes/material/templates/.icons/fontawesome/solid/neuter.svg +1 -0
  2413. docsforge/themes/material/templates/.icons/fontawesome/solid/newspaper.svg +1 -0
  2414. docsforge/themes/material/templates/.icons/fontawesome/solid/non-binary.svg +1 -0
  2415. docsforge/themes/material/templates/.icons/fontawesome/solid/not-equal.svg +1 -0
  2416. docsforge/themes/material/templates/.icons/fontawesome/solid/notdef.svg +1 -0
  2417. docsforge/themes/material/templates/.icons/fontawesome/solid/note-sticky.svg +1 -0
  2418. docsforge/themes/material/templates/.icons/fontawesome/solid/notes-medical.svg +1 -0
  2419. docsforge/themes/material/templates/.icons/fontawesome/solid/o.svg +1 -0
  2420. docsforge/themes/material/templates/.icons/fontawesome/solid/object-group.svg +1 -0
  2421. docsforge/themes/material/templates/.icons/fontawesome/solid/object-ungroup.svg +1 -0
  2422. docsforge/themes/material/templates/.icons/fontawesome/solid/octagon.svg +1 -0
  2423. docsforge/themes/material/templates/.icons/fontawesome/solid/oil-can.svg +1 -0
  2424. docsforge/themes/material/templates/.icons/fontawesome/solid/oil-well.svg +1 -0
  2425. docsforge/themes/material/templates/.icons/fontawesome/solid/om.svg +1 -0
  2426. docsforge/themes/material/templates/.icons/fontawesome/solid/otter.svg +1 -0
  2427. docsforge/themes/material/templates/.icons/fontawesome/solid/outdent.svg +1 -0
  2428. docsforge/themes/material/templates/.icons/fontawesome/solid/p.svg +1 -0
  2429. docsforge/themes/material/templates/.icons/fontawesome/solid/pager.svg +1 -0
  2430. docsforge/themes/material/templates/.icons/fontawesome/solid/paint-brush.svg +1 -0
  2431. docsforge/themes/material/templates/.icons/fontawesome/solid/paint-roller.svg +1 -0
  2432. docsforge/themes/material/templates/.icons/fontawesome/solid/paintbrush.svg +1 -0
  2433. docsforge/themes/material/templates/.icons/fontawesome/solid/palette.svg +1 -0
  2434. docsforge/themes/material/templates/.icons/fontawesome/solid/pallet.svg +1 -0
  2435. docsforge/themes/material/templates/.icons/fontawesome/solid/panorama.svg +1 -0
  2436. docsforge/themes/material/templates/.icons/fontawesome/solid/paper-plane.svg +1 -0
  2437. docsforge/themes/material/templates/.icons/fontawesome/solid/paperclip.svg +1 -0
  2438. docsforge/themes/material/templates/.icons/fontawesome/solid/parachute-box.svg +1 -0
  2439. docsforge/themes/material/templates/.icons/fontawesome/solid/paragraph.svg +1 -0
  2440. docsforge/themes/material/templates/.icons/fontawesome/solid/parking.svg +1 -0
  2441. docsforge/themes/material/templates/.icons/fontawesome/solid/passport.svg +1 -0
  2442. docsforge/themes/material/templates/.icons/fontawesome/solid/pastafarianism.svg +1 -0
  2443. docsforge/themes/material/templates/.icons/fontawesome/solid/paste.svg +1 -0
  2444. docsforge/themes/material/templates/.icons/fontawesome/solid/pause-circle.svg +1 -0
  2445. docsforge/themes/material/templates/.icons/fontawesome/solid/pause.svg +1 -0
  2446. docsforge/themes/material/templates/.icons/fontawesome/solid/paw.svg +1 -0
  2447. docsforge/themes/material/templates/.icons/fontawesome/solid/peace.svg +1 -0
  2448. docsforge/themes/material/templates/.icons/fontawesome/solid/pen-alt.svg +1 -0
  2449. docsforge/themes/material/templates/.icons/fontawesome/solid/pen-clip.svg +1 -0
  2450. docsforge/themes/material/templates/.icons/fontawesome/solid/pen-fancy.svg +1 -0
  2451. docsforge/themes/material/templates/.icons/fontawesome/solid/pen-nib.svg +1 -0
  2452. docsforge/themes/material/templates/.icons/fontawesome/solid/pen-ruler.svg +1 -0
  2453. docsforge/themes/material/templates/.icons/fontawesome/solid/pen-square.svg +1 -0
  2454. docsforge/themes/material/templates/.icons/fontawesome/solid/pen-to-square.svg +1 -0
  2455. docsforge/themes/material/templates/.icons/fontawesome/solid/pen.svg +1 -0
  2456. docsforge/themes/material/templates/.icons/fontawesome/solid/pencil-alt.svg +1 -0
  2457. docsforge/themes/material/templates/.icons/fontawesome/solid/pencil-ruler.svg +1 -0
  2458. docsforge/themes/material/templates/.icons/fontawesome/solid/pencil-square.svg +1 -0
  2459. docsforge/themes/material/templates/.icons/fontawesome/solid/pencil.svg +1 -0
  2460. docsforge/themes/material/templates/.icons/fontawesome/solid/pentagon.svg +1 -0
  2461. docsforge/themes/material/templates/.icons/fontawesome/solid/people-arrows-left-right.svg +1 -0
  2462. docsforge/themes/material/templates/.icons/fontawesome/solid/people-arrows.svg +1 -0
  2463. docsforge/themes/material/templates/.icons/fontawesome/solid/people-carry-box.svg +1 -0
  2464. docsforge/themes/material/templates/.icons/fontawesome/solid/people-carry.svg +1 -0
  2465. docsforge/themes/material/templates/.icons/fontawesome/solid/people-group.svg +1 -0
  2466. docsforge/themes/material/templates/.icons/fontawesome/solid/people-line.svg +1 -0
  2467. docsforge/themes/material/templates/.icons/fontawesome/solid/people-pulling.svg +1 -0
  2468. docsforge/themes/material/templates/.icons/fontawesome/solid/people-robbery.svg +1 -0
  2469. docsforge/themes/material/templates/.icons/fontawesome/solid/people-roof.svg +1 -0
  2470. docsforge/themes/material/templates/.icons/fontawesome/solid/pepper-hot.svg +1 -0
  2471. docsforge/themes/material/templates/.icons/fontawesome/solid/percent.svg +1 -0
  2472. docsforge/themes/material/templates/.icons/fontawesome/solid/percentage.svg +1 -0
  2473. docsforge/themes/material/templates/.icons/fontawesome/solid/person-arrow-down-to-line.svg +1 -0
  2474. docsforge/themes/material/templates/.icons/fontawesome/solid/person-arrow-up-from-line.svg +1 -0
  2475. docsforge/themes/material/templates/.icons/fontawesome/solid/person-biking.svg +1 -0
  2476. docsforge/themes/material/templates/.icons/fontawesome/solid/person-booth.svg +1 -0
  2477. docsforge/themes/material/templates/.icons/fontawesome/solid/person-breastfeeding.svg +1 -0
  2478. docsforge/themes/material/templates/.icons/fontawesome/solid/person-burst.svg +1 -0
  2479. docsforge/themes/material/templates/.icons/fontawesome/solid/person-cane.svg +1 -0
  2480. docsforge/themes/material/templates/.icons/fontawesome/solid/person-chalkboard.svg +1 -0
  2481. docsforge/themes/material/templates/.icons/fontawesome/solid/person-circle-check.svg +1 -0
  2482. docsforge/themes/material/templates/.icons/fontawesome/solid/person-circle-exclamation.svg +1 -0
  2483. docsforge/themes/material/templates/.icons/fontawesome/solid/person-circle-minus.svg +1 -0
  2484. docsforge/themes/material/templates/.icons/fontawesome/solid/person-circle-plus.svg +1 -0
  2485. docsforge/themes/material/templates/.icons/fontawesome/solid/person-circle-question.svg +1 -0
  2486. docsforge/themes/material/templates/.icons/fontawesome/solid/person-circle-xmark.svg +1 -0
  2487. docsforge/themes/material/templates/.icons/fontawesome/solid/person-digging.svg +1 -0
  2488. docsforge/themes/material/templates/.icons/fontawesome/solid/person-dots-from-line.svg +1 -0
  2489. docsforge/themes/material/templates/.icons/fontawesome/solid/person-dress-burst.svg +1 -0
  2490. docsforge/themes/material/templates/.icons/fontawesome/solid/person-dress.svg +1 -0
  2491. docsforge/themes/material/templates/.icons/fontawesome/solid/person-drowning.svg +1 -0
  2492. docsforge/themes/material/templates/.icons/fontawesome/solid/person-falling-burst.svg +1 -0
  2493. docsforge/themes/material/templates/.icons/fontawesome/solid/person-falling.svg +1 -0
  2494. docsforge/themes/material/templates/.icons/fontawesome/solid/person-half-dress.svg +1 -0
  2495. docsforge/themes/material/templates/.icons/fontawesome/solid/person-harassing.svg +1 -0
  2496. docsforge/themes/material/templates/.icons/fontawesome/solid/person-hiking.svg +1 -0
  2497. docsforge/themes/material/templates/.icons/fontawesome/solid/person-military-pointing.svg +1 -0
  2498. docsforge/themes/material/templates/.icons/fontawesome/solid/person-military-rifle.svg +1 -0
  2499. docsforge/themes/material/templates/.icons/fontawesome/solid/person-military-to-person.svg +1 -0
  2500. docsforge/themes/material/templates/.icons/fontawesome/solid/person-praying.svg +1 -0
  2501. docsforge/themes/material/templates/.icons/fontawesome/solid/person-pregnant.svg +1 -0
  2502. docsforge/themes/material/templates/.icons/fontawesome/solid/person-rays.svg +1 -0
  2503. docsforge/themes/material/templates/.icons/fontawesome/solid/person-rifle.svg +1 -0
  2504. docsforge/themes/material/templates/.icons/fontawesome/solid/person-running.svg +1 -0
  2505. docsforge/themes/material/templates/.icons/fontawesome/solid/person-shelter.svg +1 -0
  2506. docsforge/themes/material/templates/.icons/fontawesome/solid/person-skating.svg +1 -0
  2507. docsforge/themes/material/templates/.icons/fontawesome/solid/person-skiing-nordic.svg +1 -0
  2508. docsforge/themes/material/templates/.icons/fontawesome/solid/person-skiing.svg +1 -0
  2509. docsforge/themes/material/templates/.icons/fontawesome/solid/person-snowboarding.svg +1 -0
  2510. docsforge/themes/material/templates/.icons/fontawesome/solid/person-swimming.svg +1 -0
  2511. docsforge/themes/material/templates/.icons/fontawesome/solid/person-through-window.svg +1 -0
  2512. docsforge/themes/material/templates/.icons/fontawesome/solid/person-walking-arrow-loop-left.svg +1 -0
  2513. docsforge/themes/material/templates/.icons/fontawesome/solid/person-walking-arrow-right.svg +1 -0
  2514. docsforge/themes/material/templates/.icons/fontawesome/solid/person-walking-dashed-line-arrow-right.svg +1 -0
  2515. docsforge/themes/material/templates/.icons/fontawesome/solid/person-walking-luggage.svg +1 -0
  2516. docsforge/themes/material/templates/.icons/fontawesome/solid/person-walking-with-cane.svg +1 -0
  2517. docsforge/themes/material/templates/.icons/fontawesome/solid/person-walking.svg +1 -0
  2518. docsforge/themes/material/templates/.icons/fontawesome/solid/person.svg +1 -0
  2519. docsforge/themes/material/templates/.icons/fontawesome/solid/peseta-sign.svg +1 -0
  2520. docsforge/themes/material/templates/.icons/fontawesome/solid/peso-sign.svg +1 -0
  2521. docsforge/themes/material/templates/.icons/fontawesome/solid/phone-alt.svg +1 -0
  2522. docsforge/themes/material/templates/.icons/fontawesome/solid/phone-flip.svg +1 -0
  2523. docsforge/themes/material/templates/.icons/fontawesome/solid/phone-slash.svg +1 -0
  2524. docsforge/themes/material/templates/.icons/fontawesome/solid/phone-square-alt.svg +1 -0
  2525. docsforge/themes/material/templates/.icons/fontawesome/solid/phone-square.svg +1 -0
  2526. docsforge/themes/material/templates/.icons/fontawesome/solid/phone-volume.svg +1 -0
  2527. docsforge/themes/material/templates/.icons/fontawesome/solid/phone.svg +1 -0
  2528. docsforge/themes/material/templates/.icons/fontawesome/solid/photo-film.svg +1 -0
  2529. docsforge/themes/material/templates/.icons/fontawesome/solid/photo-video.svg +1 -0
  2530. docsforge/themes/material/templates/.icons/fontawesome/solid/pie-chart.svg +1 -0
  2531. docsforge/themes/material/templates/.icons/fontawesome/solid/piggy-bank.svg +1 -0
  2532. docsforge/themes/material/templates/.icons/fontawesome/solid/pills.svg +1 -0
  2533. docsforge/themes/material/templates/.icons/fontawesome/solid/ping-pong-paddle-ball.svg +1 -0
  2534. docsforge/themes/material/templates/.icons/fontawesome/solid/pizza-slice.svg +1 -0
  2535. docsforge/themes/material/templates/.icons/fontawesome/solid/place-of-worship.svg +1 -0
  2536. docsforge/themes/material/templates/.icons/fontawesome/solid/plane-arrival.svg +1 -0
  2537. docsforge/themes/material/templates/.icons/fontawesome/solid/plane-circle-check.svg +1 -0
  2538. docsforge/themes/material/templates/.icons/fontawesome/solid/plane-circle-exclamation.svg +1 -0
  2539. docsforge/themes/material/templates/.icons/fontawesome/solid/plane-circle-xmark.svg +1 -0
  2540. docsforge/themes/material/templates/.icons/fontawesome/solid/plane-departure.svg +1 -0
  2541. docsforge/themes/material/templates/.icons/fontawesome/solid/plane-lock.svg +1 -0
  2542. docsforge/themes/material/templates/.icons/fontawesome/solid/plane-slash.svg +1 -0
  2543. docsforge/themes/material/templates/.icons/fontawesome/solid/plane-up.svg +1 -0
  2544. docsforge/themes/material/templates/.icons/fontawesome/solid/plane.svg +1 -0
  2545. docsforge/themes/material/templates/.icons/fontawesome/solid/plant-wilt.svg +1 -0
  2546. docsforge/themes/material/templates/.icons/fontawesome/solid/plate-wheat.svg +1 -0
  2547. docsforge/themes/material/templates/.icons/fontawesome/solid/play-circle.svg +1 -0
  2548. docsforge/themes/material/templates/.icons/fontawesome/solid/play.svg +1 -0
  2549. docsforge/themes/material/templates/.icons/fontawesome/solid/plug-circle-bolt.svg +1 -0
  2550. docsforge/themes/material/templates/.icons/fontawesome/solid/plug-circle-check.svg +1 -0
  2551. docsforge/themes/material/templates/.icons/fontawesome/solid/plug-circle-exclamation.svg +1 -0
  2552. docsforge/themes/material/templates/.icons/fontawesome/solid/plug-circle-minus.svg +1 -0
  2553. docsforge/themes/material/templates/.icons/fontawesome/solid/plug-circle-plus.svg +1 -0
  2554. docsforge/themes/material/templates/.icons/fontawesome/solid/plug-circle-xmark.svg +1 -0
  2555. docsforge/themes/material/templates/.icons/fontawesome/solid/plug.svg +1 -0
  2556. docsforge/themes/material/templates/.icons/fontawesome/solid/plus-circle.svg +1 -0
  2557. docsforge/themes/material/templates/.icons/fontawesome/solid/plus-minus.svg +1 -0
  2558. docsforge/themes/material/templates/.icons/fontawesome/solid/plus-square.svg +1 -0
  2559. docsforge/themes/material/templates/.icons/fontawesome/solid/plus.svg +1 -0
  2560. docsforge/themes/material/templates/.icons/fontawesome/solid/podcast.svg +1 -0
  2561. docsforge/themes/material/templates/.icons/fontawesome/solid/poll-h.svg +1 -0
  2562. docsforge/themes/material/templates/.icons/fontawesome/solid/poll.svg +1 -0
  2563. docsforge/themes/material/templates/.icons/fontawesome/solid/poo-bolt.svg +1 -0
  2564. docsforge/themes/material/templates/.icons/fontawesome/solid/poo-storm.svg +1 -0
  2565. docsforge/themes/material/templates/.icons/fontawesome/solid/poo.svg +1 -0
  2566. docsforge/themes/material/templates/.icons/fontawesome/solid/poop.svg +1 -0
  2567. docsforge/themes/material/templates/.icons/fontawesome/solid/portrait.svg +1 -0
  2568. docsforge/themes/material/templates/.icons/fontawesome/solid/pound-sign.svg +1 -0
  2569. docsforge/themes/material/templates/.icons/fontawesome/solid/power-off.svg +1 -0
  2570. docsforge/themes/material/templates/.icons/fontawesome/solid/pray.svg +1 -0
  2571. docsforge/themes/material/templates/.icons/fontawesome/solid/praying-hands.svg +1 -0
  2572. docsforge/themes/material/templates/.icons/fontawesome/solid/prescription-bottle-alt.svg +1 -0
  2573. docsforge/themes/material/templates/.icons/fontawesome/solid/prescription-bottle-medical.svg +1 -0
  2574. docsforge/themes/material/templates/.icons/fontawesome/solid/prescription-bottle.svg +1 -0
  2575. docsforge/themes/material/templates/.icons/fontawesome/solid/prescription.svg +1 -0
  2576. docsforge/themes/material/templates/.icons/fontawesome/solid/print.svg +1 -0
  2577. docsforge/themes/material/templates/.icons/fontawesome/solid/procedures.svg +1 -0
  2578. docsforge/themes/material/templates/.icons/fontawesome/solid/project-diagram.svg +1 -0
  2579. docsforge/themes/material/templates/.icons/fontawesome/solid/pump-medical.svg +1 -0
  2580. docsforge/themes/material/templates/.icons/fontawesome/solid/pump-soap.svg +1 -0
  2581. docsforge/themes/material/templates/.icons/fontawesome/solid/puzzle-piece.svg +1 -0
  2582. docsforge/themes/material/templates/.icons/fontawesome/solid/q.svg +1 -0
  2583. docsforge/themes/material/templates/.icons/fontawesome/solid/qrcode.svg +1 -0
  2584. docsforge/themes/material/templates/.icons/fontawesome/solid/question-circle.svg +1 -0
  2585. docsforge/themes/material/templates/.icons/fontawesome/solid/question.svg +1 -0
  2586. docsforge/themes/material/templates/.icons/fontawesome/solid/quidditch-broom-ball.svg +1 -0
  2587. docsforge/themes/material/templates/.icons/fontawesome/solid/quidditch.svg +1 -0
  2588. docsforge/themes/material/templates/.icons/fontawesome/solid/quote-left-alt.svg +1 -0
  2589. docsforge/themes/material/templates/.icons/fontawesome/solid/quote-left.svg +1 -0
  2590. docsforge/themes/material/templates/.icons/fontawesome/solid/quote-right-alt.svg +1 -0
  2591. docsforge/themes/material/templates/.icons/fontawesome/solid/quote-right.svg +1 -0
  2592. docsforge/themes/material/templates/.icons/fontawesome/solid/quran.svg +1 -0
  2593. docsforge/themes/material/templates/.icons/fontawesome/solid/r.svg +1 -0
  2594. docsforge/themes/material/templates/.icons/fontawesome/solid/radiation-alt.svg +1 -0
  2595. docsforge/themes/material/templates/.icons/fontawesome/solid/radiation.svg +1 -0
  2596. docsforge/themes/material/templates/.icons/fontawesome/solid/radio.svg +1 -0
  2597. docsforge/themes/material/templates/.icons/fontawesome/solid/rainbow.svg +1 -0
  2598. docsforge/themes/material/templates/.icons/fontawesome/solid/random.svg +1 -0
  2599. docsforge/themes/material/templates/.icons/fontawesome/solid/ranking-star.svg +1 -0
  2600. docsforge/themes/material/templates/.icons/fontawesome/solid/receipt.svg +1 -0
  2601. docsforge/themes/material/templates/.icons/fontawesome/solid/record-vinyl.svg +1 -0
  2602. docsforge/themes/material/templates/.icons/fontawesome/solid/rectangle-ad.svg +1 -0
  2603. docsforge/themes/material/templates/.icons/fontawesome/solid/rectangle-list.svg +1 -0
  2604. docsforge/themes/material/templates/.icons/fontawesome/solid/rectangle-times.svg +1 -0
  2605. docsforge/themes/material/templates/.icons/fontawesome/solid/rectangle-xmark.svg +1 -0
  2606. docsforge/themes/material/templates/.icons/fontawesome/solid/recycle.svg +1 -0
  2607. docsforge/themes/material/templates/.icons/fontawesome/solid/redo-alt.svg +1 -0
  2608. docsforge/themes/material/templates/.icons/fontawesome/solid/redo.svg +1 -0
  2609. docsforge/themes/material/templates/.icons/fontawesome/solid/refresh.svg +1 -0
  2610. docsforge/themes/material/templates/.icons/fontawesome/solid/registered.svg +1 -0
  2611. docsforge/themes/material/templates/.icons/fontawesome/solid/remove-format.svg +1 -0
  2612. docsforge/themes/material/templates/.icons/fontawesome/solid/remove.svg +1 -0
  2613. docsforge/themes/material/templates/.icons/fontawesome/solid/reorder.svg +1 -0
  2614. docsforge/themes/material/templates/.icons/fontawesome/solid/repeat.svg +1 -0
  2615. docsforge/themes/material/templates/.icons/fontawesome/solid/reply-all.svg +1 -0
  2616. docsforge/themes/material/templates/.icons/fontawesome/solid/reply.svg +1 -0
  2617. docsforge/themes/material/templates/.icons/fontawesome/solid/republican.svg +1 -0
  2618. docsforge/themes/material/templates/.icons/fontawesome/solid/restroom.svg +1 -0
  2619. docsforge/themes/material/templates/.icons/fontawesome/solid/retweet.svg +1 -0
  2620. docsforge/themes/material/templates/.icons/fontawesome/solid/ribbon.svg +1 -0
  2621. docsforge/themes/material/templates/.icons/fontawesome/solid/right-from-bracket.svg +1 -0
  2622. docsforge/themes/material/templates/.icons/fontawesome/solid/right-left.svg +1 -0
  2623. docsforge/themes/material/templates/.icons/fontawesome/solid/right-long.svg +1 -0
  2624. docsforge/themes/material/templates/.icons/fontawesome/solid/right-to-bracket.svg +1 -0
  2625. docsforge/themes/material/templates/.icons/fontawesome/solid/ring.svg +1 -0
  2626. docsforge/themes/material/templates/.icons/fontawesome/solid/rmb.svg +1 -0
  2627. docsforge/themes/material/templates/.icons/fontawesome/solid/road-barrier.svg +1 -0
  2628. docsforge/themes/material/templates/.icons/fontawesome/solid/road-bridge.svg +1 -0
  2629. docsforge/themes/material/templates/.icons/fontawesome/solid/road-circle-check.svg +1 -0
  2630. docsforge/themes/material/templates/.icons/fontawesome/solid/road-circle-exclamation.svg +1 -0
  2631. docsforge/themes/material/templates/.icons/fontawesome/solid/road-circle-xmark.svg +1 -0
  2632. docsforge/themes/material/templates/.icons/fontawesome/solid/road-lock.svg +1 -0
  2633. docsforge/themes/material/templates/.icons/fontawesome/solid/road-spikes.svg +1 -0
  2634. docsforge/themes/material/templates/.icons/fontawesome/solid/road.svg +1 -0
  2635. docsforge/themes/material/templates/.icons/fontawesome/solid/robot.svg +1 -0
  2636. docsforge/themes/material/templates/.icons/fontawesome/solid/rocket.svg +1 -0
  2637. docsforge/themes/material/templates/.icons/fontawesome/solid/rod-asclepius.svg +1 -0
  2638. docsforge/themes/material/templates/.icons/fontawesome/solid/rod-snake.svg +1 -0
  2639. docsforge/themes/material/templates/.icons/fontawesome/solid/rotate-back.svg +1 -0
  2640. docsforge/themes/material/templates/.icons/fontawesome/solid/rotate-backward.svg +1 -0
  2641. docsforge/themes/material/templates/.icons/fontawesome/solid/rotate-forward.svg +1 -0
  2642. docsforge/themes/material/templates/.icons/fontawesome/solid/rotate-left.svg +1 -0
  2643. docsforge/themes/material/templates/.icons/fontawesome/solid/rotate-right.svg +1 -0
  2644. docsforge/themes/material/templates/.icons/fontawesome/solid/rotate.svg +1 -0
  2645. docsforge/themes/material/templates/.icons/fontawesome/solid/rouble.svg +1 -0
  2646. docsforge/themes/material/templates/.icons/fontawesome/solid/route.svg +1 -0
  2647. docsforge/themes/material/templates/.icons/fontawesome/solid/rss-square.svg +1 -0
  2648. docsforge/themes/material/templates/.icons/fontawesome/solid/rss.svg +1 -0
  2649. docsforge/themes/material/templates/.icons/fontawesome/solid/rub.svg +1 -0
  2650. docsforge/themes/material/templates/.icons/fontawesome/solid/ruble-sign.svg +1 -0
  2651. docsforge/themes/material/templates/.icons/fontawesome/solid/ruble.svg +1 -0
  2652. docsforge/themes/material/templates/.icons/fontawesome/solid/rug.svg +1 -0
  2653. docsforge/themes/material/templates/.icons/fontawesome/solid/ruler-combined.svg +1 -0
  2654. docsforge/themes/material/templates/.icons/fontawesome/solid/ruler-horizontal.svg +1 -0
  2655. docsforge/themes/material/templates/.icons/fontawesome/solid/ruler-vertical.svg +1 -0
  2656. docsforge/themes/material/templates/.icons/fontawesome/solid/ruler.svg +1 -0
  2657. docsforge/themes/material/templates/.icons/fontawesome/solid/running.svg +1 -0
  2658. docsforge/themes/material/templates/.icons/fontawesome/solid/rupee-sign.svg +1 -0
  2659. docsforge/themes/material/templates/.icons/fontawesome/solid/rupee.svg +1 -0
  2660. docsforge/themes/material/templates/.icons/fontawesome/solid/rupiah-sign.svg +1 -0
  2661. docsforge/themes/material/templates/.icons/fontawesome/solid/s.svg +1 -0
  2662. docsforge/themes/material/templates/.icons/fontawesome/solid/sack-dollar.svg +1 -0
  2663. docsforge/themes/material/templates/.icons/fontawesome/solid/sack-xmark.svg +1 -0
  2664. docsforge/themes/material/templates/.icons/fontawesome/solid/sad-cry.svg +1 -0
  2665. docsforge/themes/material/templates/.icons/fontawesome/solid/sad-tear.svg +1 -0
  2666. docsforge/themes/material/templates/.icons/fontawesome/solid/sailboat.svg +1 -0
  2667. docsforge/themes/material/templates/.icons/fontawesome/solid/satellite-dish.svg +1 -0
  2668. docsforge/themes/material/templates/.icons/fontawesome/solid/satellite.svg +1 -0
  2669. docsforge/themes/material/templates/.icons/fontawesome/solid/save.svg +1 -0
  2670. docsforge/themes/material/templates/.icons/fontawesome/solid/scale-balanced.svg +1 -0
  2671. docsforge/themes/material/templates/.icons/fontawesome/solid/scale-unbalanced-flip.svg +1 -0
  2672. docsforge/themes/material/templates/.icons/fontawesome/solid/scale-unbalanced.svg +1 -0
  2673. docsforge/themes/material/templates/.icons/fontawesome/solid/school-circle-check.svg +1 -0
  2674. docsforge/themes/material/templates/.icons/fontawesome/solid/school-circle-exclamation.svg +1 -0
  2675. docsforge/themes/material/templates/.icons/fontawesome/solid/school-circle-xmark.svg +1 -0
  2676. docsforge/themes/material/templates/.icons/fontawesome/solid/school-flag.svg +1 -0
  2677. docsforge/themes/material/templates/.icons/fontawesome/solid/school-lock.svg +1 -0
  2678. docsforge/themes/material/templates/.icons/fontawesome/solid/school.svg +1 -0
  2679. docsforge/themes/material/templates/.icons/fontawesome/solid/scissors.svg +1 -0
  2680. docsforge/themes/material/templates/.icons/fontawesome/solid/screwdriver-wrench.svg +1 -0
  2681. docsforge/themes/material/templates/.icons/fontawesome/solid/screwdriver.svg +1 -0
  2682. docsforge/themes/material/templates/.icons/fontawesome/solid/scroll-torah.svg +1 -0
  2683. docsforge/themes/material/templates/.icons/fontawesome/solid/scroll.svg +1 -0
  2684. docsforge/themes/material/templates/.icons/fontawesome/solid/sd-card.svg +1 -0
  2685. docsforge/themes/material/templates/.icons/fontawesome/solid/search-dollar.svg +1 -0
  2686. docsforge/themes/material/templates/.icons/fontawesome/solid/search-location.svg +1 -0
  2687. docsforge/themes/material/templates/.icons/fontawesome/solid/search-minus.svg +1 -0
  2688. docsforge/themes/material/templates/.icons/fontawesome/solid/search-plus.svg +1 -0
  2689. docsforge/themes/material/templates/.icons/fontawesome/solid/search.svg +1 -0
  2690. docsforge/themes/material/templates/.icons/fontawesome/solid/section.svg +1 -0
  2691. docsforge/themes/material/templates/.icons/fontawesome/solid/seedling.svg +1 -0
  2692. docsforge/themes/material/templates/.icons/fontawesome/solid/septagon.svg +1 -0
  2693. docsforge/themes/material/templates/.icons/fontawesome/solid/server.svg +1 -0
  2694. docsforge/themes/material/templates/.icons/fontawesome/solid/shapes.svg +1 -0
  2695. docsforge/themes/material/templates/.icons/fontawesome/solid/share-alt-square.svg +1 -0
  2696. docsforge/themes/material/templates/.icons/fontawesome/solid/share-alt.svg +1 -0
  2697. docsforge/themes/material/templates/.icons/fontawesome/solid/share-from-square.svg +1 -0
  2698. docsforge/themes/material/templates/.icons/fontawesome/solid/share-nodes.svg +1 -0
  2699. docsforge/themes/material/templates/.icons/fontawesome/solid/share-square.svg +1 -0
  2700. docsforge/themes/material/templates/.icons/fontawesome/solid/share.svg +1 -0
  2701. docsforge/themes/material/templates/.icons/fontawesome/solid/sheet-plastic.svg +1 -0
  2702. docsforge/themes/material/templates/.icons/fontawesome/solid/shekel-sign.svg +1 -0
  2703. docsforge/themes/material/templates/.icons/fontawesome/solid/shekel.svg +1 -0
  2704. docsforge/themes/material/templates/.icons/fontawesome/solid/sheqel-sign.svg +1 -0
  2705. docsforge/themes/material/templates/.icons/fontawesome/solid/sheqel.svg +1 -0
  2706. docsforge/themes/material/templates/.icons/fontawesome/solid/shield-alt.svg +1 -0
  2707. docsforge/themes/material/templates/.icons/fontawesome/solid/shield-blank.svg +1 -0
  2708. docsforge/themes/material/templates/.icons/fontawesome/solid/shield-cat.svg +1 -0
  2709. docsforge/themes/material/templates/.icons/fontawesome/solid/shield-dog.svg +1 -0
  2710. docsforge/themes/material/templates/.icons/fontawesome/solid/shield-halved.svg +1 -0
  2711. docsforge/themes/material/templates/.icons/fontawesome/solid/shield-heart.svg +1 -0
  2712. docsforge/themes/material/templates/.icons/fontawesome/solid/shield-virus.svg +1 -0
  2713. docsforge/themes/material/templates/.icons/fontawesome/solid/shield.svg +1 -0
  2714. docsforge/themes/material/templates/.icons/fontawesome/solid/ship.svg +1 -0
  2715. docsforge/themes/material/templates/.icons/fontawesome/solid/shipping-fast.svg +1 -0
  2716. docsforge/themes/material/templates/.icons/fontawesome/solid/shirt.svg +1 -0
  2717. docsforge/themes/material/templates/.icons/fontawesome/solid/shoe-prints.svg +1 -0
  2718. docsforge/themes/material/templates/.icons/fontawesome/solid/shop-lock.svg +1 -0
  2719. docsforge/themes/material/templates/.icons/fontawesome/solid/shop-slash.svg +1 -0
  2720. docsforge/themes/material/templates/.icons/fontawesome/solid/shop.svg +1 -0
  2721. docsforge/themes/material/templates/.icons/fontawesome/solid/shopping-bag.svg +1 -0
  2722. docsforge/themes/material/templates/.icons/fontawesome/solid/shopping-basket.svg +1 -0
  2723. docsforge/themes/material/templates/.icons/fontawesome/solid/shopping-cart.svg +1 -0
  2724. docsforge/themes/material/templates/.icons/fontawesome/solid/shower.svg +1 -0
  2725. docsforge/themes/material/templates/.icons/fontawesome/solid/shrimp.svg +1 -0
  2726. docsforge/themes/material/templates/.icons/fontawesome/solid/shuffle.svg +1 -0
  2727. docsforge/themes/material/templates/.icons/fontawesome/solid/shuttle-space.svg +1 -0
  2728. docsforge/themes/material/templates/.icons/fontawesome/solid/shuttle-van.svg +1 -0
  2729. docsforge/themes/material/templates/.icons/fontawesome/solid/sign-hanging.svg +1 -0
  2730. docsforge/themes/material/templates/.icons/fontawesome/solid/sign-in-alt.svg +1 -0
  2731. docsforge/themes/material/templates/.icons/fontawesome/solid/sign-in.svg +1 -0
  2732. docsforge/themes/material/templates/.icons/fontawesome/solid/sign-language.svg +1 -0
  2733. docsforge/themes/material/templates/.icons/fontawesome/solid/sign-out-alt.svg +1 -0
  2734. docsforge/themes/material/templates/.icons/fontawesome/solid/sign-out.svg +1 -0
  2735. docsforge/themes/material/templates/.icons/fontawesome/solid/sign.svg +1 -0
  2736. docsforge/themes/material/templates/.icons/fontawesome/solid/signal-5.svg +1 -0
  2737. docsforge/themes/material/templates/.icons/fontawesome/solid/signal-perfect.svg +1 -0
  2738. docsforge/themes/material/templates/.icons/fontawesome/solid/signal.svg +1 -0
  2739. docsforge/themes/material/templates/.icons/fontawesome/solid/signature.svg +1 -0
  2740. docsforge/themes/material/templates/.icons/fontawesome/solid/signing.svg +1 -0
  2741. docsforge/themes/material/templates/.icons/fontawesome/solid/signs-post.svg +1 -0
  2742. docsforge/themes/material/templates/.icons/fontawesome/solid/sim-card.svg +1 -0
  2743. docsforge/themes/material/templates/.icons/fontawesome/solid/single-quote-left.svg +1 -0
  2744. docsforge/themes/material/templates/.icons/fontawesome/solid/single-quote-right.svg +1 -0
  2745. docsforge/themes/material/templates/.icons/fontawesome/solid/sink.svg +1 -0
  2746. docsforge/themes/material/templates/.icons/fontawesome/solid/sitemap.svg +1 -0
  2747. docsforge/themes/material/templates/.icons/fontawesome/solid/skating.svg +1 -0
  2748. docsforge/themes/material/templates/.icons/fontawesome/solid/skiing-nordic.svg +1 -0
  2749. docsforge/themes/material/templates/.icons/fontawesome/solid/skiing.svg +1 -0
  2750. docsforge/themes/material/templates/.icons/fontawesome/solid/skull-crossbones.svg +1 -0
  2751. docsforge/themes/material/templates/.icons/fontawesome/solid/skull.svg +1 -0
  2752. docsforge/themes/material/templates/.icons/fontawesome/solid/slash.svg +1 -0
  2753. docsforge/themes/material/templates/.icons/fontawesome/solid/sleigh.svg +1 -0
  2754. docsforge/themes/material/templates/.icons/fontawesome/solid/sliders-h.svg +1 -0
  2755. docsforge/themes/material/templates/.icons/fontawesome/solid/sliders.svg +1 -0
  2756. docsforge/themes/material/templates/.icons/fontawesome/solid/smile-beam.svg +1 -0
  2757. docsforge/themes/material/templates/.icons/fontawesome/solid/smile-wink.svg +1 -0
  2758. docsforge/themes/material/templates/.icons/fontawesome/solid/smile.svg +1 -0
  2759. docsforge/themes/material/templates/.icons/fontawesome/solid/smog.svg +1 -0
  2760. docsforge/themes/material/templates/.icons/fontawesome/solid/smoking-ban.svg +1 -0
  2761. docsforge/themes/material/templates/.icons/fontawesome/solid/smoking.svg +1 -0
  2762. docsforge/themes/material/templates/.icons/fontawesome/solid/sms.svg +1 -0
  2763. docsforge/themes/material/templates/.icons/fontawesome/solid/snowboarding.svg +1 -0
  2764. docsforge/themes/material/templates/.icons/fontawesome/solid/snowflake.svg +1 -0
  2765. docsforge/themes/material/templates/.icons/fontawesome/solid/snowman.svg +1 -0
  2766. docsforge/themes/material/templates/.icons/fontawesome/solid/snowplow.svg +1 -0
  2767. docsforge/themes/material/templates/.icons/fontawesome/solid/soap.svg +1 -0
  2768. docsforge/themes/material/templates/.icons/fontawesome/solid/soccer-ball.svg +1 -0
  2769. docsforge/themes/material/templates/.icons/fontawesome/solid/socks.svg +1 -0
  2770. docsforge/themes/material/templates/.icons/fontawesome/solid/solar-panel.svg +1 -0
  2771. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-alpha-asc.svg +1 -0
  2772. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-alpha-desc.svg +1 -0
  2773. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-alpha-down-alt.svg +1 -0
  2774. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-alpha-down.svg +1 -0
  2775. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-alpha-up-alt.svg +1 -0
  2776. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-alpha-up.svg +1 -0
  2777. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-amount-asc.svg +1 -0
  2778. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-amount-desc.svg +1 -0
  2779. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-amount-down-alt.svg +1 -0
  2780. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-amount-down.svg +1 -0
  2781. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-amount-up-alt.svg +1 -0
  2782. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-amount-up.svg +1 -0
  2783. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-asc.svg +1 -0
  2784. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-desc.svg +1 -0
  2785. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-down.svg +1 -0
  2786. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-numeric-asc.svg +1 -0
  2787. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-numeric-desc.svg +1 -0
  2788. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-numeric-down-alt.svg +1 -0
  2789. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-numeric-down.svg +1 -0
  2790. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-numeric-up-alt.svg +1 -0
  2791. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-numeric-up.svg +1 -0
  2792. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-up.svg +1 -0
  2793. docsforge/themes/material/templates/.icons/fontawesome/solid/sort.svg +1 -0
  2794. docsforge/themes/material/templates/.icons/fontawesome/solid/spa.svg +1 -0
  2795. docsforge/themes/material/templates/.icons/fontawesome/solid/space-shuttle.svg +1 -0
  2796. docsforge/themes/material/templates/.icons/fontawesome/solid/spaghetti-monster-flying.svg +1 -0
  2797. docsforge/themes/material/templates/.icons/fontawesome/solid/spell-check.svg +1 -0
  2798. docsforge/themes/material/templates/.icons/fontawesome/solid/spider.svg +1 -0
  2799. docsforge/themes/material/templates/.icons/fontawesome/solid/spinner.svg +1 -0
  2800. docsforge/themes/material/templates/.icons/fontawesome/solid/spiral.svg +1 -0
  2801. docsforge/themes/material/templates/.icons/fontawesome/solid/splotch.svg +1 -0
  2802. docsforge/themes/material/templates/.icons/fontawesome/solid/spoon.svg +1 -0
  2803. docsforge/themes/material/templates/.icons/fontawesome/solid/spray-can-sparkles.svg +1 -0
  2804. docsforge/themes/material/templates/.icons/fontawesome/solid/spray-can.svg +1 -0
  2805. docsforge/themes/material/templates/.icons/fontawesome/solid/sprout.svg +1 -0
  2806. docsforge/themes/material/templates/.icons/fontawesome/solid/square-arrow-up-right.svg +1 -0
  2807. docsforge/themes/material/templates/.icons/fontawesome/solid/square-binary.svg +1 -0
  2808. docsforge/themes/material/templates/.icons/fontawesome/solid/square-caret-down.svg +1 -0
  2809. docsforge/themes/material/templates/.icons/fontawesome/solid/square-caret-left.svg +1 -0
  2810. docsforge/themes/material/templates/.icons/fontawesome/solid/square-caret-right.svg +1 -0
  2811. docsforge/themes/material/templates/.icons/fontawesome/solid/square-caret-up.svg +1 -0
  2812. docsforge/themes/material/templates/.icons/fontawesome/solid/square-check.svg +1 -0
  2813. docsforge/themes/material/templates/.icons/fontawesome/solid/square-envelope.svg +1 -0
  2814. docsforge/themes/material/templates/.icons/fontawesome/solid/square-full.svg +1 -0
  2815. docsforge/themes/material/templates/.icons/fontawesome/solid/square-h.svg +1 -0
  2816. docsforge/themes/material/templates/.icons/fontawesome/solid/square-minus.svg +1 -0
  2817. docsforge/themes/material/templates/.icons/fontawesome/solid/square-nfi.svg +1 -0
  2818. docsforge/themes/material/templates/.icons/fontawesome/solid/square-parking.svg +1 -0
  2819. docsforge/themes/material/templates/.icons/fontawesome/solid/square-pen.svg +1 -0
  2820. docsforge/themes/material/templates/.icons/fontawesome/solid/square-person-confined.svg +1 -0
  2821. docsforge/themes/material/templates/.icons/fontawesome/solid/square-phone-flip.svg +1 -0
  2822. docsforge/themes/material/templates/.icons/fontawesome/solid/square-phone.svg +1 -0
  2823. docsforge/themes/material/templates/.icons/fontawesome/solid/square-plus.svg +1 -0
  2824. docsforge/themes/material/templates/.icons/fontawesome/solid/square-poll-horizontal.svg +1 -0
  2825. docsforge/themes/material/templates/.icons/fontawesome/solid/square-poll-vertical.svg +1 -0
  2826. docsforge/themes/material/templates/.icons/fontawesome/solid/square-root-alt.svg +1 -0
  2827. docsforge/themes/material/templates/.icons/fontawesome/solid/square-root-variable.svg +1 -0
  2828. docsforge/themes/material/templates/.icons/fontawesome/solid/square-rss.svg +1 -0
  2829. docsforge/themes/material/templates/.icons/fontawesome/solid/square-share-nodes.svg +1 -0
  2830. docsforge/themes/material/templates/.icons/fontawesome/solid/square-up-right.svg +1 -0
  2831. docsforge/themes/material/templates/.icons/fontawesome/solid/square-virus.svg +1 -0
  2832. docsforge/themes/material/templates/.icons/fontawesome/solid/square-xmark.svg +1 -0
  2833. docsforge/themes/material/templates/.icons/fontawesome/solid/square.svg +1 -0
  2834. docsforge/themes/material/templates/.icons/fontawesome/solid/staff-aesculapius.svg +1 -0
  2835. docsforge/themes/material/templates/.icons/fontawesome/solid/staff-snake.svg +1 -0
  2836. docsforge/themes/material/templates/.icons/fontawesome/solid/stairs.svg +1 -0
  2837. docsforge/themes/material/templates/.icons/fontawesome/solid/stamp.svg +1 -0
  2838. docsforge/themes/material/templates/.icons/fontawesome/solid/stapler.svg +1 -0
  2839. docsforge/themes/material/templates/.icons/fontawesome/solid/star-and-crescent.svg +1 -0
  2840. docsforge/themes/material/templates/.icons/fontawesome/solid/star-half-alt.svg +1 -0
  2841. docsforge/themes/material/templates/.icons/fontawesome/solid/star-half-stroke.svg +1 -0
  2842. docsforge/themes/material/templates/.icons/fontawesome/solid/star-half.svg +1 -0
  2843. docsforge/themes/material/templates/.icons/fontawesome/solid/star-of-david.svg +1 -0
  2844. docsforge/themes/material/templates/.icons/fontawesome/solid/star-of-life.svg +1 -0
  2845. docsforge/themes/material/templates/.icons/fontawesome/solid/star.svg +1 -0
  2846. docsforge/themes/material/templates/.icons/fontawesome/solid/step-backward.svg +1 -0
  2847. docsforge/themes/material/templates/.icons/fontawesome/solid/step-forward.svg +1 -0
  2848. docsforge/themes/material/templates/.icons/fontawesome/solid/sterling-sign.svg +1 -0
  2849. docsforge/themes/material/templates/.icons/fontawesome/solid/stethoscope.svg +1 -0
  2850. docsforge/themes/material/templates/.icons/fontawesome/solid/sticky-note.svg +1 -0
  2851. docsforge/themes/material/templates/.icons/fontawesome/solid/stop-circle.svg +1 -0
  2852. docsforge/themes/material/templates/.icons/fontawesome/solid/stop.svg +1 -0
  2853. docsforge/themes/material/templates/.icons/fontawesome/solid/stopwatch-20.svg +1 -0
  2854. docsforge/themes/material/templates/.icons/fontawesome/solid/stopwatch.svg +1 -0
  2855. docsforge/themes/material/templates/.icons/fontawesome/solid/store-alt-slash.svg +1 -0
  2856. docsforge/themes/material/templates/.icons/fontawesome/solid/store-alt.svg +1 -0
  2857. docsforge/themes/material/templates/.icons/fontawesome/solid/store-slash.svg +1 -0
  2858. docsforge/themes/material/templates/.icons/fontawesome/solid/store.svg +1 -0
  2859. docsforge/themes/material/templates/.icons/fontawesome/solid/stream.svg +1 -0
  2860. docsforge/themes/material/templates/.icons/fontawesome/solid/street-view.svg +1 -0
  2861. docsforge/themes/material/templates/.icons/fontawesome/solid/strikethrough.svg +1 -0
  2862. docsforge/themes/material/templates/.icons/fontawesome/solid/stroopwafel.svg +1 -0
  2863. docsforge/themes/material/templates/.icons/fontawesome/solid/subscript.svg +1 -0
  2864. docsforge/themes/material/templates/.icons/fontawesome/solid/subtract.svg +1 -0
  2865. docsforge/themes/material/templates/.icons/fontawesome/solid/subway.svg +1 -0
  2866. docsforge/themes/material/templates/.icons/fontawesome/solid/suitcase-medical.svg +1 -0
  2867. docsforge/themes/material/templates/.icons/fontawesome/solid/suitcase-rolling.svg +1 -0
  2868. docsforge/themes/material/templates/.icons/fontawesome/solid/suitcase.svg +1 -0
  2869. docsforge/themes/material/templates/.icons/fontawesome/solid/sun-plant-wilt.svg +1 -0
  2870. docsforge/themes/material/templates/.icons/fontawesome/solid/sun.svg +1 -0
  2871. docsforge/themes/material/templates/.icons/fontawesome/solid/superscript.svg +1 -0
  2872. docsforge/themes/material/templates/.icons/fontawesome/solid/surprise.svg +1 -0
  2873. docsforge/themes/material/templates/.icons/fontawesome/solid/swatchbook.svg +1 -0
  2874. docsforge/themes/material/templates/.icons/fontawesome/solid/swimmer.svg +1 -0
  2875. docsforge/themes/material/templates/.icons/fontawesome/solid/swimming-pool.svg +1 -0
  2876. docsforge/themes/material/templates/.icons/fontawesome/solid/synagogue.svg +1 -0
  2877. docsforge/themes/material/templates/.icons/fontawesome/solid/sync-alt.svg +1 -0
  2878. docsforge/themes/material/templates/.icons/fontawesome/solid/sync.svg +1 -0
  2879. docsforge/themes/material/templates/.icons/fontawesome/solid/syringe.svg +1 -0
  2880. docsforge/themes/material/templates/.icons/fontawesome/solid/t-shirt.svg +1 -0
  2881. docsforge/themes/material/templates/.icons/fontawesome/solid/t.svg +1 -0
  2882. docsforge/themes/material/templates/.icons/fontawesome/solid/table-cells-column-lock.svg +1 -0
  2883. docsforge/themes/material/templates/.icons/fontawesome/solid/table-cells-large.svg +1 -0
  2884. docsforge/themes/material/templates/.icons/fontawesome/solid/table-cells-row-lock.svg +1 -0
  2885. docsforge/themes/material/templates/.icons/fontawesome/solid/table-cells-row-unlock.svg +1 -0
  2886. docsforge/themes/material/templates/.icons/fontawesome/solid/table-cells.svg +1 -0
  2887. docsforge/themes/material/templates/.icons/fontawesome/solid/table-columns.svg +1 -0
  2888. docsforge/themes/material/templates/.icons/fontawesome/solid/table-list.svg +1 -0
  2889. docsforge/themes/material/templates/.icons/fontawesome/solid/table-tennis-paddle-ball.svg +1 -0
  2890. docsforge/themes/material/templates/.icons/fontawesome/solid/table-tennis.svg +1 -0
  2891. docsforge/themes/material/templates/.icons/fontawesome/solid/table.svg +1 -0
  2892. docsforge/themes/material/templates/.icons/fontawesome/solid/tablet-alt.svg +1 -0
  2893. docsforge/themes/material/templates/.icons/fontawesome/solid/tablet-android.svg +1 -0
  2894. docsforge/themes/material/templates/.icons/fontawesome/solid/tablet-button.svg +1 -0
  2895. docsforge/themes/material/templates/.icons/fontawesome/solid/tablet-screen-button.svg +1 -0
  2896. docsforge/themes/material/templates/.icons/fontawesome/solid/tablet.svg +1 -0
  2897. docsforge/themes/material/templates/.icons/fontawesome/solid/tablets.svg +1 -0
  2898. docsforge/themes/material/templates/.icons/fontawesome/solid/tachograph-digital.svg +1 -0
  2899. docsforge/themes/material/templates/.icons/fontawesome/solid/tachometer-alt-average.svg +1 -0
  2900. docsforge/themes/material/templates/.icons/fontawesome/solid/tachometer-alt-fast.svg +1 -0
  2901. docsforge/themes/material/templates/.icons/fontawesome/solid/tachometer-alt.svg +1 -0
  2902. docsforge/themes/material/templates/.icons/fontawesome/solid/tachometer-average.svg +1 -0
  2903. docsforge/themes/material/templates/.icons/fontawesome/solid/tachometer-fast.svg +1 -0
  2904. docsforge/themes/material/templates/.icons/fontawesome/solid/tachometer.svg +1 -0
  2905. docsforge/themes/material/templates/.icons/fontawesome/solid/tag.svg +1 -0
  2906. docsforge/themes/material/templates/.icons/fontawesome/solid/tags.svg +1 -0
  2907. docsforge/themes/material/templates/.icons/fontawesome/solid/tanakh.svg +1 -0
  2908. docsforge/themes/material/templates/.icons/fontawesome/solid/tape.svg +1 -0
  2909. docsforge/themes/material/templates/.icons/fontawesome/solid/tarp-droplet.svg +1 -0
  2910. docsforge/themes/material/templates/.icons/fontawesome/solid/tarp.svg +1 -0
  2911. docsforge/themes/material/templates/.icons/fontawesome/solid/tasks-alt.svg +1 -0
  2912. docsforge/themes/material/templates/.icons/fontawesome/solid/tasks.svg +1 -0
  2913. docsforge/themes/material/templates/.icons/fontawesome/solid/taxi.svg +1 -0
  2914. docsforge/themes/material/templates/.icons/fontawesome/solid/teeth-open.svg +1 -0
  2915. docsforge/themes/material/templates/.icons/fontawesome/solid/teeth.svg +1 -0
  2916. docsforge/themes/material/templates/.icons/fontawesome/solid/teletype.svg +1 -0
  2917. docsforge/themes/material/templates/.icons/fontawesome/solid/television.svg +1 -0
  2918. docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-0.svg +1 -0
  2919. docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-1.svg +1 -0
  2920. docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-2.svg +1 -0
  2921. docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-3.svg +1 -0
  2922. docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-4.svg +1 -0
  2923. docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-arrow-down.svg +1 -0
  2924. docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-arrow-up.svg +1 -0
  2925. docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-down.svg +1 -0
  2926. docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-empty.svg +1 -0
  2927. docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-full.svg +1 -0
  2928. docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-half.svg +1 -0
  2929. docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-high.svg +1 -0
  2930. docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-low.svg +1 -0
  2931. docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-quarter.svg +1 -0
  2932. docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-three-quarters.svg +1 -0
  2933. docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-up.svg +1 -0
  2934. docsforge/themes/material/templates/.icons/fontawesome/solid/tenge-sign.svg +1 -0
  2935. docsforge/themes/material/templates/.icons/fontawesome/solid/tenge.svg +1 -0
  2936. docsforge/themes/material/templates/.icons/fontawesome/solid/tent-arrow-down-to-line.svg +1 -0
  2937. docsforge/themes/material/templates/.icons/fontawesome/solid/tent-arrow-left-right.svg +1 -0
  2938. docsforge/themes/material/templates/.icons/fontawesome/solid/tent-arrow-turn-left.svg +1 -0
  2939. docsforge/themes/material/templates/.icons/fontawesome/solid/tent-arrows-down.svg +1 -0
  2940. docsforge/themes/material/templates/.icons/fontawesome/solid/tent.svg +1 -0
  2941. docsforge/themes/material/templates/.icons/fontawesome/solid/tents.svg +1 -0
  2942. docsforge/themes/material/templates/.icons/fontawesome/solid/terminal.svg +1 -0
  2943. docsforge/themes/material/templates/.icons/fontawesome/solid/text-height.svg +1 -0
  2944. docsforge/themes/material/templates/.icons/fontawesome/solid/text-slash.svg +1 -0
  2945. docsforge/themes/material/templates/.icons/fontawesome/solid/text-width.svg +1 -0
  2946. docsforge/themes/material/templates/.icons/fontawesome/solid/th-large.svg +1 -0
  2947. docsforge/themes/material/templates/.icons/fontawesome/solid/th-list.svg +1 -0
  2948. docsforge/themes/material/templates/.icons/fontawesome/solid/th.svg +1 -0
  2949. docsforge/themes/material/templates/.icons/fontawesome/solid/theater-masks.svg +1 -0
  2950. docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-0.svg +1 -0
  2951. docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-1.svg +1 -0
  2952. docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-2.svg +1 -0
  2953. docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-3.svg +1 -0
  2954. docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-4.svg +1 -0
  2955. docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-empty.svg +1 -0
  2956. docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-full.svg +1 -0
  2957. docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-half.svg +1 -0
  2958. docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-quarter.svg +1 -0
  2959. docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-three-quarters.svg +1 -0
  2960. docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer.svg +1 -0
  2961. docsforge/themes/material/templates/.icons/fontawesome/solid/thumb-tack-slash.svg +1 -0
  2962. docsforge/themes/material/templates/.icons/fontawesome/solid/thumb-tack.svg +1 -0
  2963. docsforge/themes/material/templates/.icons/fontawesome/solid/thumbs-down.svg +1 -0
  2964. docsforge/themes/material/templates/.icons/fontawesome/solid/thumbs-up.svg +1 -0
  2965. docsforge/themes/material/templates/.icons/fontawesome/solid/thumbtack-slash.svg +1 -0
  2966. docsforge/themes/material/templates/.icons/fontawesome/solid/thumbtack.svg +1 -0
  2967. docsforge/themes/material/templates/.icons/fontawesome/solid/thunderstorm.svg +1 -0
  2968. docsforge/themes/material/templates/.icons/fontawesome/solid/ticket-alt.svg +1 -0
  2969. docsforge/themes/material/templates/.icons/fontawesome/solid/ticket-simple.svg +1 -0
  2970. docsforge/themes/material/templates/.icons/fontawesome/solid/ticket.svg +1 -0
  2971. docsforge/themes/material/templates/.icons/fontawesome/solid/timeline.svg +1 -0
  2972. docsforge/themes/material/templates/.icons/fontawesome/solid/times-circle.svg +1 -0
  2973. docsforge/themes/material/templates/.icons/fontawesome/solid/times-rectangle.svg +1 -0
  2974. docsforge/themes/material/templates/.icons/fontawesome/solid/times-square.svg +1 -0
  2975. docsforge/themes/material/templates/.icons/fontawesome/solid/times.svg +1 -0
  2976. docsforge/themes/material/templates/.icons/fontawesome/solid/tint-slash.svg +1 -0
  2977. docsforge/themes/material/templates/.icons/fontawesome/solid/tint.svg +1 -0
  2978. docsforge/themes/material/templates/.icons/fontawesome/solid/tired.svg +1 -0
  2979. docsforge/themes/material/templates/.icons/fontawesome/solid/toggle-off.svg +1 -0
  2980. docsforge/themes/material/templates/.icons/fontawesome/solid/toggle-on.svg +1 -0
  2981. docsforge/themes/material/templates/.icons/fontawesome/solid/toilet-paper-alt.svg +1 -0
  2982. docsforge/themes/material/templates/.icons/fontawesome/solid/toilet-paper-blank.svg +1 -0
  2983. docsforge/themes/material/templates/.icons/fontawesome/solid/toilet-paper-slash.svg +1 -0
  2984. docsforge/themes/material/templates/.icons/fontawesome/solid/toilet-paper.svg +1 -0
  2985. docsforge/themes/material/templates/.icons/fontawesome/solid/toilet-portable.svg +1 -0
  2986. docsforge/themes/material/templates/.icons/fontawesome/solid/toilet.svg +1 -0
  2987. docsforge/themes/material/templates/.icons/fontawesome/solid/toilets-portable.svg +1 -0
  2988. docsforge/themes/material/templates/.icons/fontawesome/solid/toolbox.svg +1 -0
  2989. docsforge/themes/material/templates/.icons/fontawesome/solid/tools.svg +1 -0
  2990. docsforge/themes/material/templates/.icons/fontawesome/solid/tooth.svg +1 -0
  2991. docsforge/themes/material/templates/.icons/fontawesome/solid/torah.svg +1 -0
  2992. docsforge/themes/material/templates/.icons/fontawesome/solid/torii-gate.svg +1 -0
  2993. docsforge/themes/material/templates/.icons/fontawesome/solid/tornado.svg +1 -0
  2994. docsforge/themes/material/templates/.icons/fontawesome/solid/tower-broadcast.svg +1 -0
  2995. docsforge/themes/material/templates/.icons/fontawesome/solid/tower-cell.svg +1 -0
  2996. docsforge/themes/material/templates/.icons/fontawesome/solid/tower-observation.svg +1 -0
  2997. docsforge/themes/material/templates/.icons/fontawesome/solid/tractor.svg +1 -0
  2998. docsforge/themes/material/templates/.icons/fontawesome/solid/trademark.svg +1 -0
  2999. docsforge/themes/material/templates/.icons/fontawesome/solid/traffic-light.svg +1 -0
  3000. docsforge/themes/material/templates/.icons/fontawesome/solid/trailer.svg +1 -0
  3001. docsforge/themes/material/templates/.icons/fontawesome/solid/train-subway.svg +1 -0
  3002. docsforge/themes/material/templates/.icons/fontawesome/solid/train-tram.svg +1 -0
  3003. docsforge/themes/material/templates/.icons/fontawesome/solid/train.svg +1 -0
  3004. docsforge/themes/material/templates/.icons/fontawesome/solid/tram.svg +1 -0
  3005. docsforge/themes/material/templates/.icons/fontawesome/solid/transgender-alt.svg +1 -0
  3006. docsforge/themes/material/templates/.icons/fontawesome/solid/transgender.svg +1 -0
  3007. docsforge/themes/material/templates/.icons/fontawesome/solid/trash-alt.svg +1 -0
  3008. docsforge/themes/material/templates/.icons/fontawesome/solid/trash-arrow-up.svg +1 -0
  3009. docsforge/themes/material/templates/.icons/fontawesome/solid/trash-can-arrow-up.svg +1 -0
  3010. docsforge/themes/material/templates/.icons/fontawesome/solid/trash-can.svg +1 -0
  3011. docsforge/themes/material/templates/.icons/fontawesome/solid/trash-restore-alt.svg +1 -0
  3012. docsforge/themes/material/templates/.icons/fontawesome/solid/trash-restore.svg +1 -0
  3013. docsforge/themes/material/templates/.icons/fontawesome/solid/trash.svg +1 -0
  3014. docsforge/themes/material/templates/.icons/fontawesome/solid/tree-city.svg +1 -0
  3015. docsforge/themes/material/templates/.icons/fontawesome/solid/tree.svg +1 -0
  3016. docsforge/themes/material/templates/.icons/fontawesome/solid/triangle-circle-square.svg +1 -0
  3017. docsforge/themes/material/templates/.icons/fontawesome/solid/triangle-exclamation.svg +1 -0
  3018. docsforge/themes/material/templates/.icons/fontawesome/solid/trophy.svg +1 -0
  3019. docsforge/themes/material/templates/.icons/fontawesome/solid/trowel-bricks.svg +1 -0
  3020. docsforge/themes/material/templates/.icons/fontawesome/solid/trowel.svg +1 -0
  3021. docsforge/themes/material/templates/.icons/fontawesome/solid/truck-arrow-right.svg +1 -0
  3022. docsforge/themes/material/templates/.icons/fontawesome/solid/truck-droplet.svg +1 -0
  3023. docsforge/themes/material/templates/.icons/fontawesome/solid/truck-fast.svg +1 -0
  3024. docsforge/themes/material/templates/.icons/fontawesome/solid/truck-field-un.svg +1 -0
  3025. docsforge/themes/material/templates/.icons/fontawesome/solid/truck-field.svg +1 -0
  3026. docsforge/themes/material/templates/.icons/fontawesome/solid/truck-front.svg +1 -0
  3027. docsforge/themes/material/templates/.icons/fontawesome/solid/truck-loading.svg +1 -0
  3028. docsforge/themes/material/templates/.icons/fontawesome/solid/truck-medical.svg +1 -0
  3029. docsforge/themes/material/templates/.icons/fontawesome/solid/truck-monster.svg +1 -0
  3030. docsforge/themes/material/templates/.icons/fontawesome/solid/truck-moving.svg +1 -0
  3031. docsforge/themes/material/templates/.icons/fontawesome/solid/truck-pickup.svg +1 -0
  3032. docsforge/themes/material/templates/.icons/fontawesome/solid/truck-plane.svg +1 -0
  3033. docsforge/themes/material/templates/.icons/fontawesome/solid/truck-ramp-box.svg +1 -0
  3034. docsforge/themes/material/templates/.icons/fontawesome/solid/truck.svg +1 -0
  3035. docsforge/themes/material/templates/.icons/fontawesome/solid/try.svg +1 -0
  3036. docsforge/themes/material/templates/.icons/fontawesome/solid/tshirt.svg +1 -0
  3037. docsforge/themes/material/templates/.icons/fontawesome/solid/tty.svg +1 -0
  3038. docsforge/themes/material/templates/.icons/fontawesome/solid/turkish-lira-sign.svg +1 -0
  3039. docsforge/themes/material/templates/.icons/fontawesome/solid/turkish-lira.svg +1 -0
  3040. docsforge/themes/material/templates/.icons/fontawesome/solid/turn-down.svg +1 -0
  3041. docsforge/themes/material/templates/.icons/fontawesome/solid/turn-up.svg +1 -0
  3042. docsforge/themes/material/templates/.icons/fontawesome/solid/tv-alt.svg +1 -0
  3043. docsforge/themes/material/templates/.icons/fontawesome/solid/tv.svg +1 -0
  3044. docsforge/themes/material/templates/.icons/fontawesome/solid/u.svg +1 -0
  3045. docsforge/themes/material/templates/.icons/fontawesome/solid/umbrella-beach.svg +1 -0
  3046. docsforge/themes/material/templates/.icons/fontawesome/solid/umbrella.svg +1 -0
  3047. docsforge/themes/material/templates/.icons/fontawesome/solid/underline.svg +1 -0
  3048. docsforge/themes/material/templates/.icons/fontawesome/solid/undo-alt.svg +1 -0
  3049. docsforge/themes/material/templates/.icons/fontawesome/solid/undo.svg +1 -0
  3050. docsforge/themes/material/templates/.icons/fontawesome/solid/universal-access.svg +1 -0
  3051. docsforge/themes/material/templates/.icons/fontawesome/solid/university.svg +1 -0
  3052. docsforge/themes/material/templates/.icons/fontawesome/solid/unlink.svg +1 -0
  3053. docsforge/themes/material/templates/.icons/fontawesome/solid/unlock-alt.svg +1 -0
  3054. docsforge/themes/material/templates/.icons/fontawesome/solid/unlock-keyhole.svg +1 -0
  3055. docsforge/themes/material/templates/.icons/fontawesome/solid/unlock.svg +1 -0
  3056. docsforge/themes/material/templates/.icons/fontawesome/solid/unsorted.svg +1 -0
  3057. docsforge/themes/material/templates/.icons/fontawesome/solid/up-down-left-right.svg +1 -0
  3058. docsforge/themes/material/templates/.icons/fontawesome/solid/up-down.svg +1 -0
  3059. docsforge/themes/material/templates/.icons/fontawesome/solid/up-long.svg +1 -0
  3060. docsforge/themes/material/templates/.icons/fontawesome/solid/up-right-and-down-left-from-center.svg +1 -0
  3061. docsforge/themes/material/templates/.icons/fontawesome/solid/up-right-from-square.svg +1 -0
  3062. docsforge/themes/material/templates/.icons/fontawesome/solid/upload.svg +1 -0
  3063. docsforge/themes/material/templates/.icons/fontawesome/solid/usd.svg +1 -0
  3064. docsforge/themes/material/templates/.icons/fontawesome/solid/user-alt-slash.svg +1 -0
  3065. docsforge/themes/material/templates/.icons/fontawesome/solid/user-alt.svg +1 -0
  3066. docsforge/themes/material/templates/.icons/fontawesome/solid/user-astronaut.svg +1 -0
  3067. docsforge/themes/material/templates/.icons/fontawesome/solid/user-check.svg +1 -0
  3068. docsforge/themes/material/templates/.icons/fontawesome/solid/user-circle.svg +1 -0
  3069. docsforge/themes/material/templates/.icons/fontawesome/solid/user-clock.svg +1 -0
  3070. docsforge/themes/material/templates/.icons/fontawesome/solid/user-cog.svg +1 -0
  3071. docsforge/themes/material/templates/.icons/fontawesome/solid/user-doctor.svg +1 -0
  3072. docsforge/themes/material/templates/.icons/fontawesome/solid/user-edit.svg +1 -0
  3073. docsforge/themes/material/templates/.icons/fontawesome/solid/user-friends.svg +1 -0
  3074. docsforge/themes/material/templates/.icons/fontawesome/solid/user-gear.svg +1 -0
  3075. docsforge/themes/material/templates/.icons/fontawesome/solid/user-graduate.svg +1 -0
  3076. docsforge/themes/material/templates/.icons/fontawesome/solid/user-group.svg +1 -0
  3077. docsforge/themes/material/templates/.icons/fontawesome/solid/user-injured.svg +1 -0
  3078. docsforge/themes/material/templates/.icons/fontawesome/solid/user-large-slash.svg +1 -0
  3079. docsforge/themes/material/templates/.icons/fontawesome/solid/user-large.svg +1 -0
  3080. docsforge/themes/material/templates/.icons/fontawesome/solid/user-lock.svg +1 -0
  3081. docsforge/themes/material/templates/.icons/fontawesome/solid/user-md.svg +1 -0
  3082. docsforge/themes/material/templates/.icons/fontawesome/solid/user-minus.svg +1 -0
  3083. docsforge/themes/material/templates/.icons/fontawesome/solid/user-ninja.svg +1 -0
  3084. docsforge/themes/material/templates/.icons/fontawesome/solid/user-nurse.svg +1 -0
  3085. docsforge/themes/material/templates/.icons/fontawesome/solid/user-pen.svg +1 -0
  3086. docsforge/themes/material/templates/.icons/fontawesome/solid/user-plus.svg +1 -0
  3087. docsforge/themes/material/templates/.icons/fontawesome/solid/user-secret.svg +1 -0
  3088. docsforge/themes/material/templates/.icons/fontawesome/solid/user-shield.svg +1 -0
  3089. docsforge/themes/material/templates/.icons/fontawesome/solid/user-slash.svg +1 -0
  3090. docsforge/themes/material/templates/.icons/fontawesome/solid/user-tag.svg +1 -0
  3091. docsforge/themes/material/templates/.icons/fontawesome/solid/user-tie.svg +1 -0
  3092. docsforge/themes/material/templates/.icons/fontawesome/solid/user-times.svg +1 -0
  3093. docsforge/themes/material/templates/.icons/fontawesome/solid/user-xmark.svg +1 -0
  3094. docsforge/themes/material/templates/.icons/fontawesome/solid/user.svg +1 -0
  3095. docsforge/themes/material/templates/.icons/fontawesome/solid/users-between-lines.svg +1 -0
  3096. docsforge/themes/material/templates/.icons/fontawesome/solid/users-cog.svg +1 -0
  3097. docsforge/themes/material/templates/.icons/fontawesome/solid/users-gear.svg +1 -0
  3098. docsforge/themes/material/templates/.icons/fontawesome/solid/users-line.svg +1 -0
  3099. docsforge/themes/material/templates/.icons/fontawesome/solid/users-rays.svg +1 -0
  3100. docsforge/themes/material/templates/.icons/fontawesome/solid/users-rectangle.svg +1 -0
  3101. docsforge/themes/material/templates/.icons/fontawesome/solid/users-slash.svg +1 -0
  3102. docsforge/themes/material/templates/.icons/fontawesome/solid/users-viewfinder.svg +1 -0
  3103. docsforge/themes/material/templates/.icons/fontawesome/solid/users.svg +1 -0
  3104. docsforge/themes/material/templates/.icons/fontawesome/solid/utensil-spoon.svg +1 -0
  3105. docsforge/themes/material/templates/.icons/fontawesome/solid/utensils.svg +1 -0
  3106. docsforge/themes/material/templates/.icons/fontawesome/solid/v.svg +1 -0
  3107. docsforge/themes/material/templates/.icons/fontawesome/solid/van-shuttle.svg +1 -0
  3108. docsforge/themes/material/templates/.icons/fontawesome/solid/vault.svg +1 -0
  3109. docsforge/themes/material/templates/.icons/fontawesome/solid/vcard.svg +1 -0
  3110. docsforge/themes/material/templates/.icons/fontawesome/solid/vector-polygon.svg +1 -0
  3111. docsforge/themes/material/templates/.icons/fontawesome/solid/venus-double.svg +1 -0
  3112. docsforge/themes/material/templates/.icons/fontawesome/solid/venus-mars.svg +1 -0
  3113. docsforge/themes/material/templates/.icons/fontawesome/solid/venus.svg +1 -0
  3114. docsforge/themes/material/templates/.icons/fontawesome/solid/vest-patches.svg +1 -0
  3115. docsforge/themes/material/templates/.icons/fontawesome/solid/vest.svg +1 -0
  3116. docsforge/themes/material/templates/.icons/fontawesome/solid/vial-circle-check.svg +1 -0
  3117. docsforge/themes/material/templates/.icons/fontawesome/solid/vial-virus.svg +1 -0
  3118. docsforge/themes/material/templates/.icons/fontawesome/solid/vial.svg +1 -0
  3119. docsforge/themes/material/templates/.icons/fontawesome/solid/vials.svg +1 -0
  3120. docsforge/themes/material/templates/.icons/fontawesome/solid/video-camera.svg +1 -0
  3121. docsforge/themes/material/templates/.icons/fontawesome/solid/video-slash.svg +1 -0
  3122. docsforge/themes/material/templates/.icons/fontawesome/solid/video.svg +1 -0
  3123. docsforge/themes/material/templates/.icons/fontawesome/solid/vihara.svg +1 -0
  3124. docsforge/themes/material/templates/.icons/fontawesome/solid/virus-covid-slash.svg +1 -0
  3125. docsforge/themes/material/templates/.icons/fontawesome/solid/virus-covid.svg +1 -0
  3126. docsforge/themes/material/templates/.icons/fontawesome/solid/virus-slash.svg +1 -0
  3127. docsforge/themes/material/templates/.icons/fontawesome/solid/virus.svg +1 -0
  3128. docsforge/themes/material/templates/.icons/fontawesome/solid/viruses.svg +1 -0
  3129. docsforge/themes/material/templates/.icons/fontawesome/solid/voicemail.svg +1 -0
  3130. docsforge/themes/material/templates/.icons/fontawesome/solid/volcano.svg +1 -0
  3131. docsforge/themes/material/templates/.icons/fontawesome/solid/volleyball-ball.svg +1 -0
  3132. docsforge/themes/material/templates/.icons/fontawesome/solid/volleyball.svg +1 -0
  3133. docsforge/themes/material/templates/.icons/fontawesome/solid/volume-control-phone.svg +1 -0
  3134. docsforge/themes/material/templates/.icons/fontawesome/solid/volume-down.svg +1 -0
  3135. docsforge/themes/material/templates/.icons/fontawesome/solid/volume-high.svg +1 -0
  3136. docsforge/themes/material/templates/.icons/fontawesome/solid/volume-low.svg +1 -0
  3137. docsforge/themes/material/templates/.icons/fontawesome/solid/volume-mute.svg +1 -0
  3138. docsforge/themes/material/templates/.icons/fontawesome/solid/volume-off.svg +1 -0
  3139. docsforge/themes/material/templates/.icons/fontawesome/solid/volume-times.svg +1 -0
  3140. docsforge/themes/material/templates/.icons/fontawesome/solid/volume-up.svg +1 -0
  3141. docsforge/themes/material/templates/.icons/fontawesome/solid/volume-xmark.svg +1 -0
  3142. docsforge/themes/material/templates/.icons/fontawesome/solid/vote-yea.svg +1 -0
  3143. docsforge/themes/material/templates/.icons/fontawesome/solid/vr-cardboard.svg +1 -0
  3144. docsforge/themes/material/templates/.icons/fontawesome/solid/w.svg +1 -0
  3145. docsforge/themes/material/templates/.icons/fontawesome/solid/walkie-talkie.svg +1 -0
  3146. docsforge/themes/material/templates/.icons/fontawesome/solid/walking.svg +1 -0
  3147. docsforge/themes/material/templates/.icons/fontawesome/solid/wallet.svg +1 -0
  3148. docsforge/themes/material/templates/.icons/fontawesome/solid/wand-magic-sparkles.svg +1 -0
  3149. docsforge/themes/material/templates/.icons/fontawesome/solid/wand-magic.svg +1 -0
  3150. docsforge/themes/material/templates/.icons/fontawesome/solid/wand-sparkles.svg +1 -0
  3151. docsforge/themes/material/templates/.icons/fontawesome/solid/warehouse.svg +1 -0
  3152. docsforge/themes/material/templates/.icons/fontawesome/solid/warning.svg +1 -0
  3153. docsforge/themes/material/templates/.icons/fontawesome/solid/water-ladder.svg +1 -0
  3154. docsforge/themes/material/templates/.icons/fontawesome/solid/water.svg +1 -0
  3155. docsforge/themes/material/templates/.icons/fontawesome/solid/wave-square.svg +1 -0
  3156. docsforge/themes/material/templates/.icons/fontawesome/solid/web-awesome.svg +1 -0
  3157. docsforge/themes/material/templates/.icons/fontawesome/solid/weight-hanging.svg +1 -0
  3158. docsforge/themes/material/templates/.icons/fontawesome/solid/weight-scale.svg +1 -0
  3159. docsforge/themes/material/templates/.icons/fontawesome/solid/weight.svg +1 -0
  3160. docsforge/themes/material/templates/.icons/fontawesome/solid/wheat-alt.svg +1 -0
  3161. docsforge/themes/material/templates/.icons/fontawesome/solid/wheat-awn-circle-exclamation.svg +1 -0
  3162. docsforge/themes/material/templates/.icons/fontawesome/solid/wheat-awn.svg +1 -0
  3163. docsforge/themes/material/templates/.icons/fontawesome/solid/wheelchair-alt.svg +1 -0
  3164. docsforge/themes/material/templates/.icons/fontawesome/solid/wheelchair-move.svg +1 -0
  3165. docsforge/themes/material/templates/.icons/fontawesome/solid/wheelchair.svg +1 -0
  3166. docsforge/themes/material/templates/.icons/fontawesome/solid/whiskey-glass.svg +1 -0
  3167. docsforge/themes/material/templates/.icons/fontawesome/solid/wifi-3.svg +1 -0
  3168. docsforge/themes/material/templates/.icons/fontawesome/solid/wifi-strong.svg +1 -0
  3169. docsforge/themes/material/templates/.icons/fontawesome/solid/wifi.svg +1 -0
  3170. docsforge/themes/material/templates/.icons/fontawesome/solid/wind.svg +1 -0
  3171. docsforge/themes/material/templates/.icons/fontawesome/solid/window-close.svg +1 -0
  3172. docsforge/themes/material/templates/.icons/fontawesome/solid/window-maximize.svg +1 -0
  3173. docsforge/themes/material/templates/.icons/fontawesome/solid/window-minimize.svg +1 -0
  3174. docsforge/themes/material/templates/.icons/fontawesome/solid/window-restore.svg +1 -0
  3175. docsforge/themes/material/templates/.icons/fontawesome/solid/wine-bottle.svg +1 -0
  3176. docsforge/themes/material/templates/.icons/fontawesome/solid/wine-glass-alt.svg +1 -0
  3177. docsforge/themes/material/templates/.icons/fontawesome/solid/wine-glass-empty.svg +1 -0
  3178. docsforge/themes/material/templates/.icons/fontawesome/solid/wine-glass.svg +1 -0
  3179. docsforge/themes/material/templates/.icons/fontawesome/solid/won-sign.svg +1 -0
  3180. docsforge/themes/material/templates/.icons/fontawesome/solid/won.svg +1 -0
  3181. docsforge/themes/material/templates/.icons/fontawesome/solid/worm.svg +1 -0
  3182. docsforge/themes/material/templates/.icons/fontawesome/solid/wrench.svg +1 -0
  3183. docsforge/themes/material/templates/.icons/fontawesome/solid/x-ray.svg +1 -0
  3184. docsforge/themes/material/templates/.icons/fontawesome/solid/x.svg +1 -0
  3185. docsforge/themes/material/templates/.icons/fontawesome/solid/xmark-circle.svg +1 -0
  3186. docsforge/themes/material/templates/.icons/fontawesome/solid/xmark-square.svg +1 -0
  3187. docsforge/themes/material/templates/.icons/fontawesome/solid/xmark.svg +1 -0
  3188. docsforge/themes/material/templates/.icons/fontawesome/solid/xmarks-lines.svg +1 -0
  3189. docsforge/themes/material/templates/.icons/fontawesome/solid/y.svg +1 -0
  3190. docsforge/themes/material/templates/.icons/fontawesome/solid/yen-sign.svg +1 -0
  3191. docsforge/themes/material/templates/.icons/fontawesome/solid/yen.svg +1 -0
  3192. docsforge/themes/material/templates/.icons/fontawesome/solid/yin-yang.svg +1 -0
  3193. docsforge/themes/material/templates/.icons/fontawesome/solid/z.svg +1 -0
  3194. docsforge/themes/material/templates/.icons/fontawesome/solid/zap.svg +1 -0
  3195. docsforge/themes/material/templates/.icons/logo-monochrome.svg +3 -0
  3196. docsforge/themes/material/templates/.icons/logo.svg +6 -0
  3197. docsforge/themes/material/templates/.icons/material/LICENSE +20 -0
  3198. docsforge/themes/material/templates/.icons/material/ab-testing.svg +1 -0
  3199. docsforge/themes/material/templates/.icons/material/abacus.svg +1 -0
  3200. docsforge/themes/material/templates/.icons/material/abjad-arabic.svg +1 -0
  3201. docsforge/themes/material/templates/.icons/material/abjad-hebrew.svg +1 -0
  3202. docsforge/themes/material/templates/.icons/material/abugida-devanagari.svg +1 -0
  3203. docsforge/themes/material/templates/.icons/material/abugida-thai.svg +1 -0
  3204. docsforge/themes/material/templates/.icons/material/access-point-check.svg +1 -0
  3205. docsforge/themes/material/templates/.icons/material/access-point-minus.svg +1 -0
  3206. docsforge/themes/material/templates/.icons/material/access-point-network-off.svg +1 -0
  3207. docsforge/themes/material/templates/.icons/material/access-point-network.svg +1 -0
  3208. docsforge/themes/material/templates/.icons/material/access-point-off.svg +1 -0
  3209. docsforge/themes/material/templates/.icons/material/access-point-plus.svg +1 -0
  3210. docsforge/themes/material/templates/.icons/material/access-point-remove.svg +1 -0
  3211. docsforge/themes/material/templates/.icons/material/access-point.svg +1 -0
  3212. docsforge/themes/material/templates/.icons/material/account-alert-outline.svg +1 -0
  3213. docsforge/themes/material/templates/.icons/material/account-alert.svg +1 -0
  3214. docsforge/themes/material/templates/.icons/material/account-arrow-down-outline.svg +1 -0
  3215. docsforge/themes/material/templates/.icons/material/account-arrow-down.svg +1 -0
  3216. docsforge/themes/material/templates/.icons/material/account-arrow-left-outline.svg +1 -0
  3217. docsforge/themes/material/templates/.icons/material/account-arrow-left.svg +1 -0
  3218. docsforge/themes/material/templates/.icons/material/account-arrow-right-outline.svg +1 -0
  3219. docsforge/themes/material/templates/.icons/material/account-arrow-right.svg +1 -0
  3220. docsforge/themes/material/templates/.icons/material/account-arrow-up-outline.svg +1 -0
  3221. docsforge/themes/material/templates/.icons/material/account-arrow-up.svg +1 -0
  3222. docsforge/themes/material/templates/.icons/material/account-badge-outline.svg +1 -0
  3223. docsforge/themes/material/templates/.icons/material/account-badge.svg +1 -0
  3224. docsforge/themes/material/templates/.icons/material/account-box-edit-outline.svg +1 -0
  3225. docsforge/themes/material/templates/.icons/material/account-box-minus-outline.svg +1 -0
  3226. docsforge/themes/material/templates/.icons/material/account-box-multiple-outline.svg +1 -0
  3227. docsforge/themes/material/templates/.icons/material/account-box-multiple.svg +1 -0
  3228. docsforge/themes/material/templates/.icons/material/account-box-outline.svg +1 -0
  3229. docsforge/themes/material/templates/.icons/material/account-box-plus-outline.svg +1 -0
  3230. docsforge/themes/material/templates/.icons/material/account-box.svg +1 -0
  3231. docsforge/themes/material/templates/.icons/material/account-cancel-outline.svg +1 -0
  3232. docsforge/themes/material/templates/.icons/material/account-cancel.svg +1 -0
  3233. docsforge/themes/material/templates/.icons/material/account-card-outline.svg +1 -0
  3234. docsforge/themes/material/templates/.icons/material/account-card.svg +1 -0
  3235. docsforge/themes/material/templates/.icons/material/account-cash-outline.svg +1 -0
  3236. docsforge/themes/material/templates/.icons/material/account-cash.svg +1 -0
  3237. docsforge/themes/material/templates/.icons/material/account-check-outline.svg +1 -0
  3238. docsforge/themes/material/templates/.icons/material/account-check.svg +1 -0
  3239. docsforge/themes/material/templates/.icons/material/account-child-circle.svg +1 -0
  3240. docsforge/themes/material/templates/.icons/material/account-child-outline.svg +1 -0
  3241. docsforge/themes/material/templates/.icons/material/account-child.svg +1 -0
  3242. docsforge/themes/material/templates/.icons/material/account-circle-outline.svg +1 -0
  3243. docsforge/themes/material/templates/.icons/material/account-circle.svg +1 -0
  3244. docsforge/themes/material/templates/.icons/material/account-clock-outline.svg +1 -0
  3245. docsforge/themes/material/templates/.icons/material/account-clock.svg +1 -0
  3246. docsforge/themes/material/templates/.icons/material/account-cog-outline.svg +1 -0
  3247. docsforge/themes/material/templates/.icons/material/account-cog.svg +1 -0
  3248. docsforge/themes/material/templates/.icons/material/account-convert-outline.svg +1 -0
  3249. docsforge/themes/material/templates/.icons/material/account-convert.svg +1 -0
  3250. docsforge/themes/material/templates/.icons/material/account-cowboy-hat-outline.svg +1 -0
  3251. docsforge/themes/material/templates/.icons/material/account-cowboy-hat.svg +1 -0
  3252. docsforge/themes/material/templates/.icons/material/account-credit-card-outline.svg +1 -0
  3253. docsforge/themes/material/templates/.icons/material/account-credit-card.svg +1 -0
  3254. docsforge/themes/material/templates/.icons/material/account-details-outline.svg +1 -0
  3255. docsforge/themes/material/templates/.icons/material/account-details.svg +1 -0
  3256. docsforge/themes/material/templates/.icons/material/account-edit-outline.svg +1 -0
  3257. docsforge/themes/material/templates/.icons/material/account-edit.svg +1 -0
  3258. docsforge/themes/material/templates/.icons/material/account-eye-outline.svg +1 -0
  3259. docsforge/themes/material/templates/.icons/material/account-eye.svg +1 -0
  3260. docsforge/themes/material/templates/.icons/material/account-file-outline.svg +1 -0
  3261. docsforge/themes/material/templates/.icons/material/account-file-text-outline.svg +1 -0
  3262. docsforge/themes/material/templates/.icons/material/account-file-text.svg +1 -0
  3263. docsforge/themes/material/templates/.icons/material/account-file.svg +1 -0
  3264. docsforge/themes/material/templates/.icons/material/account-filter-outline.svg +1 -0
  3265. docsforge/themes/material/templates/.icons/material/account-filter.svg +1 -0
  3266. docsforge/themes/material/templates/.icons/material/account-group-outline.svg +1 -0
  3267. docsforge/themes/material/templates/.icons/material/account-group.svg +1 -0
  3268. docsforge/themes/material/templates/.icons/material/account-hard-hat-outline.svg +1 -0
  3269. docsforge/themes/material/templates/.icons/material/account-hard-hat.svg +1 -0
  3270. docsforge/themes/material/templates/.icons/material/account-heart-outline.svg +1 -0
  3271. docsforge/themes/material/templates/.icons/material/account-heart.svg +1 -0
  3272. docsforge/themes/material/templates/.icons/material/account-injury-outline.svg +1 -0
  3273. docsforge/themes/material/templates/.icons/material/account-injury.svg +1 -0
  3274. docsforge/themes/material/templates/.icons/material/account-key-outline.svg +1 -0
  3275. docsforge/themes/material/templates/.icons/material/account-key.svg +1 -0
  3276. docsforge/themes/material/templates/.icons/material/account-lock-open-outline.svg +1 -0
  3277. docsforge/themes/material/templates/.icons/material/account-lock-open.svg +1 -0
  3278. docsforge/themes/material/templates/.icons/material/account-lock-outline.svg +1 -0
  3279. docsforge/themes/material/templates/.icons/material/account-lock.svg +1 -0
  3280. docsforge/themes/material/templates/.icons/material/account-minus-outline.svg +1 -0
  3281. docsforge/themes/material/templates/.icons/material/account-minus.svg +1 -0
  3282. docsforge/themes/material/templates/.icons/material/account-multiple-check-outline.svg +1 -0
  3283. docsforge/themes/material/templates/.icons/material/account-multiple-check.svg +1 -0
  3284. docsforge/themes/material/templates/.icons/material/account-multiple-minus-outline.svg +1 -0
  3285. docsforge/themes/material/templates/.icons/material/account-multiple-minus.svg +1 -0
  3286. docsforge/themes/material/templates/.icons/material/account-multiple-outline.svg +1 -0
  3287. docsforge/themes/material/templates/.icons/material/account-multiple-plus-outline.svg +1 -0
  3288. docsforge/themes/material/templates/.icons/material/account-multiple-plus.svg +1 -0
  3289. docsforge/themes/material/templates/.icons/material/account-multiple-remove-outline.svg +1 -0
  3290. docsforge/themes/material/templates/.icons/material/account-multiple-remove.svg +1 -0
  3291. docsforge/themes/material/templates/.icons/material/account-multiple.svg +1 -0
  3292. docsforge/themes/material/templates/.icons/material/account-music-outline.svg +1 -0
  3293. docsforge/themes/material/templates/.icons/material/account-music.svg +1 -0
  3294. docsforge/themes/material/templates/.icons/material/account-network-off-outline.svg +1 -0
  3295. docsforge/themes/material/templates/.icons/material/account-network-off.svg +1 -0
  3296. docsforge/themes/material/templates/.icons/material/account-network-outline.svg +1 -0
  3297. docsforge/themes/material/templates/.icons/material/account-network.svg +1 -0
  3298. docsforge/themes/material/templates/.icons/material/account-off-outline.svg +1 -0
  3299. docsforge/themes/material/templates/.icons/material/account-off.svg +1 -0
  3300. docsforge/themes/material/templates/.icons/material/account-outline.svg +1 -0
  3301. docsforge/themes/material/templates/.icons/material/account-plus-outline.svg +1 -0
  3302. docsforge/themes/material/templates/.icons/material/account-plus.svg +1 -0
  3303. docsforge/themes/material/templates/.icons/material/account-question-outline.svg +1 -0
  3304. docsforge/themes/material/templates/.icons/material/account-question.svg +1 -0
  3305. docsforge/themes/material/templates/.icons/material/account-reactivate-outline.svg +1 -0
  3306. docsforge/themes/material/templates/.icons/material/account-reactivate.svg +1 -0
  3307. docsforge/themes/material/templates/.icons/material/account-remove-outline.svg +1 -0
  3308. docsforge/themes/material/templates/.icons/material/account-remove.svg +1 -0
  3309. docsforge/themes/material/templates/.icons/material/account-school-outline.svg +1 -0
  3310. docsforge/themes/material/templates/.icons/material/account-school.svg +1 -0
  3311. docsforge/themes/material/templates/.icons/material/account-search-outline.svg +1 -0
  3312. docsforge/themes/material/templates/.icons/material/account-search.svg +1 -0
  3313. docsforge/themes/material/templates/.icons/material/account-settings-outline.svg +1 -0
  3314. docsforge/themes/material/templates/.icons/material/account-settings.svg +1 -0
  3315. docsforge/themes/material/templates/.icons/material/account-star-outline.svg +1 -0
  3316. docsforge/themes/material/templates/.icons/material/account-star.svg +1 -0
  3317. docsforge/themes/material/templates/.icons/material/account-supervisor-circle-outline.svg +1 -0
  3318. docsforge/themes/material/templates/.icons/material/account-supervisor-circle.svg +1 -0
  3319. docsforge/themes/material/templates/.icons/material/account-supervisor-outline.svg +1 -0
  3320. docsforge/themes/material/templates/.icons/material/account-supervisor.svg +1 -0
  3321. docsforge/themes/material/templates/.icons/material/account-switch-outline.svg +1 -0
  3322. docsforge/themes/material/templates/.icons/material/account-switch.svg +1 -0
  3323. docsforge/themes/material/templates/.icons/material/account-sync-outline.svg +1 -0
  3324. docsforge/themes/material/templates/.icons/material/account-sync.svg +1 -0
  3325. docsforge/themes/material/templates/.icons/material/account-tag-outline.svg +1 -0
  3326. docsforge/themes/material/templates/.icons/material/account-tag.svg +1 -0
  3327. docsforge/themes/material/templates/.icons/material/account-tie-hat-outline.svg +1 -0
  3328. docsforge/themes/material/templates/.icons/material/account-tie-hat.svg +1 -0
  3329. docsforge/themes/material/templates/.icons/material/account-tie-outline.svg +1 -0
  3330. docsforge/themes/material/templates/.icons/material/account-tie-voice-off-outline.svg +1 -0
  3331. docsforge/themes/material/templates/.icons/material/account-tie-voice-off.svg +1 -0
  3332. docsforge/themes/material/templates/.icons/material/account-tie-voice-outline.svg +1 -0
  3333. docsforge/themes/material/templates/.icons/material/account-tie-voice.svg +1 -0
  3334. docsforge/themes/material/templates/.icons/material/account-tie-woman.svg +1 -0
  3335. docsforge/themes/material/templates/.icons/material/account-tie.svg +1 -0
  3336. docsforge/themes/material/templates/.icons/material/account-voice-off.svg +1 -0
  3337. docsforge/themes/material/templates/.icons/material/account-voice.svg +1 -0
  3338. docsforge/themes/material/templates/.icons/material/account-wrench-outline.svg +1 -0
  3339. docsforge/themes/material/templates/.icons/material/account-wrench.svg +1 -0
  3340. docsforge/themes/material/templates/.icons/material/account.svg +1 -0
  3341. docsforge/themes/material/templates/.icons/material/adjust.svg +1 -0
  3342. docsforge/themes/material/templates/.icons/material/advertisements-off.svg +1 -0
  3343. docsforge/themes/material/templates/.icons/material/advertisements.svg +1 -0
  3344. docsforge/themes/material/templates/.icons/material/air-conditioner.svg +1 -0
  3345. docsforge/themes/material/templates/.icons/material/air-filter.svg +1 -0
  3346. docsforge/themes/material/templates/.icons/material/air-horn.svg +1 -0
  3347. docsforge/themes/material/templates/.icons/material/air-humidifier-off.svg +1 -0
  3348. docsforge/themes/material/templates/.icons/material/air-humidifier.svg +1 -0
  3349. docsforge/themes/material/templates/.icons/material/air-purifier-off.svg +1 -0
  3350. docsforge/themes/material/templates/.icons/material/air-purifier.svg +1 -0
  3351. docsforge/themes/material/templates/.icons/material/airbag.svg +1 -0
  3352. docsforge/themes/material/templates/.icons/material/airballoon-outline.svg +1 -0
  3353. docsforge/themes/material/templates/.icons/material/airballoon.svg +1 -0
  3354. docsforge/themes/material/templates/.icons/material/airplane-alert.svg +1 -0
  3355. docsforge/themes/material/templates/.icons/material/airplane-check.svg +1 -0
  3356. docsforge/themes/material/templates/.icons/material/airplane-clock.svg +1 -0
  3357. docsforge/themes/material/templates/.icons/material/airplane-cog.svg +1 -0
  3358. docsforge/themes/material/templates/.icons/material/airplane-edit.svg +1 -0
  3359. docsforge/themes/material/templates/.icons/material/airplane-landing.svg +1 -0
  3360. docsforge/themes/material/templates/.icons/material/airplane-marker.svg +1 -0
  3361. docsforge/themes/material/templates/.icons/material/airplane-minus.svg +1 -0
  3362. docsforge/themes/material/templates/.icons/material/airplane-off.svg +1 -0
  3363. docsforge/themes/material/templates/.icons/material/airplane-plus.svg +1 -0
  3364. docsforge/themes/material/templates/.icons/material/airplane-remove.svg +1 -0
  3365. docsforge/themes/material/templates/.icons/material/airplane-search.svg +1 -0
  3366. docsforge/themes/material/templates/.icons/material/airplane-settings.svg +1 -0
  3367. docsforge/themes/material/templates/.icons/material/airplane-takeoff.svg +1 -0
  3368. docsforge/themes/material/templates/.icons/material/airplane.svg +1 -0
  3369. docsforge/themes/material/templates/.icons/material/airport.svg +1 -0
  3370. docsforge/themes/material/templates/.icons/material/alarm-bell.svg +1 -0
  3371. docsforge/themes/material/templates/.icons/material/alarm-check.svg +1 -0
  3372. docsforge/themes/material/templates/.icons/material/alarm-light-off-outline.svg +1 -0
  3373. docsforge/themes/material/templates/.icons/material/alarm-light-off.svg +1 -0
  3374. docsforge/themes/material/templates/.icons/material/alarm-light-outline.svg +1 -0
  3375. docsforge/themes/material/templates/.icons/material/alarm-light.svg +1 -0
  3376. docsforge/themes/material/templates/.icons/material/alarm-multiple.svg +1 -0
  3377. docsforge/themes/material/templates/.icons/material/alarm-note-off.svg +1 -0
  3378. docsforge/themes/material/templates/.icons/material/alarm-note.svg +1 -0
  3379. docsforge/themes/material/templates/.icons/material/alarm-off.svg +1 -0
  3380. docsforge/themes/material/templates/.icons/material/alarm-panel-outline.svg +1 -0
  3381. docsforge/themes/material/templates/.icons/material/alarm-panel.svg +1 -0
  3382. docsforge/themes/material/templates/.icons/material/alarm-plus.svg +1 -0
  3383. docsforge/themes/material/templates/.icons/material/alarm-snooze.svg +1 -0
  3384. docsforge/themes/material/templates/.icons/material/alarm.svg +1 -0
  3385. docsforge/themes/material/templates/.icons/material/album.svg +1 -0
  3386. docsforge/themes/material/templates/.icons/material/alert-box-outline.svg +1 -0
  3387. docsforge/themes/material/templates/.icons/material/alert-box.svg +1 -0
  3388. docsforge/themes/material/templates/.icons/material/alert-circle-check-outline.svg +1 -0
  3389. docsforge/themes/material/templates/.icons/material/alert-circle-check.svg +1 -0
  3390. docsforge/themes/material/templates/.icons/material/alert-circle-outline.svg +1 -0
  3391. docsforge/themes/material/templates/.icons/material/alert-circle.svg +1 -0
  3392. docsforge/themes/material/templates/.icons/material/alert-decagram-outline.svg +1 -0
  3393. docsforge/themes/material/templates/.icons/material/alert-decagram.svg +1 -0
  3394. docsforge/themes/material/templates/.icons/material/alert-minus-outline.svg +1 -0
  3395. docsforge/themes/material/templates/.icons/material/alert-minus.svg +1 -0
  3396. docsforge/themes/material/templates/.icons/material/alert-octagon-outline.svg +1 -0
  3397. docsforge/themes/material/templates/.icons/material/alert-octagon.svg +1 -0
  3398. docsforge/themes/material/templates/.icons/material/alert-octagram-outline.svg +1 -0
  3399. docsforge/themes/material/templates/.icons/material/alert-octagram.svg +1 -0
  3400. docsforge/themes/material/templates/.icons/material/alert-outline.svg +1 -0
  3401. docsforge/themes/material/templates/.icons/material/alert-plus-outline.svg +1 -0
  3402. docsforge/themes/material/templates/.icons/material/alert-plus.svg +1 -0
  3403. docsforge/themes/material/templates/.icons/material/alert-remove-outline.svg +1 -0
  3404. docsforge/themes/material/templates/.icons/material/alert-remove.svg +1 -0
  3405. docsforge/themes/material/templates/.icons/material/alert-rhombus-outline.svg +1 -0
  3406. docsforge/themes/material/templates/.icons/material/alert-rhombus.svg +1 -0
  3407. docsforge/themes/material/templates/.icons/material/alert.svg +1 -0
  3408. docsforge/themes/material/templates/.icons/material/alien-outline.svg +1 -0
  3409. docsforge/themes/material/templates/.icons/material/alien.svg +1 -0
  3410. docsforge/themes/material/templates/.icons/material/align-horizontal-center.svg +1 -0
  3411. docsforge/themes/material/templates/.icons/material/align-horizontal-distribute.svg +1 -0
  3412. docsforge/themes/material/templates/.icons/material/align-horizontal-left.svg +1 -0
  3413. docsforge/themes/material/templates/.icons/material/align-horizontal-right.svg +1 -0
  3414. docsforge/themes/material/templates/.icons/material/align-vertical-bottom.svg +1 -0
  3415. docsforge/themes/material/templates/.icons/material/align-vertical-center.svg +1 -0
  3416. docsforge/themes/material/templates/.icons/material/align-vertical-distribute.svg +1 -0
  3417. docsforge/themes/material/templates/.icons/material/align-vertical-top.svg +1 -0
  3418. docsforge/themes/material/templates/.icons/material/all-inclusive-box-outline.svg +1 -0
  3419. docsforge/themes/material/templates/.icons/material/all-inclusive-box.svg +1 -0
  3420. docsforge/themes/material/templates/.icons/material/all-inclusive.svg +1 -0
  3421. docsforge/themes/material/templates/.icons/material/allergy.svg +1 -0
  3422. docsforge/themes/material/templates/.icons/material/alpha-a-box-outline.svg +1 -0
  3423. docsforge/themes/material/templates/.icons/material/alpha-a-box.svg +1 -0
  3424. docsforge/themes/material/templates/.icons/material/alpha-a-circle-outline.svg +1 -0
  3425. docsforge/themes/material/templates/.icons/material/alpha-a-circle.svg +1 -0
  3426. docsforge/themes/material/templates/.icons/material/alpha-a.svg +1 -0
  3427. docsforge/themes/material/templates/.icons/material/alpha-b-box-outline.svg +1 -0
  3428. docsforge/themes/material/templates/.icons/material/alpha-b-box.svg +1 -0
  3429. docsforge/themes/material/templates/.icons/material/alpha-b-circle-outline.svg +1 -0
  3430. docsforge/themes/material/templates/.icons/material/alpha-b-circle.svg +1 -0
  3431. docsforge/themes/material/templates/.icons/material/alpha-b.svg +1 -0
  3432. docsforge/themes/material/templates/.icons/material/alpha-c-box-outline.svg +1 -0
  3433. docsforge/themes/material/templates/.icons/material/alpha-c-box.svg +1 -0
  3434. docsforge/themes/material/templates/.icons/material/alpha-c-circle-outline.svg +1 -0
  3435. docsforge/themes/material/templates/.icons/material/alpha-c-circle.svg +1 -0
  3436. docsforge/themes/material/templates/.icons/material/alpha-c.svg +1 -0
  3437. docsforge/themes/material/templates/.icons/material/alpha-d-box-outline.svg +1 -0
  3438. docsforge/themes/material/templates/.icons/material/alpha-d-box.svg +1 -0
  3439. docsforge/themes/material/templates/.icons/material/alpha-d-circle-outline.svg +1 -0
  3440. docsforge/themes/material/templates/.icons/material/alpha-d-circle.svg +1 -0
  3441. docsforge/themes/material/templates/.icons/material/alpha-d.svg +1 -0
  3442. docsforge/themes/material/templates/.icons/material/alpha-e-box-outline.svg +1 -0
  3443. docsforge/themes/material/templates/.icons/material/alpha-e-box.svg +1 -0
  3444. docsforge/themes/material/templates/.icons/material/alpha-e-circle-outline.svg +1 -0
  3445. docsforge/themes/material/templates/.icons/material/alpha-e-circle.svg +1 -0
  3446. docsforge/themes/material/templates/.icons/material/alpha-e.svg +1 -0
  3447. docsforge/themes/material/templates/.icons/material/alpha-f-box-outline.svg +1 -0
  3448. docsforge/themes/material/templates/.icons/material/alpha-f-box.svg +1 -0
  3449. docsforge/themes/material/templates/.icons/material/alpha-f-circle-outline.svg +1 -0
  3450. docsforge/themes/material/templates/.icons/material/alpha-f-circle.svg +1 -0
  3451. docsforge/themes/material/templates/.icons/material/alpha-f.svg +1 -0
  3452. docsforge/themes/material/templates/.icons/material/alpha-g-box-outline.svg +1 -0
  3453. docsforge/themes/material/templates/.icons/material/alpha-g-box.svg +1 -0
  3454. docsforge/themes/material/templates/.icons/material/alpha-g-circle-outline.svg +1 -0
  3455. docsforge/themes/material/templates/.icons/material/alpha-g-circle.svg +1 -0
  3456. docsforge/themes/material/templates/.icons/material/alpha-g.svg +1 -0
  3457. docsforge/themes/material/templates/.icons/material/alpha-h-box-outline.svg +1 -0
  3458. docsforge/themes/material/templates/.icons/material/alpha-h-box.svg +1 -0
  3459. docsforge/themes/material/templates/.icons/material/alpha-h-circle-outline.svg +1 -0
  3460. docsforge/themes/material/templates/.icons/material/alpha-h-circle.svg +1 -0
  3461. docsforge/themes/material/templates/.icons/material/alpha-h.svg +1 -0
  3462. docsforge/themes/material/templates/.icons/material/alpha-i-box-outline.svg +1 -0
  3463. docsforge/themes/material/templates/.icons/material/alpha-i-box.svg +1 -0
  3464. docsforge/themes/material/templates/.icons/material/alpha-i-circle-outline.svg +1 -0
  3465. docsforge/themes/material/templates/.icons/material/alpha-i-circle.svg +1 -0
  3466. docsforge/themes/material/templates/.icons/material/alpha-i.svg +1 -0
  3467. docsforge/themes/material/templates/.icons/material/alpha-j-box-outline.svg +1 -0
  3468. docsforge/themes/material/templates/.icons/material/alpha-j-box.svg +1 -0
  3469. docsforge/themes/material/templates/.icons/material/alpha-j-circle-outline.svg +1 -0
  3470. docsforge/themes/material/templates/.icons/material/alpha-j-circle.svg +1 -0
  3471. docsforge/themes/material/templates/.icons/material/alpha-j.svg +1 -0
  3472. docsforge/themes/material/templates/.icons/material/alpha-k-box-outline.svg +1 -0
  3473. docsforge/themes/material/templates/.icons/material/alpha-k-box.svg +1 -0
  3474. docsforge/themes/material/templates/.icons/material/alpha-k-circle-outline.svg +1 -0
  3475. docsforge/themes/material/templates/.icons/material/alpha-k-circle.svg +1 -0
  3476. docsforge/themes/material/templates/.icons/material/alpha-k.svg +1 -0
  3477. docsforge/themes/material/templates/.icons/material/alpha-l-box-outline.svg +1 -0
  3478. docsforge/themes/material/templates/.icons/material/alpha-l-box.svg +1 -0
  3479. docsforge/themes/material/templates/.icons/material/alpha-l-circle-outline.svg +1 -0
  3480. docsforge/themes/material/templates/.icons/material/alpha-l-circle.svg +1 -0
  3481. docsforge/themes/material/templates/.icons/material/alpha-l.svg +1 -0
  3482. docsforge/themes/material/templates/.icons/material/alpha-m-box-outline.svg +1 -0
  3483. docsforge/themes/material/templates/.icons/material/alpha-m-box.svg +1 -0
  3484. docsforge/themes/material/templates/.icons/material/alpha-m-circle-outline.svg +1 -0
  3485. docsforge/themes/material/templates/.icons/material/alpha-m-circle.svg +1 -0
  3486. docsforge/themes/material/templates/.icons/material/alpha-m.svg +1 -0
  3487. docsforge/themes/material/templates/.icons/material/alpha-n-box-outline.svg +1 -0
  3488. docsforge/themes/material/templates/.icons/material/alpha-n-box.svg +1 -0
  3489. docsforge/themes/material/templates/.icons/material/alpha-n-circle-outline.svg +1 -0
  3490. docsforge/themes/material/templates/.icons/material/alpha-n-circle.svg +1 -0
  3491. docsforge/themes/material/templates/.icons/material/alpha-n.svg +1 -0
  3492. docsforge/themes/material/templates/.icons/material/alpha-o-box-outline.svg +1 -0
  3493. docsforge/themes/material/templates/.icons/material/alpha-o-box.svg +1 -0
  3494. docsforge/themes/material/templates/.icons/material/alpha-o-circle-outline.svg +1 -0
  3495. docsforge/themes/material/templates/.icons/material/alpha-o-circle.svg +1 -0
  3496. docsforge/themes/material/templates/.icons/material/alpha-o.svg +1 -0
  3497. docsforge/themes/material/templates/.icons/material/alpha-p-box-outline.svg +1 -0
  3498. docsforge/themes/material/templates/.icons/material/alpha-p-box.svg +1 -0
  3499. docsforge/themes/material/templates/.icons/material/alpha-p-circle-outline.svg +1 -0
  3500. docsforge/themes/material/templates/.icons/material/alpha-p-circle.svg +1 -0
  3501. docsforge/themes/material/templates/.icons/material/alpha-p.svg +1 -0
  3502. docsforge/themes/material/templates/.icons/material/alpha-q-box-outline.svg +1 -0
  3503. docsforge/themes/material/templates/.icons/material/alpha-q-box.svg +1 -0
  3504. docsforge/themes/material/templates/.icons/material/alpha-q-circle-outline.svg +1 -0
  3505. docsforge/themes/material/templates/.icons/material/alpha-q-circle.svg +1 -0
  3506. docsforge/themes/material/templates/.icons/material/alpha-q.svg +1 -0
  3507. docsforge/themes/material/templates/.icons/material/alpha-r-box-outline.svg +1 -0
  3508. docsforge/themes/material/templates/.icons/material/alpha-r-box.svg +1 -0
  3509. docsforge/themes/material/templates/.icons/material/alpha-r-circle-outline.svg +1 -0
  3510. docsforge/themes/material/templates/.icons/material/alpha-r-circle.svg +1 -0
  3511. docsforge/themes/material/templates/.icons/material/alpha-r.svg +1 -0
  3512. docsforge/themes/material/templates/.icons/material/alpha-s-box-outline.svg +1 -0
  3513. docsforge/themes/material/templates/.icons/material/alpha-s-box.svg +1 -0
  3514. docsforge/themes/material/templates/.icons/material/alpha-s-circle-outline.svg +1 -0
  3515. docsforge/themes/material/templates/.icons/material/alpha-s-circle.svg +1 -0
  3516. docsforge/themes/material/templates/.icons/material/alpha-s.svg +1 -0
  3517. docsforge/themes/material/templates/.icons/material/alpha-t-box-outline.svg +1 -0
  3518. docsforge/themes/material/templates/.icons/material/alpha-t-box.svg +1 -0
  3519. docsforge/themes/material/templates/.icons/material/alpha-t-circle-outline.svg +1 -0
  3520. docsforge/themes/material/templates/.icons/material/alpha-t-circle.svg +1 -0
  3521. docsforge/themes/material/templates/.icons/material/alpha-t.svg +1 -0
  3522. docsforge/themes/material/templates/.icons/material/alpha-u-box-outline.svg +1 -0
  3523. docsforge/themes/material/templates/.icons/material/alpha-u-box.svg +1 -0
  3524. docsforge/themes/material/templates/.icons/material/alpha-u-circle-outline.svg +1 -0
  3525. docsforge/themes/material/templates/.icons/material/alpha-u-circle.svg +1 -0
  3526. docsforge/themes/material/templates/.icons/material/alpha-u.svg +1 -0
  3527. docsforge/themes/material/templates/.icons/material/alpha-v-box-outline.svg +1 -0
  3528. docsforge/themes/material/templates/.icons/material/alpha-v-box.svg +1 -0
  3529. docsforge/themes/material/templates/.icons/material/alpha-v-circle-outline.svg +1 -0
  3530. docsforge/themes/material/templates/.icons/material/alpha-v-circle.svg +1 -0
  3531. docsforge/themes/material/templates/.icons/material/alpha-v.svg +1 -0
  3532. docsforge/themes/material/templates/.icons/material/alpha-w-box-outline.svg +1 -0
  3533. docsforge/themes/material/templates/.icons/material/alpha-w-box.svg +1 -0
  3534. docsforge/themes/material/templates/.icons/material/alpha-w-circle-outline.svg +1 -0
  3535. docsforge/themes/material/templates/.icons/material/alpha-w-circle.svg +1 -0
  3536. docsforge/themes/material/templates/.icons/material/alpha-w.svg +1 -0
  3537. docsforge/themes/material/templates/.icons/material/alpha-x-box-outline.svg +1 -0
  3538. docsforge/themes/material/templates/.icons/material/alpha-x-box.svg +1 -0
  3539. docsforge/themes/material/templates/.icons/material/alpha-x-circle-outline.svg +1 -0
  3540. docsforge/themes/material/templates/.icons/material/alpha-x-circle.svg +1 -0
  3541. docsforge/themes/material/templates/.icons/material/alpha-x.svg +1 -0
  3542. docsforge/themes/material/templates/.icons/material/alpha-y-box-outline.svg +1 -0
  3543. docsforge/themes/material/templates/.icons/material/alpha-y-box.svg +1 -0
  3544. docsforge/themes/material/templates/.icons/material/alpha-y-circle-outline.svg +1 -0
  3545. docsforge/themes/material/templates/.icons/material/alpha-y-circle.svg +1 -0
  3546. docsforge/themes/material/templates/.icons/material/alpha-y.svg +1 -0
  3547. docsforge/themes/material/templates/.icons/material/alpha-z-box-outline.svg +1 -0
  3548. docsforge/themes/material/templates/.icons/material/alpha-z-box.svg +1 -0
  3549. docsforge/themes/material/templates/.icons/material/alpha-z-circle-outline.svg +1 -0
  3550. docsforge/themes/material/templates/.icons/material/alpha-z-circle.svg +1 -0
  3551. docsforge/themes/material/templates/.icons/material/alpha-z.svg +1 -0
  3552. docsforge/themes/material/templates/.icons/material/alpha.svg +1 -0
  3553. docsforge/themes/material/templates/.icons/material/alphabet-aurebesh.svg +1 -0
  3554. docsforge/themes/material/templates/.icons/material/alphabet-cyrillic.svg +1 -0
  3555. docsforge/themes/material/templates/.icons/material/alphabet-greek.svg +1 -0
  3556. docsforge/themes/material/templates/.icons/material/alphabet-latin.svg +1 -0
  3557. docsforge/themes/material/templates/.icons/material/alphabet-piqad.svg +1 -0
  3558. docsforge/themes/material/templates/.icons/material/alphabet-tengwar.svg +1 -0
  3559. docsforge/themes/material/templates/.icons/material/alphabetical-off.svg +1 -0
  3560. docsforge/themes/material/templates/.icons/material/alphabetical-variant-off.svg +1 -0
  3561. docsforge/themes/material/templates/.icons/material/alphabetical-variant.svg +1 -0
  3562. docsforge/themes/material/templates/.icons/material/alphabetical.svg +1 -0
  3563. docsforge/themes/material/templates/.icons/material/altimeter.svg +1 -0
  3564. docsforge/themes/material/templates/.icons/material/ambulance.svg +1 -0
  3565. docsforge/themes/material/templates/.icons/material/ammunition.svg +1 -0
  3566. docsforge/themes/material/templates/.icons/material/ampersand.svg +1 -0
  3567. docsforge/themes/material/templates/.icons/material/amplifier-off.svg +1 -0
  3568. docsforge/themes/material/templates/.icons/material/amplifier.svg +1 -0
  3569. docsforge/themes/material/templates/.icons/material/anchor.svg +1 -0
  3570. docsforge/themes/material/templates/.icons/material/android-studio.svg +1 -0
  3571. docsforge/themes/material/templates/.icons/material/android.svg +1 -0
  3572. docsforge/themes/material/templates/.icons/material/angle-acute.svg +1 -0
  3573. docsforge/themes/material/templates/.icons/material/angle-obtuse.svg +1 -0
  3574. docsforge/themes/material/templates/.icons/material/angle-right.svg +1 -0
  3575. docsforge/themes/material/templates/.icons/material/angular.svg +1 -0
  3576. docsforge/themes/material/templates/.icons/material/angularjs.svg +1 -0
  3577. docsforge/themes/material/templates/.icons/material/animation-outline.svg +1 -0
  3578. docsforge/themes/material/templates/.icons/material/animation-play-outline.svg +1 -0
  3579. docsforge/themes/material/templates/.icons/material/animation-play.svg +1 -0
  3580. docsforge/themes/material/templates/.icons/material/animation.svg +1 -0
  3581. docsforge/themes/material/templates/.icons/material/ansible.svg +1 -0
  3582. docsforge/themes/material/templates/.icons/material/antenna.svg +1 -0
  3583. docsforge/themes/material/templates/.icons/material/anvil.svg +1 -0
  3584. docsforge/themes/material/templates/.icons/material/apache-kafka.svg +1 -0
  3585. docsforge/themes/material/templates/.icons/material/api-off.svg +1 -0
  3586. docsforge/themes/material/templates/.icons/material/api.svg +1 -0
  3587. docsforge/themes/material/templates/.icons/material/apple-finder.svg +1 -0
  3588. docsforge/themes/material/templates/.icons/material/apple-icloud.svg +1 -0
  3589. docsforge/themes/material/templates/.icons/material/apple-ios.svg +1 -0
  3590. docsforge/themes/material/templates/.icons/material/apple-keyboard-caps.svg +1 -0
  3591. docsforge/themes/material/templates/.icons/material/apple-keyboard-command.svg +1 -0
  3592. docsforge/themes/material/templates/.icons/material/apple-keyboard-control.svg +1 -0
  3593. docsforge/themes/material/templates/.icons/material/apple-keyboard-option.svg +1 -0
  3594. docsforge/themes/material/templates/.icons/material/apple-keyboard-shift.svg +1 -0
  3595. docsforge/themes/material/templates/.icons/material/apple-safari.svg +1 -0
  3596. docsforge/themes/material/templates/.icons/material/apple.svg +1 -0
  3597. docsforge/themes/material/templates/.icons/material/application-array-outline.svg +1 -0
  3598. docsforge/themes/material/templates/.icons/material/application-array.svg +1 -0
  3599. docsforge/themes/material/templates/.icons/material/application-braces-outline.svg +1 -0
  3600. docsforge/themes/material/templates/.icons/material/application-braces.svg +1 -0
  3601. docsforge/themes/material/templates/.icons/material/application-brackets-outline.svg +1 -0
  3602. docsforge/themes/material/templates/.icons/material/application-brackets.svg +1 -0
  3603. docsforge/themes/material/templates/.icons/material/application-cog-outline.svg +1 -0
  3604. docsforge/themes/material/templates/.icons/material/application-cog.svg +1 -0
  3605. docsforge/themes/material/templates/.icons/material/application-edit-outline.svg +1 -0
  3606. docsforge/themes/material/templates/.icons/material/application-edit.svg +1 -0
  3607. docsforge/themes/material/templates/.icons/material/application-export.svg +1 -0
  3608. docsforge/themes/material/templates/.icons/material/application-import.svg +1 -0
  3609. docsforge/themes/material/templates/.icons/material/application-outline.svg +1 -0
  3610. docsforge/themes/material/templates/.icons/material/application-parentheses-outline.svg +1 -0
  3611. docsforge/themes/material/templates/.icons/material/application-parentheses.svg +1 -0
  3612. docsforge/themes/material/templates/.icons/material/application-settings-outline.svg +1 -0
  3613. docsforge/themes/material/templates/.icons/material/application-settings.svg +1 -0
  3614. docsforge/themes/material/templates/.icons/material/application-variable-outline.svg +1 -0
  3615. docsforge/themes/material/templates/.icons/material/application-variable.svg +1 -0
  3616. docsforge/themes/material/templates/.icons/material/application.svg +1 -0
  3617. docsforge/themes/material/templates/.icons/material/approximately-equal-box.svg +1 -0
  3618. docsforge/themes/material/templates/.icons/material/approximately-equal.svg +1 -0
  3619. docsforge/themes/material/templates/.icons/material/apps-box.svg +1 -0
  3620. docsforge/themes/material/templates/.icons/material/apps.svg +1 -0
  3621. docsforge/themes/material/templates/.icons/material/arch.svg +1 -0
  3622. docsforge/themes/material/templates/.icons/material/archive-alert-outline.svg +1 -0
  3623. docsforge/themes/material/templates/.icons/material/archive-alert.svg +1 -0
  3624. docsforge/themes/material/templates/.icons/material/archive-arrow-down-outline.svg +1 -0
  3625. docsforge/themes/material/templates/.icons/material/archive-arrow-down.svg +1 -0
  3626. docsforge/themes/material/templates/.icons/material/archive-arrow-up-outline.svg +1 -0
  3627. docsforge/themes/material/templates/.icons/material/archive-arrow-up.svg +1 -0
  3628. docsforge/themes/material/templates/.icons/material/archive-cancel-outline.svg +1 -0
  3629. docsforge/themes/material/templates/.icons/material/archive-cancel.svg +1 -0
  3630. docsforge/themes/material/templates/.icons/material/archive-check-outline.svg +1 -0
  3631. docsforge/themes/material/templates/.icons/material/archive-check.svg +1 -0
  3632. docsforge/themes/material/templates/.icons/material/archive-clock-outline.svg +1 -0
  3633. docsforge/themes/material/templates/.icons/material/archive-clock.svg +1 -0
  3634. docsforge/themes/material/templates/.icons/material/archive-cog-outline.svg +1 -0
  3635. docsforge/themes/material/templates/.icons/material/archive-cog.svg +1 -0
  3636. docsforge/themes/material/templates/.icons/material/archive-edit-outline.svg +1 -0
  3637. docsforge/themes/material/templates/.icons/material/archive-edit.svg +1 -0
  3638. docsforge/themes/material/templates/.icons/material/archive-eye-outline.svg +1 -0
  3639. docsforge/themes/material/templates/.icons/material/archive-eye.svg +1 -0
  3640. docsforge/themes/material/templates/.icons/material/archive-lock-open-outline.svg +1 -0
  3641. docsforge/themes/material/templates/.icons/material/archive-lock-open.svg +1 -0
  3642. docsforge/themes/material/templates/.icons/material/archive-lock-outline.svg +1 -0
  3643. docsforge/themes/material/templates/.icons/material/archive-lock.svg +1 -0
  3644. docsforge/themes/material/templates/.icons/material/archive-marker-outline.svg +1 -0
  3645. docsforge/themes/material/templates/.icons/material/archive-marker.svg +1 -0
  3646. docsforge/themes/material/templates/.icons/material/archive-minus-outline.svg +1 -0
  3647. docsforge/themes/material/templates/.icons/material/archive-minus.svg +1 -0
  3648. docsforge/themes/material/templates/.icons/material/archive-music-outline.svg +1 -0
  3649. docsforge/themes/material/templates/.icons/material/archive-music.svg +1 -0
  3650. docsforge/themes/material/templates/.icons/material/archive-off-outline.svg +1 -0
  3651. docsforge/themes/material/templates/.icons/material/archive-off.svg +1 -0
  3652. docsforge/themes/material/templates/.icons/material/archive-outline.svg +1 -0
  3653. docsforge/themes/material/templates/.icons/material/archive-plus-outline.svg +1 -0
  3654. docsforge/themes/material/templates/.icons/material/archive-plus.svg +1 -0
  3655. docsforge/themes/material/templates/.icons/material/archive-refresh-outline.svg +1 -0
  3656. docsforge/themes/material/templates/.icons/material/archive-refresh.svg +1 -0
  3657. docsforge/themes/material/templates/.icons/material/archive-remove-outline.svg +1 -0
  3658. docsforge/themes/material/templates/.icons/material/archive-remove.svg +1 -0
  3659. docsforge/themes/material/templates/.icons/material/archive-search-outline.svg +1 -0
  3660. docsforge/themes/material/templates/.icons/material/archive-search.svg +1 -0
  3661. docsforge/themes/material/templates/.icons/material/archive-settings-outline.svg +1 -0
  3662. docsforge/themes/material/templates/.icons/material/archive-settings.svg +1 -0
  3663. docsforge/themes/material/templates/.icons/material/archive-star-outline.svg +1 -0
  3664. docsforge/themes/material/templates/.icons/material/archive-star.svg +1 -0
  3665. docsforge/themes/material/templates/.icons/material/archive-sync-outline.svg +1 -0
  3666. docsforge/themes/material/templates/.icons/material/archive-sync.svg +1 -0
  3667. docsforge/themes/material/templates/.icons/material/archive.svg +1 -0
  3668. docsforge/themes/material/templates/.icons/material/arm-flex-outline.svg +1 -0
  3669. docsforge/themes/material/templates/.icons/material/arm-flex.svg +1 -0
  3670. docsforge/themes/material/templates/.icons/material/arrange-bring-forward.svg +1 -0
  3671. docsforge/themes/material/templates/.icons/material/arrange-bring-to-front.svg +1 -0
  3672. docsforge/themes/material/templates/.icons/material/arrange-send-backward.svg +1 -0
  3673. docsforge/themes/material/templates/.icons/material/arrange-send-to-back.svg +1 -0
  3674. docsforge/themes/material/templates/.icons/material/arrow-all.svg +1 -0
  3675. docsforge/themes/material/templates/.icons/material/arrow-bottom-left-bold-box-outline.svg +1 -0
  3676. docsforge/themes/material/templates/.icons/material/arrow-bottom-left-bold-box.svg +1 -0
  3677. docsforge/themes/material/templates/.icons/material/arrow-bottom-left-bold-outline.svg +1 -0
  3678. docsforge/themes/material/templates/.icons/material/arrow-bottom-left-thick.svg +1 -0
  3679. docsforge/themes/material/templates/.icons/material/arrow-bottom-left-thin-circle-outline.svg +1 -0
  3680. docsforge/themes/material/templates/.icons/material/arrow-bottom-left-thin.svg +1 -0
  3681. docsforge/themes/material/templates/.icons/material/arrow-bottom-left.svg +1 -0
  3682. docsforge/themes/material/templates/.icons/material/arrow-bottom-right-bold-box-outline.svg +1 -0
  3683. docsforge/themes/material/templates/.icons/material/arrow-bottom-right-bold-box.svg +1 -0
  3684. docsforge/themes/material/templates/.icons/material/arrow-bottom-right-bold-outline.svg +1 -0
  3685. docsforge/themes/material/templates/.icons/material/arrow-bottom-right-thick.svg +1 -0
  3686. docsforge/themes/material/templates/.icons/material/arrow-bottom-right-thin-circle-outline.svg +1 -0
  3687. docsforge/themes/material/templates/.icons/material/arrow-bottom-right-thin.svg +1 -0
  3688. docsforge/themes/material/templates/.icons/material/arrow-bottom-right.svg +1 -0
  3689. docsforge/themes/material/templates/.icons/material/arrow-collapse-all.svg +1 -0
  3690. docsforge/themes/material/templates/.icons/material/arrow-collapse-down.svg +1 -0
  3691. docsforge/themes/material/templates/.icons/material/arrow-collapse-horizontal.svg +1 -0
  3692. docsforge/themes/material/templates/.icons/material/arrow-collapse-left.svg +1 -0
  3693. docsforge/themes/material/templates/.icons/material/arrow-collapse-right.svg +1 -0
  3694. docsforge/themes/material/templates/.icons/material/arrow-collapse-up.svg +1 -0
  3695. docsforge/themes/material/templates/.icons/material/arrow-collapse-vertical.svg +1 -0
  3696. docsforge/themes/material/templates/.icons/material/arrow-collapse.svg +1 -0
  3697. docsforge/themes/material/templates/.icons/material/arrow-decision-auto-outline.svg +1 -0
  3698. docsforge/themes/material/templates/.icons/material/arrow-decision-auto.svg +1 -0
  3699. docsforge/themes/material/templates/.icons/material/arrow-decision-outline.svg +1 -0
  3700. docsforge/themes/material/templates/.icons/material/arrow-decision.svg +1 -0
  3701. docsforge/themes/material/templates/.icons/material/arrow-down-bold-box-outline.svg +1 -0
  3702. docsforge/themes/material/templates/.icons/material/arrow-down-bold-box.svg +1 -0
  3703. docsforge/themes/material/templates/.icons/material/arrow-down-bold-circle-outline.svg +1 -0
  3704. docsforge/themes/material/templates/.icons/material/arrow-down-bold-circle.svg +1 -0
  3705. docsforge/themes/material/templates/.icons/material/arrow-down-bold-hexagon-outline.svg +1 -0
  3706. docsforge/themes/material/templates/.icons/material/arrow-down-bold-outline.svg +1 -0
  3707. docsforge/themes/material/templates/.icons/material/arrow-down-bold.svg +1 -0
  3708. docsforge/themes/material/templates/.icons/material/arrow-down-box.svg +1 -0
  3709. docsforge/themes/material/templates/.icons/material/arrow-down-circle-outline.svg +1 -0
  3710. docsforge/themes/material/templates/.icons/material/arrow-down-circle.svg +1 -0
  3711. docsforge/themes/material/templates/.icons/material/arrow-down-drop-circle-outline.svg +1 -0
  3712. docsforge/themes/material/templates/.icons/material/arrow-down-drop-circle.svg +1 -0
  3713. docsforge/themes/material/templates/.icons/material/arrow-down-left-bold.svg +1 -0
  3714. docsforge/themes/material/templates/.icons/material/arrow-down-left.svg +1 -0
  3715. docsforge/themes/material/templates/.icons/material/arrow-down-right-bold.svg +1 -0
  3716. docsforge/themes/material/templates/.icons/material/arrow-down-right.svg +1 -0
  3717. docsforge/themes/material/templates/.icons/material/arrow-down-thick.svg +1 -0
  3718. docsforge/themes/material/templates/.icons/material/arrow-down-thin-circle-outline.svg +1 -0
  3719. docsforge/themes/material/templates/.icons/material/arrow-down-thin.svg +1 -0
  3720. docsforge/themes/material/templates/.icons/material/arrow-down.svg +1 -0
  3721. docsforge/themes/material/templates/.icons/material/arrow-expand-all.svg +1 -0
  3722. docsforge/themes/material/templates/.icons/material/arrow-expand-down.svg +1 -0
  3723. docsforge/themes/material/templates/.icons/material/arrow-expand-horizontal.svg +1 -0
  3724. docsforge/themes/material/templates/.icons/material/arrow-expand-left.svg +1 -0
  3725. docsforge/themes/material/templates/.icons/material/arrow-expand-right.svg +1 -0
  3726. docsforge/themes/material/templates/.icons/material/arrow-expand-up.svg +1 -0
  3727. docsforge/themes/material/templates/.icons/material/arrow-expand-vertical.svg +1 -0
  3728. docsforge/themes/material/templates/.icons/material/arrow-expand.svg +1 -0
  3729. docsforge/themes/material/templates/.icons/material/arrow-horizontal-lock.svg +1 -0
  3730. docsforge/themes/material/templates/.icons/material/arrow-left-bold-box-outline.svg +1 -0
  3731. docsforge/themes/material/templates/.icons/material/arrow-left-bold-box.svg +1 -0
  3732. docsforge/themes/material/templates/.icons/material/arrow-left-bold-circle-outline.svg +1 -0
  3733. docsforge/themes/material/templates/.icons/material/arrow-left-bold-circle.svg +1 -0
  3734. docsforge/themes/material/templates/.icons/material/arrow-left-bold-hexagon-outline.svg +1 -0
  3735. docsforge/themes/material/templates/.icons/material/arrow-left-bold-outline.svg +1 -0
  3736. docsforge/themes/material/templates/.icons/material/arrow-left-bold.svg +1 -0
  3737. docsforge/themes/material/templates/.icons/material/arrow-left-bottom-bold.svg +1 -0
  3738. docsforge/themes/material/templates/.icons/material/arrow-left-bottom.svg +1 -0
  3739. docsforge/themes/material/templates/.icons/material/arrow-left-box.svg +1 -0
  3740. docsforge/themes/material/templates/.icons/material/arrow-left-circle-outline.svg +1 -0
  3741. docsforge/themes/material/templates/.icons/material/arrow-left-circle.svg +1 -0
  3742. docsforge/themes/material/templates/.icons/material/arrow-left-drop-circle-outline.svg +1 -0
  3743. docsforge/themes/material/templates/.icons/material/arrow-left-drop-circle.svg +1 -0
  3744. docsforge/themes/material/templates/.icons/material/arrow-left-right-bold-outline.svg +1 -0
  3745. docsforge/themes/material/templates/.icons/material/arrow-left-right-bold.svg +1 -0
  3746. docsforge/themes/material/templates/.icons/material/arrow-left-right.svg +1 -0
  3747. docsforge/themes/material/templates/.icons/material/arrow-left-thick.svg +1 -0
  3748. docsforge/themes/material/templates/.icons/material/arrow-left-thin-circle-outline.svg +1 -0
  3749. docsforge/themes/material/templates/.icons/material/arrow-left-thin.svg +1 -0
  3750. docsforge/themes/material/templates/.icons/material/arrow-left-top-bold.svg +1 -0
  3751. docsforge/themes/material/templates/.icons/material/arrow-left-top.svg +1 -0
  3752. docsforge/themes/material/templates/.icons/material/arrow-left.svg +1 -0
  3753. docsforge/themes/material/templates/.icons/material/arrow-oscillating-off.svg +1 -0
  3754. docsforge/themes/material/templates/.icons/material/arrow-oscillating.svg +1 -0
  3755. docsforge/themes/material/templates/.icons/material/arrow-projectile-multiple.svg +1 -0
  3756. docsforge/themes/material/templates/.icons/material/arrow-projectile.svg +1 -0
  3757. docsforge/themes/material/templates/.icons/material/arrow-right-bold-box-outline.svg +1 -0
  3758. docsforge/themes/material/templates/.icons/material/arrow-right-bold-box.svg +1 -0
  3759. docsforge/themes/material/templates/.icons/material/arrow-right-bold-circle-outline.svg +1 -0
  3760. docsforge/themes/material/templates/.icons/material/arrow-right-bold-circle.svg +1 -0
  3761. docsforge/themes/material/templates/.icons/material/arrow-right-bold-hexagon-outline.svg +1 -0
  3762. docsforge/themes/material/templates/.icons/material/arrow-right-bold-outline.svg +1 -0
  3763. docsforge/themes/material/templates/.icons/material/arrow-right-bold.svg +1 -0
  3764. docsforge/themes/material/templates/.icons/material/arrow-right-bottom-bold.svg +1 -0
  3765. docsforge/themes/material/templates/.icons/material/arrow-right-bottom.svg +1 -0
  3766. docsforge/themes/material/templates/.icons/material/arrow-right-box.svg +1 -0
  3767. docsforge/themes/material/templates/.icons/material/arrow-right-circle-outline.svg +1 -0
  3768. docsforge/themes/material/templates/.icons/material/arrow-right-circle.svg +1 -0
  3769. docsforge/themes/material/templates/.icons/material/arrow-right-drop-circle-outline.svg +1 -0
  3770. docsforge/themes/material/templates/.icons/material/arrow-right-drop-circle.svg +1 -0
  3771. docsforge/themes/material/templates/.icons/material/arrow-right-thick.svg +1 -0
  3772. docsforge/themes/material/templates/.icons/material/arrow-right-thin-circle-outline.svg +1 -0
  3773. docsforge/themes/material/templates/.icons/material/arrow-right-thin.svg +1 -0
  3774. docsforge/themes/material/templates/.icons/material/arrow-right-top-bold.svg +1 -0
  3775. docsforge/themes/material/templates/.icons/material/arrow-right-top.svg +1 -0
  3776. docsforge/themes/material/templates/.icons/material/arrow-right.svg +1 -0
  3777. docsforge/themes/material/templates/.icons/material/arrow-split-horizontal.svg +1 -0
  3778. docsforge/themes/material/templates/.icons/material/arrow-split-vertical.svg +1 -0
  3779. docsforge/themes/material/templates/.icons/material/arrow-top-left-bold-box-outline.svg +1 -0
  3780. docsforge/themes/material/templates/.icons/material/arrow-top-left-bold-box.svg +1 -0
  3781. docsforge/themes/material/templates/.icons/material/arrow-top-left-bold-outline.svg +1 -0
  3782. docsforge/themes/material/templates/.icons/material/arrow-top-left-bottom-right-bold.svg +1 -0
  3783. docsforge/themes/material/templates/.icons/material/arrow-top-left-bottom-right.svg +1 -0
  3784. docsforge/themes/material/templates/.icons/material/arrow-top-left-thick.svg +1 -0
  3785. docsforge/themes/material/templates/.icons/material/arrow-top-left-thin-circle-outline.svg +1 -0
  3786. docsforge/themes/material/templates/.icons/material/arrow-top-left-thin.svg +1 -0
  3787. docsforge/themes/material/templates/.icons/material/arrow-top-left.svg +1 -0
  3788. docsforge/themes/material/templates/.icons/material/arrow-top-right-bold-box-outline.svg +1 -0
  3789. docsforge/themes/material/templates/.icons/material/arrow-top-right-bold-box.svg +1 -0
  3790. docsforge/themes/material/templates/.icons/material/arrow-top-right-bold-outline.svg +1 -0
  3791. docsforge/themes/material/templates/.icons/material/arrow-top-right-bottom-left-bold.svg +1 -0
  3792. docsforge/themes/material/templates/.icons/material/arrow-top-right-bottom-left.svg +1 -0
  3793. docsforge/themes/material/templates/.icons/material/arrow-top-right-thick.svg +1 -0
  3794. docsforge/themes/material/templates/.icons/material/arrow-top-right-thin-circle-outline.svg +1 -0
  3795. docsforge/themes/material/templates/.icons/material/arrow-top-right-thin.svg +1 -0
  3796. docsforge/themes/material/templates/.icons/material/arrow-top-right.svg +1 -0
  3797. docsforge/themes/material/templates/.icons/material/arrow-u-down-left-bold.svg +1 -0
  3798. docsforge/themes/material/templates/.icons/material/arrow-u-down-left.svg +1 -0
  3799. docsforge/themes/material/templates/.icons/material/arrow-u-down-right-bold.svg +1 -0
  3800. docsforge/themes/material/templates/.icons/material/arrow-u-down-right.svg +1 -0
  3801. docsforge/themes/material/templates/.icons/material/arrow-u-left-bottom-bold.svg +1 -0
  3802. docsforge/themes/material/templates/.icons/material/arrow-u-left-bottom.svg +1 -0
  3803. docsforge/themes/material/templates/.icons/material/arrow-u-left-top-bold.svg +1 -0
  3804. docsforge/themes/material/templates/.icons/material/arrow-u-left-top.svg +1 -0
  3805. docsforge/themes/material/templates/.icons/material/arrow-u-right-bottom-bold.svg +1 -0
  3806. docsforge/themes/material/templates/.icons/material/arrow-u-right-bottom.svg +1 -0
  3807. docsforge/themes/material/templates/.icons/material/arrow-u-right-top-bold.svg +1 -0
  3808. docsforge/themes/material/templates/.icons/material/arrow-u-right-top.svg +1 -0
  3809. docsforge/themes/material/templates/.icons/material/arrow-u-up-left-bold.svg +1 -0
  3810. docsforge/themes/material/templates/.icons/material/arrow-u-up-left.svg +1 -0
  3811. docsforge/themes/material/templates/.icons/material/arrow-u-up-right-bold.svg +1 -0
  3812. docsforge/themes/material/templates/.icons/material/arrow-u-up-right.svg +1 -0
  3813. docsforge/themes/material/templates/.icons/material/arrow-up-bold-box-outline.svg +1 -0
  3814. docsforge/themes/material/templates/.icons/material/arrow-up-bold-box.svg +1 -0
  3815. docsforge/themes/material/templates/.icons/material/arrow-up-bold-circle-outline.svg +1 -0
  3816. docsforge/themes/material/templates/.icons/material/arrow-up-bold-circle.svg +1 -0
  3817. docsforge/themes/material/templates/.icons/material/arrow-up-bold-hexagon-outline.svg +1 -0
  3818. docsforge/themes/material/templates/.icons/material/arrow-up-bold-outline.svg +1 -0
  3819. docsforge/themes/material/templates/.icons/material/arrow-up-bold.svg +1 -0
  3820. docsforge/themes/material/templates/.icons/material/arrow-up-box.svg +1 -0
  3821. docsforge/themes/material/templates/.icons/material/arrow-up-circle-outline.svg +1 -0
  3822. docsforge/themes/material/templates/.icons/material/arrow-up-circle.svg +1 -0
  3823. docsforge/themes/material/templates/.icons/material/arrow-up-down-bold-outline.svg +1 -0
  3824. docsforge/themes/material/templates/.icons/material/arrow-up-down-bold.svg +1 -0
  3825. docsforge/themes/material/templates/.icons/material/arrow-up-down.svg +1 -0
  3826. docsforge/themes/material/templates/.icons/material/arrow-up-drop-circle-outline.svg +1 -0
  3827. docsforge/themes/material/templates/.icons/material/arrow-up-drop-circle.svg +1 -0
  3828. docsforge/themes/material/templates/.icons/material/arrow-up-left-bold.svg +1 -0
  3829. docsforge/themes/material/templates/.icons/material/arrow-up-left.svg +1 -0
  3830. docsforge/themes/material/templates/.icons/material/arrow-up-right-bold.svg +1 -0
  3831. docsforge/themes/material/templates/.icons/material/arrow-up-right.svg +1 -0
  3832. docsforge/themes/material/templates/.icons/material/arrow-up-thick.svg +1 -0
  3833. docsforge/themes/material/templates/.icons/material/arrow-up-thin-circle-outline.svg +1 -0
  3834. docsforge/themes/material/templates/.icons/material/arrow-up-thin.svg +1 -0
  3835. docsforge/themes/material/templates/.icons/material/arrow-up.svg +1 -0
  3836. docsforge/themes/material/templates/.icons/material/arrow-vertical-lock.svg +1 -0
  3837. docsforge/themes/material/templates/.icons/material/artboard.svg +1 -0
  3838. docsforge/themes/material/templates/.icons/material/artstation.svg +1 -0
  3839. docsforge/themes/material/templates/.icons/material/aspect-ratio.svg +1 -0
  3840. docsforge/themes/material/templates/.icons/material/assistant.svg +1 -0
  3841. docsforge/themes/material/templates/.icons/material/asterisk-circle-outline.svg +1 -0
  3842. docsforge/themes/material/templates/.icons/material/asterisk.svg +1 -0
  3843. docsforge/themes/material/templates/.icons/material/at.svg +1 -0
  3844. docsforge/themes/material/templates/.icons/material/atlassian.svg +1 -0
  3845. docsforge/themes/material/templates/.icons/material/atm.svg +1 -0
  3846. docsforge/themes/material/templates/.icons/material/atom-variant.svg +1 -0
  3847. docsforge/themes/material/templates/.icons/material/atom.svg +1 -0
  3848. docsforge/themes/material/templates/.icons/material/attachment-check.svg +1 -0
  3849. docsforge/themes/material/templates/.icons/material/attachment-lock.svg +1 -0
  3850. docsforge/themes/material/templates/.icons/material/attachment-minus.svg +1 -0
  3851. docsforge/themes/material/templates/.icons/material/attachment-off.svg +1 -0
  3852. docsforge/themes/material/templates/.icons/material/attachment-plus.svg +1 -0
  3853. docsforge/themes/material/templates/.icons/material/attachment-remove.svg +1 -0
  3854. docsforge/themes/material/templates/.icons/material/attachment.svg +1 -0
  3855. docsforge/themes/material/templates/.icons/material/atv.svg +1 -0
  3856. docsforge/themes/material/templates/.icons/material/audio-input-rca.svg +1 -0
  3857. docsforge/themes/material/templates/.icons/material/audio-input-stereo-minijack.svg +1 -0
  3858. docsforge/themes/material/templates/.icons/material/audio-input-xlr.svg +1 -0
  3859. docsforge/themes/material/templates/.icons/material/audio-video-off.svg +1 -0
  3860. docsforge/themes/material/templates/.icons/material/audio-video.svg +1 -0
  3861. docsforge/themes/material/templates/.icons/material/augmented-reality.svg +1 -0
  3862. docsforge/themes/material/templates/.icons/material/aurora.svg +1 -0
  3863. docsforge/themes/material/templates/.icons/material/auto-download.svg +1 -0
  3864. docsforge/themes/material/templates/.icons/material/auto-fix.svg +1 -0
  3865. docsforge/themes/material/templates/.icons/material/auto-mode.svg +1 -0
  3866. docsforge/themes/material/templates/.icons/material/auto-upload.svg +1 -0
  3867. docsforge/themes/material/templates/.icons/material/autorenew-off.svg +1 -0
  3868. docsforge/themes/material/templates/.icons/material/autorenew.svg +1 -0
  3869. docsforge/themes/material/templates/.icons/material/av-timer.svg +1 -0
  3870. docsforge/themes/material/templates/.icons/material/awning-outline.svg +1 -0
  3871. docsforge/themes/material/templates/.icons/material/awning.svg +1 -0
  3872. docsforge/themes/material/templates/.icons/material/aws.svg +1 -0
  3873. docsforge/themes/material/templates/.icons/material/axe-battle.svg +1 -0
  3874. docsforge/themes/material/templates/.icons/material/axe.svg +1 -0
  3875. docsforge/themes/material/templates/.icons/material/axis-arrow-info.svg +1 -0
  3876. docsforge/themes/material/templates/.icons/material/axis-arrow-lock.svg +1 -0
  3877. docsforge/themes/material/templates/.icons/material/axis-arrow.svg +1 -0
  3878. docsforge/themes/material/templates/.icons/material/axis-lock.svg +1 -0
  3879. docsforge/themes/material/templates/.icons/material/axis-x-arrow-lock.svg +1 -0
  3880. docsforge/themes/material/templates/.icons/material/axis-x-arrow.svg +1 -0
  3881. docsforge/themes/material/templates/.icons/material/axis-x-rotate-clockwise.svg +1 -0
  3882. docsforge/themes/material/templates/.icons/material/axis-x-rotate-counterclockwise.svg +1 -0
  3883. docsforge/themes/material/templates/.icons/material/axis-x-y-arrow-lock.svg +1 -0
  3884. docsforge/themes/material/templates/.icons/material/axis-y-arrow-lock.svg +1 -0
  3885. docsforge/themes/material/templates/.icons/material/axis-y-arrow.svg +1 -0
  3886. docsforge/themes/material/templates/.icons/material/axis-y-rotate-clockwise.svg +1 -0
  3887. docsforge/themes/material/templates/.icons/material/axis-y-rotate-counterclockwise.svg +1 -0
  3888. docsforge/themes/material/templates/.icons/material/axis-z-arrow-lock.svg +1 -0
  3889. docsforge/themes/material/templates/.icons/material/axis-z-arrow.svg +1 -0
  3890. docsforge/themes/material/templates/.icons/material/axis-z-rotate-clockwise.svg +1 -0
  3891. docsforge/themes/material/templates/.icons/material/axis-z-rotate-counterclockwise.svg +1 -0
  3892. docsforge/themes/material/templates/.icons/material/axis.svg +1 -0
  3893. docsforge/themes/material/templates/.icons/material/babel.svg +1 -0
  3894. docsforge/themes/material/templates/.icons/material/baby-bottle-outline.svg +1 -0
  3895. docsforge/themes/material/templates/.icons/material/baby-bottle.svg +1 -0
  3896. docsforge/themes/material/templates/.icons/material/baby-buggy-off.svg +1 -0
  3897. docsforge/themes/material/templates/.icons/material/baby-buggy.svg +1 -0
  3898. docsforge/themes/material/templates/.icons/material/baby-carriage-off.svg +1 -0
  3899. docsforge/themes/material/templates/.icons/material/baby-carriage.svg +1 -0
  3900. docsforge/themes/material/templates/.icons/material/baby-face-outline.svg +1 -0
  3901. docsforge/themes/material/templates/.icons/material/baby-face.svg +1 -0
  3902. docsforge/themes/material/templates/.icons/material/baby.svg +1 -0
  3903. docsforge/themes/material/templates/.icons/material/backburger.svg +1 -0
  3904. docsforge/themes/material/templates/.icons/material/backspace-outline.svg +1 -0
  3905. docsforge/themes/material/templates/.icons/material/backspace-reverse-outline.svg +1 -0
  3906. docsforge/themes/material/templates/.icons/material/backspace-reverse.svg +1 -0
  3907. docsforge/themes/material/templates/.icons/material/backspace.svg +1 -0
  3908. docsforge/themes/material/templates/.icons/material/backup-restore.svg +1 -0
  3909. docsforge/themes/material/templates/.icons/material/bacteria-outline.svg +1 -0
  3910. docsforge/themes/material/templates/.icons/material/bacteria.svg +1 -0
  3911. docsforge/themes/material/templates/.icons/material/badge-account-alert-outline.svg +1 -0
  3912. docsforge/themes/material/templates/.icons/material/badge-account-alert.svg +1 -0
  3913. docsforge/themes/material/templates/.icons/material/badge-account-horizontal-outline.svg +1 -0
  3914. docsforge/themes/material/templates/.icons/material/badge-account-horizontal.svg +1 -0
  3915. docsforge/themes/material/templates/.icons/material/badge-account-outline.svg +1 -0
  3916. docsforge/themes/material/templates/.icons/material/badge-account.svg +1 -0
  3917. docsforge/themes/material/templates/.icons/material/badminton.svg +1 -0
  3918. docsforge/themes/material/templates/.icons/material/bag-carry-on-check.svg +1 -0
  3919. docsforge/themes/material/templates/.icons/material/bag-carry-on-off.svg +1 -0
  3920. docsforge/themes/material/templates/.icons/material/bag-carry-on.svg +1 -0
  3921. docsforge/themes/material/templates/.icons/material/bag-checked.svg +1 -0
  3922. docsforge/themes/material/templates/.icons/material/bag-personal-off-outline.svg +1 -0
  3923. docsforge/themes/material/templates/.icons/material/bag-personal-off.svg +1 -0
  3924. docsforge/themes/material/templates/.icons/material/bag-personal-outline.svg +1 -0
  3925. docsforge/themes/material/templates/.icons/material/bag-personal-plus-outline.svg +1 -0
  3926. docsforge/themes/material/templates/.icons/material/bag-personal-plus.svg +1 -0
  3927. docsforge/themes/material/templates/.icons/material/bag-personal-tag-outline.svg +1 -0
  3928. docsforge/themes/material/templates/.icons/material/bag-personal-tag.svg +1 -0
  3929. docsforge/themes/material/templates/.icons/material/bag-personal.svg +1 -0
  3930. docsforge/themes/material/templates/.icons/material/bag-suitcase-off-outline.svg +1 -0
  3931. docsforge/themes/material/templates/.icons/material/bag-suitcase-off.svg +1 -0
  3932. docsforge/themes/material/templates/.icons/material/bag-suitcase-outline.svg +1 -0
  3933. docsforge/themes/material/templates/.icons/material/bag-suitcase.svg +1 -0
  3934. docsforge/themes/material/templates/.icons/material/baguette.svg +1 -0
  3935. docsforge/themes/material/templates/.icons/material/balcony.svg +1 -0
  3936. docsforge/themes/material/templates/.icons/material/balloon.svg +1 -0
  3937. docsforge/themes/material/templates/.icons/material/ballot-outline.svg +1 -0
  3938. docsforge/themes/material/templates/.icons/material/ballot-recount-outline.svg +1 -0
  3939. docsforge/themes/material/templates/.icons/material/ballot-recount.svg +1 -0
  3940. docsforge/themes/material/templates/.icons/material/ballot.svg +1 -0
  3941. docsforge/themes/material/templates/.icons/material/bandage.svg +1 -0
  3942. docsforge/themes/material/templates/.icons/material/bank-check.svg +1 -0
  3943. docsforge/themes/material/templates/.icons/material/bank-circle-outline.svg +1 -0
  3944. docsforge/themes/material/templates/.icons/material/bank-circle.svg +1 -0
  3945. docsforge/themes/material/templates/.icons/material/bank-minus.svg +1 -0
  3946. docsforge/themes/material/templates/.icons/material/bank-off-outline.svg +1 -0
  3947. docsforge/themes/material/templates/.icons/material/bank-off.svg +1 -0
  3948. docsforge/themes/material/templates/.icons/material/bank-outline.svg +1 -0
  3949. docsforge/themes/material/templates/.icons/material/bank-plus.svg +1 -0
  3950. docsforge/themes/material/templates/.icons/material/bank-remove.svg +1 -0
  3951. docsforge/themes/material/templates/.icons/material/bank-transfer-in.svg +1 -0
  3952. docsforge/themes/material/templates/.icons/material/bank-transfer-out.svg +1 -0
  3953. docsforge/themes/material/templates/.icons/material/bank-transfer.svg +1 -0
  3954. docsforge/themes/material/templates/.icons/material/bank.svg +1 -0
  3955. docsforge/themes/material/templates/.icons/material/barcode-off.svg +1 -0
  3956. docsforge/themes/material/templates/.icons/material/barcode-scan.svg +1 -0
  3957. docsforge/themes/material/templates/.icons/material/barcode.svg +1 -0
  3958. docsforge/themes/material/templates/.icons/material/barley-off.svg +1 -0
  3959. docsforge/themes/material/templates/.icons/material/barley.svg +1 -0
  3960. docsforge/themes/material/templates/.icons/material/barn.svg +1 -0
  3961. docsforge/themes/material/templates/.icons/material/barrel-outline.svg +1 -0
  3962. docsforge/themes/material/templates/.icons/material/barrel.svg +1 -0
  3963. docsforge/themes/material/templates/.icons/material/baseball-bat.svg +1 -0
  3964. docsforge/themes/material/templates/.icons/material/baseball-diamond-outline.svg +1 -0
  3965. docsforge/themes/material/templates/.icons/material/baseball-diamond.svg +1 -0
  3966. docsforge/themes/material/templates/.icons/material/baseball-outline.svg +1 -0
  3967. docsforge/themes/material/templates/.icons/material/baseball.svg +1 -0
  3968. docsforge/themes/material/templates/.icons/material/bash.svg +1 -0
  3969. docsforge/themes/material/templates/.icons/material/basket-check-outline.svg +1 -0
  3970. docsforge/themes/material/templates/.icons/material/basket-check.svg +1 -0
  3971. docsforge/themes/material/templates/.icons/material/basket-fill.svg +1 -0
  3972. docsforge/themes/material/templates/.icons/material/basket-minus-outline.svg +1 -0
  3973. docsforge/themes/material/templates/.icons/material/basket-minus.svg +1 -0
  3974. docsforge/themes/material/templates/.icons/material/basket-off-outline.svg +1 -0
  3975. docsforge/themes/material/templates/.icons/material/basket-off.svg +1 -0
  3976. docsforge/themes/material/templates/.icons/material/basket-outline.svg +1 -0
  3977. docsforge/themes/material/templates/.icons/material/basket-plus-outline.svg +1 -0
  3978. docsforge/themes/material/templates/.icons/material/basket-plus.svg +1 -0
  3979. docsforge/themes/material/templates/.icons/material/basket-remove-outline.svg +1 -0
  3980. docsforge/themes/material/templates/.icons/material/basket-remove.svg +1 -0
  3981. docsforge/themes/material/templates/.icons/material/basket-unfill.svg +1 -0
  3982. docsforge/themes/material/templates/.icons/material/basket.svg +1 -0
  3983. docsforge/themes/material/templates/.icons/material/basketball-hoop-outline.svg +1 -0
  3984. docsforge/themes/material/templates/.icons/material/basketball-hoop.svg +1 -0
  3985. docsforge/themes/material/templates/.icons/material/basketball.svg +1 -0
  3986. docsforge/themes/material/templates/.icons/material/bat.svg +1 -0
  3987. docsforge/themes/material/templates/.icons/material/bathtub-outline.svg +1 -0
  3988. docsforge/themes/material/templates/.icons/material/bathtub.svg +1 -0
  3989. docsforge/themes/material/templates/.icons/material/battery-10-bluetooth.svg +1 -0
  3990. docsforge/themes/material/templates/.icons/material/battery-10.svg +1 -0
  3991. docsforge/themes/material/templates/.icons/material/battery-20-bluetooth.svg +1 -0
  3992. docsforge/themes/material/templates/.icons/material/battery-20.svg +1 -0
  3993. docsforge/themes/material/templates/.icons/material/battery-30-bluetooth.svg +1 -0
  3994. docsforge/themes/material/templates/.icons/material/battery-30.svg +1 -0
  3995. docsforge/themes/material/templates/.icons/material/battery-40-bluetooth.svg +1 -0
  3996. docsforge/themes/material/templates/.icons/material/battery-40.svg +1 -0
  3997. docsforge/themes/material/templates/.icons/material/battery-50-bluetooth.svg +1 -0
  3998. docsforge/themes/material/templates/.icons/material/battery-50.svg +1 -0
  3999. docsforge/themes/material/templates/.icons/material/battery-60-bluetooth.svg +1 -0
  4000. docsforge/themes/material/templates/.icons/material/battery-60.svg +1 -0
  4001. docsforge/themes/material/templates/.icons/material/battery-70-bluetooth.svg +1 -0
  4002. docsforge/themes/material/templates/.icons/material/battery-70.svg +1 -0
  4003. docsforge/themes/material/templates/.icons/material/battery-80-bluetooth.svg +1 -0
  4004. docsforge/themes/material/templates/.icons/material/battery-80.svg +1 -0
  4005. docsforge/themes/material/templates/.icons/material/battery-90-bluetooth.svg +1 -0
  4006. docsforge/themes/material/templates/.icons/material/battery-90.svg +1 -0
  4007. docsforge/themes/material/templates/.icons/material/battery-alert-bluetooth.svg +1 -0
  4008. docsforge/themes/material/templates/.icons/material/battery-alert-variant-outline.svg +1 -0
  4009. docsforge/themes/material/templates/.icons/material/battery-alert-variant.svg +1 -0
  4010. docsforge/themes/material/templates/.icons/material/battery-alert.svg +1 -0
  4011. docsforge/themes/material/templates/.icons/material/battery-arrow-down-outline.svg +1 -0
  4012. docsforge/themes/material/templates/.icons/material/battery-arrow-down.svg +1 -0
  4013. docsforge/themes/material/templates/.icons/material/battery-arrow-up-outline.svg +1 -0
  4014. docsforge/themes/material/templates/.icons/material/battery-arrow-up.svg +1 -0
  4015. docsforge/themes/material/templates/.icons/material/battery-bluetooth-variant.svg +1 -0
  4016. docsforge/themes/material/templates/.icons/material/battery-bluetooth.svg +1 -0
  4017. docsforge/themes/material/templates/.icons/material/battery-charging-10.svg +1 -0
  4018. docsforge/themes/material/templates/.icons/material/battery-charging-100.svg +1 -0
  4019. docsforge/themes/material/templates/.icons/material/battery-charging-20.svg +1 -0
  4020. docsforge/themes/material/templates/.icons/material/battery-charging-30.svg +1 -0
  4021. docsforge/themes/material/templates/.icons/material/battery-charging-40.svg +1 -0
  4022. docsforge/themes/material/templates/.icons/material/battery-charging-50.svg +1 -0
  4023. docsforge/themes/material/templates/.icons/material/battery-charging-60.svg +1 -0
  4024. docsforge/themes/material/templates/.icons/material/battery-charging-70.svg +1 -0
  4025. docsforge/themes/material/templates/.icons/material/battery-charging-80.svg +1 -0
  4026. docsforge/themes/material/templates/.icons/material/battery-charging-90.svg +1 -0
  4027. docsforge/themes/material/templates/.icons/material/battery-charging-high.svg +1 -0
  4028. docsforge/themes/material/templates/.icons/material/battery-charging-low.svg +1 -0
  4029. docsforge/themes/material/templates/.icons/material/battery-charging-medium.svg +1 -0
  4030. docsforge/themes/material/templates/.icons/material/battery-charging-outline.svg +1 -0
  4031. docsforge/themes/material/templates/.icons/material/battery-charging-wireless-10.svg +1 -0
  4032. docsforge/themes/material/templates/.icons/material/battery-charging-wireless-20.svg +1 -0
  4033. docsforge/themes/material/templates/.icons/material/battery-charging-wireless-30.svg +1 -0
  4034. docsforge/themes/material/templates/.icons/material/battery-charging-wireless-40.svg +1 -0
  4035. docsforge/themes/material/templates/.icons/material/battery-charging-wireless-50.svg +1 -0
  4036. docsforge/themes/material/templates/.icons/material/battery-charging-wireless-60.svg +1 -0
  4037. docsforge/themes/material/templates/.icons/material/battery-charging-wireless-70.svg +1 -0
  4038. docsforge/themes/material/templates/.icons/material/battery-charging-wireless-80.svg +1 -0
  4039. docsforge/themes/material/templates/.icons/material/battery-charging-wireless-90.svg +1 -0
  4040. docsforge/themes/material/templates/.icons/material/battery-charging-wireless-alert.svg +1 -0
  4041. docsforge/themes/material/templates/.icons/material/battery-charging-wireless-outline.svg +1 -0
  4042. docsforge/themes/material/templates/.icons/material/battery-charging-wireless.svg +1 -0
  4043. docsforge/themes/material/templates/.icons/material/battery-charging.svg +1 -0
  4044. docsforge/themes/material/templates/.icons/material/battery-check-outline.svg +1 -0
  4045. docsforge/themes/material/templates/.icons/material/battery-check.svg +1 -0
  4046. docsforge/themes/material/templates/.icons/material/battery-clock-outline.svg +1 -0
  4047. docsforge/themes/material/templates/.icons/material/battery-clock.svg +1 -0
  4048. docsforge/themes/material/templates/.icons/material/battery-heart-outline.svg +1 -0
  4049. docsforge/themes/material/templates/.icons/material/battery-heart-variant.svg +1 -0
  4050. docsforge/themes/material/templates/.icons/material/battery-heart.svg +1 -0
  4051. docsforge/themes/material/templates/.icons/material/battery-high.svg +1 -0
  4052. docsforge/themes/material/templates/.icons/material/battery-lock-open.svg +1 -0
  4053. docsforge/themes/material/templates/.icons/material/battery-lock.svg +1 -0
  4054. docsforge/themes/material/templates/.icons/material/battery-low.svg +1 -0
  4055. docsforge/themes/material/templates/.icons/material/battery-medium.svg +1 -0
  4056. docsforge/themes/material/templates/.icons/material/battery-minus-outline.svg +1 -0
  4057. docsforge/themes/material/templates/.icons/material/battery-minus-variant.svg +1 -0
  4058. docsforge/themes/material/templates/.icons/material/battery-minus.svg +1 -0
  4059. docsforge/themes/material/templates/.icons/material/battery-negative.svg +1 -0
  4060. docsforge/themes/material/templates/.icons/material/battery-off-outline.svg +1 -0
  4061. docsforge/themes/material/templates/.icons/material/battery-off.svg +1 -0
  4062. docsforge/themes/material/templates/.icons/material/battery-outline.svg +1 -0
  4063. docsforge/themes/material/templates/.icons/material/battery-plus-outline.svg +1 -0
  4064. docsforge/themes/material/templates/.icons/material/battery-plus-variant.svg +1 -0
  4065. docsforge/themes/material/templates/.icons/material/battery-plus.svg +1 -0
  4066. docsforge/themes/material/templates/.icons/material/battery-positive.svg +1 -0
  4067. docsforge/themes/material/templates/.icons/material/battery-remove-outline.svg +1 -0
  4068. docsforge/themes/material/templates/.icons/material/battery-remove.svg +1 -0
  4069. docsforge/themes/material/templates/.icons/material/battery-sync-outline.svg +1 -0
  4070. docsforge/themes/material/templates/.icons/material/battery-sync.svg +1 -0
  4071. docsforge/themes/material/templates/.icons/material/battery-unknown-bluetooth.svg +1 -0
  4072. docsforge/themes/material/templates/.icons/material/battery-unknown.svg +1 -0
  4073. docsforge/themes/material/templates/.icons/material/battery.svg +1 -0
  4074. docsforge/themes/material/templates/.icons/material/beach.svg +1 -0
  4075. docsforge/themes/material/templates/.icons/material/beaker-alert-outline.svg +1 -0
  4076. docsforge/themes/material/templates/.icons/material/beaker-alert.svg +1 -0
  4077. docsforge/themes/material/templates/.icons/material/beaker-check-outline.svg +1 -0
  4078. docsforge/themes/material/templates/.icons/material/beaker-check.svg +1 -0
  4079. docsforge/themes/material/templates/.icons/material/beaker-minus-outline.svg +1 -0
  4080. docsforge/themes/material/templates/.icons/material/beaker-minus.svg +1 -0
  4081. docsforge/themes/material/templates/.icons/material/beaker-outline.svg +1 -0
  4082. docsforge/themes/material/templates/.icons/material/beaker-plus-outline.svg +1 -0
  4083. docsforge/themes/material/templates/.icons/material/beaker-plus.svg +1 -0
  4084. docsforge/themes/material/templates/.icons/material/beaker-question-outline.svg +1 -0
  4085. docsforge/themes/material/templates/.icons/material/beaker-question.svg +1 -0
  4086. docsforge/themes/material/templates/.icons/material/beaker-remove-outline.svg +1 -0
  4087. docsforge/themes/material/templates/.icons/material/beaker-remove.svg +1 -0
  4088. docsforge/themes/material/templates/.icons/material/beaker.svg +1 -0
  4089. docsforge/themes/material/templates/.icons/material/bed-clock.svg +1 -0
  4090. docsforge/themes/material/templates/.icons/material/bed-double-outline.svg +1 -0
  4091. docsforge/themes/material/templates/.icons/material/bed-double.svg +1 -0
  4092. docsforge/themes/material/templates/.icons/material/bed-empty.svg +1 -0
  4093. docsforge/themes/material/templates/.icons/material/bed-king-outline.svg +1 -0
  4094. docsforge/themes/material/templates/.icons/material/bed-king.svg +1 -0
  4095. docsforge/themes/material/templates/.icons/material/bed-outline.svg +1 -0
  4096. docsforge/themes/material/templates/.icons/material/bed-queen-outline.svg +1 -0
  4097. docsforge/themes/material/templates/.icons/material/bed-queen.svg +1 -0
  4098. docsforge/themes/material/templates/.icons/material/bed-single-outline.svg +1 -0
  4099. docsforge/themes/material/templates/.icons/material/bed-single.svg +1 -0
  4100. docsforge/themes/material/templates/.icons/material/bed.svg +1 -0
  4101. docsforge/themes/material/templates/.icons/material/bee-flower.svg +1 -0
  4102. docsforge/themes/material/templates/.icons/material/bee.svg +1 -0
  4103. docsforge/themes/material/templates/.icons/material/beehive-off-outline.svg +1 -0
  4104. docsforge/themes/material/templates/.icons/material/beehive-outline.svg +1 -0
  4105. docsforge/themes/material/templates/.icons/material/beekeeper.svg +1 -0
  4106. docsforge/themes/material/templates/.icons/material/beer-outline.svg +1 -0
  4107. docsforge/themes/material/templates/.icons/material/beer.svg +1 -0
  4108. docsforge/themes/material/templates/.icons/material/bell-alert-outline.svg +1 -0
  4109. docsforge/themes/material/templates/.icons/material/bell-alert.svg +1 -0
  4110. docsforge/themes/material/templates/.icons/material/bell-badge-outline.svg +1 -0
  4111. docsforge/themes/material/templates/.icons/material/bell-badge.svg +1 -0
  4112. docsforge/themes/material/templates/.icons/material/bell-cancel-outline.svg +1 -0
  4113. docsforge/themes/material/templates/.icons/material/bell-cancel.svg +1 -0
  4114. docsforge/themes/material/templates/.icons/material/bell-check-outline.svg +1 -0
  4115. docsforge/themes/material/templates/.icons/material/bell-check.svg +1 -0
  4116. docsforge/themes/material/templates/.icons/material/bell-circle-outline.svg +1 -0
  4117. docsforge/themes/material/templates/.icons/material/bell-circle.svg +1 -0
  4118. docsforge/themes/material/templates/.icons/material/bell-cog-outline.svg +1 -0
  4119. docsforge/themes/material/templates/.icons/material/bell-cog.svg +1 -0
  4120. docsforge/themes/material/templates/.icons/material/bell-minus-outline.svg +1 -0
  4121. docsforge/themes/material/templates/.icons/material/bell-minus.svg +1 -0
  4122. docsforge/themes/material/templates/.icons/material/bell-off-outline.svg +1 -0
  4123. docsforge/themes/material/templates/.icons/material/bell-off.svg +1 -0
  4124. docsforge/themes/material/templates/.icons/material/bell-outline.svg +1 -0
  4125. docsforge/themes/material/templates/.icons/material/bell-plus-outline.svg +1 -0
  4126. docsforge/themes/material/templates/.icons/material/bell-plus.svg +1 -0
  4127. docsforge/themes/material/templates/.icons/material/bell-remove-outline.svg +1 -0
  4128. docsforge/themes/material/templates/.icons/material/bell-remove.svg +1 -0
  4129. docsforge/themes/material/templates/.icons/material/bell-ring-outline.svg +1 -0
  4130. docsforge/themes/material/templates/.icons/material/bell-ring.svg +1 -0
  4131. docsforge/themes/material/templates/.icons/material/bell-sleep-outline.svg +1 -0
  4132. docsforge/themes/material/templates/.icons/material/bell-sleep.svg +1 -0
  4133. docsforge/themes/material/templates/.icons/material/bell.svg +1 -0
  4134. docsforge/themes/material/templates/.icons/material/bench-back.svg +1 -0
  4135. docsforge/themes/material/templates/.icons/material/bench.svg +1 -0
  4136. docsforge/themes/material/templates/.icons/material/beta.svg +1 -0
  4137. docsforge/themes/material/templates/.icons/material/betamax.svg +1 -0
  4138. docsforge/themes/material/templates/.icons/material/biathlon.svg +1 -0
  4139. docsforge/themes/material/templates/.icons/material/bicycle-basket.svg +1 -0
  4140. docsforge/themes/material/templates/.icons/material/bicycle-cargo.svg +1 -0
  4141. docsforge/themes/material/templates/.icons/material/bicycle-electric.svg +1 -0
  4142. docsforge/themes/material/templates/.icons/material/bicycle-penny-farthing.svg +1 -0
  4143. docsforge/themes/material/templates/.icons/material/bicycle.svg +1 -0
  4144. docsforge/themes/material/templates/.icons/material/bike-fast.svg +1 -0
  4145. docsforge/themes/material/templates/.icons/material/bike-pedal-clipless.svg +1 -0
  4146. docsforge/themes/material/templates/.icons/material/bike-pedal-mountain.svg +1 -0
  4147. docsforge/themes/material/templates/.icons/material/bike-pedal.svg +1 -0
  4148. docsforge/themes/material/templates/.icons/material/bike.svg +1 -0
  4149. docsforge/themes/material/templates/.icons/material/billboard.svg +1 -0
  4150. docsforge/themes/material/templates/.icons/material/billiards-rack.svg +1 -0
  4151. docsforge/themes/material/templates/.icons/material/billiards.svg +1 -0
  4152. docsforge/themes/material/templates/.icons/material/binoculars.svg +1 -0
  4153. docsforge/themes/material/templates/.icons/material/bio.svg +1 -0
  4154. docsforge/themes/material/templates/.icons/material/biohazard.svg +1 -0
  4155. docsforge/themes/material/templates/.icons/material/bird.svg +1 -0
  4156. docsforge/themes/material/templates/.icons/material/bitbucket.svg +1 -0
  4157. docsforge/themes/material/templates/.icons/material/bitcoin.svg +1 -0
  4158. docsforge/themes/material/templates/.icons/material/black-mesa.svg +1 -0
  4159. docsforge/themes/material/templates/.icons/material/blender-outline.svg +1 -0
  4160. docsforge/themes/material/templates/.icons/material/blender-software.svg +1 -0
  4161. docsforge/themes/material/templates/.icons/material/blender.svg +1 -0
  4162. docsforge/themes/material/templates/.icons/material/blinds-horizontal-closed.svg +1 -0
  4163. docsforge/themes/material/templates/.icons/material/blinds-horizontal.svg +1 -0
  4164. docsforge/themes/material/templates/.icons/material/blinds-open.svg +1 -0
  4165. docsforge/themes/material/templates/.icons/material/blinds-vertical-closed.svg +1 -0
  4166. docsforge/themes/material/templates/.icons/material/blinds-vertical.svg +1 -0
  4167. docsforge/themes/material/templates/.icons/material/blinds.svg +1 -0
  4168. docsforge/themes/material/templates/.icons/material/block-helper.svg +1 -0
  4169. docsforge/themes/material/templates/.icons/material/blood-bag.svg +1 -0
  4170. docsforge/themes/material/templates/.icons/material/bluetooth-audio.svg +1 -0
  4171. docsforge/themes/material/templates/.icons/material/bluetooth-connect.svg +1 -0
  4172. docsforge/themes/material/templates/.icons/material/bluetooth-off.svg +1 -0
  4173. docsforge/themes/material/templates/.icons/material/bluetooth-settings.svg +1 -0
  4174. docsforge/themes/material/templates/.icons/material/bluetooth-transfer.svg +1 -0
  4175. docsforge/themes/material/templates/.icons/material/bluetooth.svg +1 -0
  4176. docsforge/themes/material/templates/.icons/material/blur-linear.svg +1 -0
  4177. docsforge/themes/material/templates/.icons/material/blur-off.svg +1 -0
  4178. docsforge/themes/material/templates/.icons/material/blur-radial.svg +1 -0
  4179. docsforge/themes/material/templates/.icons/material/blur.svg +1 -0
  4180. docsforge/themes/material/templates/.icons/material/bolt.svg +1 -0
  4181. docsforge/themes/material/templates/.icons/material/bomb-off.svg +1 -0
  4182. docsforge/themes/material/templates/.icons/material/bomb.svg +1 -0
  4183. docsforge/themes/material/templates/.icons/material/bone-off.svg +1 -0
  4184. docsforge/themes/material/templates/.icons/material/bone.svg +1 -0
  4185. docsforge/themes/material/templates/.icons/material/book-account-outline.svg +1 -0
  4186. docsforge/themes/material/templates/.icons/material/book-account.svg +1 -0
  4187. docsforge/themes/material/templates/.icons/material/book-alert-outline.svg +1 -0
  4188. docsforge/themes/material/templates/.icons/material/book-alert.svg +1 -0
  4189. docsforge/themes/material/templates/.icons/material/book-alphabet.svg +1 -0
  4190. docsforge/themes/material/templates/.icons/material/book-arrow-down-outline.svg +1 -0
  4191. docsforge/themes/material/templates/.icons/material/book-arrow-down.svg +1 -0
  4192. docsforge/themes/material/templates/.icons/material/book-arrow-left-outline.svg +1 -0
  4193. docsforge/themes/material/templates/.icons/material/book-arrow-left.svg +1 -0
  4194. docsforge/themes/material/templates/.icons/material/book-arrow-right-outline.svg +1 -0
  4195. docsforge/themes/material/templates/.icons/material/book-arrow-right.svg +1 -0
  4196. docsforge/themes/material/templates/.icons/material/book-arrow-up-outline.svg +1 -0
  4197. docsforge/themes/material/templates/.icons/material/book-arrow-up.svg +1 -0
  4198. docsforge/themes/material/templates/.icons/material/book-cancel-outline.svg +1 -0
  4199. docsforge/themes/material/templates/.icons/material/book-cancel.svg +1 -0
  4200. docsforge/themes/material/templates/.icons/material/book-check-outline.svg +1 -0
  4201. docsforge/themes/material/templates/.icons/material/book-check.svg +1 -0
  4202. docsforge/themes/material/templates/.icons/material/book-clock-outline.svg +1 -0
  4203. docsforge/themes/material/templates/.icons/material/book-clock.svg +1 -0
  4204. docsforge/themes/material/templates/.icons/material/book-cog-outline.svg +1 -0
  4205. docsforge/themes/material/templates/.icons/material/book-cog.svg +1 -0
  4206. docsforge/themes/material/templates/.icons/material/book-cross.svg +1 -0
  4207. docsforge/themes/material/templates/.icons/material/book-edit-outline.svg +1 -0
  4208. docsforge/themes/material/templates/.icons/material/book-edit.svg +1 -0
  4209. docsforge/themes/material/templates/.icons/material/book-education-outline.svg +1 -0
  4210. docsforge/themes/material/templates/.icons/material/book-education.svg +1 -0
  4211. docsforge/themes/material/templates/.icons/material/book-heart-outline.svg +1 -0
  4212. docsforge/themes/material/templates/.icons/material/book-heart.svg +1 -0
  4213. docsforge/themes/material/templates/.icons/material/book-information-variant.svg +1 -0
  4214. docsforge/themes/material/templates/.icons/material/book-lock-open-outline.svg +1 -0
  4215. docsforge/themes/material/templates/.icons/material/book-lock-open.svg +1 -0
  4216. docsforge/themes/material/templates/.icons/material/book-lock-outline.svg +1 -0
  4217. docsforge/themes/material/templates/.icons/material/book-lock.svg +1 -0
  4218. docsforge/themes/material/templates/.icons/material/book-marker-outline.svg +1 -0
  4219. docsforge/themes/material/templates/.icons/material/book-marker.svg +1 -0
  4220. docsforge/themes/material/templates/.icons/material/book-minus-multiple-outline.svg +1 -0
  4221. docsforge/themes/material/templates/.icons/material/book-minus-multiple.svg +1 -0
  4222. docsforge/themes/material/templates/.icons/material/book-minus-outline.svg +1 -0
  4223. docsforge/themes/material/templates/.icons/material/book-minus.svg +1 -0
  4224. docsforge/themes/material/templates/.icons/material/book-multiple-outline.svg +1 -0
  4225. docsforge/themes/material/templates/.icons/material/book-multiple.svg +1 -0
  4226. docsforge/themes/material/templates/.icons/material/book-music-outline.svg +1 -0
  4227. docsforge/themes/material/templates/.icons/material/book-music.svg +1 -0
  4228. docsforge/themes/material/templates/.icons/material/book-off-outline.svg +1 -0
  4229. docsforge/themes/material/templates/.icons/material/book-off.svg +1 -0
  4230. docsforge/themes/material/templates/.icons/material/book-open-blank-variant-outline.svg +1 -0
  4231. docsforge/themes/material/templates/.icons/material/book-open-blank-variant.svg +1 -0
  4232. docsforge/themes/material/templates/.icons/material/book-open-outline.svg +1 -0
  4233. docsforge/themes/material/templates/.icons/material/book-open-page-variant-outline.svg +1 -0
  4234. docsforge/themes/material/templates/.icons/material/book-open-page-variant.svg +1 -0
  4235. docsforge/themes/material/templates/.icons/material/book-open-variant-outline.svg +1 -0
  4236. docsforge/themes/material/templates/.icons/material/book-open-variant.svg +1 -0
  4237. docsforge/themes/material/templates/.icons/material/book-open.svg +1 -0
  4238. docsforge/themes/material/templates/.icons/material/book-outline.svg +1 -0
  4239. docsforge/themes/material/templates/.icons/material/book-play-outline.svg +1 -0
  4240. docsforge/themes/material/templates/.icons/material/book-play.svg +1 -0
  4241. docsforge/themes/material/templates/.icons/material/book-plus-multiple-outline.svg +1 -0
  4242. docsforge/themes/material/templates/.icons/material/book-plus-multiple.svg +1 -0
  4243. docsforge/themes/material/templates/.icons/material/book-plus-outline.svg +1 -0
  4244. docsforge/themes/material/templates/.icons/material/book-plus.svg +1 -0
  4245. docsforge/themes/material/templates/.icons/material/book-refresh-outline.svg +1 -0
  4246. docsforge/themes/material/templates/.icons/material/book-refresh.svg +1 -0
  4247. docsforge/themes/material/templates/.icons/material/book-remove-multiple-outline.svg +1 -0
  4248. docsforge/themes/material/templates/.icons/material/book-remove-multiple.svg +1 -0
  4249. docsforge/themes/material/templates/.icons/material/book-remove-outline.svg +1 -0
  4250. docsforge/themes/material/templates/.icons/material/book-remove.svg +1 -0
  4251. docsforge/themes/material/templates/.icons/material/book-search-outline.svg +1 -0
  4252. docsforge/themes/material/templates/.icons/material/book-search.svg +1 -0
  4253. docsforge/themes/material/templates/.icons/material/book-settings-outline.svg +1 -0
  4254. docsforge/themes/material/templates/.icons/material/book-settings.svg +1 -0
  4255. docsforge/themes/material/templates/.icons/material/book-sync-outline.svg +1 -0
  4256. docsforge/themes/material/templates/.icons/material/book-sync.svg +1 -0
  4257. docsforge/themes/material/templates/.icons/material/book-variant.svg +1 -0
  4258. docsforge/themes/material/templates/.icons/material/book.svg +1 -0
  4259. docsforge/themes/material/templates/.icons/material/bookmark-box-multiple-outline.svg +1 -0
  4260. docsforge/themes/material/templates/.icons/material/bookmark-box-multiple.svg +1 -0
  4261. docsforge/themes/material/templates/.icons/material/bookmark-box-outline.svg +1 -0
  4262. docsforge/themes/material/templates/.icons/material/bookmark-box.svg +1 -0
  4263. docsforge/themes/material/templates/.icons/material/bookmark-check-outline.svg +1 -0
  4264. docsforge/themes/material/templates/.icons/material/bookmark-check.svg +1 -0
  4265. docsforge/themes/material/templates/.icons/material/bookmark-minus-outline.svg +1 -0
  4266. docsforge/themes/material/templates/.icons/material/bookmark-minus.svg +1 -0
  4267. docsforge/themes/material/templates/.icons/material/bookmark-multiple-outline.svg +1 -0
  4268. docsforge/themes/material/templates/.icons/material/bookmark-multiple.svg +1 -0
  4269. docsforge/themes/material/templates/.icons/material/bookmark-music-outline.svg +1 -0
  4270. docsforge/themes/material/templates/.icons/material/bookmark-music.svg +1 -0
  4271. docsforge/themes/material/templates/.icons/material/bookmark-off-outline.svg +1 -0
  4272. docsforge/themes/material/templates/.icons/material/bookmark-off.svg +1 -0
  4273. docsforge/themes/material/templates/.icons/material/bookmark-outline.svg +1 -0
  4274. docsforge/themes/material/templates/.icons/material/bookmark-plus-outline.svg +1 -0
  4275. docsforge/themes/material/templates/.icons/material/bookmark-plus.svg +1 -0
  4276. docsforge/themes/material/templates/.icons/material/bookmark-remove-outline.svg +1 -0
  4277. docsforge/themes/material/templates/.icons/material/bookmark-remove.svg +1 -0
  4278. docsforge/themes/material/templates/.icons/material/bookmark.svg +1 -0
  4279. docsforge/themes/material/templates/.icons/material/bookshelf.svg +1 -0
  4280. docsforge/themes/material/templates/.icons/material/boom-gate-alert-outline.svg +1 -0
  4281. docsforge/themes/material/templates/.icons/material/boom-gate-alert.svg +1 -0
  4282. docsforge/themes/material/templates/.icons/material/boom-gate-arrow-down-outline.svg +1 -0
  4283. docsforge/themes/material/templates/.icons/material/boom-gate-arrow-down.svg +1 -0
  4284. docsforge/themes/material/templates/.icons/material/boom-gate-arrow-up-outline.svg +1 -0
  4285. docsforge/themes/material/templates/.icons/material/boom-gate-arrow-up.svg +1 -0
  4286. docsforge/themes/material/templates/.icons/material/boom-gate-outline.svg +1 -0
  4287. docsforge/themes/material/templates/.icons/material/boom-gate-up-outline.svg +1 -0
  4288. docsforge/themes/material/templates/.icons/material/boom-gate-up.svg +1 -0
  4289. docsforge/themes/material/templates/.icons/material/boom-gate.svg +1 -0
  4290. docsforge/themes/material/templates/.icons/material/boombox.svg +1 -0
  4291. docsforge/themes/material/templates/.icons/material/boomerang.svg +1 -0
  4292. docsforge/themes/material/templates/.icons/material/bootstrap.svg +1 -0
  4293. docsforge/themes/material/templates/.icons/material/border-all-variant.svg +1 -0
  4294. docsforge/themes/material/templates/.icons/material/border-all.svg +1 -0
  4295. docsforge/themes/material/templates/.icons/material/border-bottom-variant.svg +1 -0
  4296. docsforge/themes/material/templates/.icons/material/border-bottom.svg +1 -0
  4297. docsforge/themes/material/templates/.icons/material/border-color.svg +1 -0
  4298. docsforge/themes/material/templates/.icons/material/border-horizontal.svg +1 -0
  4299. docsforge/themes/material/templates/.icons/material/border-inside.svg +1 -0
  4300. docsforge/themes/material/templates/.icons/material/border-left-variant.svg +1 -0
  4301. docsforge/themes/material/templates/.icons/material/border-left.svg +1 -0
  4302. docsforge/themes/material/templates/.icons/material/border-none-variant.svg +1 -0
  4303. docsforge/themes/material/templates/.icons/material/border-none.svg +1 -0
  4304. docsforge/themes/material/templates/.icons/material/border-outside.svg +1 -0
  4305. docsforge/themes/material/templates/.icons/material/border-radius.svg +1 -0
  4306. docsforge/themes/material/templates/.icons/material/border-right-variant.svg +1 -0
  4307. docsforge/themes/material/templates/.icons/material/border-right.svg +1 -0
  4308. docsforge/themes/material/templates/.icons/material/border-style.svg +1 -0
  4309. docsforge/themes/material/templates/.icons/material/border-top-variant.svg +1 -0
  4310. docsforge/themes/material/templates/.icons/material/border-top.svg +1 -0
  4311. docsforge/themes/material/templates/.icons/material/border-vertical.svg +1 -0
  4312. docsforge/themes/material/templates/.icons/material/bottle-soda-classic-outline.svg +1 -0
  4313. docsforge/themes/material/templates/.icons/material/bottle-soda-classic.svg +1 -0
  4314. docsforge/themes/material/templates/.icons/material/bottle-soda-outline.svg +1 -0
  4315. docsforge/themes/material/templates/.icons/material/bottle-soda.svg +1 -0
  4316. docsforge/themes/material/templates/.icons/material/bottle-tonic-outline.svg +1 -0
  4317. docsforge/themes/material/templates/.icons/material/bottle-tonic-plus-outline.svg +1 -0
  4318. docsforge/themes/material/templates/.icons/material/bottle-tonic-plus.svg +1 -0
  4319. docsforge/themes/material/templates/.icons/material/bottle-tonic-skull-outline.svg +1 -0
  4320. docsforge/themes/material/templates/.icons/material/bottle-tonic-skull.svg +1 -0
  4321. docsforge/themes/material/templates/.icons/material/bottle-tonic.svg +1 -0
  4322. docsforge/themes/material/templates/.icons/material/bottle-wine-outline.svg +1 -0
  4323. docsforge/themes/material/templates/.icons/material/bottle-wine.svg +1 -0
  4324. docsforge/themes/material/templates/.icons/material/bow-arrow.svg +1 -0
  4325. docsforge/themes/material/templates/.icons/material/bow-tie.svg +1 -0
  4326. docsforge/themes/material/templates/.icons/material/bowl-mix-outline.svg +1 -0
  4327. docsforge/themes/material/templates/.icons/material/bowl-mix.svg +1 -0
  4328. docsforge/themes/material/templates/.icons/material/bowl-outline.svg +1 -0
  4329. docsforge/themes/material/templates/.icons/material/bowl.svg +1 -0
  4330. docsforge/themes/material/templates/.icons/material/bowling.svg +1 -0
  4331. docsforge/themes/material/templates/.icons/material/box-cutter-off.svg +1 -0
  4332. docsforge/themes/material/templates/.icons/material/box-cutter.svg +1 -0
  4333. docsforge/themes/material/templates/.icons/material/box-shadow.svg +1 -0
  4334. docsforge/themes/material/templates/.icons/material/box.svg +1 -0
  4335. docsforge/themes/material/templates/.icons/material/boxing-glove.svg +1 -0
  4336. docsforge/themes/material/templates/.icons/material/braille.svg +1 -0
  4337. docsforge/themes/material/templates/.icons/material/brain.svg +1 -0
  4338. docsforge/themes/material/templates/.icons/material/bread-slice-outline.svg +1 -0
  4339. docsforge/themes/material/templates/.icons/material/bread-slice.svg +1 -0
  4340. docsforge/themes/material/templates/.icons/material/bridge.svg +1 -0
  4341. docsforge/themes/material/templates/.icons/material/briefcase-account-outline.svg +1 -0
  4342. docsforge/themes/material/templates/.icons/material/briefcase-account.svg +1 -0
  4343. docsforge/themes/material/templates/.icons/material/briefcase-arrow-left-right-outline.svg +1 -0
  4344. docsforge/themes/material/templates/.icons/material/briefcase-arrow-left-right.svg +1 -0
  4345. docsforge/themes/material/templates/.icons/material/briefcase-arrow-up-down-outline.svg +1 -0
  4346. docsforge/themes/material/templates/.icons/material/briefcase-arrow-up-down.svg +1 -0
  4347. docsforge/themes/material/templates/.icons/material/briefcase-check-outline.svg +1 -0
  4348. docsforge/themes/material/templates/.icons/material/briefcase-check.svg +1 -0
  4349. docsforge/themes/material/templates/.icons/material/briefcase-clock-outline.svg +1 -0
  4350. docsforge/themes/material/templates/.icons/material/briefcase-clock.svg +1 -0
  4351. docsforge/themes/material/templates/.icons/material/briefcase-download-outline.svg +1 -0
  4352. docsforge/themes/material/templates/.icons/material/briefcase-download.svg +1 -0
  4353. docsforge/themes/material/templates/.icons/material/briefcase-edit-outline.svg +1 -0
  4354. docsforge/themes/material/templates/.icons/material/briefcase-edit.svg +1 -0
  4355. docsforge/themes/material/templates/.icons/material/briefcase-eye-outline.svg +1 -0
  4356. docsforge/themes/material/templates/.icons/material/briefcase-eye.svg +1 -0
  4357. docsforge/themes/material/templates/.icons/material/briefcase-minus-outline.svg +1 -0
  4358. docsforge/themes/material/templates/.icons/material/briefcase-minus.svg +1 -0
  4359. docsforge/themes/material/templates/.icons/material/briefcase-off-outline.svg +1 -0
  4360. docsforge/themes/material/templates/.icons/material/briefcase-off.svg +1 -0
  4361. docsforge/themes/material/templates/.icons/material/briefcase-outline.svg +1 -0
  4362. docsforge/themes/material/templates/.icons/material/briefcase-plus-outline.svg +1 -0
  4363. docsforge/themes/material/templates/.icons/material/briefcase-plus.svg +1 -0
  4364. docsforge/themes/material/templates/.icons/material/briefcase-remove-outline.svg +1 -0
  4365. docsforge/themes/material/templates/.icons/material/briefcase-remove.svg +1 -0
  4366. docsforge/themes/material/templates/.icons/material/briefcase-search-outline.svg +1 -0
  4367. docsforge/themes/material/templates/.icons/material/briefcase-search.svg +1 -0
  4368. docsforge/themes/material/templates/.icons/material/briefcase-upload-outline.svg +1 -0
  4369. docsforge/themes/material/templates/.icons/material/briefcase-upload.svg +1 -0
  4370. docsforge/themes/material/templates/.icons/material/briefcase-variant-off-outline.svg +1 -0
  4371. docsforge/themes/material/templates/.icons/material/briefcase-variant-off.svg +1 -0
  4372. docsforge/themes/material/templates/.icons/material/briefcase-variant-outline.svg +1 -0
  4373. docsforge/themes/material/templates/.icons/material/briefcase-variant.svg +1 -0
  4374. docsforge/themes/material/templates/.icons/material/briefcase.svg +1 -0
  4375. docsforge/themes/material/templates/.icons/material/brightness-1.svg +1 -0
  4376. docsforge/themes/material/templates/.icons/material/brightness-2.svg +1 -0
  4377. docsforge/themes/material/templates/.icons/material/brightness-3.svg +1 -0
  4378. docsforge/themes/material/templates/.icons/material/brightness-4.svg +1 -0
  4379. docsforge/themes/material/templates/.icons/material/brightness-5.svg +1 -0
  4380. docsforge/themes/material/templates/.icons/material/brightness-6.svg +1 -0
  4381. docsforge/themes/material/templates/.icons/material/brightness-7.svg +1 -0
  4382. docsforge/themes/material/templates/.icons/material/brightness-auto.svg +1 -0
  4383. docsforge/themes/material/templates/.icons/material/brightness-percent.svg +1 -0
  4384. docsforge/themes/material/templates/.icons/material/broadcast-off.svg +1 -0
  4385. docsforge/themes/material/templates/.icons/material/broadcast.svg +1 -0
  4386. docsforge/themes/material/templates/.icons/material/broom.svg +1 -0
  4387. docsforge/themes/material/templates/.icons/material/brush-off.svg +1 -0
  4388. docsforge/themes/material/templates/.icons/material/brush-outline.svg +1 -0
  4389. docsforge/themes/material/templates/.icons/material/brush-variant.svg +1 -0
  4390. docsforge/themes/material/templates/.icons/material/brush.svg +1 -0
  4391. docsforge/themes/material/templates/.icons/material/bucket-outline.svg +1 -0
  4392. docsforge/themes/material/templates/.icons/material/bucket.svg +1 -0
  4393. docsforge/themes/material/templates/.icons/material/buffet.svg +1 -0
  4394. docsforge/themes/material/templates/.icons/material/bug-check-outline.svg +1 -0
  4395. docsforge/themes/material/templates/.icons/material/bug-check.svg +1 -0
  4396. docsforge/themes/material/templates/.icons/material/bug-outline.svg +1 -0
  4397. docsforge/themes/material/templates/.icons/material/bug-pause-outline.svg +1 -0
  4398. docsforge/themes/material/templates/.icons/material/bug-pause.svg +1 -0
  4399. docsforge/themes/material/templates/.icons/material/bug-play-outline.svg +1 -0
  4400. docsforge/themes/material/templates/.icons/material/bug-play.svg +1 -0
  4401. docsforge/themes/material/templates/.icons/material/bug-stop-outline.svg +1 -0
  4402. docsforge/themes/material/templates/.icons/material/bug-stop.svg +1 -0
  4403. docsforge/themes/material/templates/.icons/material/bug.svg +1 -0
  4404. docsforge/themes/material/templates/.icons/material/bugle.svg +1 -0
  4405. docsforge/themes/material/templates/.icons/material/bulkhead-light.svg +1 -0
  4406. docsforge/themes/material/templates/.icons/material/bulldozer.svg +1 -0
  4407. docsforge/themes/material/templates/.icons/material/bullet.svg +1 -0
  4408. docsforge/themes/material/templates/.icons/material/bulletin-board.svg +1 -0
  4409. docsforge/themes/material/templates/.icons/material/bullhorn-outline.svg +1 -0
  4410. docsforge/themes/material/templates/.icons/material/bullhorn-variant-outline.svg +1 -0
  4411. docsforge/themes/material/templates/.icons/material/bullhorn-variant.svg +1 -0
  4412. docsforge/themes/material/templates/.icons/material/bullhorn.svg +1 -0
  4413. docsforge/themes/material/templates/.icons/material/bullseye-arrow.svg +1 -0
  4414. docsforge/themes/material/templates/.icons/material/bullseye.svg +1 -0
  4415. docsforge/themes/material/templates/.icons/material/bulma.svg +1 -0
  4416. docsforge/themes/material/templates/.icons/material/bunk-bed-outline.svg +1 -0
  4417. docsforge/themes/material/templates/.icons/material/bunk-bed.svg +1 -0
  4418. docsforge/themes/material/templates/.icons/material/bus-alert.svg +1 -0
  4419. docsforge/themes/material/templates/.icons/material/bus-articulated-end.svg +1 -0
  4420. docsforge/themes/material/templates/.icons/material/bus-articulated-front.svg +1 -0
  4421. docsforge/themes/material/templates/.icons/material/bus-clock.svg +1 -0
  4422. docsforge/themes/material/templates/.icons/material/bus-double-decker.svg +1 -0
  4423. docsforge/themes/material/templates/.icons/material/bus-electric.svg +1 -0
  4424. docsforge/themes/material/templates/.icons/material/bus-marker.svg +1 -0
  4425. docsforge/themes/material/templates/.icons/material/bus-multiple.svg +1 -0
  4426. docsforge/themes/material/templates/.icons/material/bus-school.svg +1 -0
  4427. docsforge/themes/material/templates/.icons/material/bus-side.svg +1 -0
  4428. docsforge/themes/material/templates/.icons/material/bus-sign.svg +1 -0
  4429. docsforge/themes/material/templates/.icons/material/bus-stop-covered.svg +1 -0
  4430. docsforge/themes/material/templates/.icons/material/bus-stop-uncovered.svg +1 -0
  4431. docsforge/themes/material/templates/.icons/material/bus-stop.svg +1 -0
  4432. docsforge/themes/material/templates/.icons/material/bus-wrench.svg +1 -0
  4433. docsforge/themes/material/templates/.icons/material/bus.svg +1 -0
  4434. docsforge/themes/material/templates/.icons/material/butterfly-outline.svg +1 -0
  4435. docsforge/themes/material/templates/.icons/material/butterfly.svg +1 -0
  4436. docsforge/themes/material/templates/.icons/material/button-cursor.svg +1 -0
  4437. docsforge/themes/material/templates/.icons/material/button-pointer.svg +1 -0
  4438. docsforge/themes/material/templates/.icons/material/cabin-a-frame.svg +1 -0
  4439. docsforge/themes/material/templates/.icons/material/cable-data.svg +1 -0
  4440. docsforge/themes/material/templates/.icons/material/cached.svg +1 -0
  4441. docsforge/themes/material/templates/.icons/material/cactus.svg +1 -0
  4442. docsforge/themes/material/templates/.icons/material/cake-layered.svg +1 -0
  4443. docsforge/themes/material/templates/.icons/material/cake-variant-outline.svg +1 -0
  4444. docsforge/themes/material/templates/.icons/material/cake-variant.svg +1 -0
  4445. docsforge/themes/material/templates/.icons/material/cake.svg +1 -0
  4446. docsforge/themes/material/templates/.icons/material/calculator-variant-outline.svg +1 -0
  4447. docsforge/themes/material/templates/.icons/material/calculator-variant.svg +1 -0
  4448. docsforge/themes/material/templates/.icons/material/calculator.svg +1 -0
  4449. docsforge/themes/material/templates/.icons/material/calendar-account-outline.svg +1 -0
  4450. docsforge/themes/material/templates/.icons/material/calendar-account.svg +1 -0
  4451. docsforge/themes/material/templates/.icons/material/calendar-alert-outline.svg +1 -0
  4452. docsforge/themes/material/templates/.icons/material/calendar-alert.svg +1 -0
  4453. docsforge/themes/material/templates/.icons/material/calendar-arrow-left.svg +1 -0
  4454. docsforge/themes/material/templates/.icons/material/calendar-arrow-right.svg +1 -0
  4455. docsforge/themes/material/templates/.icons/material/calendar-badge-outline.svg +1 -0
  4456. docsforge/themes/material/templates/.icons/material/calendar-badge.svg +1 -0
  4457. docsforge/themes/material/templates/.icons/material/calendar-blank-multiple.svg +1 -0
  4458. docsforge/themes/material/templates/.icons/material/calendar-blank-outline.svg +1 -0
  4459. docsforge/themes/material/templates/.icons/material/calendar-blank.svg +1 -0
  4460. docsforge/themes/material/templates/.icons/material/calendar-check-outline.svg +1 -0
  4461. docsforge/themes/material/templates/.icons/material/calendar-check.svg +1 -0
  4462. docsforge/themes/material/templates/.icons/material/calendar-clock-outline.svg +1 -0
  4463. docsforge/themes/material/templates/.icons/material/calendar-clock.svg +1 -0
  4464. docsforge/themes/material/templates/.icons/material/calendar-collapse-horizontal-outline.svg +1 -0
  4465. docsforge/themes/material/templates/.icons/material/calendar-collapse-horizontal.svg +1 -0
  4466. docsforge/themes/material/templates/.icons/material/calendar-cursor-outline.svg +1 -0
  4467. docsforge/themes/material/templates/.icons/material/calendar-cursor.svg +1 -0
  4468. docsforge/themes/material/templates/.icons/material/calendar-edit-outline.svg +1 -0
  4469. docsforge/themes/material/templates/.icons/material/calendar-edit.svg +1 -0
  4470. docsforge/themes/material/templates/.icons/material/calendar-end-outline.svg +1 -0
  4471. docsforge/themes/material/templates/.icons/material/calendar-end.svg +1 -0
  4472. docsforge/themes/material/templates/.icons/material/calendar-expand-horizontal-outline.svg +1 -0
  4473. docsforge/themes/material/templates/.icons/material/calendar-expand-horizontal.svg +1 -0
  4474. docsforge/themes/material/templates/.icons/material/calendar-export-outline.svg +1 -0
  4475. docsforge/themes/material/templates/.icons/material/calendar-export.svg +1 -0
  4476. docsforge/themes/material/templates/.icons/material/calendar-filter-outline.svg +1 -0
  4477. docsforge/themes/material/templates/.icons/material/calendar-filter.svg +1 -0
  4478. docsforge/themes/material/templates/.icons/material/calendar-heart-outline.svg +1 -0
  4479. docsforge/themes/material/templates/.icons/material/calendar-heart.svg +1 -0
  4480. docsforge/themes/material/templates/.icons/material/calendar-import-outline.svg +1 -0
  4481. docsforge/themes/material/templates/.icons/material/calendar-import.svg +1 -0
  4482. docsforge/themes/material/templates/.icons/material/calendar-lock-open-outline.svg +1 -0
  4483. docsforge/themes/material/templates/.icons/material/calendar-lock-open.svg +1 -0
  4484. docsforge/themes/material/templates/.icons/material/calendar-lock-outline.svg +1 -0
  4485. docsforge/themes/material/templates/.icons/material/calendar-lock.svg +1 -0
  4486. docsforge/themes/material/templates/.icons/material/calendar-minus-outline.svg +1 -0
  4487. docsforge/themes/material/templates/.icons/material/calendar-minus.svg +1 -0
  4488. docsforge/themes/material/templates/.icons/material/calendar-month-outline.svg +1 -0
  4489. docsforge/themes/material/templates/.icons/material/calendar-month.svg +1 -0
  4490. docsforge/themes/material/templates/.icons/material/calendar-multiple-check.svg +1 -0
  4491. docsforge/themes/material/templates/.icons/material/calendar-multiple.svg +1 -0
  4492. docsforge/themes/material/templates/.icons/material/calendar-multiselect-outline.svg +1 -0
  4493. docsforge/themes/material/templates/.icons/material/calendar-multiselect.svg +1 -0
  4494. docsforge/themes/material/templates/.icons/material/calendar-outline.svg +1 -0
  4495. docsforge/themes/material/templates/.icons/material/calendar-plus-outline.svg +1 -0
  4496. docsforge/themes/material/templates/.icons/material/calendar-plus.svg +1 -0
  4497. docsforge/themes/material/templates/.icons/material/calendar-question-outline.svg +1 -0
  4498. docsforge/themes/material/templates/.icons/material/calendar-question.svg +1 -0
  4499. docsforge/themes/material/templates/.icons/material/calendar-range-outline.svg +1 -0
  4500. docsforge/themes/material/templates/.icons/material/calendar-range.svg +1 -0
  4501. docsforge/themes/material/templates/.icons/material/calendar-refresh-outline.svg +1 -0
  4502. docsforge/themes/material/templates/.icons/material/calendar-refresh.svg +1 -0
  4503. docsforge/themes/material/templates/.icons/material/calendar-remove-outline.svg +1 -0
  4504. docsforge/themes/material/templates/.icons/material/calendar-remove.svg +1 -0
  4505. docsforge/themes/material/templates/.icons/material/calendar-search-outline.svg +1 -0
  4506. docsforge/themes/material/templates/.icons/material/calendar-search.svg +1 -0
  4507. docsforge/themes/material/templates/.icons/material/calendar-star-four-points.svg +1 -0
  4508. docsforge/themes/material/templates/.icons/material/calendar-star-outline.svg +1 -0
  4509. docsforge/themes/material/templates/.icons/material/calendar-star.svg +1 -0
  4510. docsforge/themes/material/templates/.icons/material/calendar-start-outline.svg +1 -0
  4511. docsforge/themes/material/templates/.icons/material/calendar-start.svg +1 -0
  4512. docsforge/themes/material/templates/.icons/material/calendar-sync-outline.svg +1 -0
  4513. docsforge/themes/material/templates/.icons/material/calendar-sync.svg +1 -0
  4514. docsforge/themes/material/templates/.icons/material/calendar-text-outline.svg +1 -0
  4515. docsforge/themes/material/templates/.icons/material/calendar-text.svg +1 -0
  4516. docsforge/themes/material/templates/.icons/material/calendar-today-outline.svg +1 -0
  4517. docsforge/themes/material/templates/.icons/material/calendar-today.svg +1 -0
  4518. docsforge/themes/material/templates/.icons/material/calendar-week-begin-outline.svg +1 -0
  4519. docsforge/themes/material/templates/.icons/material/calendar-week-begin.svg +1 -0
  4520. docsforge/themes/material/templates/.icons/material/calendar-week-outline.svg +1 -0
  4521. docsforge/themes/material/templates/.icons/material/calendar-week.svg +1 -0
  4522. docsforge/themes/material/templates/.icons/material/calendar-weekend-outline.svg +1 -0
  4523. docsforge/themes/material/templates/.icons/material/calendar-weekend.svg +1 -0
  4524. docsforge/themes/material/templates/.icons/material/calendar.svg +1 -0
  4525. docsforge/themes/material/templates/.icons/material/call-made.svg +1 -0
  4526. docsforge/themes/material/templates/.icons/material/call-merge.svg +1 -0
  4527. docsforge/themes/material/templates/.icons/material/call-missed.svg +1 -0
  4528. docsforge/themes/material/templates/.icons/material/call-received.svg +1 -0
  4529. docsforge/themes/material/templates/.icons/material/call-split.svg +1 -0
  4530. docsforge/themes/material/templates/.icons/material/camcorder-off.svg +1 -0
  4531. docsforge/themes/material/templates/.icons/material/camcorder.svg +1 -0
  4532. docsforge/themes/material/templates/.icons/material/camera-account.svg +1 -0
  4533. docsforge/themes/material/templates/.icons/material/camera-burst.svg +1 -0
  4534. docsforge/themes/material/templates/.icons/material/camera-control.svg +1 -0
  4535. docsforge/themes/material/templates/.icons/material/camera-document-off.svg +1 -0
  4536. docsforge/themes/material/templates/.icons/material/camera-document.svg +1 -0
  4537. docsforge/themes/material/templates/.icons/material/camera-enhance-outline.svg +1 -0
  4538. docsforge/themes/material/templates/.icons/material/camera-enhance.svg +1 -0
  4539. docsforge/themes/material/templates/.icons/material/camera-flip-outline.svg +1 -0
  4540. docsforge/themes/material/templates/.icons/material/camera-flip.svg +1 -0
  4541. docsforge/themes/material/templates/.icons/material/camera-front-variant.svg +1 -0
  4542. docsforge/themes/material/templates/.icons/material/camera-front.svg +1 -0
  4543. docsforge/themes/material/templates/.icons/material/camera-gopro.svg +1 -0
  4544. docsforge/themes/material/templates/.icons/material/camera-image.svg +1 -0
  4545. docsforge/themes/material/templates/.icons/material/camera-iris.svg +1 -0
  4546. docsforge/themes/material/templates/.icons/material/camera-lock-open-outline.svg +1 -0
  4547. docsforge/themes/material/templates/.icons/material/camera-lock-open.svg +1 -0
  4548. docsforge/themes/material/templates/.icons/material/camera-lock-outline.svg +1 -0
  4549. docsforge/themes/material/templates/.icons/material/camera-lock.svg +1 -0
  4550. docsforge/themes/material/templates/.icons/material/camera-marker-outline.svg +1 -0
  4551. docsforge/themes/material/templates/.icons/material/camera-marker.svg +1 -0
  4552. docsforge/themes/material/templates/.icons/material/camera-metering-center.svg +1 -0
  4553. docsforge/themes/material/templates/.icons/material/camera-metering-matrix.svg +1 -0
  4554. docsforge/themes/material/templates/.icons/material/camera-metering-partial.svg +1 -0
  4555. docsforge/themes/material/templates/.icons/material/camera-metering-spot.svg +1 -0
  4556. docsforge/themes/material/templates/.icons/material/camera-off-outline.svg +1 -0
  4557. docsforge/themes/material/templates/.icons/material/camera-off.svg +1 -0
  4558. docsforge/themes/material/templates/.icons/material/camera-outline.svg +1 -0
  4559. docsforge/themes/material/templates/.icons/material/camera-party-mode.svg +1 -0
  4560. docsforge/themes/material/templates/.icons/material/camera-plus-outline.svg +1 -0
  4561. docsforge/themes/material/templates/.icons/material/camera-plus.svg +1 -0
  4562. docsforge/themes/material/templates/.icons/material/camera-rear-variant.svg +1 -0
  4563. docsforge/themes/material/templates/.icons/material/camera-rear.svg +1 -0
  4564. docsforge/themes/material/templates/.icons/material/camera-retake-outline.svg +1 -0
  4565. docsforge/themes/material/templates/.icons/material/camera-retake.svg +1 -0
  4566. docsforge/themes/material/templates/.icons/material/camera-switch-outline.svg +1 -0
  4567. docsforge/themes/material/templates/.icons/material/camera-switch.svg +1 -0
  4568. docsforge/themes/material/templates/.icons/material/camera-timer.svg +1 -0
  4569. docsforge/themes/material/templates/.icons/material/camera-wireless-outline.svg +1 -0
  4570. docsforge/themes/material/templates/.icons/material/camera-wireless.svg +1 -0
  4571. docsforge/themes/material/templates/.icons/material/camera.svg +1 -0
  4572. docsforge/themes/material/templates/.icons/material/campfire.svg +1 -0
  4573. docsforge/themes/material/templates/.icons/material/cancel.svg +1 -0
  4574. docsforge/themes/material/templates/.icons/material/candelabra-fire.svg +1 -0
  4575. docsforge/themes/material/templates/.icons/material/candelabra.svg +1 -0
  4576. docsforge/themes/material/templates/.icons/material/candle.svg +1 -0
  4577. docsforge/themes/material/templates/.icons/material/candy-off-outline.svg +1 -0
  4578. docsforge/themes/material/templates/.icons/material/candy-off.svg +1 -0
  4579. docsforge/themes/material/templates/.icons/material/candy-outline.svg +1 -0
  4580. docsforge/themes/material/templates/.icons/material/candy.svg +1 -0
  4581. docsforge/themes/material/templates/.icons/material/candycane.svg +1 -0
  4582. docsforge/themes/material/templates/.icons/material/cannabis-off.svg +1 -0
  4583. docsforge/themes/material/templates/.icons/material/cannabis.svg +1 -0
  4584. docsforge/themes/material/templates/.icons/material/caps-lock.svg +1 -0
  4585. docsforge/themes/material/templates/.icons/material/car-2-plus.svg +1 -0
  4586. docsforge/themes/material/templates/.icons/material/car-3-plus.svg +1 -0
  4587. docsforge/themes/material/templates/.icons/material/car-arrow-left.svg +1 -0
  4588. docsforge/themes/material/templates/.icons/material/car-arrow-right.svg +1 -0
  4589. docsforge/themes/material/templates/.icons/material/car-back.svg +1 -0
  4590. docsforge/themes/material/templates/.icons/material/car-battery.svg +1 -0
  4591. docsforge/themes/material/templates/.icons/material/car-brake-abs.svg +1 -0
  4592. docsforge/themes/material/templates/.icons/material/car-brake-alert.svg +1 -0
  4593. docsforge/themes/material/templates/.icons/material/car-brake-fluid-level.svg +1 -0
  4594. docsforge/themes/material/templates/.icons/material/car-brake-hold.svg +1 -0
  4595. docsforge/themes/material/templates/.icons/material/car-brake-low-pressure.svg +1 -0
  4596. docsforge/themes/material/templates/.icons/material/car-brake-parking.svg +1 -0
  4597. docsforge/themes/material/templates/.icons/material/car-brake-retarder.svg +1 -0
  4598. docsforge/themes/material/templates/.icons/material/car-brake-temperature.svg +1 -0
  4599. docsforge/themes/material/templates/.icons/material/car-brake-worn-linings.svg +1 -0
  4600. docsforge/themes/material/templates/.icons/material/car-child-seat.svg +1 -0
  4601. docsforge/themes/material/templates/.icons/material/car-clock.svg +1 -0
  4602. docsforge/themes/material/templates/.icons/material/car-clutch.svg +1 -0
  4603. docsforge/themes/material/templates/.icons/material/car-cog.svg +1 -0
  4604. docsforge/themes/material/templates/.icons/material/car-connected.svg +1 -0
  4605. docsforge/themes/material/templates/.icons/material/car-convertible.svg +1 -0
  4606. docsforge/themes/material/templates/.icons/material/car-coolant-level.svg +1 -0
  4607. docsforge/themes/material/templates/.icons/material/car-cruise-control.svg +1 -0
  4608. docsforge/themes/material/templates/.icons/material/car-defrost-front.svg +1 -0
  4609. docsforge/themes/material/templates/.icons/material/car-defrost-rear.svg +1 -0
  4610. docsforge/themes/material/templates/.icons/material/car-door-lock-open.svg +1 -0
  4611. docsforge/themes/material/templates/.icons/material/car-door-lock.svg +1 -0
  4612. docsforge/themes/material/templates/.icons/material/car-door.svg +1 -0
  4613. docsforge/themes/material/templates/.icons/material/car-electric-outline.svg +1 -0
  4614. docsforge/themes/material/templates/.icons/material/car-electric.svg +1 -0
  4615. docsforge/themes/material/templates/.icons/material/car-emergency.svg +1 -0
  4616. docsforge/themes/material/templates/.icons/material/car-esp.svg +1 -0
  4617. docsforge/themes/material/templates/.icons/material/car-estate.svg +1 -0
  4618. docsforge/themes/material/templates/.icons/material/car-hatchback.svg +1 -0
  4619. docsforge/themes/material/templates/.icons/material/car-info.svg +1 -0
  4620. docsforge/themes/material/templates/.icons/material/car-key.svg +1 -0
  4621. docsforge/themes/material/templates/.icons/material/car-lifted-pickup.svg +1 -0
  4622. docsforge/themes/material/templates/.icons/material/car-light-alert.svg +1 -0
  4623. docsforge/themes/material/templates/.icons/material/car-light-dimmed.svg +1 -0
  4624. docsforge/themes/material/templates/.icons/material/car-light-fog.svg +1 -0
  4625. docsforge/themes/material/templates/.icons/material/car-light-high.svg +1 -0
  4626. docsforge/themes/material/templates/.icons/material/car-limousine.svg +1 -0
  4627. docsforge/themes/material/templates/.icons/material/car-multiple.svg +1 -0
  4628. docsforge/themes/material/templates/.icons/material/car-off.svg +1 -0
  4629. docsforge/themes/material/templates/.icons/material/car-outline.svg +1 -0
  4630. docsforge/themes/material/templates/.icons/material/car-parking-lights.svg +1 -0
  4631. docsforge/themes/material/templates/.icons/material/car-pickup.svg +1 -0
  4632. docsforge/themes/material/templates/.icons/material/car-search-outline.svg +1 -0
  4633. docsforge/themes/material/templates/.icons/material/car-search.svg +1 -0
  4634. docsforge/themes/material/templates/.icons/material/car-seat-cooler.svg +1 -0
  4635. docsforge/themes/material/templates/.icons/material/car-seat-heater.svg +1 -0
  4636. docsforge/themes/material/templates/.icons/material/car-seat.svg +1 -0
  4637. docsforge/themes/material/templates/.icons/material/car-select.svg +1 -0
  4638. docsforge/themes/material/templates/.icons/material/car-settings.svg +1 -0
  4639. docsforge/themes/material/templates/.icons/material/car-shift-pattern.svg +1 -0
  4640. docsforge/themes/material/templates/.icons/material/car-side.svg +1 -0
  4641. docsforge/themes/material/templates/.icons/material/car-speed-limiter.svg +1 -0
  4642. docsforge/themes/material/templates/.icons/material/car-sports.svg +1 -0
  4643. docsforge/themes/material/templates/.icons/material/car-tire-alert.svg +1 -0
  4644. docsforge/themes/material/templates/.icons/material/car-traction-control.svg +1 -0
  4645. docsforge/themes/material/templates/.icons/material/car-turbocharger.svg +1 -0
  4646. docsforge/themes/material/templates/.icons/material/car-wash.svg +1 -0
  4647. docsforge/themes/material/templates/.icons/material/car-windshield-outline.svg +1 -0
  4648. docsforge/themes/material/templates/.icons/material/car-windshield.svg +1 -0
  4649. docsforge/themes/material/templates/.icons/material/car-wireless.svg +1 -0
  4650. docsforge/themes/material/templates/.icons/material/car-wrench.svg +1 -0
  4651. docsforge/themes/material/templates/.icons/material/car.svg +1 -0
  4652. docsforge/themes/material/templates/.icons/material/carabiner.svg +1 -0
  4653. docsforge/themes/material/templates/.icons/material/caravan.svg +1 -0
  4654. docsforge/themes/material/templates/.icons/material/card-account-details-outline.svg +1 -0
  4655. docsforge/themes/material/templates/.icons/material/card-account-details-star-outline.svg +1 -0
  4656. docsforge/themes/material/templates/.icons/material/card-account-details-star.svg +1 -0
  4657. docsforge/themes/material/templates/.icons/material/card-account-details.svg +1 -0
  4658. docsforge/themes/material/templates/.icons/material/card-account-mail-outline.svg +1 -0
  4659. docsforge/themes/material/templates/.icons/material/card-account-mail.svg +1 -0
  4660. docsforge/themes/material/templates/.icons/material/card-account-phone-outline.svg +1 -0
  4661. docsforge/themes/material/templates/.icons/material/card-account-phone.svg +1 -0
  4662. docsforge/themes/material/templates/.icons/material/card-bulleted-off-outline.svg +1 -0
  4663. docsforge/themes/material/templates/.icons/material/card-bulleted-off.svg +1 -0
  4664. docsforge/themes/material/templates/.icons/material/card-bulleted-outline.svg +1 -0
  4665. docsforge/themes/material/templates/.icons/material/card-bulleted-settings-outline.svg +1 -0
  4666. docsforge/themes/material/templates/.icons/material/card-bulleted-settings.svg +1 -0
  4667. docsforge/themes/material/templates/.icons/material/card-bulleted.svg +1 -0
  4668. docsforge/themes/material/templates/.icons/material/card-minus-outline.svg +1 -0
  4669. docsforge/themes/material/templates/.icons/material/card-minus.svg +1 -0
  4670. docsforge/themes/material/templates/.icons/material/card-multiple-outline.svg +1 -0
  4671. docsforge/themes/material/templates/.icons/material/card-multiple.svg +1 -0
  4672. docsforge/themes/material/templates/.icons/material/card-off-outline.svg +1 -0
  4673. docsforge/themes/material/templates/.icons/material/card-off.svg +1 -0
  4674. docsforge/themes/material/templates/.icons/material/card-outline.svg +1 -0
  4675. docsforge/themes/material/templates/.icons/material/card-plus-outline.svg +1 -0
  4676. docsforge/themes/material/templates/.icons/material/card-plus.svg +1 -0
  4677. docsforge/themes/material/templates/.icons/material/card-remove-outline.svg +1 -0
  4678. docsforge/themes/material/templates/.icons/material/card-remove.svg +1 -0
  4679. docsforge/themes/material/templates/.icons/material/card-search-outline.svg +1 -0
  4680. docsforge/themes/material/templates/.icons/material/card-search.svg +1 -0
  4681. docsforge/themes/material/templates/.icons/material/card-text-outline.svg +1 -0
  4682. docsforge/themes/material/templates/.icons/material/card-text.svg +1 -0
  4683. docsforge/themes/material/templates/.icons/material/card.svg +1 -0
  4684. docsforge/themes/material/templates/.icons/material/cards-club-outline.svg +1 -0
  4685. docsforge/themes/material/templates/.icons/material/cards-club.svg +1 -0
  4686. docsforge/themes/material/templates/.icons/material/cards-diamond-outline.svg +1 -0
  4687. docsforge/themes/material/templates/.icons/material/cards-diamond.svg +1 -0
  4688. docsforge/themes/material/templates/.icons/material/cards-heart-outline.svg +1 -0
  4689. docsforge/themes/material/templates/.icons/material/cards-heart.svg +1 -0
  4690. docsforge/themes/material/templates/.icons/material/cards-outline.svg +1 -0
  4691. docsforge/themes/material/templates/.icons/material/cards-playing-club-multiple-outline.svg +1 -0
  4692. docsforge/themes/material/templates/.icons/material/cards-playing-club-multiple.svg +1 -0
  4693. docsforge/themes/material/templates/.icons/material/cards-playing-club-outline.svg +1 -0
  4694. docsforge/themes/material/templates/.icons/material/cards-playing-club.svg +1 -0
  4695. docsforge/themes/material/templates/.icons/material/cards-playing-diamond-multiple-outline.svg +1 -0
  4696. docsforge/themes/material/templates/.icons/material/cards-playing-diamond-multiple.svg +1 -0
  4697. docsforge/themes/material/templates/.icons/material/cards-playing-diamond-outline.svg +1 -0
  4698. docsforge/themes/material/templates/.icons/material/cards-playing-diamond.svg +1 -0
  4699. docsforge/themes/material/templates/.icons/material/cards-playing-heart-multiple-outline.svg +1 -0
  4700. docsforge/themes/material/templates/.icons/material/cards-playing-heart-multiple.svg +1 -0
  4701. docsforge/themes/material/templates/.icons/material/cards-playing-heart-outline.svg +1 -0
  4702. docsforge/themes/material/templates/.icons/material/cards-playing-heart.svg +1 -0
  4703. docsforge/themes/material/templates/.icons/material/cards-playing-outline.svg +1 -0
  4704. docsforge/themes/material/templates/.icons/material/cards-playing-spade-multiple-outline.svg +1 -0
  4705. docsforge/themes/material/templates/.icons/material/cards-playing-spade-multiple.svg +1 -0
  4706. docsforge/themes/material/templates/.icons/material/cards-playing-spade-outline.svg +1 -0
  4707. docsforge/themes/material/templates/.icons/material/cards-playing-spade.svg +1 -0
  4708. docsforge/themes/material/templates/.icons/material/cards-playing.svg +1 -0
  4709. docsforge/themes/material/templates/.icons/material/cards-spade-outline.svg +1 -0
  4710. docsforge/themes/material/templates/.icons/material/cards-spade.svg +1 -0
  4711. docsforge/themes/material/templates/.icons/material/cards-variant.svg +1 -0
  4712. docsforge/themes/material/templates/.icons/material/cards.svg +1 -0
  4713. docsforge/themes/material/templates/.icons/material/carrot.svg +1 -0
  4714. docsforge/themes/material/templates/.icons/material/cart-arrow-down.svg +1 -0
  4715. docsforge/themes/material/templates/.icons/material/cart-arrow-right.svg +1 -0
  4716. docsforge/themes/material/templates/.icons/material/cart-arrow-up.svg +1 -0
  4717. docsforge/themes/material/templates/.icons/material/cart-check.svg +1 -0
  4718. docsforge/themes/material/templates/.icons/material/cart-heart.svg +1 -0
  4719. docsforge/themes/material/templates/.icons/material/cart-minus.svg +1 -0
  4720. docsforge/themes/material/templates/.icons/material/cart-off.svg +1 -0
  4721. docsforge/themes/material/templates/.icons/material/cart-outline.svg +1 -0
  4722. docsforge/themes/material/templates/.icons/material/cart-percent.svg +1 -0
  4723. docsforge/themes/material/templates/.icons/material/cart-plus.svg +1 -0
  4724. docsforge/themes/material/templates/.icons/material/cart-remove.svg +1 -0
  4725. docsforge/themes/material/templates/.icons/material/cart-variant.svg +1 -0
  4726. docsforge/themes/material/templates/.icons/material/cart.svg +1 -0
  4727. docsforge/themes/material/templates/.icons/material/case-sensitive-alt.svg +1 -0
  4728. docsforge/themes/material/templates/.icons/material/cash-100.svg +1 -0
  4729. docsforge/themes/material/templates/.icons/material/cash-check.svg +1 -0
  4730. docsforge/themes/material/templates/.icons/material/cash-clock.svg +1 -0
  4731. docsforge/themes/material/templates/.icons/material/cash-edit.svg +1 -0
  4732. docsforge/themes/material/templates/.icons/material/cash-fast.svg +1 -0
  4733. docsforge/themes/material/templates/.icons/material/cash-lock-open.svg +1 -0
  4734. docsforge/themes/material/templates/.icons/material/cash-lock.svg +1 -0
  4735. docsforge/themes/material/templates/.icons/material/cash-marker.svg +1 -0
  4736. docsforge/themes/material/templates/.icons/material/cash-minus.svg +1 -0
  4737. docsforge/themes/material/templates/.icons/material/cash-multiple.svg +1 -0
  4738. docsforge/themes/material/templates/.icons/material/cash-off.svg +1 -0
  4739. docsforge/themes/material/templates/.icons/material/cash-plus.svg +1 -0
  4740. docsforge/themes/material/templates/.icons/material/cash-refund.svg +1 -0
  4741. docsforge/themes/material/templates/.icons/material/cash-register.svg +1 -0
  4742. docsforge/themes/material/templates/.icons/material/cash-remove.svg +1 -0
  4743. docsforge/themes/material/templates/.icons/material/cash-sync.svg +1 -0
  4744. docsforge/themes/material/templates/.icons/material/cash.svg +1 -0
  4745. docsforge/themes/material/templates/.icons/material/cassette.svg +1 -0
  4746. docsforge/themes/material/templates/.icons/material/cast-audio-variant.svg +1 -0
  4747. docsforge/themes/material/templates/.icons/material/cast-audio.svg +1 -0
  4748. docsforge/themes/material/templates/.icons/material/cast-connected.svg +1 -0
  4749. docsforge/themes/material/templates/.icons/material/cast-education.svg +1 -0
  4750. docsforge/themes/material/templates/.icons/material/cast-off.svg +1 -0
  4751. docsforge/themes/material/templates/.icons/material/cast-variant.svg +1 -0
  4752. docsforge/themes/material/templates/.icons/material/cast.svg +1 -0
  4753. docsforge/themes/material/templates/.icons/material/castle.svg +1 -0
  4754. docsforge/themes/material/templates/.icons/material/cat.svg +1 -0
  4755. docsforge/themes/material/templates/.icons/material/cctv-off.svg +1 -0
  4756. docsforge/themes/material/templates/.icons/material/cctv.svg +1 -0
  4757. docsforge/themes/material/templates/.icons/material/ceiling-fan-light.svg +1 -0
  4758. docsforge/themes/material/templates/.icons/material/ceiling-fan.svg +1 -0
  4759. docsforge/themes/material/templates/.icons/material/ceiling-light-multiple-outline.svg +1 -0
  4760. docsforge/themes/material/templates/.icons/material/ceiling-light-multiple.svg +1 -0
  4761. docsforge/themes/material/templates/.icons/material/ceiling-light-outline.svg +1 -0
  4762. docsforge/themes/material/templates/.icons/material/ceiling-light.svg +1 -0
  4763. docsforge/themes/material/templates/.icons/material/cellphone-arrow-down-variant.svg +1 -0
  4764. docsforge/themes/material/templates/.icons/material/cellphone-arrow-down.svg +1 -0
  4765. docsforge/themes/material/templates/.icons/material/cellphone-basic.svg +1 -0
  4766. docsforge/themes/material/templates/.icons/material/cellphone-charging.svg +1 -0
  4767. docsforge/themes/material/templates/.icons/material/cellphone-check.svg +1 -0
  4768. docsforge/themes/material/templates/.icons/material/cellphone-cog.svg +1 -0
  4769. docsforge/themes/material/templates/.icons/material/cellphone-dock.svg +1 -0
  4770. docsforge/themes/material/templates/.icons/material/cellphone-information.svg +1 -0
  4771. docsforge/themes/material/templates/.icons/material/cellphone-key.svg +1 -0
  4772. docsforge/themes/material/templates/.icons/material/cellphone-link-off.svg +1 -0
  4773. docsforge/themes/material/templates/.icons/material/cellphone-link.svg +1 -0
  4774. docsforge/themes/material/templates/.icons/material/cellphone-lock.svg +1 -0
  4775. docsforge/themes/material/templates/.icons/material/cellphone-marker.svg +1 -0
  4776. docsforge/themes/material/templates/.icons/material/cellphone-message-off.svg +1 -0
  4777. docsforge/themes/material/templates/.icons/material/cellphone-message.svg +1 -0
  4778. docsforge/themes/material/templates/.icons/material/cellphone-nfc-off.svg +1 -0
  4779. docsforge/themes/material/templates/.icons/material/cellphone-nfc.svg +1 -0
  4780. docsforge/themes/material/templates/.icons/material/cellphone-off.svg +1 -0
  4781. docsforge/themes/material/templates/.icons/material/cellphone-play.svg +1 -0
  4782. docsforge/themes/material/templates/.icons/material/cellphone-remove.svg +1 -0
  4783. docsforge/themes/material/templates/.icons/material/cellphone-screenshot.svg +1 -0
  4784. docsforge/themes/material/templates/.icons/material/cellphone-settings.svg +1 -0
  4785. docsforge/themes/material/templates/.icons/material/cellphone-sound.svg +1 -0
  4786. docsforge/themes/material/templates/.icons/material/cellphone-text.svg +1 -0
  4787. docsforge/themes/material/templates/.icons/material/cellphone-wireless.svg +1 -0
  4788. docsforge/themes/material/templates/.icons/material/cellphone.svg +1 -0
  4789. docsforge/themes/material/templates/.icons/material/centos.svg +1 -0
  4790. docsforge/themes/material/templates/.icons/material/certificate-outline.svg +1 -0
  4791. docsforge/themes/material/templates/.icons/material/certificate.svg +1 -0
  4792. docsforge/themes/material/templates/.icons/material/chair-rolling.svg +1 -0
  4793. docsforge/themes/material/templates/.icons/material/chair-school.svg +1 -0
  4794. docsforge/themes/material/templates/.icons/material/chandelier.svg +1 -0
  4795. docsforge/themes/material/templates/.icons/material/charity-search.svg +1 -0
  4796. docsforge/themes/material/templates/.icons/material/charity.svg +1 -0
  4797. docsforge/themes/material/templates/.icons/material/chart-arc.svg +1 -0
  4798. docsforge/themes/material/templates/.icons/material/chart-areaspline-variant.svg +1 -0
  4799. docsforge/themes/material/templates/.icons/material/chart-areaspline.svg +1 -0
  4800. docsforge/themes/material/templates/.icons/material/chart-bar-stacked.svg +1 -0
  4801. docsforge/themes/material/templates/.icons/material/chart-bar.svg +1 -0
  4802. docsforge/themes/material/templates/.icons/material/chart-bell-curve-cumulative.svg +1 -0
  4803. docsforge/themes/material/templates/.icons/material/chart-bell-curve.svg +1 -0
  4804. docsforge/themes/material/templates/.icons/material/chart-box-multiple-outline.svg +1 -0
  4805. docsforge/themes/material/templates/.icons/material/chart-box-multiple.svg +1 -0
  4806. docsforge/themes/material/templates/.icons/material/chart-box-outline.svg +1 -0
  4807. docsforge/themes/material/templates/.icons/material/chart-box-plus-outline.svg +1 -0
  4808. docsforge/themes/material/templates/.icons/material/chart-box.svg +1 -0
  4809. docsforge/themes/material/templates/.icons/material/chart-bubble.svg +1 -0
  4810. docsforge/themes/material/templates/.icons/material/chart-donut-variant.svg +1 -0
  4811. docsforge/themes/material/templates/.icons/material/chart-donut.svg +1 -0
  4812. docsforge/themes/material/templates/.icons/material/chart-gantt.svg +1 -0
  4813. docsforge/themes/material/templates/.icons/material/chart-histogram.svg +1 -0
  4814. docsforge/themes/material/templates/.icons/material/chart-line-stacked.svg +1 -0
  4815. docsforge/themes/material/templates/.icons/material/chart-line-variant.svg +1 -0
  4816. docsforge/themes/material/templates/.icons/material/chart-line.svg +1 -0
  4817. docsforge/themes/material/templates/.icons/material/chart-multiline.svg +1 -0
  4818. docsforge/themes/material/templates/.icons/material/chart-multiple.svg +1 -0
  4819. docsforge/themes/material/templates/.icons/material/chart-pie-outline.svg +1 -0
  4820. docsforge/themes/material/templates/.icons/material/chart-pie.svg +1 -0
  4821. docsforge/themes/material/templates/.icons/material/chart-ppf.svg +1 -0
  4822. docsforge/themes/material/templates/.icons/material/chart-sankey-variant.svg +1 -0
  4823. docsforge/themes/material/templates/.icons/material/chart-sankey.svg +1 -0
  4824. docsforge/themes/material/templates/.icons/material/chart-scatter-plot-hexbin.svg +1 -0
  4825. docsforge/themes/material/templates/.icons/material/chart-scatter-plot.svg +1 -0
  4826. docsforge/themes/material/templates/.icons/material/chart-timeline-variant-shimmer.svg +1 -0
  4827. docsforge/themes/material/templates/.icons/material/chart-timeline-variant.svg +1 -0
  4828. docsforge/themes/material/templates/.icons/material/chart-timeline.svg +1 -0
  4829. docsforge/themes/material/templates/.icons/material/chart-tree.svg +1 -0
  4830. docsforge/themes/material/templates/.icons/material/chart-waterfall.svg +1 -0
  4831. docsforge/themes/material/templates/.icons/material/chat-alert-outline.svg +1 -0
  4832. docsforge/themes/material/templates/.icons/material/chat-alert.svg +1 -0
  4833. docsforge/themes/material/templates/.icons/material/chat-minus-outline.svg +1 -0
  4834. docsforge/themes/material/templates/.icons/material/chat-minus.svg +1 -0
  4835. docsforge/themes/material/templates/.icons/material/chat-outline.svg +1 -0
  4836. docsforge/themes/material/templates/.icons/material/chat-plus-outline.svg +1 -0
  4837. docsforge/themes/material/templates/.icons/material/chat-plus.svg +1 -0
  4838. docsforge/themes/material/templates/.icons/material/chat-processing-outline.svg +1 -0
  4839. docsforge/themes/material/templates/.icons/material/chat-processing.svg +1 -0
  4840. docsforge/themes/material/templates/.icons/material/chat-question-outline.svg +1 -0
  4841. docsforge/themes/material/templates/.icons/material/chat-question.svg +1 -0
  4842. docsforge/themes/material/templates/.icons/material/chat-remove-outline.svg +1 -0
  4843. docsforge/themes/material/templates/.icons/material/chat-remove.svg +1 -0
  4844. docsforge/themes/material/templates/.icons/material/chat-sleep-outline.svg +1 -0
  4845. docsforge/themes/material/templates/.icons/material/chat-sleep.svg +1 -0
  4846. docsforge/themes/material/templates/.icons/material/chat.svg +1 -0
  4847. docsforge/themes/material/templates/.icons/material/check-all.svg +1 -0
  4848. docsforge/themes/material/templates/.icons/material/check-bold.svg +1 -0
  4849. docsforge/themes/material/templates/.icons/material/check-circle-outline.svg +1 -0
  4850. docsforge/themes/material/templates/.icons/material/check-circle.svg +1 -0
  4851. docsforge/themes/material/templates/.icons/material/check-decagram-outline.svg +1 -0
  4852. docsforge/themes/material/templates/.icons/material/check-decagram.svg +1 -0
  4853. docsforge/themes/material/templates/.icons/material/check-network-outline.svg +1 -0
  4854. docsforge/themes/material/templates/.icons/material/check-network.svg +1 -0
  4855. docsforge/themes/material/templates/.icons/material/check-outline.svg +1 -0
  4856. docsforge/themes/material/templates/.icons/material/check-underline-circle-outline.svg +1 -0
  4857. docsforge/themes/material/templates/.icons/material/check-underline-circle.svg +1 -0
  4858. docsforge/themes/material/templates/.icons/material/check-underline.svg +1 -0
  4859. docsforge/themes/material/templates/.icons/material/check.svg +1 -0
  4860. docsforge/themes/material/templates/.icons/material/checkbook-arrow-left.svg +1 -0
  4861. docsforge/themes/material/templates/.icons/material/checkbook-arrow-right.svg +1 -0
  4862. docsforge/themes/material/templates/.icons/material/checkbook.svg +1 -0
  4863. docsforge/themes/material/templates/.icons/material/checkbox-blank-badge-outline.svg +1 -0
  4864. docsforge/themes/material/templates/.icons/material/checkbox-blank-badge.svg +1 -0
  4865. docsforge/themes/material/templates/.icons/material/checkbox-blank-circle-outline.svg +1 -0
  4866. docsforge/themes/material/templates/.icons/material/checkbox-blank-circle.svg +1 -0
  4867. docsforge/themes/material/templates/.icons/material/checkbox-blank-off-outline.svg +1 -0
  4868. docsforge/themes/material/templates/.icons/material/checkbox-blank-off.svg +1 -0
  4869. docsforge/themes/material/templates/.icons/material/checkbox-blank-outline.svg +1 -0
  4870. docsforge/themes/material/templates/.icons/material/checkbox-blank.svg +1 -0
  4871. docsforge/themes/material/templates/.icons/material/checkbox-intermediate-variant.svg +1 -0
  4872. docsforge/themes/material/templates/.icons/material/checkbox-intermediate.svg +1 -0
  4873. docsforge/themes/material/templates/.icons/material/checkbox-marked-circle-auto-outline.svg +1 -0
  4874. docsforge/themes/material/templates/.icons/material/checkbox-marked-circle-minus-outline.svg +1 -0
  4875. docsforge/themes/material/templates/.icons/material/checkbox-marked-circle-outline.svg +1 -0
  4876. docsforge/themes/material/templates/.icons/material/checkbox-marked-circle-plus-outline.svg +1 -0
  4877. docsforge/themes/material/templates/.icons/material/checkbox-marked-circle.svg +1 -0
  4878. docsforge/themes/material/templates/.icons/material/checkbox-marked-outline.svg +1 -0
  4879. docsforge/themes/material/templates/.icons/material/checkbox-marked.svg +1 -0
  4880. docsforge/themes/material/templates/.icons/material/checkbox-multiple-blank-circle-outline.svg +1 -0
  4881. docsforge/themes/material/templates/.icons/material/checkbox-multiple-blank-circle.svg +1 -0
  4882. docsforge/themes/material/templates/.icons/material/checkbox-multiple-blank-outline.svg +1 -0
  4883. docsforge/themes/material/templates/.icons/material/checkbox-multiple-blank.svg +1 -0
  4884. docsforge/themes/material/templates/.icons/material/checkbox-multiple-marked-circle-outline.svg +1 -0
  4885. docsforge/themes/material/templates/.icons/material/checkbox-multiple-marked-circle.svg +1 -0
  4886. docsforge/themes/material/templates/.icons/material/checkbox-multiple-marked-outline.svg +1 -0
  4887. docsforge/themes/material/templates/.icons/material/checkbox-multiple-marked.svg +1 -0
  4888. docsforge/themes/material/templates/.icons/material/checkbox-multiple-outline.svg +1 -0
  4889. docsforge/themes/material/templates/.icons/material/checkbox-outline.svg +1 -0
  4890. docsforge/themes/material/templates/.icons/material/checkerboard-minus.svg +1 -0
  4891. docsforge/themes/material/templates/.icons/material/checkerboard-plus.svg +1 -0
  4892. docsforge/themes/material/templates/.icons/material/checkerboard-remove.svg +1 -0
  4893. docsforge/themes/material/templates/.icons/material/checkerboard.svg +1 -0
  4894. docsforge/themes/material/templates/.icons/material/cheese-off.svg +1 -0
  4895. docsforge/themes/material/templates/.icons/material/cheese.svg +1 -0
  4896. docsforge/themes/material/templates/.icons/material/chef-hat.svg +1 -0
  4897. docsforge/themes/material/templates/.icons/material/chemical-weapon.svg +1 -0
  4898. docsforge/themes/material/templates/.icons/material/chess-bishop.svg +1 -0
  4899. docsforge/themes/material/templates/.icons/material/chess-king.svg +1 -0
  4900. docsforge/themes/material/templates/.icons/material/chess-knight.svg +1 -0
  4901. docsforge/themes/material/templates/.icons/material/chess-pawn.svg +1 -0
  4902. docsforge/themes/material/templates/.icons/material/chess-queen.svg +1 -0
  4903. docsforge/themes/material/templates/.icons/material/chess-rook.svg +1 -0
  4904. docsforge/themes/material/templates/.icons/material/chevron-double-down.svg +1 -0
  4905. docsforge/themes/material/templates/.icons/material/chevron-double-left.svg +1 -0
  4906. docsforge/themes/material/templates/.icons/material/chevron-double-right.svg +1 -0
  4907. docsforge/themes/material/templates/.icons/material/chevron-double-up.svg +1 -0
  4908. docsforge/themes/material/templates/.icons/material/chevron-down-box-outline.svg +1 -0
  4909. docsforge/themes/material/templates/.icons/material/chevron-down-box.svg +1 -0
  4910. docsforge/themes/material/templates/.icons/material/chevron-down-circle-outline.svg +1 -0
  4911. docsforge/themes/material/templates/.icons/material/chevron-down-circle.svg +1 -0
  4912. docsforge/themes/material/templates/.icons/material/chevron-down.svg +1 -0
  4913. docsforge/themes/material/templates/.icons/material/chevron-left-box-outline.svg +1 -0
  4914. docsforge/themes/material/templates/.icons/material/chevron-left-box.svg +1 -0
  4915. docsforge/themes/material/templates/.icons/material/chevron-left-circle-outline.svg +1 -0
  4916. docsforge/themes/material/templates/.icons/material/chevron-left-circle.svg +1 -0
  4917. docsforge/themes/material/templates/.icons/material/chevron-left.svg +1 -0
  4918. docsforge/themes/material/templates/.icons/material/chevron-right-box-outline.svg +1 -0
  4919. docsforge/themes/material/templates/.icons/material/chevron-right-box.svg +1 -0
  4920. docsforge/themes/material/templates/.icons/material/chevron-right-circle-outline.svg +1 -0
  4921. docsforge/themes/material/templates/.icons/material/chevron-right-circle.svg +1 -0
  4922. docsforge/themes/material/templates/.icons/material/chevron-right.svg +1 -0
  4923. docsforge/themes/material/templates/.icons/material/chevron-triple-down.svg +1 -0
  4924. docsforge/themes/material/templates/.icons/material/chevron-triple-left.svg +1 -0
  4925. docsforge/themes/material/templates/.icons/material/chevron-triple-right.svg +1 -0
  4926. docsforge/themes/material/templates/.icons/material/chevron-triple-up.svg +1 -0
  4927. docsforge/themes/material/templates/.icons/material/chevron-up-box-outline.svg +1 -0
  4928. docsforge/themes/material/templates/.icons/material/chevron-up-box.svg +1 -0
  4929. docsforge/themes/material/templates/.icons/material/chevron-up-circle-outline.svg +1 -0
  4930. docsforge/themes/material/templates/.icons/material/chevron-up-circle.svg +1 -0
  4931. docsforge/themes/material/templates/.icons/material/chevron-up.svg +1 -0
  4932. docsforge/themes/material/templates/.icons/material/chili-alert-outline.svg +1 -0
  4933. docsforge/themes/material/templates/.icons/material/chili-alert.svg +1 -0
  4934. docsforge/themes/material/templates/.icons/material/chili-hot-outline.svg +1 -0
  4935. docsforge/themes/material/templates/.icons/material/chili-hot.svg +1 -0
  4936. docsforge/themes/material/templates/.icons/material/chili-medium-outline.svg +1 -0
  4937. docsforge/themes/material/templates/.icons/material/chili-medium.svg +1 -0
  4938. docsforge/themes/material/templates/.icons/material/chili-mild-outline.svg +1 -0
  4939. docsforge/themes/material/templates/.icons/material/chili-mild.svg +1 -0
  4940. docsforge/themes/material/templates/.icons/material/chili-off-outline.svg +1 -0
  4941. docsforge/themes/material/templates/.icons/material/chili-off.svg +1 -0
  4942. docsforge/themes/material/templates/.icons/material/chip.svg +1 -0
  4943. docsforge/themes/material/templates/.icons/material/church-outline.svg +1 -0
  4944. docsforge/themes/material/templates/.icons/material/church.svg +1 -0
  4945. docsforge/themes/material/templates/.icons/material/cigar-off.svg +1 -0
  4946. docsforge/themes/material/templates/.icons/material/cigar.svg +1 -0
  4947. docsforge/themes/material/templates/.icons/material/circle-box-outline.svg +1 -0
  4948. docsforge/themes/material/templates/.icons/material/circle-box.svg +1 -0
  4949. docsforge/themes/material/templates/.icons/material/circle-double.svg +1 -0
  4950. docsforge/themes/material/templates/.icons/material/circle-edit-outline.svg +1 -0
  4951. docsforge/themes/material/templates/.icons/material/circle-expand.svg +1 -0
  4952. docsforge/themes/material/templates/.icons/material/circle-half-full.svg +1 -0
  4953. docsforge/themes/material/templates/.icons/material/circle-half.svg +1 -0
  4954. docsforge/themes/material/templates/.icons/material/circle-medium.svg +1 -0
  4955. docsforge/themes/material/templates/.icons/material/circle-multiple-outline.svg +1 -0
  4956. docsforge/themes/material/templates/.icons/material/circle-multiple.svg +1 -0
  4957. docsforge/themes/material/templates/.icons/material/circle-off-outline.svg +1 -0
  4958. docsforge/themes/material/templates/.icons/material/circle-opacity.svg +1 -0
  4959. docsforge/themes/material/templates/.icons/material/circle-outline.svg +1 -0
  4960. docsforge/themes/material/templates/.icons/material/circle-slice-1.svg +1 -0
  4961. docsforge/themes/material/templates/.icons/material/circle-slice-2.svg +1 -0
  4962. docsforge/themes/material/templates/.icons/material/circle-slice-3.svg +1 -0
  4963. docsforge/themes/material/templates/.icons/material/circle-slice-4.svg +1 -0
  4964. docsforge/themes/material/templates/.icons/material/circle-slice-5.svg +1 -0
  4965. docsforge/themes/material/templates/.icons/material/circle-slice-6.svg +1 -0
  4966. docsforge/themes/material/templates/.icons/material/circle-slice-7.svg +1 -0
  4967. docsforge/themes/material/templates/.icons/material/circle-slice-8.svg +1 -0
  4968. docsforge/themes/material/templates/.icons/material/circle-small.svg +1 -0
  4969. docsforge/themes/material/templates/.icons/material/circle.svg +1 -0
  4970. docsforge/themes/material/templates/.icons/material/circular-saw.svg +1 -0
  4971. docsforge/themes/material/templates/.icons/material/city-switch.svg +1 -0
  4972. docsforge/themes/material/templates/.icons/material/city-variant-outline.svg +1 -0
  4973. docsforge/themes/material/templates/.icons/material/city-variant.svg +1 -0
  4974. docsforge/themes/material/templates/.icons/material/city.svg +1 -0
  4975. docsforge/themes/material/templates/.icons/material/clipboard-account-outline.svg +1 -0
  4976. docsforge/themes/material/templates/.icons/material/clipboard-account.svg +1 -0
  4977. docsforge/themes/material/templates/.icons/material/clipboard-alert-outline.svg +1 -0
  4978. docsforge/themes/material/templates/.icons/material/clipboard-alert.svg +1 -0
  4979. docsforge/themes/material/templates/.icons/material/clipboard-arrow-down-outline.svg +1 -0
  4980. docsforge/themes/material/templates/.icons/material/clipboard-arrow-down.svg +1 -0
  4981. docsforge/themes/material/templates/.icons/material/clipboard-arrow-left-outline.svg +1 -0
  4982. docsforge/themes/material/templates/.icons/material/clipboard-arrow-left.svg +1 -0
  4983. docsforge/themes/material/templates/.icons/material/clipboard-arrow-right-outline.svg +1 -0
  4984. docsforge/themes/material/templates/.icons/material/clipboard-arrow-right.svg +1 -0
  4985. docsforge/themes/material/templates/.icons/material/clipboard-arrow-up-outline.svg +1 -0
  4986. docsforge/themes/material/templates/.icons/material/clipboard-arrow-up.svg +1 -0
  4987. docsforge/themes/material/templates/.icons/material/clipboard-check-multiple-outline.svg +1 -0
  4988. docsforge/themes/material/templates/.icons/material/clipboard-check-multiple.svg +1 -0
  4989. docsforge/themes/material/templates/.icons/material/clipboard-check-outline.svg +1 -0
  4990. docsforge/themes/material/templates/.icons/material/clipboard-check.svg +1 -0
  4991. docsforge/themes/material/templates/.icons/material/clipboard-clock-outline.svg +1 -0
  4992. docsforge/themes/material/templates/.icons/material/clipboard-clock.svg +1 -0
  4993. docsforge/themes/material/templates/.icons/material/clipboard-edit-outline.svg +1 -0
  4994. docsforge/themes/material/templates/.icons/material/clipboard-edit.svg +1 -0
  4995. docsforge/themes/material/templates/.icons/material/clipboard-file-outline.svg +1 -0
  4996. docsforge/themes/material/templates/.icons/material/clipboard-file.svg +1 -0
  4997. docsforge/themes/material/templates/.icons/material/clipboard-flow-outline.svg +1 -0
  4998. docsforge/themes/material/templates/.icons/material/clipboard-flow.svg +1 -0
  4999. docsforge/themes/material/templates/.icons/material/clipboard-list-outline.svg +1 -0
  5000. docsforge/themes/material/templates/.icons/material/clipboard-list.svg +1 -0
  5001. docsforge/themes/material/templates/.icons/material/clipboard-minus-outline.svg +1 -0
  5002. docsforge/themes/material/templates/.icons/material/clipboard-minus.svg +1 -0
  5003. docsforge/themes/material/templates/.icons/material/clipboard-multiple-outline.svg +1 -0
  5004. docsforge/themes/material/templates/.icons/material/clipboard-multiple.svg +1 -0
  5005. docsforge/themes/material/templates/.icons/material/clipboard-off-outline.svg +1 -0
  5006. docsforge/themes/material/templates/.icons/material/clipboard-off.svg +1 -0
  5007. docsforge/themes/material/templates/.icons/material/clipboard-outline.svg +1 -0
  5008. docsforge/themes/material/templates/.icons/material/clipboard-play-multiple-outline.svg +1 -0
  5009. docsforge/themes/material/templates/.icons/material/clipboard-play-multiple.svg +1 -0
  5010. docsforge/themes/material/templates/.icons/material/clipboard-play-outline.svg +1 -0
  5011. docsforge/themes/material/templates/.icons/material/clipboard-play.svg +1 -0
  5012. docsforge/themes/material/templates/.icons/material/clipboard-plus-outline.svg +1 -0
  5013. docsforge/themes/material/templates/.icons/material/clipboard-plus.svg +1 -0
  5014. docsforge/themes/material/templates/.icons/material/clipboard-pulse-outline.svg +1 -0
  5015. docsforge/themes/material/templates/.icons/material/clipboard-pulse.svg +1 -0
  5016. docsforge/themes/material/templates/.icons/material/clipboard-remove-outline.svg +1 -0
  5017. docsforge/themes/material/templates/.icons/material/clipboard-remove.svg +1 -0
  5018. docsforge/themes/material/templates/.icons/material/clipboard-search-outline.svg +1 -0
  5019. docsforge/themes/material/templates/.icons/material/clipboard-search.svg +1 -0
  5020. docsforge/themes/material/templates/.icons/material/clipboard-text-clock-outline.svg +1 -0
  5021. docsforge/themes/material/templates/.icons/material/clipboard-text-clock.svg +1 -0
  5022. docsforge/themes/material/templates/.icons/material/clipboard-text-multiple-outline.svg +1 -0
  5023. docsforge/themes/material/templates/.icons/material/clipboard-text-multiple.svg +1 -0
  5024. docsforge/themes/material/templates/.icons/material/clipboard-text-off-outline.svg +1 -0
  5025. docsforge/themes/material/templates/.icons/material/clipboard-text-off.svg +1 -0
  5026. docsforge/themes/material/templates/.icons/material/clipboard-text-outline.svg +1 -0
  5027. docsforge/themes/material/templates/.icons/material/clipboard-text-play-outline.svg +1 -0
  5028. docsforge/themes/material/templates/.icons/material/clipboard-text-play.svg +1 -0
  5029. docsforge/themes/material/templates/.icons/material/clipboard-text-search-outline.svg +1 -0
  5030. docsforge/themes/material/templates/.icons/material/clipboard-text-search.svg +1 -0
  5031. docsforge/themes/material/templates/.icons/material/clipboard-text.svg +1 -0
  5032. docsforge/themes/material/templates/.icons/material/clipboard.svg +1 -0
  5033. docsforge/themes/material/templates/.icons/material/clippy.svg +1 -0
  5034. docsforge/themes/material/templates/.icons/material/clock-alert-outline.svg +1 -0
  5035. docsforge/themes/material/templates/.icons/material/clock-alert.svg +1 -0
  5036. docsforge/themes/material/templates/.icons/material/clock-check-outline.svg +1 -0
  5037. docsforge/themes/material/templates/.icons/material/clock-check.svg +1 -0
  5038. docsforge/themes/material/templates/.icons/material/clock-digital.svg +1 -0
  5039. docsforge/themes/material/templates/.icons/material/clock-edit-outline.svg +1 -0
  5040. docsforge/themes/material/templates/.icons/material/clock-edit.svg +1 -0
  5041. docsforge/themes/material/templates/.icons/material/clock-end.svg +1 -0
  5042. docsforge/themes/material/templates/.icons/material/clock-fast.svg +1 -0
  5043. docsforge/themes/material/templates/.icons/material/clock-in.svg +1 -0
  5044. docsforge/themes/material/templates/.icons/material/clock-minus-outline.svg +1 -0
  5045. docsforge/themes/material/templates/.icons/material/clock-minus.svg +1 -0
  5046. docsforge/themes/material/templates/.icons/material/clock-out.svg +1 -0
  5047. docsforge/themes/material/templates/.icons/material/clock-outline.svg +1 -0
  5048. docsforge/themes/material/templates/.icons/material/clock-plus-outline.svg +1 -0
  5049. docsforge/themes/material/templates/.icons/material/clock-plus.svg +1 -0
  5050. docsforge/themes/material/templates/.icons/material/clock-remove-outline.svg +1 -0
  5051. docsforge/themes/material/templates/.icons/material/clock-remove.svg +1 -0
  5052. docsforge/themes/material/templates/.icons/material/clock-star-four-points-outline.svg +1 -0
  5053. docsforge/themes/material/templates/.icons/material/clock-star-four-points.svg +1 -0
  5054. docsforge/themes/material/templates/.icons/material/clock-start.svg +1 -0
  5055. docsforge/themes/material/templates/.icons/material/clock-time-eight-outline.svg +1 -0
  5056. docsforge/themes/material/templates/.icons/material/clock-time-eight.svg +1 -0
  5057. docsforge/themes/material/templates/.icons/material/clock-time-eleven-outline.svg +1 -0
  5058. docsforge/themes/material/templates/.icons/material/clock-time-eleven.svg +1 -0
  5059. docsforge/themes/material/templates/.icons/material/clock-time-five-outline.svg +1 -0
  5060. docsforge/themes/material/templates/.icons/material/clock-time-five.svg +1 -0
  5061. docsforge/themes/material/templates/.icons/material/clock-time-four-outline.svg +1 -0
  5062. docsforge/themes/material/templates/.icons/material/clock-time-four.svg +1 -0
  5063. docsforge/themes/material/templates/.icons/material/clock-time-nine-outline.svg +1 -0
  5064. docsforge/themes/material/templates/.icons/material/clock-time-nine.svg +1 -0
  5065. docsforge/themes/material/templates/.icons/material/clock-time-one-outline.svg +1 -0
  5066. docsforge/themes/material/templates/.icons/material/clock-time-one.svg +1 -0
  5067. docsforge/themes/material/templates/.icons/material/clock-time-seven-outline.svg +1 -0
  5068. docsforge/themes/material/templates/.icons/material/clock-time-seven.svg +1 -0
  5069. docsforge/themes/material/templates/.icons/material/clock-time-six-outline.svg +1 -0
  5070. docsforge/themes/material/templates/.icons/material/clock-time-six.svg +1 -0
  5071. docsforge/themes/material/templates/.icons/material/clock-time-ten-outline.svg +1 -0
  5072. docsforge/themes/material/templates/.icons/material/clock-time-ten.svg +1 -0
  5073. docsforge/themes/material/templates/.icons/material/clock-time-three-outline.svg +1 -0
  5074. docsforge/themes/material/templates/.icons/material/clock-time-three.svg +1 -0
  5075. docsforge/themes/material/templates/.icons/material/clock-time-twelve-outline.svg +1 -0
  5076. docsforge/themes/material/templates/.icons/material/clock-time-twelve.svg +1 -0
  5077. docsforge/themes/material/templates/.icons/material/clock-time-two-outline.svg +1 -0
  5078. docsforge/themes/material/templates/.icons/material/clock-time-two.svg +1 -0
  5079. docsforge/themes/material/templates/.icons/material/clock.svg +1 -0
  5080. docsforge/themes/material/templates/.icons/material/close-box-multiple-outline.svg +1 -0
  5081. docsforge/themes/material/templates/.icons/material/close-box-multiple.svg +1 -0
  5082. docsforge/themes/material/templates/.icons/material/close-box-outline.svg +1 -0
  5083. docsforge/themes/material/templates/.icons/material/close-box.svg +1 -0
  5084. docsforge/themes/material/templates/.icons/material/close-circle-multiple-outline.svg +1 -0
  5085. docsforge/themes/material/templates/.icons/material/close-circle-multiple.svg +1 -0
  5086. docsforge/themes/material/templates/.icons/material/close-circle-outline.svg +1 -0
  5087. docsforge/themes/material/templates/.icons/material/close-circle.svg +1 -0
  5088. docsforge/themes/material/templates/.icons/material/close-network-outline.svg +1 -0
  5089. docsforge/themes/material/templates/.icons/material/close-network.svg +1 -0
  5090. docsforge/themes/material/templates/.icons/material/close-octagon-outline.svg +1 -0
  5091. docsforge/themes/material/templates/.icons/material/close-octagon.svg +1 -0
  5092. docsforge/themes/material/templates/.icons/material/close-outline.svg +1 -0
  5093. docsforge/themes/material/templates/.icons/material/close-thick.svg +1 -0
  5094. docsforge/themes/material/templates/.icons/material/close.svg +1 -0
  5095. docsforge/themes/material/templates/.icons/material/closed-caption-outline.svg +1 -0
  5096. docsforge/themes/material/templates/.icons/material/closed-caption.svg +1 -0
  5097. docsforge/themes/material/templates/.icons/material/cloud-alert-outline.svg +1 -0
  5098. docsforge/themes/material/templates/.icons/material/cloud-alert.svg +1 -0
  5099. docsforge/themes/material/templates/.icons/material/cloud-arrow-down-outline.svg +1 -0
  5100. docsforge/themes/material/templates/.icons/material/cloud-arrow-down.svg +1 -0
  5101. docsforge/themes/material/templates/.icons/material/cloud-arrow-left-outline.svg +1 -0
  5102. docsforge/themes/material/templates/.icons/material/cloud-arrow-left.svg +1 -0
  5103. docsforge/themes/material/templates/.icons/material/cloud-arrow-right-outline.svg +1 -0
  5104. docsforge/themes/material/templates/.icons/material/cloud-arrow-right.svg +1 -0
  5105. docsforge/themes/material/templates/.icons/material/cloud-arrow-up-outline.svg +1 -0
  5106. docsforge/themes/material/templates/.icons/material/cloud-arrow-up.svg +1 -0
  5107. docsforge/themes/material/templates/.icons/material/cloud-braces.svg +1 -0
  5108. docsforge/themes/material/templates/.icons/material/cloud-cancel-outline.svg +1 -0
  5109. docsforge/themes/material/templates/.icons/material/cloud-cancel.svg +1 -0
  5110. docsforge/themes/material/templates/.icons/material/cloud-check-outline.svg +1 -0
  5111. docsforge/themes/material/templates/.icons/material/cloud-check-variant-outline.svg +1 -0
  5112. docsforge/themes/material/templates/.icons/material/cloud-check-variant.svg +1 -0
  5113. docsforge/themes/material/templates/.icons/material/cloud-check.svg +1 -0
  5114. docsforge/themes/material/templates/.icons/material/cloud-circle-outline.svg +1 -0
  5115. docsforge/themes/material/templates/.icons/material/cloud-circle.svg +1 -0
  5116. docsforge/themes/material/templates/.icons/material/cloud-clock-outline.svg +1 -0
  5117. docsforge/themes/material/templates/.icons/material/cloud-clock.svg +1 -0
  5118. docsforge/themes/material/templates/.icons/material/cloud-cog-outline.svg +1 -0
  5119. docsforge/themes/material/templates/.icons/material/cloud-cog.svg +1 -0
  5120. docsforge/themes/material/templates/.icons/material/cloud-download-outline.svg +1 -0
  5121. docsforge/themes/material/templates/.icons/material/cloud-download.svg +1 -0
  5122. docsforge/themes/material/templates/.icons/material/cloud-key-outline.svg +1 -0
  5123. docsforge/themes/material/templates/.icons/material/cloud-key.svg +1 -0
  5124. docsforge/themes/material/templates/.icons/material/cloud-lock-open-outline.svg +1 -0
  5125. docsforge/themes/material/templates/.icons/material/cloud-lock-open.svg +1 -0
  5126. docsforge/themes/material/templates/.icons/material/cloud-lock-outline.svg +1 -0
  5127. docsforge/themes/material/templates/.icons/material/cloud-lock.svg +1 -0
  5128. docsforge/themes/material/templates/.icons/material/cloud-minus-outline.svg +1 -0
  5129. docsforge/themes/material/templates/.icons/material/cloud-minus.svg +1 -0
  5130. docsforge/themes/material/templates/.icons/material/cloud-off-outline.svg +1 -0
  5131. docsforge/themes/material/templates/.icons/material/cloud-off.svg +1 -0
  5132. docsforge/themes/material/templates/.icons/material/cloud-outline.svg +1 -0
  5133. docsforge/themes/material/templates/.icons/material/cloud-percent-outline.svg +1 -0
  5134. docsforge/themes/material/templates/.icons/material/cloud-percent.svg +1 -0
  5135. docsforge/themes/material/templates/.icons/material/cloud-plus-outline.svg +1 -0
  5136. docsforge/themes/material/templates/.icons/material/cloud-plus.svg +1 -0
  5137. docsforge/themes/material/templates/.icons/material/cloud-print-outline.svg +1 -0
  5138. docsforge/themes/material/templates/.icons/material/cloud-print.svg +1 -0
  5139. docsforge/themes/material/templates/.icons/material/cloud-question-outline.svg +1 -0
  5140. docsforge/themes/material/templates/.icons/material/cloud-question.svg +1 -0
  5141. docsforge/themes/material/templates/.icons/material/cloud-refresh-outline.svg +1 -0
  5142. docsforge/themes/material/templates/.icons/material/cloud-refresh-variant-outline.svg +1 -0
  5143. docsforge/themes/material/templates/.icons/material/cloud-refresh-variant.svg +1 -0
  5144. docsforge/themes/material/templates/.icons/material/cloud-refresh.svg +1 -0
  5145. docsforge/themes/material/templates/.icons/material/cloud-remove-outline.svg +1 -0
  5146. docsforge/themes/material/templates/.icons/material/cloud-remove.svg +1 -0
  5147. docsforge/themes/material/templates/.icons/material/cloud-search-outline.svg +1 -0
  5148. docsforge/themes/material/templates/.icons/material/cloud-search.svg +1 -0
  5149. docsforge/themes/material/templates/.icons/material/cloud-sync-outline.svg +1 -0
  5150. docsforge/themes/material/templates/.icons/material/cloud-sync.svg +1 -0
  5151. docsforge/themes/material/templates/.icons/material/cloud-tags.svg +1 -0
  5152. docsforge/themes/material/templates/.icons/material/cloud-upload-outline.svg +1 -0
  5153. docsforge/themes/material/templates/.icons/material/cloud-upload.svg +1 -0
  5154. docsforge/themes/material/templates/.icons/material/cloud.svg +1 -0
  5155. docsforge/themes/material/templates/.icons/material/clouds.svg +1 -0
  5156. docsforge/themes/material/templates/.icons/material/clover-outline.svg +1 -0
  5157. docsforge/themes/material/templates/.icons/material/clover.svg +1 -0
  5158. docsforge/themes/material/templates/.icons/material/coach-lamp-variant.svg +1 -0
  5159. docsforge/themes/material/templates/.icons/material/coach-lamp.svg +1 -0
  5160. docsforge/themes/material/templates/.icons/material/coat-rack.svg +1 -0
  5161. docsforge/themes/material/templates/.icons/material/code-array.svg +1 -0
  5162. docsforge/themes/material/templates/.icons/material/code-block-braces.svg +1 -0
  5163. docsforge/themes/material/templates/.icons/material/code-block-brackets.svg +1 -0
  5164. docsforge/themes/material/templates/.icons/material/code-block-parentheses.svg +1 -0
  5165. docsforge/themes/material/templates/.icons/material/code-block-tags.svg +1 -0
  5166. docsforge/themes/material/templates/.icons/material/code-braces-box.svg +1 -0
  5167. docsforge/themes/material/templates/.icons/material/code-braces.svg +1 -0
  5168. docsforge/themes/material/templates/.icons/material/code-brackets.svg +1 -0
  5169. docsforge/themes/material/templates/.icons/material/code-equal.svg +1 -0
  5170. docsforge/themes/material/templates/.icons/material/code-greater-than-or-equal.svg +1 -0
  5171. docsforge/themes/material/templates/.icons/material/code-greater-than.svg +1 -0
  5172. docsforge/themes/material/templates/.icons/material/code-json.svg +1 -0
  5173. docsforge/themes/material/templates/.icons/material/code-less-than-or-equal.svg +1 -0
  5174. docsforge/themes/material/templates/.icons/material/code-less-than.svg +1 -0
  5175. docsforge/themes/material/templates/.icons/material/code-not-equal-variant.svg +1 -0
  5176. docsforge/themes/material/templates/.icons/material/code-not-equal.svg +1 -0
  5177. docsforge/themes/material/templates/.icons/material/code-parentheses-box.svg +1 -0
  5178. docsforge/themes/material/templates/.icons/material/code-parentheses.svg +1 -0
  5179. docsforge/themes/material/templates/.icons/material/code-string.svg +1 -0
  5180. docsforge/themes/material/templates/.icons/material/code-tags-check.svg +1 -0
  5181. docsforge/themes/material/templates/.icons/material/code-tags.svg +1 -0
  5182. docsforge/themes/material/templates/.icons/material/codepen.svg +1 -0
  5183. docsforge/themes/material/templates/.icons/material/coffee-maker-check-outline.svg +1 -0
  5184. docsforge/themes/material/templates/.icons/material/coffee-maker-check.svg +1 -0
  5185. docsforge/themes/material/templates/.icons/material/coffee-maker-outline.svg +1 -0
  5186. docsforge/themes/material/templates/.icons/material/coffee-maker.svg +1 -0
  5187. docsforge/themes/material/templates/.icons/material/coffee-off-outline.svg +1 -0
  5188. docsforge/themes/material/templates/.icons/material/coffee-off.svg +1 -0
  5189. docsforge/themes/material/templates/.icons/material/coffee-outline.svg +1 -0
  5190. docsforge/themes/material/templates/.icons/material/coffee-to-go-outline.svg +1 -0
  5191. docsforge/themes/material/templates/.icons/material/coffee-to-go.svg +1 -0
  5192. docsforge/themes/material/templates/.icons/material/coffee.svg +1 -0
  5193. docsforge/themes/material/templates/.icons/material/coffin.svg +1 -0
  5194. docsforge/themes/material/templates/.icons/material/cog-box.svg +1 -0
  5195. docsforge/themes/material/templates/.icons/material/cog-clockwise.svg +1 -0
  5196. docsforge/themes/material/templates/.icons/material/cog-counterclockwise.svg +1 -0
  5197. docsforge/themes/material/templates/.icons/material/cog-off-outline.svg +1 -0
  5198. docsforge/themes/material/templates/.icons/material/cog-off.svg +1 -0
  5199. docsforge/themes/material/templates/.icons/material/cog-outline.svg +1 -0
  5200. docsforge/themes/material/templates/.icons/material/cog-pause-outline.svg +1 -0
  5201. docsforge/themes/material/templates/.icons/material/cog-pause.svg +1 -0
  5202. docsforge/themes/material/templates/.icons/material/cog-play-outline.svg +1 -0
  5203. docsforge/themes/material/templates/.icons/material/cog-play.svg +1 -0
  5204. docsforge/themes/material/templates/.icons/material/cog-refresh-outline.svg +1 -0
  5205. docsforge/themes/material/templates/.icons/material/cog-refresh.svg +1 -0
  5206. docsforge/themes/material/templates/.icons/material/cog-stop-outline.svg +1 -0
  5207. docsforge/themes/material/templates/.icons/material/cog-stop.svg +1 -0
  5208. docsforge/themes/material/templates/.icons/material/cog-sync-outline.svg +1 -0
  5209. docsforge/themes/material/templates/.icons/material/cog-sync.svg +1 -0
  5210. docsforge/themes/material/templates/.icons/material/cog-transfer-outline.svg +1 -0
  5211. docsforge/themes/material/templates/.icons/material/cog-transfer.svg +1 -0
  5212. docsforge/themes/material/templates/.icons/material/cog.svg +1 -0
  5213. docsforge/themes/material/templates/.icons/material/cogs.svg +1 -0
  5214. docsforge/themes/material/templates/.icons/material/collage.svg +1 -0
  5215. docsforge/themes/material/templates/.icons/material/collapse-all-outline.svg +1 -0
  5216. docsforge/themes/material/templates/.icons/material/collapse-all.svg +1 -0
  5217. docsforge/themes/material/templates/.icons/material/color-helper.svg +1 -0
  5218. docsforge/themes/material/templates/.icons/material/comma-box-outline.svg +1 -0
  5219. docsforge/themes/material/templates/.icons/material/comma-box.svg +1 -0
  5220. docsforge/themes/material/templates/.icons/material/comma-circle-outline.svg +1 -0
  5221. docsforge/themes/material/templates/.icons/material/comma-circle.svg +1 -0
  5222. docsforge/themes/material/templates/.icons/material/comma.svg +1 -0
  5223. docsforge/themes/material/templates/.icons/material/comment-account-outline.svg +1 -0
  5224. docsforge/themes/material/templates/.icons/material/comment-account.svg +1 -0
  5225. docsforge/themes/material/templates/.icons/material/comment-alert-outline.svg +1 -0
  5226. docsforge/themes/material/templates/.icons/material/comment-alert.svg +1 -0
  5227. docsforge/themes/material/templates/.icons/material/comment-arrow-left-outline.svg +1 -0
  5228. docsforge/themes/material/templates/.icons/material/comment-arrow-left.svg +1 -0
  5229. docsforge/themes/material/templates/.icons/material/comment-arrow-right-outline.svg +1 -0
  5230. docsforge/themes/material/templates/.icons/material/comment-arrow-right.svg +1 -0
  5231. docsforge/themes/material/templates/.icons/material/comment-bookmark-outline.svg +1 -0
  5232. docsforge/themes/material/templates/.icons/material/comment-bookmark.svg +1 -0
  5233. docsforge/themes/material/templates/.icons/material/comment-check-outline.svg +1 -0
  5234. docsforge/themes/material/templates/.icons/material/comment-check.svg +1 -0
  5235. docsforge/themes/material/templates/.icons/material/comment-edit-outline.svg +1 -0
  5236. docsforge/themes/material/templates/.icons/material/comment-edit.svg +1 -0
  5237. docsforge/themes/material/templates/.icons/material/comment-eye-outline.svg +1 -0
  5238. docsforge/themes/material/templates/.icons/material/comment-eye.svg +1 -0
  5239. docsforge/themes/material/templates/.icons/material/comment-flash-outline.svg +1 -0
  5240. docsforge/themes/material/templates/.icons/material/comment-flash.svg +1 -0
  5241. docsforge/themes/material/templates/.icons/material/comment-minus-outline.svg +1 -0
  5242. docsforge/themes/material/templates/.icons/material/comment-minus.svg +1 -0
  5243. docsforge/themes/material/templates/.icons/material/comment-multiple-outline.svg +1 -0
  5244. docsforge/themes/material/templates/.icons/material/comment-multiple.svg +1 -0
  5245. docsforge/themes/material/templates/.icons/material/comment-off-outline.svg +1 -0
  5246. docsforge/themes/material/templates/.icons/material/comment-off.svg +1 -0
  5247. docsforge/themes/material/templates/.icons/material/comment-outline.svg +1 -0
  5248. docsforge/themes/material/templates/.icons/material/comment-plus-outline.svg +1 -0
  5249. docsforge/themes/material/templates/.icons/material/comment-plus.svg +1 -0
  5250. docsforge/themes/material/templates/.icons/material/comment-processing-outline.svg +1 -0
  5251. docsforge/themes/material/templates/.icons/material/comment-processing.svg +1 -0
  5252. docsforge/themes/material/templates/.icons/material/comment-question-outline.svg +1 -0
  5253. docsforge/themes/material/templates/.icons/material/comment-question.svg +1 -0
  5254. docsforge/themes/material/templates/.icons/material/comment-quote-outline.svg +1 -0
  5255. docsforge/themes/material/templates/.icons/material/comment-quote.svg +1 -0
  5256. docsforge/themes/material/templates/.icons/material/comment-remove-outline.svg +1 -0
  5257. docsforge/themes/material/templates/.icons/material/comment-remove.svg +1 -0
  5258. docsforge/themes/material/templates/.icons/material/comment-search-outline.svg +1 -0
  5259. docsforge/themes/material/templates/.icons/material/comment-search.svg +1 -0
  5260. docsforge/themes/material/templates/.icons/material/comment-text-multiple-outline.svg +1 -0
  5261. docsforge/themes/material/templates/.icons/material/comment-text-multiple.svg +1 -0
  5262. docsforge/themes/material/templates/.icons/material/comment-text-outline.svg +1 -0
  5263. docsforge/themes/material/templates/.icons/material/comment-text.svg +1 -0
  5264. docsforge/themes/material/templates/.icons/material/comment.svg +1 -0
  5265. docsforge/themes/material/templates/.icons/material/compare-horizontal.svg +1 -0
  5266. docsforge/themes/material/templates/.icons/material/compare-remove.svg +1 -0
  5267. docsforge/themes/material/templates/.icons/material/compare-vertical.svg +1 -0
  5268. docsforge/themes/material/templates/.icons/material/compare.svg +1 -0
  5269. docsforge/themes/material/templates/.icons/material/compass-off-outline.svg +1 -0
  5270. docsforge/themes/material/templates/.icons/material/compass-off.svg +1 -0
  5271. docsforge/themes/material/templates/.icons/material/compass-outline.svg +1 -0
  5272. docsforge/themes/material/templates/.icons/material/compass-rose.svg +1 -0
  5273. docsforge/themes/material/templates/.icons/material/compass.svg +1 -0
  5274. docsforge/themes/material/templates/.icons/material/compost.svg +1 -0
  5275. docsforge/themes/material/templates/.icons/material/cone-off.svg +1 -0
  5276. docsforge/themes/material/templates/.icons/material/cone.svg +1 -0
  5277. docsforge/themes/material/templates/.icons/material/connection.svg +1 -0
  5278. docsforge/themes/material/templates/.icons/material/console-line.svg +1 -0
  5279. docsforge/themes/material/templates/.icons/material/console-network-outline.svg +1 -0
  5280. docsforge/themes/material/templates/.icons/material/console-network.svg +1 -0
  5281. docsforge/themes/material/templates/.icons/material/console.svg +1 -0
  5282. docsforge/themes/material/templates/.icons/material/consolidate.svg +1 -0
  5283. docsforge/themes/material/templates/.icons/material/contactless-payment-circle-outline.svg +1 -0
  5284. docsforge/themes/material/templates/.icons/material/contactless-payment-circle.svg +1 -0
  5285. docsforge/themes/material/templates/.icons/material/contactless-payment.svg +1 -0
  5286. docsforge/themes/material/templates/.icons/material/contacts-outline.svg +1 -0
  5287. docsforge/themes/material/templates/.icons/material/contacts.svg +1 -0
  5288. docsforge/themes/material/templates/.icons/material/contain-end.svg +1 -0
  5289. docsforge/themes/material/templates/.icons/material/contain-start.svg +1 -0
  5290. docsforge/themes/material/templates/.icons/material/contain.svg +1 -0
  5291. docsforge/themes/material/templates/.icons/material/content-copy.svg +1 -0
  5292. docsforge/themes/material/templates/.icons/material/content-cut.svg +1 -0
  5293. docsforge/themes/material/templates/.icons/material/content-duplicate.svg +1 -0
  5294. docsforge/themes/material/templates/.icons/material/content-paste.svg +1 -0
  5295. docsforge/themes/material/templates/.icons/material/content-save-alert-outline.svg +1 -0
  5296. docsforge/themes/material/templates/.icons/material/content-save-alert.svg +1 -0
  5297. docsforge/themes/material/templates/.icons/material/content-save-all-outline.svg +1 -0
  5298. docsforge/themes/material/templates/.icons/material/content-save-all.svg +1 -0
  5299. docsforge/themes/material/templates/.icons/material/content-save-check-outline.svg +1 -0
  5300. docsforge/themes/material/templates/.icons/material/content-save-check.svg +1 -0
  5301. docsforge/themes/material/templates/.icons/material/content-save-cog-outline.svg +1 -0
  5302. docsforge/themes/material/templates/.icons/material/content-save-cog.svg +1 -0
  5303. docsforge/themes/material/templates/.icons/material/content-save-edit-outline.svg +1 -0
  5304. docsforge/themes/material/templates/.icons/material/content-save-edit.svg +1 -0
  5305. docsforge/themes/material/templates/.icons/material/content-save-minus-outline.svg +1 -0
  5306. docsforge/themes/material/templates/.icons/material/content-save-minus.svg +1 -0
  5307. docsforge/themes/material/templates/.icons/material/content-save-move-outline.svg +1 -0
  5308. docsforge/themes/material/templates/.icons/material/content-save-move.svg +1 -0
  5309. docsforge/themes/material/templates/.icons/material/content-save-off-outline.svg +1 -0
  5310. docsforge/themes/material/templates/.icons/material/content-save-off.svg +1 -0
  5311. docsforge/themes/material/templates/.icons/material/content-save-outline.svg +1 -0
  5312. docsforge/themes/material/templates/.icons/material/content-save-plus-outline.svg +1 -0
  5313. docsforge/themes/material/templates/.icons/material/content-save-plus.svg +1 -0
  5314. docsforge/themes/material/templates/.icons/material/content-save-settings-outline.svg +1 -0
  5315. docsforge/themes/material/templates/.icons/material/content-save-settings.svg +1 -0
  5316. docsforge/themes/material/templates/.icons/material/content-save.svg +1 -0
  5317. docsforge/themes/material/templates/.icons/material/contrast-box.svg +1 -0
  5318. docsforge/themes/material/templates/.icons/material/contrast-circle.svg +1 -0
  5319. docsforge/themes/material/templates/.icons/material/contrast.svg +1 -0
  5320. docsforge/themes/material/templates/.icons/material/controller-classic-outline.svg +1 -0
  5321. docsforge/themes/material/templates/.icons/material/controller-classic.svg +1 -0
  5322. docsforge/themes/material/templates/.icons/material/controller-off.svg +1 -0
  5323. docsforge/themes/material/templates/.icons/material/controller.svg +1 -0
  5324. docsforge/themes/material/templates/.icons/material/cookie-alert-outline.svg +1 -0
  5325. docsforge/themes/material/templates/.icons/material/cookie-alert.svg +1 -0
  5326. docsforge/themes/material/templates/.icons/material/cookie-check-outline.svg +1 -0
  5327. docsforge/themes/material/templates/.icons/material/cookie-check.svg +1 -0
  5328. docsforge/themes/material/templates/.icons/material/cookie-clock-outline.svg +1 -0
  5329. docsforge/themes/material/templates/.icons/material/cookie-clock.svg +1 -0
  5330. docsforge/themes/material/templates/.icons/material/cookie-cog-outline.svg +1 -0
  5331. docsforge/themes/material/templates/.icons/material/cookie-cog.svg +1 -0
  5332. docsforge/themes/material/templates/.icons/material/cookie-edit-outline.svg +1 -0
  5333. docsforge/themes/material/templates/.icons/material/cookie-edit.svg +1 -0
  5334. docsforge/themes/material/templates/.icons/material/cookie-lock-outline.svg +1 -0
  5335. docsforge/themes/material/templates/.icons/material/cookie-lock.svg +1 -0
  5336. docsforge/themes/material/templates/.icons/material/cookie-minus-outline.svg +1 -0
  5337. docsforge/themes/material/templates/.icons/material/cookie-minus.svg +1 -0
  5338. docsforge/themes/material/templates/.icons/material/cookie-off-outline.svg +1 -0
  5339. docsforge/themes/material/templates/.icons/material/cookie-off.svg +1 -0
  5340. docsforge/themes/material/templates/.icons/material/cookie-outline.svg +1 -0
  5341. docsforge/themes/material/templates/.icons/material/cookie-plus-outline.svg +1 -0
  5342. docsforge/themes/material/templates/.icons/material/cookie-plus.svg +1 -0
  5343. docsforge/themes/material/templates/.icons/material/cookie-refresh-outline.svg +1 -0
  5344. docsforge/themes/material/templates/.icons/material/cookie-refresh.svg +1 -0
  5345. docsforge/themes/material/templates/.icons/material/cookie-remove-outline.svg +1 -0
  5346. docsforge/themes/material/templates/.icons/material/cookie-remove.svg +1 -0
  5347. docsforge/themes/material/templates/.icons/material/cookie-settings-outline.svg +1 -0
  5348. docsforge/themes/material/templates/.icons/material/cookie-settings.svg +1 -0
  5349. docsforge/themes/material/templates/.icons/material/cookie.svg +1 -0
  5350. docsforge/themes/material/templates/.icons/material/coolant-temperature.svg +1 -0
  5351. docsforge/themes/material/templates/.icons/material/copyleft.svg +1 -0
  5352. docsforge/themes/material/templates/.icons/material/copyright.svg +1 -0
  5353. docsforge/themes/material/templates/.icons/material/cordova.svg +1 -0
  5354. docsforge/themes/material/templates/.icons/material/corn-off.svg +1 -0
  5355. docsforge/themes/material/templates/.icons/material/corn.svg +1 -0
  5356. docsforge/themes/material/templates/.icons/material/cosine-wave.svg +1 -0
  5357. docsforge/themes/material/templates/.icons/material/counter.svg +1 -0
  5358. docsforge/themes/material/templates/.icons/material/countertop-outline.svg +1 -0
  5359. docsforge/themes/material/templates/.icons/material/countertop.svg +1 -0
  5360. docsforge/themes/material/templates/.icons/material/cow-off.svg +1 -0
  5361. docsforge/themes/material/templates/.icons/material/cow.svg +1 -0
  5362. docsforge/themes/material/templates/.icons/material/cpu-32-bit.svg +1 -0
  5363. docsforge/themes/material/templates/.icons/material/cpu-64-bit.svg +1 -0
  5364. docsforge/themes/material/templates/.icons/material/cradle-outline.svg +1 -0
  5365. docsforge/themes/material/templates/.icons/material/cradle.svg +1 -0
  5366. docsforge/themes/material/templates/.icons/material/crane.svg +1 -0
  5367. docsforge/themes/material/templates/.icons/material/creation-outline.svg +1 -0
  5368. docsforge/themes/material/templates/.icons/material/creation.svg +1 -0
  5369. docsforge/themes/material/templates/.icons/material/creative-commons.svg +1 -0
  5370. docsforge/themes/material/templates/.icons/material/credit-card-check-outline.svg +1 -0
  5371. docsforge/themes/material/templates/.icons/material/credit-card-check.svg +1 -0
  5372. docsforge/themes/material/templates/.icons/material/credit-card-chip-outline.svg +1 -0
  5373. docsforge/themes/material/templates/.icons/material/credit-card-chip.svg +1 -0
  5374. docsforge/themes/material/templates/.icons/material/credit-card-clock-outline.svg +1 -0
  5375. docsforge/themes/material/templates/.icons/material/credit-card-clock.svg +1 -0
  5376. docsforge/themes/material/templates/.icons/material/credit-card-edit-outline.svg +1 -0
  5377. docsforge/themes/material/templates/.icons/material/credit-card-edit.svg +1 -0
  5378. docsforge/themes/material/templates/.icons/material/credit-card-fast-outline.svg +1 -0
  5379. docsforge/themes/material/templates/.icons/material/credit-card-fast.svg +1 -0
  5380. docsforge/themes/material/templates/.icons/material/credit-card-lock-outline.svg +1 -0
  5381. docsforge/themes/material/templates/.icons/material/credit-card-lock.svg +1 -0
  5382. docsforge/themes/material/templates/.icons/material/credit-card-marker-outline.svg +1 -0
  5383. docsforge/themes/material/templates/.icons/material/credit-card-marker.svg +1 -0
  5384. docsforge/themes/material/templates/.icons/material/credit-card-minus-outline.svg +1 -0
  5385. docsforge/themes/material/templates/.icons/material/credit-card-minus.svg +1 -0
  5386. docsforge/themes/material/templates/.icons/material/credit-card-multiple-outline.svg +1 -0
  5387. docsforge/themes/material/templates/.icons/material/credit-card-multiple.svg +1 -0
  5388. docsforge/themes/material/templates/.icons/material/credit-card-off-outline.svg +1 -0
  5389. docsforge/themes/material/templates/.icons/material/credit-card-off.svg +1 -0
  5390. docsforge/themes/material/templates/.icons/material/credit-card-outline.svg +1 -0
  5391. docsforge/themes/material/templates/.icons/material/credit-card-plus-outline.svg +1 -0
  5392. docsforge/themes/material/templates/.icons/material/credit-card-plus.svg +1 -0
  5393. docsforge/themes/material/templates/.icons/material/credit-card-refresh-outline.svg +1 -0
  5394. docsforge/themes/material/templates/.icons/material/credit-card-refresh.svg +1 -0
  5395. docsforge/themes/material/templates/.icons/material/credit-card-refund-outline.svg +1 -0
  5396. docsforge/themes/material/templates/.icons/material/credit-card-refund.svg +1 -0
  5397. docsforge/themes/material/templates/.icons/material/credit-card-remove-outline.svg +1 -0
  5398. docsforge/themes/material/templates/.icons/material/credit-card-remove.svg +1 -0
  5399. docsforge/themes/material/templates/.icons/material/credit-card-scan-outline.svg +1 -0
  5400. docsforge/themes/material/templates/.icons/material/credit-card-scan.svg +1 -0
  5401. docsforge/themes/material/templates/.icons/material/credit-card-search-outline.svg +1 -0
  5402. docsforge/themes/material/templates/.icons/material/credit-card-search.svg +1 -0
  5403. docsforge/themes/material/templates/.icons/material/credit-card-settings-outline.svg +1 -0
  5404. docsforge/themes/material/templates/.icons/material/credit-card-settings.svg +1 -0
  5405. docsforge/themes/material/templates/.icons/material/credit-card-sync-outline.svg +1 -0
  5406. docsforge/themes/material/templates/.icons/material/credit-card-sync.svg +1 -0
  5407. docsforge/themes/material/templates/.icons/material/credit-card-wireless-off-outline.svg +1 -0
  5408. docsforge/themes/material/templates/.icons/material/credit-card-wireless-off.svg +1 -0
  5409. docsforge/themes/material/templates/.icons/material/credit-card-wireless-outline.svg +1 -0
  5410. docsforge/themes/material/templates/.icons/material/credit-card-wireless.svg +1 -0
  5411. docsforge/themes/material/templates/.icons/material/credit-card.svg +1 -0
  5412. docsforge/themes/material/templates/.icons/material/cricket.svg +1 -0
  5413. docsforge/themes/material/templates/.icons/material/crop-free.svg +1 -0
  5414. docsforge/themes/material/templates/.icons/material/crop-landscape.svg +1 -0
  5415. docsforge/themes/material/templates/.icons/material/crop-portrait.svg +1 -0
  5416. docsforge/themes/material/templates/.icons/material/crop-rotate.svg +1 -0
  5417. docsforge/themes/material/templates/.icons/material/crop-square.svg +1 -0
  5418. docsforge/themes/material/templates/.icons/material/crop.svg +1 -0
  5419. docsforge/themes/material/templates/.icons/material/cross-bolnisi.svg +1 -0
  5420. docsforge/themes/material/templates/.icons/material/cross-celtic.svg +1 -0
  5421. docsforge/themes/material/templates/.icons/material/cross-outline.svg +1 -0
  5422. docsforge/themes/material/templates/.icons/material/cross.svg +1 -0
  5423. docsforge/themes/material/templates/.icons/material/crosshairs-gps.svg +1 -0
  5424. docsforge/themes/material/templates/.icons/material/crosshairs-off.svg +1 -0
  5425. docsforge/themes/material/templates/.icons/material/crosshairs-question.svg +1 -0
  5426. docsforge/themes/material/templates/.icons/material/crosshairs.svg +1 -0
  5427. docsforge/themes/material/templates/.icons/material/crowd.svg +1 -0
  5428. docsforge/themes/material/templates/.icons/material/crown-circle-outline.svg +1 -0
  5429. docsforge/themes/material/templates/.icons/material/crown-circle.svg +1 -0
  5430. docsforge/themes/material/templates/.icons/material/crown-outline.svg +1 -0
  5431. docsforge/themes/material/templates/.icons/material/crown.svg +1 -0
  5432. docsforge/themes/material/templates/.icons/material/cryengine.svg +1 -0
  5433. docsforge/themes/material/templates/.icons/material/crystal-ball.svg +1 -0
  5434. docsforge/themes/material/templates/.icons/material/cube-off-outline.svg +1 -0
  5435. docsforge/themes/material/templates/.icons/material/cube-off.svg +1 -0
  5436. docsforge/themes/material/templates/.icons/material/cube-outline.svg +1 -0
  5437. docsforge/themes/material/templates/.icons/material/cube-scan.svg +1 -0
  5438. docsforge/themes/material/templates/.icons/material/cube-send.svg +1 -0
  5439. docsforge/themes/material/templates/.icons/material/cube-unfolded.svg +1 -0
  5440. docsforge/themes/material/templates/.icons/material/cube.svg +1 -0
  5441. docsforge/themes/material/templates/.icons/material/cup-off-outline.svg +1 -0
  5442. docsforge/themes/material/templates/.icons/material/cup-off.svg +1 -0
  5443. docsforge/themes/material/templates/.icons/material/cup-outline.svg +1 -0
  5444. docsforge/themes/material/templates/.icons/material/cup-water.svg +1 -0
  5445. docsforge/themes/material/templates/.icons/material/cup.svg +1 -0
  5446. docsforge/themes/material/templates/.icons/material/cupboard-outline.svg +1 -0
  5447. docsforge/themes/material/templates/.icons/material/cupboard.svg +1 -0
  5448. docsforge/themes/material/templates/.icons/material/cupcake.svg +1 -0
  5449. docsforge/themes/material/templates/.icons/material/curling.svg +1 -0
  5450. docsforge/themes/material/templates/.icons/material/currency-bdt.svg +1 -0
  5451. docsforge/themes/material/templates/.icons/material/currency-brl.svg +1 -0
  5452. docsforge/themes/material/templates/.icons/material/currency-btc.svg +1 -0
  5453. docsforge/themes/material/templates/.icons/material/currency-cny.svg +1 -0
  5454. docsforge/themes/material/templates/.icons/material/currency-eth.svg +1 -0
  5455. docsforge/themes/material/templates/.icons/material/currency-eur-off.svg +1 -0
  5456. docsforge/themes/material/templates/.icons/material/currency-eur.svg +1 -0
  5457. docsforge/themes/material/templates/.icons/material/currency-fra.svg +1 -0
  5458. docsforge/themes/material/templates/.icons/material/currency-gbp.svg +1 -0
  5459. docsforge/themes/material/templates/.icons/material/currency-ils.svg +1 -0
  5460. docsforge/themes/material/templates/.icons/material/currency-inr.svg +1 -0
  5461. docsforge/themes/material/templates/.icons/material/currency-jpy.svg +1 -0
  5462. docsforge/themes/material/templates/.icons/material/currency-krw.svg +1 -0
  5463. docsforge/themes/material/templates/.icons/material/currency-kzt.svg +1 -0
  5464. docsforge/themes/material/templates/.icons/material/currency-mnt.svg +1 -0
  5465. docsforge/themes/material/templates/.icons/material/currency-ngn.svg +1 -0
  5466. docsforge/themes/material/templates/.icons/material/currency-php.svg +1 -0
  5467. docsforge/themes/material/templates/.icons/material/currency-rial.svg +1 -0
  5468. docsforge/themes/material/templates/.icons/material/currency-rub.svg +1 -0
  5469. docsforge/themes/material/templates/.icons/material/currency-rupee.svg +1 -0
  5470. docsforge/themes/material/templates/.icons/material/currency-sign.svg +1 -0
  5471. docsforge/themes/material/templates/.icons/material/currency-thb.svg +1 -0
  5472. docsforge/themes/material/templates/.icons/material/currency-try.svg +1 -0
  5473. docsforge/themes/material/templates/.icons/material/currency-twd.svg +1 -0
  5474. docsforge/themes/material/templates/.icons/material/currency-uah.svg +1 -0
  5475. docsforge/themes/material/templates/.icons/material/currency-usd-off.svg +1 -0
  5476. docsforge/themes/material/templates/.icons/material/currency-usd.svg +1 -0
  5477. docsforge/themes/material/templates/.icons/material/current-ac.svg +1 -0
  5478. docsforge/themes/material/templates/.icons/material/current-dc.svg +1 -0
  5479. docsforge/themes/material/templates/.icons/material/cursor-default-click-outline.svg +1 -0
  5480. docsforge/themes/material/templates/.icons/material/cursor-default-click.svg +1 -0
  5481. docsforge/themes/material/templates/.icons/material/cursor-default-gesture-outline.svg +1 -0
  5482. docsforge/themes/material/templates/.icons/material/cursor-default-gesture.svg +1 -0
  5483. docsforge/themes/material/templates/.icons/material/cursor-default-outline.svg +1 -0
  5484. docsforge/themes/material/templates/.icons/material/cursor-default.svg +1 -0
  5485. docsforge/themes/material/templates/.icons/material/cursor-move.svg +1 -0
  5486. docsforge/themes/material/templates/.icons/material/cursor-pointer.svg +1 -0
  5487. docsforge/themes/material/templates/.icons/material/cursor-text.svg +1 -0
  5488. docsforge/themes/material/templates/.icons/material/curtains-closed.svg +1 -0
  5489. docsforge/themes/material/templates/.icons/material/curtains.svg +1 -0
  5490. docsforge/themes/material/templates/.icons/material/cylinder-off.svg +1 -0
  5491. docsforge/themes/material/templates/.icons/material/cylinder.svg +1 -0
  5492. docsforge/themes/material/templates/.icons/material/dance-ballroom.svg +1 -0
  5493. docsforge/themes/material/templates/.icons/material/dance-pole.svg +1 -0
  5494. docsforge/themes/material/templates/.icons/material/data-matrix-edit.svg +1 -0
  5495. docsforge/themes/material/templates/.icons/material/data-matrix-minus.svg +1 -0
  5496. docsforge/themes/material/templates/.icons/material/data-matrix-plus.svg +1 -0
  5497. docsforge/themes/material/templates/.icons/material/data-matrix-remove.svg +1 -0
  5498. docsforge/themes/material/templates/.icons/material/data-matrix-scan.svg +1 -0
  5499. docsforge/themes/material/templates/.icons/material/data-matrix.svg +1 -0
  5500. docsforge/themes/material/templates/.icons/material/database-alert-outline.svg +1 -0
  5501. docsforge/themes/material/templates/.icons/material/database-alert.svg +1 -0
  5502. docsforge/themes/material/templates/.icons/material/database-arrow-down-outline.svg +1 -0
  5503. docsforge/themes/material/templates/.icons/material/database-arrow-down.svg +1 -0
  5504. docsforge/themes/material/templates/.icons/material/database-arrow-left-outline.svg +1 -0
  5505. docsforge/themes/material/templates/.icons/material/database-arrow-left.svg +1 -0
  5506. docsforge/themes/material/templates/.icons/material/database-arrow-right-outline.svg +1 -0
  5507. docsforge/themes/material/templates/.icons/material/database-arrow-right.svg +1 -0
  5508. docsforge/themes/material/templates/.icons/material/database-arrow-up-outline.svg +1 -0
  5509. docsforge/themes/material/templates/.icons/material/database-arrow-up.svg +1 -0
  5510. docsforge/themes/material/templates/.icons/material/database-check-outline.svg +1 -0
  5511. docsforge/themes/material/templates/.icons/material/database-check.svg +1 -0
  5512. docsforge/themes/material/templates/.icons/material/database-clock-outline.svg +1 -0
  5513. docsforge/themes/material/templates/.icons/material/database-clock.svg +1 -0
  5514. docsforge/themes/material/templates/.icons/material/database-cog-outline.svg +1 -0
  5515. docsforge/themes/material/templates/.icons/material/database-cog.svg +1 -0
  5516. docsforge/themes/material/templates/.icons/material/database-edit-outline.svg +1 -0
  5517. docsforge/themes/material/templates/.icons/material/database-edit.svg +1 -0
  5518. docsforge/themes/material/templates/.icons/material/database-export-outline.svg +1 -0
  5519. docsforge/themes/material/templates/.icons/material/database-export.svg +1 -0
  5520. docsforge/themes/material/templates/.icons/material/database-eye-off-outline.svg +1 -0
  5521. docsforge/themes/material/templates/.icons/material/database-eye-off.svg +1 -0
  5522. docsforge/themes/material/templates/.icons/material/database-eye-outline.svg +1 -0
  5523. docsforge/themes/material/templates/.icons/material/database-eye.svg +1 -0
  5524. docsforge/themes/material/templates/.icons/material/database-import-outline.svg +1 -0
  5525. docsforge/themes/material/templates/.icons/material/database-import.svg +1 -0
  5526. docsforge/themes/material/templates/.icons/material/database-lock-outline.svg +1 -0
  5527. docsforge/themes/material/templates/.icons/material/database-lock.svg +1 -0
  5528. docsforge/themes/material/templates/.icons/material/database-marker-outline.svg +1 -0
  5529. docsforge/themes/material/templates/.icons/material/database-marker.svg +1 -0
  5530. docsforge/themes/material/templates/.icons/material/database-minus-outline.svg +1 -0
  5531. docsforge/themes/material/templates/.icons/material/database-minus.svg +1 -0
  5532. docsforge/themes/material/templates/.icons/material/database-off-outline.svg +1 -0
  5533. docsforge/themes/material/templates/.icons/material/database-off.svg +1 -0
  5534. docsforge/themes/material/templates/.icons/material/database-outline.svg +1 -0
  5535. docsforge/themes/material/templates/.icons/material/database-plus-outline.svg +1 -0
  5536. docsforge/themes/material/templates/.icons/material/database-plus.svg +1 -0
  5537. docsforge/themes/material/templates/.icons/material/database-refresh-outline.svg +1 -0
  5538. docsforge/themes/material/templates/.icons/material/database-refresh.svg +1 -0
  5539. docsforge/themes/material/templates/.icons/material/database-remove-outline.svg +1 -0
  5540. docsforge/themes/material/templates/.icons/material/database-remove.svg +1 -0
  5541. docsforge/themes/material/templates/.icons/material/database-search-outline.svg +1 -0
  5542. docsforge/themes/material/templates/.icons/material/database-search.svg +1 -0
  5543. docsforge/themes/material/templates/.icons/material/database-settings-outline.svg +1 -0
  5544. docsforge/themes/material/templates/.icons/material/database-settings.svg +1 -0
  5545. docsforge/themes/material/templates/.icons/material/database-sync-outline.svg +1 -0
  5546. docsforge/themes/material/templates/.icons/material/database-sync.svg +1 -0
  5547. docsforge/themes/material/templates/.icons/material/database.svg +1 -0
  5548. docsforge/themes/material/templates/.icons/material/death-star-variant.svg +1 -0
  5549. docsforge/themes/material/templates/.icons/material/death-star.svg +1 -0
  5550. docsforge/themes/material/templates/.icons/material/deathly-hallows.svg +1 -0
  5551. docsforge/themes/material/templates/.icons/material/debian.svg +1 -0
  5552. docsforge/themes/material/templates/.icons/material/debug-step-into.svg +1 -0
  5553. docsforge/themes/material/templates/.icons/material/debug-step-out.svg +1 -0
  5554. docsforge/themes/material/templates/.icons/material/debug-step-over.svg +1 -0
  5555. docsforge/themes/material/templates/.icons/material/decagram-outline.svg +1 -0
  5556. docsforge/themes/material/templates/.icons/material/decagram.svg +1 -0
  5557. docsforge/themes/material/templates/.icons/material/decimal-comma-decrease.svg +1 -0
  5558. docsforge/themes/material/templates/.icons/material/decimal-comma-increase.svg +1 -0
  5559. docsforge/themes/material/templates/.icons/material/decimal-comma.svg +1 -0
  5560. docsforge/themes/material/templates/.icons/material/decimal-decrease.svg +1 -0
  5561. docsforge/themes/material/templates/.icons/material/decimal-increase.svg +1 -0
  5562. docsforge/themes/material/templates/.icons/material/decimal.svg +1 -0
  5563. docsforge/themes/material/templates/.icons/material/delete-alert-outline.svg +1 -0
  5564. docsforge/themes/material/templates/.icons/material/delete-alert.svg +1 -0
  5565. docsforge/themes/material/templates/.icons/material/delete-circle-outline.svg +1 -0
  5566. docsforge/themes/material/templates/.icons/material/delete-circle.svg +1 -0
  5567. docsforge/themes/material/templates/.icons/material/delete-clock-outline.svg +1 -0
  5568. docsforge/themes/material/templates/.icons/material/delete-clock.svg +1 -0
  5569. docsforge/themes/material/templates/.icons/material/delete-empty-outline.svg +1 -0
  5570. docsforge/themes/material/templates/.icons/material/delete-empty.svg +1 -0
  5571. docsforge/themes/material/templates/.icons/material/delete-forever-outline.svg +1 -0
  5572. docsforge/themes/material/templates/.icons/material/delete-forever.svg +1 -0
  5573. docsforge/themes/material/templates/.icons/material/delete-off-outline.svg +1 -0
  5574. docsforge/themes/material/templates/.icons/material/delete-off.svg +1 -0
  5575. docsforge/themes/material/templates/.icons/material/delete-outline.svg +1 -0
  5576. docsforge/themes/material/templates/.icons/material/delete-restore.svg +1 -0
  5577. docsforge/themes/material/templates/.icons/material/delete-sweep-outline.svg +1 -0
  5578. docsforge/themes/material/templates/.icons/material/delete-sweep.svg +1 -0
  5579. docsforge/themes/material/templates/.icons/material/delete-variant.svg +1 -0
  5580. docsforge/themes/material/templates/.icons/material/delete.svg +1 -0
  5581. docsforge/themes/material/templates/.icons/material/delta.svg +1 -0
  5582. docsforge/themes/material/templates/.icons/material/desk-lamp-off.svg +1 -0
  5583. docsforge/themes/material/templates/.icons/material/desk-lamp-on.svg +1 -0
  5584. docsforge/themes/material/templates/.icons/material/desk-lamp.svg +1 -0
  5585. docsforge/themes/material/templates/.icons/material/desk.svg +1 -0
  5586. docsforge/themes/material/templates/.icons/material/deskphone.svg +1 -0
  5587. docsforge/themes/material/templates/.icons/material/desktop-classic.svg +1 -0
  5588. docsforge/themes/material/templates/.icons/material/desktop-tower-monitor.svg +1 -0
  5589. docsforge/themes/material/templates/.icons/material/desktop-tower.svg +1 -0
  5590. docsforge/themes/material/templates/.icons/material/details.svg +1 -0
  5591. docsforge/themes/material/templates/.icons/material/dev-to.svg +1 -0
  5592. docsforge/themes/material/templates/.icons/material/developer-board.svg +1 -0
  5593. docsforge/themes/material/templates/.icons/material/deviantart.svg +1 -0
  5594. docsforge/themes/material/templates/.icons/material/devices.svg +1 -0
  5595. docsforge/themes/material/templates/.icons/material/dharmachakra.svg +1 -0
  5596. docsforge/themes/material/templates/.icons/material/diabetes.svg +1 -0
  5597. docsforge/themes/material/templates/.icons/material/dialpad.svg +1 -0
  5598. docsforge/themes/material/templates/.icons/material/diameter-outline.svg +1 -0
  5599. docsforge/themes/material/templates/.icons/material/diameter-variant.svg +1 -0
  5600. docsforge/themes/material/templates/.icons/material/diameter.svg +1 -0
  5601. docsforge/themes/material/templates/.icons/material/diamond-outline.svg +1 -0
  5602. docsforge/themes/material/templates/.icons/material/diamond-stone.svg +1 -0
  5603. docsforge/themes/material/templates/.icons/material/diamond.svg +1 -0
  5604. docsforge/themes/material/templates/.icons/material/diaper-outline.svg +1 -0
  5605. docsforge/themes/material/templates/.icons/material/dice-1-outline.svg +1 -0
  5606. docsforge/themes/material/templates/.icons/material/dice-1.svg +1 -0
  5607. docsforge/themes/material/templates/.icons/material/dice-2-outline.svg +1 -0
  5608. docsforge/themes/material/templates/.icons/material/dice-2.svg +1 -0
  5609. docsforge/themes/material/templates/.icons/material/dice-3-outline.svg +1 -0
  5610. docsforge/themes/material/templates/.icons/material/dice-3.svg +1 -0
  5611. docsforge/themes/material/templates/.icons/material/dice-4-outline.svg +1 -0
  5612. docsforge/themes/material/templates/.icons/material/dice-4.svg +1 -0
  5613. docsforge/themes/material/templates/.icons/material/dice-5-outline.svg +1 -0
  5614. docsforge/themes/material/templates/.icons/material/dice-5.svg +1 -0
  5615. docsforge/themes/material/templates/.icons/material/dice-6-outline.svg +1 -0
  5616. docsforge/themes/material/templates/.icons/material/dice-6.svg +1 -0
  5617. docsforge/themes/material/templates/.icons/material/dice-d10-outline.svg +1 -0
  5618. docsforge/themes/material/templates/.icons/material/dice-d10.svg +1 -0
  5619. docsforge/themes/material/templates/.icons/material/dice-d12-outline.svg +1 -0
  5620. docsforge/themes/material/templates/.icons/material/dice-d12.svg +1 -0
  5621. docsforge/themes/material/templates/.icons/material/dice-d20-outline.svg +1 -0
  5622. docsforge/themes/material/templates/.icons/material/dice-d20.svg +1 -0
  5623. docsforge/themes/material/templates/.icons/material/dice-d4-outline.svg +1 -0
  5624. docsforge/themes/material/templates/.icons/material/dice-d4.svg +1 -0
  5625. docsforge/themes/material/templates/.icons/material/dice-d6-outline.svg +1 -0
  5626. docsforge/themes/material/templates/.icons/material/dice-d6.svg +1 -0
  5627. docsforge/themes/material/templates/.icons/material/dice-d8-outline.svg +1 -0
  5628. docsforge/themes/material/templates/.icons/material/dice-d8.svg +1 -0
  5629. docsforge/themes/material/templates/.icons/material/dice-multiple-outline.svg +1 -0
  5630. docsforge/themes/material/templates/.icons/material/dice-multiple.svg +1 -0
  5631. docsforge/themes/material/templates/.icons/material/digital-ocean.svg +1 -0
  5632. docsforge/themes/material/templates/.icons/material/dip-switch.svg +1 -0
  5633. docsforge/themes/material/templates/.icons/material/directions-fork.svg +1 -0
  5634. docsforge/themes/material/templates/.icons/material/directions.svg +1 -0
  5635. docsforge/themes/material/templates/.icons/material/disc-alert.svg +1 -0
  5636. docsforge/themes/material/templates/.icons/material/disc-player.svg +1 -0
  5637. docsforge/themes/material/templates/.icons/material/disc.svg +1 -0
  5638. docsforge/themes/material/templates/.icons/material/dishwasher-alert.svg +1 -0
  5639. docsforge/themes/material/templates/.icons/material/dishwasher-off.svg +1 -0
  5640. docsforge/themes/material/templates/.icons/material/dishwasher.svg +1 -0
  5641. docsforge/themes/material/templates/.icons/material/disqus.svg +1 -0
  5642. docsforge/themes/material/templates/.icons/material/distribute-horizontal-center.svg +1 -0
  5643. docsforge/themes/material/templates/.icons/material/distribute-horizontal-left.svg +1 -0
  5644. docsforge/themes/material/templates/.icons/material/distribute-horizontal-right.svg +1 -0
  5645. docsforge/themes/material/templates/.icons/material/distribute-vertical-bottom.svg +1 -0
  5646. docsforge/themes/material/templates/.icons/material/distribute-vertical-center.svg +1 -0
  5647. docsforge/themes/material/templates/.icons/material/distribute-vertical-top.svg +1 -0
  5648. docsforge/themes/material/templates/.icons/material/diversify.svg +1 -0
  5649. docsforge/themes/material/templates/.icons/material/diving-flippers.svg +1 -0
  5650. docsforge/themes/material/templates/.icons/material/diving-helmet.svg +1 -0
  5651. docsforge/themes/material/templates/.icons/material/diving-scuba-flag.svg +1 -0
  5652. docsforge/themes/material/templates/.icons/material/diving-scuba-mask.svg +1 -0
  5653. docsforge/themes/material/templates/.icons/material/diving-scuba-tank-multiple.svg +1 -0
  5654. docsforge/themes/material/templates/.icons/material/diving-scuba-tank.svg +1 -0
  5655. docsforge/themes/material/templates/.icons/material/diving-scuba.svg +1 -0
  5656. docsforge/themes/material/templates/.icons/material/diving-snorkel.svg +1 -0
  5657. docsforge/themes/material/templates/.icons/material/diving.svg +1 -0
  5658. docsforge/themes/material/templates/.icons/material/division-box.svg +1 -0
  5659. docsforge/themes/material/templates/.icons/material/division.svg +1 -0
  5660. docsforge/themes/material/templates/.icons/material/dlna.svg +1 -0
  5661. docsforge/themes/material/templates/.icons/material/dna.svg +1 -0
  5662. docsforge/themes/material/templates/.icons/material/dns-outline.svg +1 -0
  5663. docsforge/themes/material/templates/.icons/material/dns.svg +1 -0
  5664. docsforge/themes/material/templates/.icons/material/dock-bottom.svg +1 -0
  5665. docsforge/themes/material/templates/.icons/material/dock-left.svg +1 -0
  5666. docsforge/themes/material/templates/.icons/material/dock-right.svg +1 -0
  5667. docsforge/themes/material/templates/.icons/material/dock-top.svg +1 -0
  5668. docsforge/themes/material/templates/.icons/material/dock-window.svg +1 -0
  5669. docsforge/themes/material/templates/.icons/material/docker.svg +1 -0
  5670. docsforge/themes/material/templates/.icons/material/doctor.svg +1 -0
  5671. docsforge/themes/material/templates/.icons/material/dog-service.svg +1 -0
  5672. docsforge/themes/material/templates/.icons/material/dog-side-off.svg +1 -0
  5673. docsforge/themes/material/templates/.icons/material/dog-side.svg +1 -0
  5674. docsforge/themes/material/templates/.icons/material/dog.svg +1 -0
  5675. docsforge/themes/material/templates/.icons/material/dolby.svg +1 -0
  5676. docsforge/themes/material/templates/.icons/material/dolly.svg +1 -0
  5677. docsforge/themes/material/templates/.icons/material/dolphin.svg +1 -0
  5678. docsforge/themes/material/templates/.icons/material/domain-off.svg +1 -0
  5679. docsforge/themes/material/templates/.icons/material/domain-plus.svg +1 -0
  5680. docsforge/themes/material/templates/.icons/material/domain-remove.svg +1 -0
  5681. docsforge/themes/material/templates/.icons/material/domain-switch.svg +1 -0
  5682. docsforge/themes/material/templates/.icons/material/domain.svg +1 -0
  5683. docsforge/themes/material/templates/.icons/material/dome-light.svg +1 -0
  5684. docsforge/themes/material/templates/.icons/material/domino-mask.svg +1 -0
  5685. docsforge/themes/material/templates/.icons/material/donkey.svg +1 -0
  5686. docsforge/themes/material/templates/.icons/material/door-closed-cancel.svg +1 -0
  5687. docsforge/themes/material/templates/.icons/material/door-closed-lock.svg +1 -0
  5688. docsforge/themes/material/templates/.icons/material/door-closed.svg +1 -0
  5689. docsforge/themes/material/templates/.icons/material/door-open.svg +1 -0
  5690. docsforge/themes/material/templates/.icons/material/door-sliding-lock.svg +1 -0
  5691. docsforge/themes/material/templates/.icons/material/door-sliding-open.svg +1 -0
  5692. docsforge/themes/material/templates/.icons/material/door-sliding.svg +1 -0
  5693. docsforge/themes/material/templates/.icons/material/door.svg +1 -0
  5694. docsforge/themes/material/templates/.icons/material/doorbell-video.svg +1 -0
  5695. docsforge/themes/material/templates/.icons/material/doorbell.svg +1 -0
  5696. docsforge/themes/material/templates/.icons/material/dot-net.svg +1 -0
  5697. docsforge/themes/material/templates/.icons/material/dots-circle.svg +1 -0
  5698. docsforge/themes/material/templates/.icons/material/dots-grid.svg +1 -0
  5699. docsforge/themes/material/templates/.icons/material/dots-hexagon.svg +1 -0
  5700. docsforge/themes/material/templates/.icons/material/dots-horizontal-circle-outline.svg +1 -0
  5701. docsforge/themes/material/templates/.icons/material/dots-horizontal-circle.svg +1 -0
  5702. docsforge/themes/material/templates/.icons/material/dots-horizontal.svg +1 -0
  5703. docsforge/themes/material/templates/.icons/material/dots-square.svg +1 -0
  5704. docsforge/themes/material/templates/.icons/material/dots-triangle.svg +1 -0
  5705. docsforge/themes/material/templates/.icons/material/dots-vertical-circle-outline.svg +1 -0
  5706. docsforge/themes/material/templates/.icons/material/dots-vertical-circle.svg +1 -0
  5707. docsforge/themes/material/templates/.icons/material/dots-vertical.svg +1 -0
  5708. docsforge/themes/material/templates/.icons/material/download-box-outline.svg +1 -0
  5709. docsforge/themes/material/templates/.icons/material/download-box.svg +1 -0
  5710. docsforge/themes/material/templates/.icons/material/download-circle-outline.svg +1 -0
  5711. docsforge/themes/material/templates/.icons/material/download-circle.svg +1 -0
  5712. docsforge/themes/material/templates/.icons/material/download-lock-outline.svg +1 -0
  5713. docsforge/themes/material/templates/.icons/material/download-lock.svg +1 -0
  5714. docsforge/themes/material/templates/.icons/material/download-multiple-outline.svg +1 -0
  5715. docsforge/themes/material/templates/.icons/material/download-multiple.svg +1 -0
  5716. docsforge/themes/material/templates/.icons/material/download-network-outline.svg +1 -0
  5717. docsforge/themes/material/templates/.icons/material/download-network.svg +1 -0
  5718. docsforge/themes/material/templates/.icons/material/download-off-outline.svg +1 -0
  5719. docsforge/themes/material/templates/.icons/material/download-off.svg +1 -0
  5720. docsforge/themes/material/templates/.icons/material/download-outline.svg +1 -0
  5721. docsforge/themes/material/templates/.icons/material/download.svg +1 -0
  5722. docsforge/themes/material/templates/.icons/material/drag-horizontal-variant.svg +1 -0
  5723. docsforge/themes/material/templates/.icons/material/drag-horizontal.svg +1 -0
  5724. docsforge/themes/material/templates/.icons/material/drag-variant.svg +1 -0
  5725. docsforge/themes/material/templates/.icons/material/drag-vertical-variant.svg +1 -0
  5726. docsforge/themes/material/templates/.icons/material/drag-vertical.svg +1 -0
  5727. docsforge/themes/material/templates/.icons/material/drag.svg +1 -0
  5728. docsforge/themes/material/templates/.icons/material/drama-masks.svg +1 -0
  5729. docsforge/themes/material/templates/.icons/material/draw-pen.svg +1 -0
  5730. docsforge/themes/material/templates/.icons/material/draw.svg +1 -0
  5731. docsforge/themes/material/templates/.icons/material/drawing-box.svg +1 -0
  5732. docsforge/themes/material/templates/.icons/material/drawing.svg +1 -0
  5733. docsforge/themes/material/templates/.icons/material/dresser-outline.svg +1 -0
  5734. docsforge/themes/material/templates/.icons/material/dresser.svg +1 -0
  5735. docsforge/themes/material/templates/.icons/material/drone.svg +1 -0
  5736. docsforge/themes/material/templates/.icons/material/dropbox.svg +1 -0
  5737. docsforge/themes/material/templates/.icons/material/drupal.svg +1 -0
  5738. docsforge/themes/material/templates/.icons/material/duck.svg +1 -0
  5739. docsforge/themes/material/templates/.icons/material/dumbbell.svg +1 -0
  5740. docsforge/themes/material/templates/.icons/material/dump-truck.svg +1 -0
  5741. docsforge/themes/material/templates/.icons/material/ear-hearing-loop.svg +1 -0
  5742. docsforge/themes/material/templates/.icons/material/ear-hearing-off.svg +1 -0
  5743. docsforge/themes/material/templates/.icons/material/ear-hearing.svg +1 -0
  5744. docsforge/themes/material/templates/.icons/material/earbuds-off-outline.svg +1 -0
  5745. docsforge/themes/material/templates/.icons/material/earbuds-off.svg +1 -0
  5746. docsforge/themes/material/templates/.icons/material/earbuds-outline.svg +1 -0
  5747. docsforge/themes/material/templates/.icons/material/earbuds.svg +1 -0
  5748. docsforge/themes/material/templates/.icons/material/earth-arrow-down.svg +1 -0
  5749. docsforge/themes/material/templates/.icons/material/earth-arrow-left.svg +1 -0
  5750. docsforge/themes/material/templates/.icons/material/earth-arrow-right.svg +1 -0
  5751. docsforge/themes/material/templates/.icons/material/earth-arrow-up.svg +1 -0
  5752. docsforge/themes/material/templates/.icons/material/earth-box-minus.svg +1 -0
  5753. docsforge/themes/material/templates/.icons/material/earth-box-off.svg +1 -0
  5754. docsforge/themes/material/templates/.icons/material/earth-box-plus.svg +1 -0
  5755. docsforge/themes/material/templates/.icons/material/earth-box-remove.svg +1 -0
  5756. docsforge/themes/material/templates/.icons/material/earth-box.svg +1 -0
  5757. docsforge/themes/material/templates/.icons/material/earth-minus.svg +1 -0
  5758. docsforge/themes/material/templates/.icons/material/earth-off.svg +1 -0
  5759. docsforge/themes/material/templates/.icons/material/earth-plus.svg +1 -0
  5760. docsforge/themes/material/templates/.icons/material/earth-remove.svg +1 -0
  5761. docsforge/themes/material/templates/.icons/material/earth.svg +1 -0
  5762. docsforge/themes/material/templates/.icons/material/egg-easter.svg +1 -0
  5763. docsforge/themes/material/templates/.icons/material/egg-fried.svg +1 -0
  5764. docsforge/themes/material/templates/.icons/material/egg-off-outline.svg +1 -0
  5765. docsforge/themes/material/templates/.icons/material/egg-off.svg +1 -0
  5766. docsforge/themes/material/templates/.icons/material/egg-outline.svg +1 -0
  5767. docsforge/themes/material/templates/.icons/material/egg.svg +1 -0
  5768. docsforge/themes/material/templates/.icons/material/eiffel-tower.svg +1 -0
  5769. docsforge/themes/material/templates/.icons/material/eight-track.svg +1 -0
  5770. docsforge/themes/material/templates/.icons/material/eject-circle-outline.svg +1 -0
  5771. docsforge/themes/material/templates/.icons/material/eject-circle.svg +1 -0
  5772. docsforge/themes/material/templates/.icons/material/eject-outline.svg +1 -0
  5773. docsforge/themes/material/templates/.icons/material/eject.svg +1 -0
  5774. docsforge/themes/material/templates/.icons/material/electric-switch-closed.svg +1 -0
  5775. docsforge/themes/material/templates/.icons/material/electric-switch.svg +1 -0
  5776. docsforge/themes/material/templates/.icons/material/electron-framework.svg +1 -0
  5777. docsforge/themes/material/templates/.icons/material/elephant.svg +1 -0
  5778. docsforge/themes/material/templates/.icons/material/elevation-decline.svg +1 -0
  5779. docsforge/themes/material/templates/.icons/material/elevation-rise.svg +1 -0
  5780. docsforge/themes/material/templates/.icons/material/elevator-down.svg +1 -0
  5781. docsforge/themes/material/templates/.icons/material/elevator-passenger-off-outline.svg +1 -0
  5782. docsforge/themes/material/templates/.icons/material/elevator-passenger-off.svg +1 -0
  5783. docsforge/themes/material/templates/.icons/material/elevator-passenger-outline.svg +1 -0
  5784. docsforge/themes/material/templates/.icons/material/elevator-passenger.svg +1 -0
  5785. docsforge/themes/material/templates/.icons/material/elevator-up.svg +1 -0
  5786. docsforge/themes/material/templates/.icons/material/elevator.svg +1 -0
  5787. docsforge/themes/material/templates/.icons/material/ellipse-outline.svg +1 -0
  5788. docsforge/themes/material/templates/.icons/material/ellipse.svg +1 -0
  5789. docsforge/themes/material/templates/.icons/material/email-alert-outline.svg +1 -0
  5790. docsforge/themes/material/templates/.icons/material/email-alert.svg +1 -0
  5791. docsforge/themes/material/templates/.icons/material/email-arrow-left-outline.svg +1 -0
  5792. docsforge/themes/material/templates/.icons/material/email-arrow-left.svg +1 -0
  5793. docsforge/themes/material/templates/.icons/material/email-arrow-right-outline.svg +1 -0
  5794. docsforge/themes/material/templates/.icons/material/email-arrow-right.svg +1 -0
  5795. docsforge/themes/material/templates/.icons/material/email-box.svg +1 -0
  5796. docsforge/themes/material/templates/.icons/material/email-check-outline.svg +1 -0
  5797. docsforge/themes/material/templates/.icons/material/email-check.svg +1 -0
  5798. docsforge/themes/material/templates/.icons/material/email-edit-outline.svg +1 -0
  5799. docsforge/themes/material/templates/.icons/material/email-edit.svg +1 -0
  5800. docsforge/themes/material/templates/.icons/material/email-fast-outline.svg +1 -0
  5801. docsforge/themes/material/templates/.icons/material/email-fast.svg +1 -0
  5802. docsforge/themes/material/templates/.icons/material/email-heart-outline.svg +1 -0
  5803. docsforge/themes/material/templates/.icons/material/email-lock-outline.svg +1 -0
  5804. docsforge/themes/material/templates/.icons/material/email-lock.svg +1 -0
  5805. docsforge/themes/material/templates/.icons/material/email-mark-as-unread.svg +1 -0
  5806. docsforge/themes/material/templates/.icons/material/email-minus-outline.svg +1 -0
  5807. docsforge/themes/material/templates/.icons/material/email-minus.svg +1 -0
  5808. docsforge/themes/material/templates/.icons/material/email-multiple-outline.svg +1 -0
  5809. docsforge/themes/material/templates/.icons/material/email-multiple.svg +1 -0
  5810. docsforge/themes/material/templates/.icons/material/email-newsletter.svg +1 -0
  5811. docsforge/themes/material/templates/.icons/material/email-off-outline.svg +1 -0
  5812. docsforge/themes/material/templates/.icons/material/email-off.svg +1 -0
  5813. docsforge/themes/material/templates/.icons/material/email-open-heart-outline.svg +1 -0
  5814. docsforge/themes/material/templates/.icons/material/email-open-multiple-outline.svg +1 -0
  5815. docsforge/themes/material/templates/.icons/material/email-open-multiple.svg +1 -0
  5816. docsforge/themes/material/templates/.icons/material/email-open-outline.svg +1 -0
  5817. docsforge/themes/material/templates/.icons/material/email-open.svg +1 -0
  5818. docsforge/themes/material/templates/.icons/material/email-outline.svg +1 -0
  5819. docsforge/themes/material/templates/.icons/material/email-plus-outline.svg +1 -0
  5820. docsforge/themes/material/templates/.icons/material/email-plus.svg +1 -0
  5821. docsforge/themes/material/templates/.icons/material/email-remove-outline.svg +1 -0
  5822. docsforge/themes/material/templates/.icons/material/email-remove.svg +1 -0
  5823. docsforge/themes/material/templates/.icons/material/email-seal-outline.svg +1 -0
  5824. docsforge/themes/material/templates/.icons/material/email-seal.svg +1 -0
  5825. docsforge/themes/material/templates/.icons/material/email-search-outline.svg +1 -0
  5826. docsforge/themes/material/templates/.icons/material/email-search.svg +1 -0
  5827. docsforge/themes/material/templates/.icons/material/email-sync-outline.svg +1 -0
  5828. docsforge/themes/material/templates/.icons/material/email-sync.svg +1 -0
  5829. docsforge/themes/material/templates/.icons/material/email-variant.svg +1 -0
  5830. docsforge/themes/material/templates/.icons/material/email.svg +1 -0
  5831. docsforge/themes/material/templates/.icons/material/ember.svg +1 -0
  5832. docsforge/themes/material/templates/.icons/material/emby.svg +1 -0
  5833. docsforge/themes/material/templates/.icons/material/emoticon-angry-outline.svg +1 -0
  5834. docsforge/themes/material/templates/.icons/material/emoticon-angry.svg +1 -0
  5835. docsforge/themes/material/templates/.icons/material/emoticon-confused-outline.svg +1 -0
  5836. docsforge/themes/material/templates/.icons/material/emoticon-confused.svg +1 -0
  5837. docsforge/themes/material/templates/.icons/material/emoticon-cool-outline.svg +1 -0
  5838. docsforge/themes/material/templates/.icons/material/emoticon-cool.svg +1 -0
  5839. docsforge/themes/material/templates/.icons/material/emoticon-cry-outline.svg +1 -0
  5840. docsforge/themes/material/templates/.icons/material/emoticon-cry.svg +1 -0
  5841. docsforge/themes/material/templates/.icons/material/emoticon-dead-outline.svg +1 -0
  5842. docsforge/themes/material/templates/.icons/material/emoticon-dead.svg +1 -0
  5843. docsforge/themes/material/templates/.icons/material/emoticon-devil-outline.svg +1 -0
  5844. docsforge/themes/material/templates/.icons/material/emoticon-devil.svg +1 -0
  5845. docsforge/themes/material/templates/.icons/material/emoticon-excited-outline.svg +1 -0
  5846. docsforge/themes/material/templates/.icons/material/emoticon-excited.svg +1 -0
  5847. docsforge/themes/material/templates/.icons/material/emoticon-frown-outline.svg +1 -0
  5848. docsforge/themes/material/templates/.icons/material/emoticon-frown.svg +1 -0
  5849. docsforge/themes/material/templates/.icons/material/emoticon-happy-outline.svg +1 -0
  5850. docsforge/themes/material/templates/.icons/material/emoticon-happy.svg +1 -0
  5851. docsforge/themes/material/templates/.icons/material/emoticon-kiss-outline.svg +1 -0
  5852. docsforge/themes/material/templates/.icons/material/emoticon-kiss.svg +1 -0
  5853. docsforge/themes/material/templates/.icons/material/emoticon-lol-outline.svg +1 -0
  5854. docsforge/themes/material/templates/.icons/material/emoticon-lol.svg +1 -0
  5855. docsforge/themes/material/templates/.icons/material/emoticon-minus-outline.svg +1 -0
  5856. docsforge/themes/material/templates/.icons/material/emoticon-minus.svg +1 -0
  5857. docsforge/themes/material/templates/.icons/material/emoticon-neutral-outline.svg +1 -0
  5858. docsforge/themes/material/templates/.icons/material/emoticon-neutral.svg +1 -0
  5859. docsforge/themes/material/templates/.icons/material/emoticon-outline.svg +1 -0
  5860. docsforge/themes/material/templates/.icons/material/emoticon-plus-outline.svg +1 -0
  5861. docsforge/themes/material/templates/.icons/material/emoticon-plus.svg +1 -0
  5862. docsforge/themes/material/templates/.icons/material/emoticon-poop-outline.svg +1 -0
  5863. docsforge/themes/material/templates/.icons/material/emoticon-poop.svg +1 -0
  5864. docsforge/themes/material/templates/.icons/material/emoticon-remove-outline.svg +1 -0
  5865. docsforge/themes/material/templates/.icons/material/emoticon-remove.svg +1 -0
  5866. docsforge/themes/material/templates/.icons/material/emoticon-sad-outline.svg +1 -0
  5867. docsforge/themes/material/templates/.icons/material/emoticon-sad.svg +1 -0
  5868. docsforge/themes/material/templates/.icons/material/emoticon-sick-outline.svg +1 -0
  5869. docsforge/themes/material/templates/.icons/material/emoticon-sick.svg +1 -0
  5870. docsforge/themes/material/templates/.icons/material/emoticon-tongue-outline.svg +1 -0
  5871. docsforge/themes/material/templates/.icons/material/emoticon-tongue.svg +1 -0
  5872. docsforge/themes/material/templates/.icons/material/emoticon-wink-outline.svg +1 -0
  5873. docsforge/themes/material/templates/.icons/material/emoticon-wink.svg +1 -0
  5874. docsforge/themes/material/templates/.icons/material/emoticon.svg +1 -0
  5875. docsforge/themes/material/templates/.icons/material/engine-off-outline.svg +1 -0
  5876. docsforge/themes/material/templates/.icons/material/engine-off.svg +1 -0
  5877. docsforge/themes/material/templates/.icons/material/engine-outline.svg +1 -0
  5878. docsforge/themes/material/templates/.icons/material/engine.svg +1 -0
  5879. docsforge/themes/material/templates/.icons/material/epsilon.svg +1 -0
  5880. docsforge/themes/material/templates/.icons/material/equal-box.svg +1 -0
  5881. docsforge/themes/material/templates/.icons/material/equal.svg +1 -0
  5882. docsforge/themes/material/templates/.icons/material/equalizer-outline.svg +1 -0
  5883. docsforge/themes/material/templates/.icons/material/equalizer.svg +1 -0
  5884. docsforge/themes/material/templates/.icons/material/eraser-variant.svg +1 -0
  5885. docsforge/themes/material/templates/.icons/material/eraser.svg +1 -0
  5886. docsforge/themes/material/templates/.icons/material/escalator-box.svg +1 -0
  5887. docsforge/themes/material/templates/.icons/material/escalator-down.svg +1 -0
  5888. docsforge/themes/material/templates/.icons/material/escalator-up.svg +1 -0
  5889. docsforge/themes/material/templates/.icons/material/escalator.svg +1 -0
  5890. docsforge/themes/material/templates/.icons/material/eslint.svg +1 -0
  5891. docsforge/themes/material/templates/.icons/material/et.svg +1 -0
  5892. docsforge/themes/material/templates/.icons/material/ethereum.svg +1 -0
  5893. docsforge/themes/material/templates/.icons/material/ethernet-cable-off.svg +1 -0
  5894. docsforge/themes/material/templates/.icons/material/ethernet-cable.svg +1 -0
  5895. docsforge/themes/material/templates/.icons/material/ethernet-off.svg +1 -0
  5896. docsforge/themes/material/templates/.icons/material/ethernet.svg +1 -0
  5897. docsforge/themes/material/templates/.icons/material/ev-plug-ccs1.svg +1 -0
  5898. docsforge/themes/material/templates/.icons/material/ev-plug-ccs2.svg +1 -0
  5899. docsforge/themes/material/templates/.icons/material/ev-plug-chademo.svg +1 -0
  5900. docsforge/themes/material/templates/.icons/material/ev-plug-tesla.svg +1 -0
  5901. docsforge/themes/material/templates/.icons/material/ev-plug-type1.svg +1 -0
  5902. docsforge/themes/material/templates/.icons/material/ev-plug-type2.svg +1 -0
  5903. docsforge/themes/material/templates/.icons/material/ev-station.svg +1 -0
  5904. docsforge/themes/material/templates/.icons/material/evernote.svg +1 -0
  5905. docsforge/themes/material/templates/.icons/material/excavator.svg +1 -0
  5906. docsforge/themes/material/templates/.icons/material/exclamation-thick.svg +1 -0
  5907. docsforge/themes/material/templates/.icons/material/exclamation.svg +1 -0
  5908. docsforge/themes/material/templates/.icons/material/exit-run.svg +1 -0
  5909. docsforge/themes/material/templates/.icons/material/exit-to-app.svg +1 -0
  5910. docsforge/themes/material/templates/.icons/material/expand-all-outline.svg +1 -0
  5911. docsforge/themes/material/templates/.icons/material/expand-all.svg +1 -0
  5912. docsforge/themes/material/templates/.icons/material/expansion-card-variant.svg +1 -0
  5913. docsforge/themes/material/templates/.icons/material/expansion-card.svg +1 -0
  5914. docsforge/themes/material/templates/.icons/material/exponent-box.svg +1 -0
  5915. docsforge/themes/material/templates/.icons/material/exponent.svg +1 -0
  5916. docsforge/themes/material/templates/.icons/material/export-variant.svg +1 -0
  5917. docsforge/themes/material/templates/.icons/material/export.svg +1 -0
  5918. docsforge/themes/material/templates/.icons/material/eye-arrow-left-outline.svg +1 -0
  5919. docsforge/themes/material/templates/.icons/material/eye-arrow-left.svg +1 -0
  5920. docsforge/themes/material/templates/.icons/material/eye-arrow-right-outline.svg +1 -0
  5921. docsforge/themes/material/templates/.icons/material/eye-arrow-right.svg +1 -0
  5922. docsforge/themes/material/templates/.icons/material/eye-check-outline.svg +1 -0
  5923. docsforge/themes/material/templates/.icons/material/eye-check.svg +1 -0
  5924. docsforge/themes/material/templates/.icons/material/eye-circle-outline.svg +1 -0
  5925. docsforge/themes/material/templates/.icons/material/eye-circle.svg +1 -0
  5926. docsforge/themes/material/templates/.icons/material/eye-closed.svg +1 -0
  5927. docsforge/themes/material/templates/.icons/material/eye-lock-open-outline.svg +1 -0
  5928. docsforge/themes/material/templates/.icons/material/eye-lock-open.svg +1 -0
  5929. docsforge/themes/material/templates/.icons/material/eye-lock-outline.svg +1 -0
  5930. docsforge/themes/material/templates/.icons/material/eye-lock.svg +1 -0
  5931. docsforge/themes/material/templates/.icons/material/eye-minus-outline.svg +1 -0
  5932. docsforge/themes/material/templates/.icons/material/eye-minus.svg +1 -0
  5933. docsforge/themes/material/templates/.icons/material/eye-off-outline.svg +1 -0
  5934. docsforge/themes/material/templates/.icons/material/eye-off.svg +1 -0
  5935. docsforge/themes/material/templates/.icons/material/eye-outline.svg +1 -0
  5936. docsforge/themes/material/templates/.icons/material/eye-plus-outline.svg +1 -0
  5937. docsforge/themes/material/templates/.icons/material/eye-plus.svg +1 -0
  5938. docsforge/themes/material/templates/.icons/material/eye-refresh-outline.svg +1 -0
  5939. docsforge/themes/material/templates/.icons/material/eye-refresh.svg +1 -0
  5940. docsforge/themes/material/templates/.icons/material/eye-remove-outline.svg +1 -0
  5941. docsforge/themes/material/templates/.icons/material/eye-remove.svg +1 -0
  5942. docsforge/themes/material/templates/.icons/material/eye-settings-outline.svg +1 -0
  5943. docsforge/themes/material/templates/.icons/material/eye-settings.svg +1 -0
  5944. docsforge/themes/material/templates/.icons/material/eye.svg +1 -0
  5945. docsforge/themes/material/templates/.icons/material/eyedropper-minus.svg +1 -0
  5946. docsforge/themes/material/templates/.icons/material/eyedropper-off.svg +1 -0
  5947. docsforge/themes/material/templates/.icons/material/eyedropper-plus.svg +1 -0
  5948. docsforge/themes/material/templates/.icons/material/eyedropper-remove.svg +1 -0
  5949. docsforge/themes/material/templates/.icons/material/eyedropper-variant.svg +1 -0
  5950. docsforge/themes/material/templates/.icons/material/eyedropper.svg +1 -0
  5951. docsforge/themes/material/templates/.icons/material/face-agent.svg +1 -0
  5952. docsforge/themes/material/templates/.icons/material/face-man-outline.svg +1 -0
  5953. docsforge/themes/material/templates/.icons/material/face-man-profile.svg +1 -0
  5954. docsforge/themes/material/templates/.icons/material/face-man-shimmer-outline.svg +1 -0
  5955. docsforge/themes/material/templates/.icons/material/face-man-shimmer.svg +1 -0
  5956. docsforge/themes/material/templates/.icons/material/face-man.svg +1 -0
  5957. docsforge/themes/material/templates/.icons/material/face-mask-outline.svg +1 -0
  5958. docsforge/themes/material/templates/.icons/material/face-mask.svg +1 -0
  5959. docsforge/themes/material/templates/.icons/material/face-recognition.svg +1 -0
  5960. docsforge/themes/material/templates/.icons/material/face-woman-outline.svg +1 -0
  5961. docsforge/themes/material/templates/.icons/material/face-woman-profile.svg +1 -0
  5962. docsforge/themes/material/templates/.icons/material/face-woman-shimmer-outline.svg +1 -0
  5963. docsforge/themes/material/templates/.icons/material/face-woman-shimmer.svg +1 -0
  5964. docsforge/themes/material/templates/.icons/material/face-woman.svg +1 -0
  5965. docsforge/themes/material/templates/.icons/material/facebook-gaming.svg +1 -0
  5966. docsforge/themes/material/templates/.icons/material/facebook-messenger.svg +1 -0
  5967. docsforge/themes/material/templates/.icons/material/facebook-workplace.svg +1 -0
  5968. docsforge/themes/material/templates/.icons/material/facebook.svg +1 -0
  5969. docsforge/themes/material/templates/.icons/material/factory.svg +1 -0
  5970. docsforge/themes/material/templates/.icons/material/family-tree.svg +1 -0
  5971. docsforge/themes/material/templates/.icons/material/fan-alert.svg +1 -0
  5972. docsforge/themes/material/templates/.icons/material/fan-auto.svg +1 -0
  5973. docsforge/themes/material/templates/.icons/material/fan-chevron-down.svg +1 -0
  5974. docsforge/themes/material/templates/.icons/material/fan-chevron-up.svg +1 -0
  5975. docsforge/themes/material/templates/.icons/material/fan-clock.svg +1 -0
  5976. docsforge/themes/material/templates/.icons/material/fan-minus.svg +1 -0
  5977. docsforge/themes/material/templates/.icons/material/fan-off.svg +1 -0
  5978. docsforge/themes/material/templates/.icons/material/fan-plus.svg +1 -0
  5979. docsforge/themes/material/templates/.icons/material/fan-remove.svg +1 -0
  5980. docsforge/themes/material/templates/.icons/material/fan-speed-1.svg +1 -0
  5981. docsforge/themes/material/templates/.icons/material/fan-speed-2.svg +1 -0
  5982. docsforge/themes/material/templates/.icons/material/fan-speed-3.svg +1 -0
  5983. docsforge/themes/material/templates/.icons/material/fan.svg +1 -0
  5984. docsforge/themes/material/templates/.icons/material/fast-forward-10.svg +1 -0
  5985. docsforge/themes/material/templates/.icons/material/fast-forward-15.svg +1 -0
  5986. docsforge/themes/material/templates/.icons/material/fast-forward-30.svg +1 -0
  5987. docsforge/themes/material/templates/.icons/material/fast-forward-45.svg +1 -0
  5988. docsforge/themes/material/templates/.icons/material/fast-forward-5.svg +1 -0
  5989. docsforge/themes/material/templates/.icons/material/fast-forward-60.svg +1 -0
  5990. docsforge/themes/material/templates/.icons/material/fast-forward-outline.svg +1 -0
  5991. docsforge/themes/material/templates/.icons/material/fast-forward.svg +1 -0
  5992. docsforge/themes/material/templates/.icons/material/faucet-variant.svg +1 -0
  5993. docsforge/themes/material/templates/.icons/material/faucet.svg +1 -0
  5994. docsforge/themes/material/templates/.icons/material/fax.svg +1 -0
  5995. docsforge/themes/material/templates/.icons/material/feather.svg +1 -0
  5996. docsforge/themes/material/templates/.icons/material/feature-search-outline.svg +1 -0
  5997. docsforge/themes/material/templates/.icons/material/feature-search.svg +1 -0
  5998. docsforge/themes/material/templates/.icons/material/fedora.svg +1 -0
  5999. docsforge/themes/material/templates/.icons/material/fence-electric.svg +1 -0
  6000. docsforge/themes/material/templates/.icons/material/fence.svg +1 -0
  6001. docsforge/themes/material/templates/.icons/material/fencing.svg +1 -0
  6002. docsforge/themes/material/templates/.icons/material/ferris-wheel.svg +1 -0
  6003. docsforge/themes/material/templates/.icons/material/ferry.svg +1 -0
  6004. docsforge/themes/material/templates/.icons/material/file-account-outline.svg +1 -0
  6005. docsforge/themes/material/templates/.icons/material/file-account.svg +1 -0
  6006. docsforge/themes/material/templates/.icons/material/file-alert-outline.svg +1 -0
  6007. docsforge/themes/material/templates/.icons/material/file-alert.svg +1 -0
  6008. docsforge/themes/material/templates/.icons/material/file-arrow-left-right-outline.svg +1 -0
  6009. docsforge/themes/material/templates/.icons/material/file-arrow-left-right.svg +1 -0
  6010. docsforge/themes/material/templates/.icons/material/file-arrow-up-down-outline.svg +1 -0
  6011. docsforge/themes/material/templates/.icons/material/file-arrow-up-down.svg +1 -0
  6012. docsforge/themes/material/templates/.icons/material/file-cabinet.svg +1 -0
  6013. docsforge/themes/material/templates/.icons/material/file-cad-box.svg +1 -0
  6014. docsforge/themes/material/templates/.icons/material/file-cad.svg +1 -0
  6015. docsforge/themes/material/templates/.icons/material/file-cancel-outline.svg +1 -0
  6016. docsforge/themes/material/templates/.icons/material/file-cancel.svg +1 -0
  6017. docsforge/themes/material/templates/.icons/material/file-certificate-outline.svg +1 -0
  6018. docsforge/themes/material/templates/.icons/material/file-certificate.svg +1 -0
  6019. docsforge/themes/material/templates/.icons/material/file-chart-check-outline.svg +1 -0
  6020. docsforge/themes/material/templates/.icons/material/file-chart-check.svg +1 -0
  6021. docsforge/themes/material/templates/.icons/material/file-chart-outline.svg +1 -0
  6022. docsforge/themes/material/templates/.icons/material/file-chart.svg +1 -0
  6023. docsforge/themes/material/templates/.icons/material/file-check-outline.svg +1 -0
  6024. docsforge/themes/material/templates/.icons/material/file-check.svg +1 -0
  6025. docsforge/themes/material/templates/.icons/material/file-clock-outline.svg +1 -0
  6026. docsforge/themes/material/templates/.icons/material/file-clock.svg +1 -0
  6027. docsforge/themes/material/templates/.icons/material/file-cloud-outline.svg +1 -0
  6028. docsforge/themes/material/templates/.icons/material/file-cloud.svg +1 -0
  6029. docsforge/themes/material/templates/.icons/material/file-code-outline.svg +1 -0
  6030. docsforge/themes/material/templates/.icons/material/file-code.svg +1 -0
  6031. docsforge/themes/material/templates/.icons/material/file-cog-outline.svg +1 -0
  6032. docsforge/themes/material/templates/.icons/material/file-cog.svg +1 -0
  6033. docsforge/themes/material/templates/.icons/material/file-compare.svg +1 -0
  6034. docsforge/themes/material/templates/.icons/material/file-delimited-outline.svg +1 -0
  6035. docsforge/themes/material/templates/.icons/material/file-delimited.svg +1 -0
  6036. docsforge/themes/material/templates/.icons/material/file-document-alert-outline.svg +1 -0
  6037. docsforge/themes/material/templates/.icons/material/file-document-alert.svg +1 -0
  6038. docsforge/themes/material/templates/.icons/material/file-document-arrow-right-outline.svg +1 -0
  6039. docsforge/themes/material/templates/.icons/material/file-document-arrow-right.svg +1 -0
  6040. docsforge/themes/material/templates/.icons/material/file-document-check-outline.svg +1 -0
  6041. docsforge/themes/material/templates/.icons/material/file-document-check.svg +1 -0
  6042. docsforge/themes/material/templates/.icons/material/file-document-edit-outline.svg +1 -0
  6043. docsforge/themes/material/templates/.icons/material/file-document-edit.svg +1 -0
  6044. docsforge/themes/material/templates/.icons/material/file-document-minus-outline.svg +1 -0
  6045. docsforge/themes/material/templates/.icons/material/file-document-minus.svg +1 -0
  6046. docsforge/themes/material/templates/.icons/material/file-document-multiple-outline.svg +1 -0
  6047. docsforge/themes/material/templates/.icons/material/file-document-multiple.svg +1 -0
  6048. docsforge/themes/material/templates/.icons/material/file-document-outline.svg +1 -0
  6049. docsforge/themes/material/templates/.icons/material/file-document-plus-outline.svg +1 -0
  6050. docsforge/themes/material/templates/.icons/material/file-document-plus.svg +1 -0
  6051. docsforge/themes/material/templates/.icons/material/file-document-refresh-outline.svg +1 -0
  6052. docsforge/themes/material/templates/.icons/material/file-document-refresh.svg +1 -0
  6053. docsforge/themes/material/templates/.icons/material/file-document-remove-outline.svg +1 -0
  6054. docsforge/themes/material/templates/.icons/material/file-document-remove.svg +1 -0
  6055. docsforge/themes/material/templates/.icons/material/file-document.svg +1 -0
  6056. docsforge/themes/material/templates/.icons/material/file-download-outline.svg +1 -0
  6057. docsforge/themes/material/templates/.icons/material/file-download.svg +1 -0
  6058. docsforge/themes/material/templates/.icons/material/file-edit-outline.svg +1 -0
  6059. docsforge/themes/material/templates/.icons/material/file-edit.svg +1 -0
  6060. docsforge/themes/material/templates/.icons/material/file-excel-box-outline.svg +1 -0
  6061. docsforge/themes/material/templates/.icons/material/file-excel-box.svg +1 -0
  6062. docsforge/themes/material/templates/.icons/material/file-excel-outline.svg +1 -0
  6063. docsforge/themes/material/templates/.icons/material/file-excel.svg +1 -0
  6064. docsforge/themes/material/templates/.icons/material/file-export-outline.svg +1 -0
  6065. docsforge/themes/material/templates/.icons/material/file-export.svg +1 -0
  6066. docsforge/themes/material/templates/.icons/material/file-eye-outline.svg +1 -0
  6067. docsforge/themes/material/templates/.icons/material/file-eye.svg +1 -0
  6068. docsforge/themes/material/templates/.icons/material/file-find-outline.svg +1 -0
  6069. docsforge/themes/material/templates/.icons/material/file-find.svg +1 -0
  6070. docsforge/themes/material/templates/.icons/material/file-gif-box.svg +1 -0
  6071. docsforge/themes/material/templates/.icons/material/file-hidden.svg +1 -0
  6072. docsforge/themes/material/templates/.icons/material/file-image-marker-outline.svg +1 -0
  6073. docsforge/themes/material/templates/.icons/material/file-image-marker.svg +1 -0
  6074. docsforge/themes/material/templates/.icons/material/file-image-minus-outline.svg +1 -0
  6075. docsforge/themes/material/templates/.icons/material/file-image-minus.svg +1 -0
  6076. docsforge/themes/material/templates/.icons/material/file-image-outline.svg +1 -0
  6077. docsforge/themes/material/templates/.icons/material/file-image-plus-outline.svg +1 -0
  6078. docsforge/themes/material/templates/.icons/material/file-image-plus.svg +1 -0
  6079. docsforge/themes/material/templates/.icons/material/file-image-remove-outline.svg +1 -0
  6080. docsforge/themes/material/templates/.icons/material/file-image-remove.svg +1 -0
  6081. docsforge/themes/material/templates/.icons/material/file-image.svg +1 -0
  6082. docsforge/themes/material/templates/.icons/material/file-import-outline.svg +1 -0
  6083. docsforge/themes/material/templates/.icons/material/file-import.svg +1 -0
  6084. docsforge/themes/material/templates/.icons/material/file-jpg-box.svg +1 -0
  6085. docsforge/themes/material/templates/.icons/material/file-key-outline.svg +1 -0
  6086. docsforge/themes/material/templates/.icons/material/file-key.svg +1 -0
  6087. docsforge/themes/material/templates/.icons/material/file-link-outline.svg +1 -0
  6088. docsforge/themes/material/templates/.icons/material/file-link.svg +1 -0
  6089. docsforge/themes/material/templates/.icons/material/file-lock-open-outline.svg +1 -0
  6090. docsforge/themes/material/templates/.icons/material/file-lock-open.svg +1 -0
  6091. docsforge/themes/material/templates/.icons/material/file-lock-outline.svg +1 -0
  6092. docsforge/themes/material/templates/.icons/material/file-lock.svg +1 -0
  6093. docsforge/themes/material/templates/.icons/material/file-marker-outline.svg +1 -0
  6094. docsforge/themes/material/templates/.icons/material/file-marker.svg +1 -0
  6095. docsforge/themes/material/templates/.icons/material/file-minus-outline.svg +1 -0
  6096. docsforge/themes/material/templates/.icons/material/file-minus.svg +1 -0
  6097. docsforge/themes/material/templates/.icons/material/file-move-outline.svg +1 -0
  6098. docsforge/themes/material/templates/.icons/material/file-move.svg +1 -0
  6099. docsforge/themes/material/templates/.icons/material/file-multiple-outline.svg +1 -0
  6100. docsforge/themes/material/templates/.icons/material/file-multiple.svg +1 -0
  6101. docsforge/themes/material/templates/.icons/material/file-music-outline.svg +1 -0
  6102. docsforge/themes/material/templates/.icons/material/file-music.svg +1 -0
  6103. docsforge/themes/material/templates/.icons/material/file-outline.svg +1 -0
  6104. docsforge/themes/material/templates/.icons/material/file-pdf-box.svg +1 -0
  6105. docsforge/themes/material/templates/.icons/material/file-percent-outline.svg +1 -0
  6106. docsforge/themes/material/templates/.icons/material/file-percent.svg +1 -0
  6107. docsforge/themes/material/templates/.icons/material/file-phone-outline.svg +1 -0
  6108. docsforge/themes/material/templates/.icons/material/file-phone.svg +1 -0
  6109. docsforge/themes/material/templates/.icons/material/file-plus-outline.svg +1 -0
  6110. docsforge/themes/material/templates/.icons/material/file-plus.svg +1 -0
  6111. docsforge/themes/material/templates/.icons/material/file-png-box.svg +1 -0
  6112. docsforge/themes/material/templates/.icons/material/file-powerpoint-box-outline.svg +1 -0
  6113. docsforge/themes/material/templates/.icons/material/file-powerpoint-box.svg +1 -0
  6114. docsforge/themes/material/templates/.icons/material/file-powerpoint-outline.svg +1 -0
  6115. docsforge/themes/material/templates/.icons/material/file-powerpoint.svg +1 -0
  6116. docsforge/themes/material/templates/.icons/material/file-presentation-box.svg +1 -0
  6117. docsforge/themes/material/templates/.icons/material/file-question-outline.svg +1 -0
  6118. docsforge/themes/material/templates/.icons/material/file-question.svg +1 -0
  6119. docsforge/themes/material/templates/.icons/material/file-refresh-outline.svg +1 -0
  6120. docsforge/themes/material/templates/.icons/material/file-refresh.svg +1 -0
  6121. docsforge/themes/material/templates/.icons/material/file-remove-outline.svg +1 -0
  6122. docsforge/themes/material/templates/.icons/material/file-remove.svg +1 -0
  6123. docsforge/themes/material/templates/.icons/material/file-replace-outline.svg +1 -0
  6124. docsforge/themes/material/templates/.icons/material/file-replace.svg +1 -0
  6125. docsforge/themes/material/templates/.icons/material/file-restore-outline.svg +1 -0
  6126. docsforge/themes/material/templates/.icons/material/file-restore.svg +1 -0
  6127. docsforge/themes/material/templates/.icons/material/file-rotate-left-outline.svg +1 -0
  6128. docsforge/themes/material/templates/.icons/material/file-rotate-left.svg +1 -0
  6129. docsforge/themes/material/templates/.icons/material/file-rotate-right-outline.svg +1 -0
  6130. docsforge/themes/material/templates/.icons/material/file-rotate-right.svg +1 -0
  6131. docsforge/themes/material/templates/.icons/material/file-search-outline.svg +1 -0
  6132. docsforge/themes/material/templates/.icons/material/file-search.svg +1 -0
  6133. docsforge/themes/material/templates/.icons/material/file-send-outline.svg +1 -0
  6134. docsforge/themes/material/templates/.icons/material/file-send.svg +1 -0
  6135. docsforge/themes/material/templates/.icons/material/file-settings-outline.svg +1 -0
  6136. docsforge/themes/material/templates/.icons/material/file-settings.svg +1 -0
  6137. docsforge/themes/material/templates/.icons/material/file-sign.svg +1 -0
  6138. docsforge/themes/material/templates/.icons/material/file-star-four-points-outline.svg +1 -0
  6139. docsforge/themes/material/templates/.icons/material/file-star-four-points.svg +1 -0
  6140. docsforge/themes/material/templates/.icons/material/file-star-outline.svg +1 -0
  6141. docsforge/themes/material/templates/.icons/material/file-star.svg +1 -0
  6142. docsforge/themes/material/templates/.icons/material/file-swap-outline.svg +1 -0
  6143. docsforge/themes/material/templates/.icons/material/file-swap.svg +1 -0
  6144. docsforge/themes/material/templates/.icons/material/file-sync-outline.svg +1 -0
  6145. docsforge/themes/material/templates/.icons/material/file-sync.svg +1 -0
  6146. docsforge/themes/material/templates/.icons/material/file-table-box-multiple-outline.svg +1 -0
  6147. docsforge/themes/material/templates/.icons/material/file-table-box-multiple.svg +1 -0
  6148. docsforge/themes/material/templates/.icons/material/file-table-box-outline.svg +1 -0
  6149. docsforge/themes/material/templates/.icons/material/file-table-box.svg +1 -0
  6150. docsforge/themes/material/templates/.icons/material/file-table-outline.svg +1 -0
  6151. docsforge/themes/material/templates/.icons/material/file-table.svg +1 -0
  6152. docsforge/themes/material/templates/.icons/material/file-tree-outline.svg +1 -0
  6153. docsforge/themes/material/templates/.icons/material/file-tree.svg +1 -0
  6154. docsforge/themes/material/templates/.icons/material/file-undo-outline.svg +1 -0
  6155. docsforge/themes/material/templates/.icons/material/file-undo.svg +1 -0
  6156. docsforge/themes/material/templates/.icons/material/file-upload-outline.svg +1 -0
  6157. docsforge/themes/material/templates/.icons/material/file-upload.svg +1 -0
  6158. docsforge/themes/material/templates/.icons/material/file-video-outline.svg +1 -0
  6159. docsforge/themes/material/templates/.icons/material/file-video.svg +1 -0
  6160. docsforge/themes/material/templates/.icons/material/file-word-box-outline.svg +1 -0
  6161. docsforge/themes/material/templates/.icons/material/file-word-box.svg +1 -0
  6162. docsforge/themes/material/templates/.icons/material/file-word-outline.svg +1 -0
  6163. docsforge/themes/material/templates/.icons/material/file-word.svg +1 -0
  6164. docsforge/themes/material/templates/.icons/material/file-xml-box.svg +1 -0
  6165. docsforge/themes/material/templates/.icons/material/file.svg +1 -0
  6166. docsforge/themes/material/templates/.icons/material/film.svg +1 -0
  6167. docsforge/themes/material/templates/.icons/material/filmstrip-box-multiple.svg +1 -0
  6168. docsforge/themes/material/templates/.icons/material/filmstrip-box.svg +1 -0
  6169. docsforge/themes/material/templates/.icons/material/filmstrip-off.svg +1 -0
  6170. docsforge/themes/material/templates/.icons/material/filmstrip.svg +1 -0
  6171. docsforge/themes/material/templates/.icons/material/filter-check-outline.svg +1 -0
  6172. docsforge/themes/material/templates/.icons/material/filter-check.svg +1 -0
  6173. docsforge/themes/material/templates/.icons/material/filter-cog-outline.svg +1 -0
  6174. docsforge/themes/material/templates/.icons/material/filter-cog.svg +1 -0
  6175. docsforge/themes/material/templates/.icons/material/filter-menu-outline.svg +1 -0
  6176. docsforge/themes/material/templates/.icons/material/filter-menu.svg +1 -0
  6177. docsforge/themes/material/templates/.icons/material/filter-minus-outline.svg +1 -0
  6178. docsforge/themes/material/templates/.icons/material/filter-minus.svg +1 -0
  6179. docsforge/themes/material/templates/.icons/material/filter-multiple-outline.svg +1 -0
  6180. docsforge/themes/material/templates/.icons/material/filter-multiple.svg +1 -0
  6181. docsforge/themes/material/templates/.icons/material/filter-off-outline.svg +1 -0
  6182. docsforge/themes/material/templates/.icons/material/filter-off.svg +1 -0
  6183. docsforge/themes/material/templates/.icons/material/filter-outline.svg +1 -0
  6184. docsforge/themes/material/templates/.icons/material/filter-plus-outline.svg +1 -0
  6185. docsforge/themes/material/templates/.icons/material/filter-plus.svg +1 -0
  6186. docsforge/themes/material/templates/.icons/material/filter-remove-outline.svg +1 -0
  6187. docsforge/themes/material/templates/.icons/material/filter-remove.svg +1 -0
  6188. docsforge/themes/material/templates/.icons/material/filter-settings-outline.svg +1 -0
  6189. docsforge/themes/material/templates/.icons/material/filter-settings.svg +1 -0
  6190. docsforge/themes/material/templates/.icons/material/filter-variant-minus.svg +1 -0
  6191. docsforge/themes/material/templates/.icons/material/filter-variant-plus.svg +1 -0
  6192. docsforge/themes/material/templates/.icons/material/filter-variant-remove.svg +1 -0
  6193. docsforge/themes/material/templates/.icons/material/filter-variant.svg +1 -0
  6194. docsforge/themes/material/templates/.icons/material/filter.svg +1 -0
  6195. docsforge/themes/material/templates/.icons/material/finance.svg +1 -0
  6196. docsforge/themes/material/templates/.icons/material/find-replace.svg +1 -0
  6197. docsforge/themes/material/templates/.icons/material/fingerprint-off.svg +1 -0
  6198. docsforge/themes/material/templates/.icons/material/fingerprint.svg +1 -0
  6199. docsforge/themes/material/templates/.icons/material/fire-alert.svg +1 -0
  6200. docsforge/themes/material/templates/.icons/material/fire-circle.svg +1 -0
  6201. docsforge/themes/material/templates/.icons/material/fire-extinguisher.svg +1 -0
  6202. docsforge/themes/material/templates/.icons/material/fire-hydrant-alert.svg +1 -0
  6203. docsforge/themes/material/templates/.icons/material/fire-hydrant-off.svg +1 -0
  6204. docsforge/themes/material/templates/.icons/material/fire-hydrant.svg +1 -0
  6205. docsforge/themes/material/templates/.icons/material/fire-off.svg +1 -0
  6206. docsforge/themes/material/templates/.icons/material/fire-station.svg +1 -0
  6207. docsforge/themes/material/templates/.icons/material/fire-truck.svg +1 -0
  6208. docsforge/themes/material/templates/.icons/material/fire.svg +1 -0
  6209. docsforge/themes/material/templates/.icons/material/firebase.svg +1 -0
  6210. docsforge/themes/material/templates/.icons/material/firefox.svg +1 -0
  6211. docsforge/themes/material/templates/.icons/material/fireplace-off.svg +1 -0
  6212. docsforge/themes/material/templates/.icons/material/fireplace.svg +1 -0
  6213. docsforge/themes/material/templates/.icons/material/firewire.svg +1 -0
  6214. docsforge/themes/material/templates/.icons/material/firework-off.svg +1 -0
  6215. docsforge/themes/material/templates/.icons/material/firework.svg +1 -0
  6216. docsforge/themes/material/templates/.icons/material/fish-off.svg +1 -0
  6217. docsforge/themes/material/templates/.icons/material/fish.svg +1 -0
  6218. docsforge/themes/material/templates/.icons/material/fishbowl-outline.svg +1 -0
  6219. docsforge/themes/material/templates/.icons/material/fishbowl.svg +1 -0
  6220. docsforge/themes/material/templates/.icons/material/fit-to-page-outline.svg +1 -0
  6221. docsforge/themes/material/templates/.icons/material/fit-to-page.svg +1 -0
  6222. docsforge/themes/material/templates/.icons/material/fit-to-screen-outline.svg +1 -0
  6223. docsforge/themes/material/templates/.icons/material/fit-to-screen.svg +1 -0
  6224. docsforge/themes/material/templates/.icons/material/flag-checkered.svg +1 -0
  6225. docsforge/themes/material/templates/.icons/material/flag-minus-outline.svg +1 -0
  6226. docsforge/themes/material/templates/.icons/material/flag-minus.svg +1 -0
  6227. docsforge/themes/material/templates/.icons/material/flag-off-outline.svg +1 -0
  6228. docsforge/themes/material/templates/.icons/material/flag-off.svg +1 -0
  6229. docsforge/themes/material/templates/.icons/material/flag-outline.svg +1 -0
  6230. docsforge/themes/material/templates/.icons/material/flag-plus-outline.svg +1 -0
  6231. docsforge/themes/material/templates/.icons/material/flag-plus.svg +1 -0
  6232. docsforge/themes/material/templates/.icons/material/flag-remove-outline.svg +1 -0
  6233. docsforge/themes/material/templates/.icons/material/flag-remove.svg +1 -0
  6234. docsforge/themes/material/templates/.icons/material/flag-triangle.svg +1 -0
  6235. docsforge/themes/material/templates/.icons/material/flag-variant-minus-outline.svg +1 -0
  6236. docsforge/themes/material/templates/.icons/material/flag-variant-minus.svg +1 -0
  6237. docsforge/themes/material/templates/.icons/material/flag-variant-off-outline.svg +1 -0
  6238. docsforge/themes/material/templates/.icons/material/flag-variant-off.svg +1 -0
  6239. docsforge/themes/material/templates/.icons/material/flag-variant-outline.svg +1 -0
  6240. docsforge/themes/material/templates/.icons/material/flag-variant-plus-outline.svg +1 -0
  6241. docsforge/themes/material/templates/.icons/material/flag-variant-plus.svg +1 -0
  6242. docsforge/themes/material/templates/.icons/material/flag-variant-remove-outline.svg +1 -0
  6243. docsforge/themes/material/templates/.icons/material/flag-variant-remove.svg +1 -0
  6244. docsforge/themes/material/templates/.icons/material/flag-variant.svg +1 -0
  6245. docsforge/themes/material/templates/.icons/material/flag.svg +1 -0
  6246. docsforge/themes/material/templates/.icons/material/flare.svg +1 -0
  6247. docsforge/themes/material/templates/.icons/material/flash-alert-outline.svg +1 -0
  6248. docsforge/themes/material/templates/.icons/material/flash-alert.svg +1 -0
  6249. docsforge/themes/material/templates/.icons/material/flash-auto.svg +1 -0
  6250. docsforge/themes/material/templates/.icons/material/flash-off-outline.svg +1 -0
  6251. docsforge/themes/material/templates/.icons/material/flash-off.svg +1 -0
  6252. docsforge/themes/material/templates/.icons/material/flash-outline.svg +1 -0
  6253. docsforge/themes/material/templates/.icons/material/flash-red-eye.svg +1 -0
  6254. docsforge/themes/material/templates/.icons/material/flash-triangle-outline.svg +1 -0
  6255. docsforge/themes/material/templates/.icons/material/flash-triangle.svg +1 -0
  6256. docsforge/themes/material/templates/.icons/material/flash.svg +1 -0
  6257. docsforge/themes/material/templates/.icons/material/flashlight-off.svg +1 -0
  6258. docsforge/themes/material/templates/.icons/material/flashlight.svg +1 -0
  6259. docsforge/themes/material/templates/.icons/material/flask-empty-minus-outline.svg +1 -0
  6260. docsforge/themes/material/templates/.icons/material/flask-empty-minus.svg +1 -0
  6261. docsforge/themes/material/templates/.icons/material/flask-empty-off-outline.svg +1 -0
  6262. docsforge/themes/material/templates/.icons/material/flask-empty-off.svg +1 -0
  6263. docsforge/themes/material/templates/.icons/material/flask-empty-outline.svg +1 -0
  6264. docsforge/themes/material/templates/.icons/material/flask-empty-plus-outline.svg +1 -0
  6265. docsforge/themes/material/templates/.icons/material/flask-empty-plus.svg +1 -0
  6266. docsforge/themes/material/templates/.icons/material/flask-empty-remove-outline.svg +1 -0
  6267. docsforge/themes/material/templates/.icons/material/flask-empty-remove.svg +1 -0
  6268. docsforge/themes/material/templates/.icons/material/flask-empty.svg +1 -0
  6269. docsforge/themes/material/templates/.icons/material/flask-minus-outline.svg +1 -0
  6270. docsforge/themes/material/templates/.icons/material/flask-minus.svg +1 -0
  6271. docsforge/themes/material/templates/.icons/material/flask-off-outline.svg +1 -0
  6272. docsforge/themes/material/templates/.icons/material/flask-off.svg +1 -0
  6273. docsforge/themes/material/templates/.icons/material/flask-outline.svg +1 -0
  6274. docsforge/themes/material/templates/.icons/material/flask-plus-outline.svg +1 -0
  6275. docsforge/themes/material/templates/.icons/material/flask-plus.svg +1 -0
  6276. docsforge/themes/material/templates/.icons/material/flask-remove-outline.svg +1 -0
  6277. docsforge/themes/material/templates/.icons/material/flask-remove.svg +1 -0
  6278. docsforge/themes/material/templates/.icons/material/flask-round-bottom-empty-outline.svg +1 -0
  6279. docsforge/themes/material/templates/.icons/material/flask-round-bottom-empty.svg +1 -0
  6280. docsforge/themes/material/templates/.icons/material/flask-round-bottom-outline.svg +1 -0
  6281. docsforge/themes/material/templates/.icons/material/flask-round-bottom.svg +1 -0
  6282. docsforge/themes/material/templates/.icons/material/flask.svg +1 -0
  6283. docsforge/themes/material/templates/.icons/material/fleur-de-lis.svg +1 -0
  6284. docsforge/themes/material/templates/.icons/material/flip-horizontal.svg +1 -0
  6285. docsforge/themes/material/templates/.icons/material/flip-to-back.svg +1 -0
  6286. docsforge/themes/material/templates/.icons/material/flip-to-front.svg +1 -0
  6287. docsforge/themes/material/templates/.icons/material/flip-vertical.svg +1 -0
  6288. docsforge/themes/material/templates/.icons/material/floor-lamp-dual-outline.svg +1 -0
  6289. docsforge/themes/material/templates/.icons/material/floor-lamp-dual.svg +1 -0
  6290. docsforge/themes/material/templates/.icons/material/floor-lamp-outline.svg +1 -0
  6291. docsforge/themes/material/templates/.icons/material/floor-lamp-torchiere-outline.svg +1 -0
  6292. docsforge/themes/material/templates/.icons/material/floor-lamp-torchiere-variant-outline.svg +1 -0
  6293. docsforge/themes/material/templates/.icons/material/floor-lamp-torchiere-variant.svg +1 -0
  6294. docsforge/themes/material/templates/.icons/material/floor-lamp-torchiere.svg +1 -0
  6295. docsforge/themes/material/templates/.icons/material/floor-lamp.svg +1 -0
  6296. docsforge/themes/material/templates/.icons/material/floor-plan.svg +1 -0
  6297. docsforge/themes/material/templates/.icons/material/floppy-variant.svg +1 -0
  6298. docsforge/themes/material/templates/.icons/material/floppy.svg +1 -0
  6299. docsforge/themes/material/templates/.icons/material/flower-outline.svg +1 -0
  6300. docsforge/themes/material/templates/.icons/material/flower-pollen-outline.svg +1 -0
  6301. docsforge/themes/material/templates/.icons/material/flower-pollen.svg +1 -0
  6302. docsforge/themes/material/templates/.icons/material/flower-poppy.svg +1 -0
  6303. docsforge/themes/material/templates/.icons/material/flower-tulip-outline.svg +1 -0
  6304. docsforge/themes/material/templates/.icons/material/flower-tulip.svg +1 -0
  6305. docsforge/themes/material/templates/.icons/material/flower.svg +1 -0
  6306. docsforge/themes/material/templates/.icons/material/focus-auto.svg +1 -0
  6307. docsforge/themes/material/templates/.icons/material/focus-field-horizontal.svg +1 -0
  6308. docsforge/themes/material/templates/.icons/material/focus-field-vertical.svg +1 -0
  6309. docsforge/themes/material/templates/.icons/material/focus-field.svg +1 -0
  6310. docsforge/themes/material/templates/.icons/material/folder-account-outline.svg +1 -0
  6311. docsforge/themes/material/templates/.icons/material/folder-account.svg +1 -0
  6312. docsforge/themes/material/templates/.icons/material/folder-alert-outline.svg +1 -0
  6313. docsforge/themes/material/templates/.icons/material/folder-alert.svg +1 -0
  6314. docsforge/themes/material/templates/.icons/material/folder-arrow-down-outline.svg +1 -0
  6315. docsforge/themes/material/templates/.icons/material/folder-arrow-down.svg +1 -0
  6316. docsforge/themes/material/templates/.icons/material/folder-arrow-left-outline.svg +1 -0
  6317. docsforge/themes/material/templates/.icons/material/folder-arrow-left-right-outline.svg +1 -0
  6318. docsforge/themes/material/templates/.icons/material/folder-arrow-left-right.svg +1 -0
  6319. docsforge/themes/material/templates/.icons/material/folder-arrow-left.svg +1 -0
  6320. docsforge/themes/material/templates/.icons/material/folder-arrow-right-outline.svg +1 -0
  6321. docsforge/themes/material/templates/.icons/material/folder-arrow-right.svg +1 -0
  6322. docsforge/themes/material/templates/.icons/material/folder-arrow-up-down-outline.svg +1 -0
  6323. docsforge/themes/material/templates/.icons/material/folder-arrow-up-down.svg +1 -0
  6324. docsforge/themes/material/templates/.icons/material/folder-arrow-up-outline.svg +1 -0
  6325. docsforge/themes/material/templates/.icons/material/folder-arrow-up.svg +1 -0
  6326. docsforge/themes/material/templates/.icons/material/folder-cancel-outline.svg +1 -0
  6327. docsforge/themes/material/templates/.icons/material/folder-cancel.svg +1 -0
  6328. docsforge/themes/material/templates/.icons/material/folder-check-outline.svg +1 -0
  6329. docsforge/themes/material/templates/.icons/material/folder-check.svg +1 -0
  6330. docsforge/themes/material/templates/.icons/material/folder-clock-outline.svg +1 -0
  6331. docsforge/themes/material/templates/.icons/material/folder-clock.svg +1 -0
  6332. docsforge/themes/material/templates/.icons/material/folder-cog-outline.svg +1 -0
  6333. docsforge/themes/material/templates/.icons/material/folder-cog.svg +1 -0
  6334. docsforge/themes/material/templates/.icons/material/folder-download-outline.svg +1 -0
  6335. docsforge/themes/material/templates/.icons/material/folder-download.svg +1 -0
  6336. docsforge/themes/material/templates/.icons/material/folder-edit-outline.svg +1 -0
  6337. docsforge/themes/material/templates/.icons/material/folder-edit.svg +1 -0
  6338. docsforge/themes/material/templates/.icons/material/folder-eye-outline.svg +1 -0
  6339. docsforge/themes/material/templates/.icons/material/folder-eye.svg +1 -0
  6340. docsforge/themes/material/templates/.icons/material/folder-file-outline.svg +1 -0
  6341. docsforge/themes/material/templates/.icons/material/folder-file.svg +1 -0
  6342. docsforge/themes/material/templates/.icons/material/folder-google-drive.svg +1 -0
  6343. docsforge/themes/material/templates/.icons/material/folder-heart-outline.svg +1 -0
  6344. docsforge/themes/material/templates/.icons/material/folder-heart.svg +1 -0
  6345. docsforge/themes/material/templates/.icons/material/folder-hidden.svg +1 -0
  6346. docsforge/themes/material/templates/.icons/material/folder-home-outline.svg +1 -0
  6347. docsforge/themes/material/templates/.icons/material/folder-home.svg +1 -0
  6348. docsforge/themes/material/templates/.icons/material/folder-image.svg +1 -0
  6349. docsforge/themes/material/templates/.icons/material/folder-information-outline.svg +1 -0
  6350. docsforge/themes/material/templates/.icons/material/folder-information.svg +1 -0
  6351. docsforge/themes/material/templates/.icons/material/folder-key-network-outline.svg +1 -0
  6352. docsforge/themes/material/templates/.icons/material/folder-key-network.svg +1 -0
  6353. docsforge/themes/material/templates/.icons/material/folder-key-outline.svg +1 -0
  6354. docsforge/themes/material/templates/.icons/material/folder-key.svg +1 -0
  6355. docsforge/themes/material/templates/.icons/material/folder-lock-open-outline.svg +1 -0
  6356. docsforge/themes/material/templates/.icons/material/folder-lock-open.svg +1 -0
  6357. docsforge/themes/material/templates/.icons/material/folder-lock-outline.svg +1 -0
  6358. docsforge/themes/material/templates/.icons/material/folder-lock.svg +1 -0
  6359. docsforge/themes/material/templates/.icons/material/folder-marker-outline.svg +1 -0
  6360. docsforge/themes/material/templates/.icons/material/folder-marker.svg +1 -0
  6361. docsforge/themes/material/templates/.icons/material/folder-minus-outline.svg +1 -0
  6362. docsforge/themes/material/templates/.icons/material/folder-minus.svg +1 -0
  6363. docsforge/themes/material/templates/.icons/material/folder-move-outline.svg +1 -0
  6364. docsforge/themes/material/templates/.icons/material/folder-move.svg +1 -0
  6365. docsforge/themes/material/templates/.icons/material/folder-multiple-image.svg +1 -0
  6366. docsforge/themes/material/templates/.icons/material/folder-multiple-outline.svg +1 -0
  6367. docsforge/themes/material/templates/.icons/material/folder-multiple-plus-outline.svg +1 -0
  6368. docsforge/themes/material/templates/.icons/material/folder-multiple-plus.svg +1 -0
  6369. docsforge/themes/material/templates/.icons/material/folder-multiple.svg +1 -0
  6370. docsforge/themes/material/templates/.icons/material/folder-music-outline.svg +1 -0
  6371. docsforge/themes/material/templates/.icons/material/folder-music.svg +1 -0
  6372. docsforge/themes/material/templates/.icons/material/folder-network-outline.svg +1 -0
  6373. docsforge/themes/material/templates/.icons/material/folder-network.svg +1 -0
  6374. docsforge/themes/material/templates/.icons/material/folder-off-outline.svg +1 -0
  6375. docsforge/themes/material/templates/.icons/material/folder-off.svg +1 -0
  6376. docsforge/themes/material/templates/.icons/material/folder-open-outline.svg +1 -0
  6377. docsforge/themes/material/templates/.icons/material/folder-open.svg +1 -0
  6378. docsforge/themes/material/templates/.icons/material/folder-outline.svg +1 -0
  6379. docsforge/themes/material/templates/.icons/material/folder-play-outline.svg +1 -0
  6380. docsforge/themes/material/templates/.icons/material/folder-play.svg +1 -0
  6381. docsforge/themes/material/templates/.icons/material/folder-plus-outline.svg +1 -0
  6382. docsforge/themes/material/templates/.icons/material/folder-plus.svg +1 -0
  6383. docsforge/themes/material/templates/.icons/material/folder-pound-outline.svg +1 -0
  6384. docsforge/themes/material/templates/.icons/material/folder-pound.svg +1 -0
  6385. docsforge/themes/material/templates/.icons/material/folder-question-outline.svg +1 -0
  6386. docsforge/themes/material/templates/.icons/material/folder-question.svg +1 -0
  6387. docsforge/themes/material/templates/.icons/material/folder-refresh-outline.svg +1 -0
  6388. docsforge/themes/material/templates/.icons/material/folder-refresh.svg +1 -0
  6389. docsforge/themes/material/templates/.icons/material/folder-remove-outline.svg +1 -0
  6390. docsforge/themes/material/templates/.icons/material/folder-remove.svg +1 -0
  6391. docsforge/themes/material/templates/.icons/material/folder-search-outline.svg +1 -0
  6392. docsforge/themes/material/templates/.icons/material/folder-search.svg +1 -0
  6393. docsforge/themes/material/templates/.icons/material/folder-settings-outline.svg +1 -0
  6394. docsforge/themes/material/templates/.icons/material/folder-settings.svg +1 -0
  6395. docsforge/themes/material/templates/.icons/material/folder-star-multiple-outline.svg +1 -0
  6396. docsforge/themes/material/templates/.icons/material/folder-star-multiple.svg +1 -0
  6397. docsforge/themes/material/templates/.icons/material/folder-star-outline.svg +1 -0
  6398. docsforge/themes/material/templates/.icons/material/folder-star.svg +1 -0
  6399. docsforge/themes/material/templates/.icons/material/folder-swap-outline.svg +1 -0
  6400. docsforge/themes/material/templates/.icons/material/folder-swap.svg +1 -0
  6401. docsforge/themes/material/templates/.icons/material/folder-sync-outline.svg +1 -0
  6402. docsforge/themes/material/templates/.icons/material/folder-sync.svg +1 -0
  6403. docsforge/themes/material/templates/.icons/material/folder-table-outline.svg +1 -0
  6404. docsforge/themes/material/templates/.icons/material/folder-table.svg +1 -0
  6405. docsforge/themes/material/templates/.icons/material/folder-text-outline.svg +1 -0
  6406. docsforge/themes/material/templates/.icons/material/folder-text.svg +1 -0
  6407. docsforge/themes/material/templates/.icons/material/folder-upload-outline.svg +1 -0
  6408. docsforge/themes/material/templates/.icons/material/folder-upload.svg +1 -0
  6409. docsforge/themes/material/templates/.icons/material/folder-wrench-outline.svg +1 -0
  6410. docsforge/themes/material/templates/.icons/material/folder-wrench.svg +1 -0
  6411. docsforge/themes/material/templates/.icons/material/folder-zip-outline.svg +1 -0
  6412. docsforge/themes/material/templates/.icons/material/folder-zip.svg +1 -0
  6413. docsforge/themes/material/templates/.icons/material/folder.svg +1 -0
  6414. docsforge/themes/material/templates/.icons/material/font-awesome.svg +1 -0
  6415. docsforge/themes/material/templates/.icons/material/food-apple-outline.svg +1 -0
  6416. docsforge/themes/material/templates/.icons/material/food-apple.svg +1 -0
  6417. docsforge/themes/material/templates/.icons/material/food-croissant.svg +1 -0
  6418. docsforge/themes/material/templates/.icons/material/food-drumstick-off-outline.svg +1 -0
  6419. docsforge/themes/material/templates/.icons/material/food-drumstick-off.svg +1 -0
  6420. docsforge/themes/material/templates/.icons/material/food-drumstick-outline.svg +1 -0
  6421. docsforge/themes/material/templates/.icons/material/food-drumstick.svg +1 -0
  6422. docsforge/themes/material/templates/.icons/material/food-fork-drink.svg +1 -0
  6423. docsforge/themes/material/templates/.icons/material/food-halal.svg +1 -0
  6424. docsforge/themes/material/templates/.icons/material/food-hot-dog.svg +1 -0
  6425. docsforge/themes/material/templates/.icons/material/food-kosher.svg +1 -0
  6426. docsforge/themes/material/templates/.icons/material/food-off-outline.svg +1 -0
  6427. docsforge/themes/material/templates/.icons/material/food-off.svg +1 -0
  6428. docsforge/themes/material/templates/.icons/material/food-outline.svg +1 -0
  6429. docsforge/themes/material/templates/.icons/material/food-steak-off.svg +1 -0
  6430. docsforge/themes/material/templates/.icons/material/food-steak.svg +1 -0
  6431. docsforge/themes/material/templates/.icons/material/food-takeout-box-outline.svg +1 -0
  6432. docsforge/themes/material/templates/.icons/material/food-takeout-box.svg +1 -0
  6433. docsforge/themes/material/templates/.icons/material/food-turkey.svg +1 -0
  6434. docsforge/themes/material/templates/.icons/material/food-variant-off.svg +1 -0
  6435. docsforge/themes/material/templates/.icons/material/food-variant.svg +1 -0
  6436. docsforge/themes/material/templates/.icons/material/food.svg +1 -0
  6437. docsforge/themes/material/templates/.icons/material/foot-print.svg +1 -0
  6438. docsforge/themes/material/templates/.icons/material/football-australian.svg +1 -0
  6439. docsforge/themes/material/templates/.icons/material/football-helmet.svg +1 -0
  6440. docsforge/themes/material/templates/.icons/material/football.svg +1 -0
  6441. docsforge/themes/material/templates/.icons/material/forest-outline.svg +1 -0
  6442. docsforge/themes/material/templates/.icons/material/forest.svg +1 -0
  6443. docsforge/themes/material/templates/.icons/material/forklift.svg +1 -0
  6444. docsforge/themes/material/templates/.icons/material/form-dropdown.svg +1 -0
  6445. docsforge/themes/material/templates/.icons/material/form-select.svg +1 -0
  6446. docsforge/themes/material/templates/.icons/material/form-textarea.svg +1 -0
  6447. docsforge/themes/material/templates/.icons/material/form-textbox-lock.svg +1 -0
  6448. docsforge/themes/material/templates/.icons/material/form-textbox-password.svg +1 -0
  6449. docsforge/themes/material/templates/.icons/material/form-textbox.svg +1 -0
  6450. docsforge/themes/material/templates/.icons/material/format-align-bottom.svg +1 -0
  6451. docsforge/themes/material/templates/.icons/material/format-align-center.svg +1 -0
  6452. docsforge/themes/material/templates/.icons/material/format-align-justify.svg +1 -0
  6453. docsforge/themes/material/templates/.icons/material/format-align-left.svg +1 -0
  6454. docsforge/themes/material/templates/.icons/material/format-align-middle.svg +1 -0
  6455. docsforge/themes/material/templates/.icons/material/format-align-right.svg +1 -0
  6456. docsforge/themes/material/templates/.icons/material/format-align-top.svg +1 -0
  6457. docsforge/themes/material/templates/.icons/material/format-annotation-minus.svg +1 -0
  6458. docsforge/themes/material/templates/.icons/material/format-annotation-plus.svg +1 -0
  6459. docsforge/themes/material/templates/.icons/material/format-bold.svg +1 -0
  6460. docsforge/themes/material/templates/.icons/material/format-clear.svg +1 -0
  6461. docsforge/themes/material/templates/.icons/material/format-color-fill.svg +1 -0
  6462. docsforge/themes/material/templates/.icons/material/format-color-highlight.svg +1 -0
  6463. docsforge/themes/material/templates/.icons/material/format-color-marker-cancel.svg +1 -0
  6464. docsforge/themes/material/templates/.icons/material/format-color-text.svg +1 -0
  6465. docsforge/themes/material/templates/.icons/material/format-columns.svg +1 -0
  6466. docsforge/themes/material/templates/.icons/material/format-float-center.svg +1 -0
  6467. docsforge/themes/material/templates/.icons/material/format-float-left.svg +1 -0
  6468. docsforge/themes/material/templates/.icons/material/format-float-none.svg +1 -0
  6469. docsforge/themes/material/templates/.icons/material/format-float-right.svg +1 -0
  6470. docsforge/themes/material/templates/.icons/material/format-font-size-decrease.svg +1 -0
  6471. docsforge/themes/material/templates/.icons/material/format-font-size-increase.svg +1 -0
  6472. docsforge/themes/material/templates/.icons/material/format-font.svg +1 -0
  6473. docsforge/themes/material/templates/.icons/material/format-header-1.svg +1 -0
  6474. docsforge/themes/material/templates/.icons/material/format-header-2.svg +1 -0
  6475. docsforge/themes/material/templates/.icons/material/format-header-3.svg +1 -0
  6476. docsforge/themes/material/templates/.icons/material/format-header-4.svg +1 -0
  6477. docsforge/themes/material/templates/.icons/material/format-header-5.svg +1 -0
  6478. docsforge/themes/material/templates/.icons/material/format-header-6.svg +1 -0
  6479. docsforge/themes/material/templates/.icons/material/format-header-decrease.svg +1 -0
  6480. docsforge/themes/material/templates/.icons/material/format-header-equal.svg +1 -0
  6481. docsforge/themes/material/templates/.icons/material/format-header-increase.svg +1 -0
  6482. docsforge/themes/material/templates/.icons/material/format-header-pound.svg +1 -0
  6483. docsforge/themes/material/templates/.icons/material/format-horizontal-align-center.svg +1 -0
  6484. docsforge/themes/material/templates/.icons/material/format-horizontal-align-left.svg +1 -0
  6485. docsforge/themes/material/templates/.icons/material/format-horizontal-align-right.svg +1 -0
  6486. docsforge/themes/material/templates/.icons/material/format-indent-decrease.svg +1 -0
  6487. docsforge/themes/material/templates/.icons/material/format-indent-increase.svg +1 -0
  6488. docsforge/themes/material/templates/.icons/material/format-italic.svg +1 -0
  6489. docsforge/themes/material/templates/.icons/material/format-letter-case-lower.svg +1 -0
  6490. docsforge/themes/material/templates/.icons/material/format-letter-case-upper.svg +1 -0
  6491. docsforge/themes/material/templates/.icons/material/format-letter-case.svg +1 -0
  6492. docsforge/themes/material/templates/.icons/material/format-letter-ends-with.svg +1 -0
  6493. docsforge/themes/material/templates/.icons/material/format-letter-matches.svg +1 -0
  6494. docsforge/themes/material/templates/.icons/material/format-letter-spacing-variant.svg +1 -0
  6495. docsforge/themes/material/templates/.icons/material/format-letter-spacing.svg +1 -0
  6496. docsforge/themes/material/templates/.icons/material/format-letter-starts-with.svg +1 -0
  6497. docsforge/themes/material/templates/.icons/material/format-line-height.svg +1 -0
  6498. docsforge/themes/material/templates/.icons/material/format-line-spacing.svg +1 -0
  6499. docsforge/themes/material/templates/.icons/material/format-line-style.svg +1 -0
  6500. docsforge/themes/material/templates/.icons/material/format-line-weight.svg +1 -0
  6501. docsforge/themes/material/templates/.icons/material/format-list-bulleted-square.svg +1 -0
  6502. docsforge/themes/material/templates/.icons/material/format-list-bulleted-triangle.svg +1 -0
  6503. docsforge/themes/material/templates/.icons/material/format-list-bulleted-type.svg +1 -0
  6504. docsforge/themes/material/templates/.icons/material/format-list-bulleted.svg +1 -0
  6505. docsforge/themes/material/templates/.icons/material/format-list-checkbox.svg +1 -0
  6506. docsforge/themes/material/templates/.icons/material/format-list-checks.svg +1 -0
  6507. docsforge/themes/material/templates/.icons/material/format-list-group-plus.svg +1 -0
  6508. docsforge/themes/material/templates/.icons/material/format-list-group.svg +1 -0
  6509. docsforge/themes/material/templates/.icons/material/format-list-numbered-rtl.svg +1 -0
  6510. docsforge/themes/material/templates/.icons/material/format-list-numbered.svg +1 -0
  6511. docsforge/themes/material/templates/.icons/material/format-list-text.svg +1 -0
  6512. docsforge/themes/material/templates/.icons/material/format-overline.svg +1 -0
  6513. docsforge/themes/material/templates/.icons/material/format-page-break.svg +1 -0
  6514. docsforge/themes/material/templates/.icons/material/format-page-split.svg +1 -0
  6515. docsforge/themes/material/templates/.icons/material/format-paint.svg +1 -0
  6516. docsforge/themes/material/templates/.icons/material/format-paragraph-spacing.svg +1 -0
  6517. docsforge/themes/material/templates/.icons/material/format-paragraph.svg +1 -0
  6518. docsforge/themes/material/templates/.icons/material/format-pilcrow-arrow-left.svg +1 -0
  6519. docsforge/themes/material/templates/.icons/material/format-pilcrow-arrow-right.svg +1 -0
  6520. docsforge/themes/material/templates/.icons/material/format-pilcrow.svg +1 -0
  6521. docsforge/themes/material/templates/.icons/material/format-quote-close-outline.svg +1 -0
  6522. docsforge/themes/material/templates/.icons/material/format-quote-close.svg +1 -0
  6523. docsforge/themes/material/templates/.icons/material/format-quote-open-outline.svg +1 -0
  6524. docsforge/themes/material/templates/.icons/material/format-quote-open.svg +1 -0
  6525. docsforge/themes/material/templates/.icons/material/format-rotate-90.svg +1 -0
  6526. docsforge/themes/material/templates/.icons/material/format-section.svg +1 -0
  6527. docsforge/themes/material/templates/.icons/material/format-size.svg +1 -0
  6528. docsforge/themes/material/templates/.icons/material/format-strikethrough-variant.svg +1 -0
  6529. docsforge/themes/material/templates/.icons/material/format-strikethrough.svg +1 -0
  6530. docsforge/themes/material/templates/.icons/material/format-subscript.svg +1 -0
  6531. docsforge/themes/material/templates/.icons/material/format-superscript.svg +1 -0
  6532. docsforge/themes/material/templates/.icons/material/format-text-rotation-angle-down.svg +1 -0
  6533. docsforge/themes/material/templates/.icons/material/format-text-rotation-angle-up.svg +1 -0
  6534. docsforge/themes/material/templates/.icons/material/format-text-rotation-down-vertical.svg +1 -0
  6535. docsforge/themes/material/templates/.icons/material/format-text-rotation-down.svg +1 -0
  6536. docsforge/themes/material/templates/.icons/material/format-text-rotation-none.svg +1 -0
  6537. docsforge/themes/material/templates/.icons/material/format-text-rotation-up.svg +1 -0
  6538. docsforge/themes/material/templates/.icons/material/format-text-rotation-vertical.svg +1 -0
  6539. docsforge/themes/material/templates/.icons/material/format-text-variant-outline.svg +1 -0
  6540. docsforge/themes/material/templates/.icons/material/format-text-variant.svg +1 -0
  6541. docsforge/themes/material/templates/.icons/material/format-text-wrapping-clip.svg +1 -0
  6542. docsforge/themes/material/templates/.icons/material/format-text-wrapping-overflow.svg +1 -0
  6543. docsforge/themes/material/templates/.icons/material/format-text-wrapping-wrap.svg +1 -0
  6544. docsforge/themes/material/templates/.icons/material/format-text.svg +1 -0
  6545. docsforge/themes/material/templates/.icons/material/format-textbox.svg +1 -0
  6546. docsforge/themes/material/templates/.icons/material/format-title.svg +1 -0
  6547. docsforge/themes/material/templates/.icons/material/format-underline-wavy.svg +1 -0
  6548. docsforge/themes/material/templates/.icons/material/format-underline.svg +1 -0
  6549. docsforge/themes/material/templates/.icons/material/format-vertical-align-bottom.svg +1 -0
  6550. docsforge/themes/material/templates/.icons/material/format-vertical-align-center.svg +1 -0
  6551. docsforge/themes/material/templates/.icons/material/format-vertical-align-top.svg +1 -0
  6552. docsforge/themes/material/templates/.icons/material/format-wrap-inline.svg +1 -0
  6553. docsforge/themes/material/templates/.icons/material/format-wrap-square.svg +1 -0
  6554. docsforge/themes/material/templates/.icons/material/format-wrap-tight.svg +1 -0
  6555. docsforge/themes/material/templates/.icons/material/format-wrap-top-bottom.svg +1 -0
  6556. docsforge/themes/material/templates/.icons/material/forum-minus-outline.svg +1 -0
  6557. docsforge/themes/material/templates/.icons/material/forum-minus.svg +1 -0
  6558. docsforge/themes/material/templates/.icons/material/forum-outline.svg +1 -0
  6559. docsforge/themes/material/templates/.icons/material/forum-plus-outline.svg +1 -0
  6560. docsforge/themes/material/templates/.icons/material/forum-plus.svg +1 -0
  6561. docsforge/themes/material/templates/.icons/material/forum-remove-outline.svg +1 -0
  6562. docsforge/themes/material/templates/.icons/material/forum-remove.svg +1 -0
  6563. docsforge/themes/material/templates/.icons/material/forum.svg +1 -0
  6564. docsforge/themes/material/templates/.icons/material/forward.svg +1 -0
  6565. docsforge/themes/material/templates/.icons/material/forwardburger.svg +1 -0
  6566. docsforge/themes/material/templates/.icons/material/fountain-pen-tip.svg +1 -0
  6567. docsforge/themes/material/templates/.icons/material/fountain-pen.svg +1 -0
  6568. docsforge/themes/material/templates/.icons/material/fountain.svg +1 -0
  6569. docsforge/themes/material/templates/.icons/material/fraction-one-half.svg +1 -0
  6570. docsforge/themes/material/templates/.icons/material/freebsd.svg +1 -0
  6571. docsforge/themes/material/templates/.icons/material/french-fries.svg +1 -0
  6572. docsforge/themes/material/templates/.icons/material/frequently-asked-questions.svg +1 -0
  6573. docsforge/themes/material/templates/.icons/material/fridge-alert-outline.svg +1 -0
  6574. docsforge/themes/material/templates/.icons/material/fridge-alert.svg +1 -0
  6575. docsforge/themes/material/templates/.icons/material/fridge-bottom.svg +1 -0
  6576. docsforge/themes/material/templates/.icons/material/fridge-industrial-alert-outline.svg +1 -0
  6577. docsforge/themes/material/templates/.icons/material/fridge-industrial-alert.svg +1 -0
  6578. docsforge/themes/material/templates/.icons/material/fridge-industrial-off-outline.svg +1 -0
  6579. docsforge/themes/material/templates/.icons/material/fridge-industrial-off.svg +1 -0
  6580. docsforge/themes/material/templates/.icons/material/fridge-industrial-outline.svg +1 -0
  6581. docsforge/themes/material/templates/.icons/material/fridge-industrial.svg +1 -0
  6582. docsforge/themes/material/templates/.icons/material/fridge-off-outline.svg +1 -0
  6583. docsforge/themes/material/templates/.icons/material/fridge-off.svg +1 -0
  6584. docsforge/themes/material/templates/.icons/material/fridge-outline.svg +1 -0
  6585. docsforge/themes/material/templates/.icons/material/fridge-top.svg +1 -0
  6586. docsforge/themes/material/templates/.icons/material/fridge-variant-alert-outline.svg +1 -0
  6587. docsforge/themes/material/templates/.icons/material/fridge-variant-alert.svg +1 -0
  6588. docsforge/themes/material/templates/.icons/material/fridge-variant-off-outline.svg +1 -0
  6589. docsforge/themes/material/templates/.icons/material/fridge-variant-off.svg +1 -0
  6590. docsforge/themes/material/templates/.icons/material/fridge-variant-outline.svg +1 -0
  6591. docsforge/themes/material/templates/.icons/material/fridge-variant.svg +1 -0
  6592. docsforge/themes/material/templates/.icons/material/fridge.svg +1 -0
  6593. docsforge/themes/material/templates/.icons/material/fruit-cherries-off.svg +1 -0
  6594. docsforge/themes/material/templates/.icons/material/fruit-cherries.svg +1 -0
  6595. docsforge/themes/material/templates/.icons/material/fruit-citrus-off.svg +1 -0
  6596. docsforge/themes/material/templates/.icons/material/fruit-citrus.svg +1 -0
  6597. docsforge/themes/material/templates/.icons/material/fruit-grapes-outline.svg +1 -0
  6598. docsforge/themes/material/templates/.icons/material/fruit-grapes.svg +1 -0
  6599. docsforge/themes/material/templates/.icons/material/fruit-pear.svg +1 -0
  6600. docsforge/themes/material/templates/.icons/material/fruit-pineapple.svg +1 -0
  6601. docsforge/themes/material/templates/.icons/material/fruit-watermelon.svg +1 -0
  6602. docsforge/themes/material/templates/.icons/material/fuel-cell.svg +1 -0
  6603. docsforge/themes/material/templates/.icons/material/fuel.svg +1 -0
  6604. docsforge/themes/material/templates/.icons/material/fullscreen-exit.svg +1 -0
  6605. docsforge/themes/material/templates/.icons/material/fullscreen.svg +1 -0
  6606. docsforge/themes/material/templates/.icons/material/function-variant.svg +1 -0
  6607. docsforge/themes/material/templates/.icons/material/function.svg +1 -0
  6608. docsforge/themes/material/templates/.icons/material/furigana-horizontal.svg +1 -0
  6609. docsforge/themes/material/templates/.icons/material/furigana-vertical.svg +1 -0
  6610. docsforge/themes/material/templates/.icons/material/fuse-alert.svg +1 -0
  6611. docsforge/themes/material/templates/.icons/material/fuse-blade.svg +1 -0
  6612. docsforge/themes/material/templates/.icons/material/fuse-off.svg +1 -0
  6613. docsforge/themes/material/templates/.icons/material/fuse.svg +1 -0
  6614. docsforge/themes/material/templates/.icons/material/gamepad-circle-down.svg +1 -0
  6615. docsforge/themes/material/templates/.icons/material/gamepad-circle-left.svg +1 -0
  6616. docsforge/themes/material/templates/.icons/material/gamepad-circle-outline.svg +1 -0
  6617. docsforge/themes/material/templates/.icons/material/gamepad-circle-right.svg +1 -0
  6618. docsforge/themes/material/templates/.icons/material/gamepad-circle-up.svg +1 -0
  6619. docsforge/themes/material/templates/.icons/material/gamepad-circle.svg +1 -0
  6620. docsforge/themes/material/templates/.icons/material/gamepad-down.svg +1 -0
  6621. docsforge/themes/material/templates/.icons/material/gamepad-left.svg +1 -0
  6622. docsforge/themes/material/templates/.icons/material/gamepad-outline.svg +1 -0
  6623. docsforge/themes/material/templates/.icons/material/gamepad-right.svg +1 -0
  6624. docsforge/themes/material/templates/.icons/material/gamepad-round-down.svg +1 -0
  6625. docsforge/themes/material/templates/.icons/material/gamepad-round-left.svg +1 -0
  6626. docsforge/themes/material/templates/.icons/material/gamepad-round-outline.svg +1 -0
  6627. docsforge/themes/material/templates/.icons/material/gamepad-round-right.svg +1 -0
  6628. docsforge/themes/material/templates/.icons/material/gamepad-round-up.svg +1 -0
  6629. docsforge/themes/material/templates/.icons/material/gamepad-round.svg +1 -0
  6630. docsforge/themes/material/templates/.icons/material/gamepad-square-outline.svg +1 -0
  6631. docsforge/themes/material/templates/.icons/material/gamepad-square.svg +1 -0
  6632. docsforge/themes/material/templates/.icons/material/gamepad-up.svg +1 -0
  6633. docsforge/themes/material/templates/.icons/material/gamepad-variant-outline.svg +1 -0
  6634. docsforge/themes/material/templates/.icons/material/gamepad-variant.svg +1 -0
  6635. docsforge/themes/material/templates/.icons/material/gamepad.svg +1 -0
  6636. docsforge/themes/material/templates/.icons/material/gamma.svg +1 -0
  6637. docsforge/themes/material/templates/.icons/material/gantry-crane.svg +1 -0
  6638. docsforge/themes/material/templates/.icons/material/garage-alert-variant.svg +1 -0
  6639. docsforge/themes/material/templates/.icons/material/garage-alert.svg +1 -0
  6640. docsforge/themes/material/templates/.icons/material/garage-lock.svg +1 -0
  6641. docsforge/themes/material/templates/.icons/material/garage-open-variant.svg +1 -0
  6642. docsforge/themes/material/templates/.icons/material/garage-open.svg +1 -0
  6643. docsforge/themes/material/templates/.icons/material/garage-variant-lock.svg +1 -0
  6644. docsforge/themes/material/templates/.icons/material/garage-variant.svg +1 -0
  6645. docsforge/themes/material/templates/.icons/material/garage.svg +1 -0
  6646. docsforge/themes/material/templates/.icons/material/gas-burner.svg +1 -0
  6647. docsforge/themes/material/templates/.icons/material/gas-cylinder.svg +1 -0
  6648. docsforge/themes/material/templates/.icons/material/gas-station-in-use-outline.svg +1 -0
  6649. docsforge/themes/material/templates/.icons/material/gas-station-in-use.svg +1 -0
  6650. docsforge/themes/material/templates/.icons/material/gas-station-off-outline.svg +1 -0
  6651. docsforge/themes/material/templates/.icons/material/gas-station-off.svg +1 -0
  6652. docsforge/themes/material/templates/.icons/material/gas-station-outline.svg +1 -0
  6653. docsforge/themes/material/templates/.icons/material/gas-station.svg +1 -0
  6654. docsforge/themes/material/templates/.icons/material/gate-alert.svg +1 -0
  6655. docsforge/themes/material/templates/.icons/material/gate-and.svg +1 -0
  6656. docsforge/themes/material/templates/.icons/material/gate-arrow-left.svg +1 -0
  6657. docsforge/themes/material/templates/.icons/material/gate-arrow-right.svg +1 -0
  6658. docsforge/themes/material/templates/.icons/material/gate-buffer.svg +1 -0
  6659. docsforge/themes/material/templates/.icons/material/gate-nand.svg +1 -0
  6660. docsforge/themes/material/templates/.icons/material/gate-nor.svg +1 -0
  6661. docsforge/themes/material/templates/.icons/material/gate-not.svg +1 -0
  6662. docsforge/themes/material/templates/.icons/material/gate-open.svg +1 -0
  6663. docsforge/themes/material/templates/.icons/material/gate-or.svg +1 -0
  6664. docsforge/themes/material/templates/.icons/material/gate-xnor.svg +1 -0
  6665. docsforge/themes/material/templates/.icons/material/gate-xor.svg +1 -0
  6666. docsforge/themes/material/templates/.icons/material/gate.svg +1 -0
  6667. docsforge/themes/material/templates/.icons/material/gatsby.svg +1 -0
  6668. docsforge/themes/material/templates/.icons/material/gauge-empty.svg +1 -0
  6669. docsforge/themes/material/templates/.icons/material/gauge-full.svg +1 -0
  6670. docsforge/themes/material/templates/.icons/material/gauge-low.svg +1 -0
  6671. docsforge/themes/material/templates/.icons/material/gauge.svg +1 -0
  6672. docsforge/themes/material/templates/.icons/material/gavel.svg +1 -0
  6673. docsforge/themes/material/templates/.icons/material/gender-female.svg +1 -0
  6674. docsforge/themes/material/templates/.icons/material/gender-male-female-variant.svg +1 -0
  6675. docsforge/themes/material/templates/.icons/material/gender-male-female.svg +1 -0
  6676. docsforge/themes/material/templates/.icons/material/gender-male.svg +1 -0
  6677. docsforge/themes/material/templates/.icons/material/gender-non-binary.svg +1 -0
  6678. docsforge/themes/material/templates/.icons/material/gender-transgender.svg +1 -0
  6679. docsforge/themes/material/templates/.icons/material/generator-mobile.svg +1 -0
  6680. docsforge/themes/material/templates/.icons/material/generator-portable.svg +1 -0
  6681. docsforge/themes/material/templates/.icons/material/generator-stationary.svg +1 -0
  6682. docsforge/themes/material/templates/.icons/material/gentoo.svg +1 -0
  6683. docsforge/themes/material/templates/.icons/material/gesture-double-tap.svg +1 -0
  6684. docsforge/themes/material/templates/.icons/material/gesture-pinch.svg +1 -0
  6685. docsforge/themes/material/templates/.icons/material/gesture-spread.svg +1 -0
  6686. docsforge/themes/material/templates/.icons/material/gesture-swipe-down.svg +1 -0
  6687. docsforge/themes/material/templates/.icons/material/gesture-swipe-horizontal.svg +1 -0
  6688. docsforge/themes/material/templates/.icons/material/gesture-swipe-left.svg +1 -0
  6689. docsforge/themes/material/templates/.icons/material/gesture-swipe-right.svg +1 -0
  6690. docsforge/themes/material/templates/.icons/material/gesture-swipe-up.svg +1 -0
  6691. docsforge/themes/material/templates/.icons/material/gesture-swipe-vertical.svg +1 -0
  6692. docsforge/themes/material/templates/.icons/material/gesture-swipe.svg +1 -0
  6693. docsforge/themes/material/templates/.icons/material/gesture-tap-box.svg +1 -0
  6694. docsforge/themes/material/templates/.icons/material/gesture-tap-button.svg +1 -0
  6695. docsforge/themes/material/templates/.icons/material/gesture-tap-hold.svg +1 -0
  6696. docsforge/themes/material/templates/.icons/material/gesture-tap.svg +1 -0
  6697. docsforge/themes/material/templates/.icons/material/gesture-two-double-tap.svg +1 -0
  6698. docsforge/themes/material/templates/.icons/material/gesture-two-tap.svg +1 -0
  6699. docsforge/themes/material/templates/.icons/material/gesture.svg +1 -0
  6700. docsforge/themes/material/templates/.icons/material/ghost-off-outline.svg +1 -0
  6701. docsforge/themes/material/templates/.icons/material/ghost-off.svg +1 -0
  6702. docsforge/themes/material/templates/.icons/material/ghost-outline.svg +1 -0
  6703. docsforge/themes/material/templates/.icons/material/ghost.svg +1 -0
  6704. docsforge/themes/material/templates/.icons/material/gift-off-outline.svg +1 -0
  6705. docsforge/themes/material/templates/.icons/material/gift-off.svg +1 -0
  6706. docsforge/themes/material/templates/.icons/material/gift-open-outline.svg +1 -0
  6707. docsforge/themes/material/templates/.icons/material/gift-open.svg +1 -0
  6708. docsforge/themes/material/templates/.icons/material/gift-outline.svg +1 -0
  6709. docsforge/themes/material/templates/.icons/material/gift.svg +1 -0
  6710. docsforge/themes/material/templates/.icons/material/git.svg +1 -0
  6711. docsforge/themes/material/templates/.icons/material/github.svg +1 -0
  6712. docsforge/themes/material/templates/.icons/material/gitlab.svg +1 -0
  6713. docsforge/themes/material/templates/.icons/material/glass-cocktail-off.svg +1 -0
  6714. docsforge/themes/material/templates/.icons/material/glass-cocktail.svg +1 -0
  6715. docsforge/themes/material/templates/.icons/material/glass-flute.svg +1 -0
  6716. docsforge/themes/material/templates/.icons/material/glass-fragile.svg +1 -0
  6717. docsforge/themes/material/templates/.icons/material/glass-mug-off.svg +1 -0
  6718. docsforge/themes/material/templates/.icons/material/glass-mug-variant-off.svg +1 -0
  6719. docsforge/themes/material/templates/.icons/material/glass-mug-variant.svg +1 -0
  6720. docsforge/themes/material/templates/.icons/material/glass-mug.svg +1 -0
  6721. docsforge/themes/material/templates/.icons/material/glass-pint-outline.svg +1 -0
  6722. docsforge/themes/material/templates/.icons/material/glass-stange.svg +1 -0
  6723. docsforge/themes/material/templates/.icons/material/glass-tulip.svg +1 -0
  6724. docsforge/themes/material/templates/.icons/material/glass-wine.svg +1 -0
  6725. docsforge/themes/material/templates/.icons/material/glasses.svg +1 -0
  6726. docsforge/themes/material/templates/.icons/material/globe-light-outline.svg +1 -0
  6727. docsforge/themes/material/templates/.icons/material/globe-light.svg +1 -0
  6728. docsforge/themes/material/templates/.icons/material/globe-model.svg +1 -0
  6729. docsforge/themes/material/templates/.icons/material/gmail.svg +1 -0
  6730. docsforge/themes/material/templates/.icons/material/gnome.svg +1 -0
  6731. docsforge/themes/material/templates/.icons/material/go-kart-track.svg +1 -0
  6732. docsforge/themes/material/templates/.icons/material/go-kart.svg +1 -0
  6733. docsforge/themes/material/templates/.icons/material/gog.svg +1 -0
  6734. docsforge/themes/material/templates/.icons/material/gold.svg +1 -0
  6735. docsforge/themes/material/templates/.icons/material/golf-cart.svg +1 -0
  6736. docsforge/themes/material/templates/.icons/material/golf-tee.svg +1 -0
  6737. docsforge/themes/material/templates/.icons/material/golf.svg +1 -0
  6738. docsforge/themes/material/templates/.icons/material/gondola.svg +1 -0
  6739. docsforge/themes/material/templates/.icons/material/goodreads.svg +1 -0
  6740. docsforge/themes/material/templates/.icons/material/google-ads.svg +1 -0
  6741. docsforge/themes/material/templates/.icons/material/google-analytics.svg +1 -0
  6742. docsforge/themes/material/templates/.icons/material/google-assistant.svg +1 -0
  6743. docsforge/themes/material/templates/.icons/material/google-cardboard.svg +1 -0
  6744. docsforge/themes/material/templates/.icons/material/google-chrome.svg +1 -0
  6745. docsforge/themes/material/templates/.icons/material/google-circles-communities.svg +1 -0
  6746. docsforge/themes/material/templates/.icons/material/google-circles-extended.svg +1 -0
  6747. docsforge/themes/material/templates/.icons/material/google-circles-group.svg +1 -0
  6748. docsforge/themes/material/templates/.icons/material/google-circles.svg +1 -0
  6749. docsforge/themes/material/templates/.icons/material/google-classroom.svg +1 -0
  6750. docsforge/themes/material/templates/.icons/material/google-cloud.svg +1 -0
  6751. docsforge/themes/material/templates/.icons/material/google-downasaur.svg +1 -0
  6752. docsforge/themes/material/templates/.icons/material/google-drive.svg +1 -0
  6753. docsforge/themes/material/templates/.icons/material/google-earth.svg +1 -0
  6754. docsforge/themes/material/templates/.icons/material/google-fit.svg +1 -0
  6755. docsforge/themes/material/templates/.icons/material/google-glass.svg +1 -0
  6756. docsforge/themes/material/templates/.icons/material/google-hangouts.svg +1 -0
  6757. docsforge/themes/material/templates/.icons/material/google-keep.svg +1 -0
  6758. docsforge/themes/material/templates/.icons/material/google-lens.svg +1 -0
  6759. docsforge/themes/material/templates/.icons/material/google-maps.svg +1 -0
  6760. docsforge/themes/material/templates/.icons/material/google-my-business.svg +1 -0
  6761. docsforge/themes/material/templates/.icons/material/google-nearby.svg +1 -0
  6762. docsforge/themes/material/templates/.icons/material/google-play.svg +1 -0
  6763. docsforge/themes/material/templates/.icons/material/google-plus.svg +1 -0
  6764. docsforge/themes/material/templates/.icons/material/google-podcast.svg +1 -0
  6765. docsforge/themes/material/templates/.icons/material/google-spreadsheet.svg +1 -0
  6766. docsforge/themes/material/templates/.icons/material/google-street-view.svg +1 -0
  6767. docsforge/themes/material/templates/.icons/material/google-translate.svg +1 -0
  6768. docsforge/themes/material/templates/.icons/material/google.svg +1 -0
  6769. docsforge/themes/material/templates/.icons/material/gradient-horizontal.svg +1 -0
  6770. docsforge/themes/material/templates/.icons/material/gradient-vertical.svg +1 -0
  6771. docsforge/themes/material/templates/.icons/material/grain.svg +1 -0
  6772. docsforge/themes/material/templates/.icons/material/graph-outline.svg +1 -0
  6773. docsforge/themes/material/templates/.icons/material/graph.svg +1 -0
  6774. docsforge/themes/material/templates/.icons/material/graphql.svg +1 -0
  6775. docsforge/themes/material/templates/.icons/material/grass.svg +1 -0
  6776. docsforge/themes/material/templates/.icons/material/grave-stone.svg +1 -0
  6777. docsforge/themes/material/templates/.icons/material/grease-pencil.svg +1 -0
  6778. docsforge/themes/material/templates/.icons/material/greater-than-or-equal.svg +1 -0
  6779. docsforge/themes/material/templates/.icons/material/greater-than.svg +1 -0
  6780. docsforge/themes/material/templates/.icons/material/greenhouse.svg +1 -0
  6781. docsforge/themes/material/templates/.icons/material/grid-large.svg +1 -0
  6782. docsforge/themes/material/templates/.icons/material/grid-off.svg +1 -0
  6783. docsforge/themes/material/templates/.icons/material/grid.svg +1 -0
  6784. docsforge/themes/material/templates/.icons/material/grill-outline.svg +1 -0
  6785. docsforge/themes/material/templates/.icons/material/grill.svg +1 -0
  6786. docsforge/themes/material/templates/.icons/material/group.svg +1 -0
  6787. docsforge/themes/material/templates/.icons/material/guitar-acoustic.svg +1 -0
  6788. docsforge/themes/material/templates/.icons/material/guitar-electric.svg +1 -0
  6789. docsforge/themes/material/templates/.icons/material/guitar-pick-outline.svg +1 -0
  6790. docsforge/themes/material/templates/.icons/material/guitar-pick.svg +1 -0
  6791. docsforge/themes/material/templates/.icons/material/guy-fawkes-mask.svg +1 -0
  6792. docsforge/themes/material/templates/.icons/material/gymnastics.svg +1 -0
  6793. docsforge/themes/material/templates/.icons/material/hail.svg +1 -0
  6794. docsforge/themes/material/templates/.icons/material/hair-dryer-outline.svg +1 -0
  6795. docsforge/themes/material/templates/.icons/material/hair-dryer.svg +1 -0
  6796. docsforge/themes/material/templates/.icons/material/halloween.svg +1 -0
  6797. docsforge/themes/material/templates/.icons/material/hamburger-check.svg +1 -0
  6798. docsforge/themes/material/templates/.icons/material/hamburger-minus.svg +1 -0
  6799. docsforge/themes/material/templates/.icons/material/hamburger-off.svg +1 -0
  6800. docsforge/themes/material/templates/.icons/material/hamburger-plus.svg +1 -0
  6801. docsforge/themes/material/templates/.icons/material/hamburger-remove.svg +1 -0
  6802. docsforge/themes/material/templates/.icons/material/hamburger.svg +1 -0
  6803. docsforge/themes/material/templates/.icons/material/hammer-screwdriver.svg +1 -0
  6804. docsforge/themes/material/templates/.icons/material/hammer-sickle.svg +1 -0
  6805. docsforge/themes/material/templates/.icons/material/hammer-wrench.svg +1 -0
  6806. docsforge/themes/material/templates/.icons/material/hammer.svg +1 -0
  6807. docsforge/themes/material/templates/.icons/material/hand-back-left-off-outline.svg +1 -0
  6808. docsforge/themes/material/templates/.icons/material/hand-back-left-off.svg +1 -0
  6809. docsforge/themes/material/templates/.icons/material/hand-back-left-outline.svg +1 -0
  6810. docsforge/themes/material/templates/.icons/material/hand-back-left.svg +1 -0
  6811. docsforge/themes/material/templates/.icons/material/hand-back-right-off-outline.svg +1 -0
  6812. docsforge/themes/material/templates/.icons/material/hand-back-right-off.svg +1 -0
  6813. docsforge/themes/material/templates/.icons/material/hand-back-right-outline.svg +1 -0
  6814. docsforge/themes/material/templates/.icons/material/hand-back-right.svg +1 -0
  6815. docsforge/themes/material/templates/.icons/material/hand-clap-off.svg +1 -0
  6816. docsforge/themes/material/templates/.icons/material/hand-clap.svg +1 -0
  6817. docsforge/themes/material/templates/.icons/material/hand-coin-outline.svg +1 -0
  6818. docsforge/themes/material/templates/.icons/material/hand-coin.svg +1 -0
  6819. docsforge/themes/material/templates/.icons/material/hand-cycle.svg +1 -0
  6820. docsforge/themes/material/templates/.icons/material/hand-extended-outline.svg +1 -0
  6821. docsforge/themes/material/templates/.icons/material/hand-extended.svg +1 -0
  6822. docsforge/themes/material/templates/.icons/material/hand-front-left-outline.svg +1 -0
  6823. docsforge/themes/material/templates/.icons/material/hand-front-left.svg +1 -0
  6824. docsforge/themes/material/templates/.icons/material/hand-front-right-outline.svg +1 -0
  6825. docsforge/themes/material/templates/.icons/material/hand-front-right.svg +1 -0
  6826. docsforge/themes/material/templates/.icons/material/hand-heart-outline.svg +1 -0
  6827. docsforge/themes/material/templates/.icons/material/hand-heart.svg +1 -0
  6828. docsforge/themes/material/templates/.icons/material/hand-okay.svg +1 -0
  6829. docsforge/themes/material/templates/.icons/material/hand-peace-variant.svg +1 -0
  6830. docsforge/themes/material/templates/.icons/material/hand-peace.svg +1 -0
  6831. docsforge/themes/material/templates/.icons/material/hand-pointing-down.svg +1 -0
  6832. docsforge/themes/material/templates/.icons/material/hand-pointing-left.svg +1 -0
  6833. docsforge/themes/material/templates/.icons/material/hand-pointing-right.svg +1 -0
  6834. docsforge/themes/material/templates/.icons/material/hand-pointing-up.svg +1 -0
  6835. docsforge/themes/material/templates/.icons/material/hand-saw.svg +1 -0
  6836. docsforge/themes/material/templates/.icons/material/hand-wash-outline.svg +1 -0
  6837. docsforge/themes/material/templates/.icons/material/hand-wash.svg +1 -0
  6838. docsforge/themes/material/templates/.icons/material/hand-water.svg +1 -0
  6839. docsforge/themes/material/templates/.icons/material/hand-wave-outline.svg +1 -0
  6840. docsforge/themes/material/templates/.icons/material/hand-wave.svg +1 -0
  6841. docsforge/themes/material/templates/.icons/material/handball.svg +1 -0
  6842. docsforge/themes/material/templates/.icons/material/handcuffs.svg +1 -0
  6843. docsforge/themes/material/templates/.icons/material/hands-pray.svg +1 -0
  6844. docsforge/themes/material/templates/.icons/material/handshake-outline.svg +1 -0
  6845. docsforge/themes/material/templates/.icons/material/handshake.svg +1 -0
  6846. docsforge/themes/material/templates/.icons/material/hanger.svg +1 -0
  6847. docsforge/themes/material/templates/.icons/material/hard-hat.svg +1 -0
  6848. docsforge/themes/material/templates/.icons/material/harddisk-plus.svg +1 -0
  6849. docsforge/themes/material/templates/.icons/material/harddisk-remove.svg +1 -0
  6850. docsforge/themes/material/templates/.icons/material/harddisk.svg +1 -0
  6851. docsforge/themes/material/templates/.icons/material/hat-fedora.svg +1 -0
  6852. docsforge/themes/material/templates/.icons/material/hazard-lights.svg +1 -0
  6853. docsforge/themes/material/templates/.icons/material/hdmi-port.svg +1 -0
  6854. docsforge/themes/material/templates/.icons/material/hdr-off.svg +1 -0
  6855. docsforge/themes/material/templates/.icons/material/hdr.svg +1 -0
  6856. docsforge/themes/material/templates/.icons/material/head-alert-outline.svg +1 -0
  6857. docsforge/themes/material/templates/.icons/material/head-alert.svg +1 -0
  6858. docsforge/themes/material/templates/.icons/material/head-check-outline.svg +1 -0
  6859. docsforge/themes/material/templates/.icons/material/head-check.svg +1 -0
  6860. docsforge/themes/material/templates/.icons/material/head-cog-outline.svg +1 -0
  6861. docsforge/themes/material/templates/.icons/material/head-cog.svg +1 -0
  6862. docsforge/themes/material/templates/.icons/material/head-dots-horizontal-outline.svg +1 -0
  6863. docsforge/themes/material/templates/.icons/material/head-dots-horizontal.svg +1 -0
  6864. docsforge/themes/material/templates/.icons/material/head-flash-outline.svg +1 -0
  6865. docsforge/themes/material/templates/.icons/material/head-flash.svg +1 -0
  6866. docsforge/themes/material/templates/.icons/material/head-heart-outline.svg +1 -0
  6867. docsforge/themes/material/templates/.icons/material/head-heart.svg +1 -0
  6868. docsforge/themes/material/templates/.icons/material/head-lightbulb-outline.svg +1 -0
  6869. docsforge/themes/material/templates/.icons/material/head-lightbulb.svg +1 -0
  6870. docsforge/themes/material/templates/.icons/material/head-minus-outline.svg +1 -0
  6871. docsforge/themes/material/templates/.icons/material/head-minus.svg +1 -0
  6872. docsforge/themes/material/templates/.icons/material/head-outline.svg +1 -0
  6873. docsforge/themes/material/templates/.icons/material/head-plus-outline.svg +1 -0
  6874. docsforge/themes/material/templates/.icons/material/head-plus.svg +1 -0
  6875. docsforge/themes/material/templates/.icons/material/head-question-outline.svg +1 -0
  6876. docsforge/themes/material/templates/.icons/material/head-question.svg +1 -0
  6877. docsforge/themes/material/templates/.icons/material/head-remove-outline.svg +1 -0
  6878. docsforge/themes/material/templates/.icons/material/head-remove.svg +1 -0
  6879. docsforge/themes/material/templates/.icons/material/head-snowflake-outline.svg +1 -0
  6880. docsforge/themes/material/templates/.icons/material/head-snowflake.svg +1 -0
  6881. docsforge/themes/material/templates/.icons/material/head-sync-outline.svg +1 -0
  6882. docsforge/themes/material/templates/.icons/material/head-sync.svg +1 -0
  6883. docsforge/themes/material/templates/.icons/material/head.svg +1 -0
  6884. docsforge/themes/material/templates/.icons/material/headphones-bluetooth.svg +1 -0
  6885. docsforge/themes/material/templates/.icons/material/headphones-box.svg +1 -0
  6886. docsforge/themes/material/templates/.icons/material/headphones-off.svg +1 -0
  6887. docsforge/themes/material/templates/.icons/material/headphones-settings.svg +1 -0
  6888. docsforge/themes/material/templates/.icons/material/headphones.svg +1 -0
  6889. docsforge/themes/material/templates/.icons/material/headset-dock.svg +1 -0
  6890. docsforge/themes/material/templates/.icons/material/headset-off.svg +1 -0
  6891. docsforge/themes/material/templates/.icons/material/headset.svg +1 -0
  6892. docsforge/themes/material/templates/.icons/material/heart-box-outline.svg +1 -0
  6893. docsforge/themes/material/templates/.icons/material/heart-box.svg +1 -0
  6894. docsforge/themes/material/templates/.icons/material/heart-broken-outline.svg +1 -0
  6895. docsforge/themes/material/templates/.icons/material/heart-broken.svg +1 -0
  6896. docsforge/themes/material/templates/.icons/material/heart-circle-outline.svg +1 -0
  6897. docsforge/themes/material/templates/.icons/material/heart-circle.svg +1 -0
  6898. docsforge/themes/material/templates/.icons/material/heart-cog-outline.svg +1 -0
  6899. docsforge/themes/material/templates/.icons/material/heart-cog.svg +1 -0
  6900. docsforge/themes/material/templates/.icons/material/heart-flash.svg +1 -0
  6901. docsforge/themes/material/templates/.icons/material/heart-half-full.svg +1 -0
  6902. docsforge/themes/material/templates/.icons/material/heart-half-outline.svg +1 -0
  6903. docsforge/themes/material/templates/.icons/material/heart-half.svg +1 -0
  6904. docsforge/themes/material/templates/.icons/material/heart-minus-outline.svg +1 -0
  6905. docsforge/themes/material/templates/.icons/material/heart-minus.svg +1 -0
  6906. docsforge/themes/material/templates/.icons/material/heart-multiple-outline.svg +1 -0
  6907. docsforge/themes/material/templates/.icons/material/heart-multiple.svg +1 -0
  6908. docsforge/themes/material/templates/.icons/material/heart-off-outline.svg +1 -0
  6909. docsforge/themes/material/templates/.icons/material/heart-off.svg +1 -0
  6910. docsforge/themes/material/templates/.icons/material/heart-outline.svg +1 -0
  6911. docsforge/themes/material/templates/.icons/material/heart-plus-outline.svg +1 -0
  6912. docsforge/themes/material/templates/.icons/material/heart-plus.svg +1 -0
  6913. docsforge/themes/material/templates/.icons/material/heart-pulse.svg +1 -0
  6914. docsforge/themes/material/templates/.icons/material/heart-remove-outline.svg +1 -0
  6915. docsforge/themes/material/templates/.icons/material/heart-remove.svg +1 -0
  6916. docsforge/themes/material/templates/.icons/material/heart-search.svg +1 -0
  6917. docsforge/themes/material/templates/.icons/material/heart-settings-outline.svg +1 -0
  6918. docsforge/themes/material/templates/.icons/material/heart-settings.svg +1 -0
  6919. docsforge/themes/material/templates/.icons/material/heart.svg +1 -0
  6920. docsforge/themes/material/templates/.icons/material/heat-pump-outline.svg +1 -0
  6921. docsforge/themes/material/templates/.icons/material/heat-pump.svg +1 -0
  6922. docsforge/themes/material/templates/.icons/material/heat-wave.svg +1 -0
  6923. docsforge/themes/material/templates/.icons/material/heating-coil.svg +1 -0
  6924. docsforge/themes/material/templates/.icons/material/helicopter.svg +1 -0
  6925. docsforge/themes/material/templates/.icons/material/help-box-multiple-outline.svg +1 -0
  6926. docsforge/themes/material/templates/.icons/material/help-box-multiple.svg +1 -0
  6927. docsforge/themes/material/templates/.icons/material/help-box-outline.svg +1 -0
  6928. docsforge/themes/material/templates/.icons/material/help-box.svg +1 -0
  6929. docsforge/themes/material/templates/.icons/material/help-circle-outline.svg +1 -0
  6930. docsforge/themes/material/templates/.icons/material/help-circle.svg +1 -0
  6931. docsforge/themes/material/templates/.icons/material/help-network-outline.svg +1 -0
  6932. docsforge/themes/material/templates/.icons/material/help-network.svg +1 -0
  6933. docsforge/themes/material/templates/.icons/material/help-rhombus-outline.svg +1 -0
  6934. docsforge/themes/material/templates/.icons/material/help-rhombus.svg +1 -0
  6935. docsforge/themes/material/templates/.icons/material/help.svg +1 -0
  6936. docsforge/themes/material/templates/.icons/material/hexadecimal.svg +1 -0
  6937. docsforge/themes/material/templates/.icons/material/hexagon-multiple-outline.svg +1 -0
  6938. docsforge/themes/material/templates/.icons/material/hexagon-multiple.svg +1 -0
  6939. docsforge/themes/material/templates/.icons/material/hexagon-outline.svg +1 -0
  6940. docsforge/themes/material/templates/.icons/material/hexagon-slice-1.svg +1 -0
  6941. docsforge/themes/material/templates/.icons/material/hexagon-slice-2.svg +1 -0
  6942. docsforge/themes/material/templates/.icons/material/hexagon-slice-3.svg +1 -0
  6943. docsforge/themes/material/templates/.icons/material/hexagon-slice-4.svg +1 -0
  6944. docsforge/themes/material/templates/.icons/material/hexagon-slice-5.svg +1 -0
  6945. docsforge/themes/material/templates/.icons/material/hexagon-slice-6.svg +1 -0
  6946. docsforge/themes/material/templates/.icons/material/hexagon.svg +1 -0
  6947. docsforge/themes/material/templates/.icons/material/hexagram-outline.svg +1 -0
  6948. docsforge/themes/material/templates/.icons/material/hexagram.svg +1 -0
  6949. docsforge/themes/material/templates/.icons/material/high-definition-box.svg +1 -0
  6950. docsforge/themes/material/templates/.icons/material/high-definition.svg +1 -0
  6951. docsforge/themes/material/templates/.icons/material/highway.svg +1 -0
  6952. docsforge/themes/material/templates/.icons/material/hiking.svg +1 -0
  6953. docsforge/themes/material/templates/.icons/material/history.svg +1 -0
  6954. docsforge/themes/material/templates/.icons/material/hockey-puck.svg +1 -0
  6955. docsforge/themes/material/templates/.icons/material/hockey-sticks.svg +1 -0
  6956. docsforge/themes/material/templates/.icons/material/hololens.svg +1 -0
  6957. docsforge/themes/material/templates/.icons/material/home-account.svg +1 -0
  6958. docsforge/themes/material/templates/.icons/material/home-alert-outline.svg +1 -0
  6959. docsforge/themes/material/templates/.icons/material/home-alert.svg +1 -0
  6960. docsforge/themes/material/templates/.icons/material/home-analytics.svg +1 -0
  6961. docsforge/themes/material/templates/.icons/material/home-assistant.svg +1 -0
  6962. docsforge/themes/material/templates/.icons/material/home-automation.svg +1 -0
  6963. docsforge/themes/material/templates/.icons/material/home-battery-outline.svg +1 -0
  6964. docsforge/themes/material/templates/.icons/material/home-battery.svg +1 -0
  6965. docsforge/themes/material/templates/.icons/material/home-circle-outline.svg +1 -0
  6966. docsforge/themes/material/templates/.icons/material/home-circle.svg +1 -0
  6967. docsforge/themes/material/templates/.icons/material/home-city-outline.svg +1 -0
  6968. docsforge/themes/material/templates/.icons/material/home-city.svg +1 -0
  6969. docsforge/themes/material/templates/.icons/material/home-clock-outline.svg +1 -0
  6970. docsforge/themes/material/templates/.icons/material/home-clock.svg +1 -0
  6971. docsforge/themes/material/templates/.icons/material/home-edit-outline.svg +1 -0
  6972. docsforge/themes/material/templates/.icons/material/home-edit.svg +1 -0
  6973. docsforge/themes/material/templates/.icons/material/home-export-outline.svg +1 -0
  6974. docsforge/themes/material/templates/.icons/material/home-flood.svg +1 -0
  6975. docsforge/themes/material/templates/.icons/material/home-floor-0.svg +1 -0
  6976. docsforge/themes/material/templates/.icons/material/home-floor-1.svg +1 -0
  6977. docsforge/themes/material/templates/.icons/material/home-floor-2.svg +1 -0
  6978. docsforge/themes/material/templates/.icons/material/home-floor-3.svg +1 -0
  6979. docsforge/themes/material/templates/.icons/material/home-floor-a.svg +1 -0
  6980. docsforge/themes/material/templates/.icons/material/home-floor-b.svg +1 -0
  6981. docsforge/themes/material/templates/.icons/material/home-floor-g.svg +1 -0
  6982. docsforge/themes/material/templates/.icons/material/home-floor-l.svg +1 -0
  6983. docsforge/themes/material/templates/.icons/material/home-floor-negative-1.svg +1 -0
  6984. docsforge/themes/material/templates/.icons/material/home-group-minus.svg +1 -0
  6985. docsforge/themes/material/templates/.icons/material/home-group-plus.svg +1 -0
  6986. docsforge/themes/material/templates/.icons/material/home-group-remove.svg +1 -0
  6987. docsforge/themes/material/templates/.icons/material/home-group.svg +1 -0
  6988. docsforge/themes/material/templates/.icons/material/home-heart.svg +1 -0
  6989. docsforge/themes/material/templates/.icons/material/home-import-outline.svg +1 -0
  6990. docsforge/themes/material/templates/.icons/material/home-lightbulb-outline.svg +1 -0
  6991. docsforge/themes/material/templates/.icons/material/home-lightbulb.svg +1 -0
  6992. docsforge/themes/material/templates/.icons/material/home-lightning-bolt-outline.svg +1 -0
  6993. docsforge/themes/material/templates/.icons/material/home-lightning-bolt.svg +1 -0
  6994. docsforge/themes/material/templates/.icons/material/home-lock-open.svg +1 -0
  6995. docsforge/themes/material/templates/.icons/material/home-lock.svg +1 -0
  6996. docsforge/themes/material/templates/.icons/material/home-map-marker.svg +1 -0
  6997. docsforge/themes/material/templates/.icons/material/home-minus-outline.svg +1 -0
  6998. docsforge/themes/material/templates/.icons/material/home-minus.svg +1 -0
  6999. docsforge/themes/material/templates/.icons/material/home-modern.svg +1 -0
  7000. docsforge/themes/material/templates/.icons/material/home-off-outline.svg +1 -0
  7001. docsforge/themes/material/templates/.icons/material/home-off.svg +1 -0
  7002. docsforge/themes/material/templates/.icons/material/home-outline.svg +1 -0
  7003. docsforge/themes/material/templates/.icons/material/home-percent-outline.svg +1 -0
  7004. docsforge/themes/material/templates/.icons/material/home-percent.svg +1 -0
  7005. docsforge/themes/material/templates/.icons/material/home-plus-outline.svg +1 -0
  7006. docsforge/themes/material/templates/.icons/material/home-plus.svg +1 -0
  7007. docsforge/themes/material/templates/.icons/material/home-remove-outline.svg +1 -0
  7008. docsforge/themes/material/templates/.icons/material/home-remove.svg +1 -0
  7009. docsforge/themes/material/templates/.icons/material/home-roof.svg +1 -0
  7010. docsforge/themes/material/templates/.icons/material/home-search-outline.svg +1 -0
  7011. docsforge/themes/material/templates/.icons/material/home-search.svg +1 -0
  7012. docsforge/themes/material/templates/.icons/material/home-silo-outline.svg +1 -0
  7013. docsforge/themes/material/templates/.icons/material/home-silo.svg +1 -0
  7014. docsforge/themes/material/templates/.icons/material/home-sound-in-outline.svg +1 -0
  7015. docsforge/themes/material/templates/.icons/material/home-sound-in.svg +1 -0
  7016. docsforge/themes/material/templates/.icons/material/home-sound-out-outline.svg +1 -0
  7017. docsforge/themes/material/templates/.icons/material/home-sound-out.svg +1 -0
  7018. docsforge/themes/material/templates/.icons/material/home-switch-outline.svg +1 -0
  7019. docsforge/themes/material/templates/.icons/material/home-switch.svg +1 -0
  7020. docsforge/themes/material/templates/.icons/material/home-thermometer-outline.svg +1 -0
  7021. docsforge/themes/material/templates/.icons/material/home-thermometer.svg +1 -0
  7022. docsforge/themes/material/templates/.icons/material/home-variant-outline.svg +1 -0
  7023. docsforge/themes/material/templates/.icons/material/home-variant.svg +1 -0
  7024. docsforge/themes/material/templates/.icons/material/home.svg +1 -0
  7025. docsforge/themes/material/templates/.icons/material/hook-off.svg +1 -0
  7026. docsforge/themes/material/templates/.icons/material/hook.svg +1 -0
  7027. docsforge/themes/material/templates/.icons/material/hoop-house.svg +1 -0
  7028. docsforge/themes/material/templates/.icons/material/hops.svg +1 -0
  7029. docsforge/themes/material/templates/.icons/material/horizontal-rotate-clockwise.svg +1 -0
  7030. docsforge/themes/material/templates/.icons/material/horizontal-rotate-counterclockwise.svg +1 -0
  7031. docsforge/themes/material/templates/.icons/material/horse-human.svg +1 -0
  7032. docsforge/themes/material/templates/.icons/material/horse-variant-fast.svg +1 -0
  7033. docsforge/themes/material/templates/.icons/material/horse-variant.svg +1 -0
  7034. docsforge/themes/material/templates/.icons/material/horse.svg +1 -0
  7035. docsforge/themes/material/templates/.icons/material/horseshoe.svg +1 -0
  7036. docsforge/themes/material/templates/.icons/material/hospital-box-outline.svg +1 -0
  7037. docsforge/themes/material/templates/.icons/material/hospital-box.svg +1 -0
  7038. docsforge/themes/material/templates/.icons/material/hospital-building.svg +1 -0
  7039. docsforge/themes/material/templates/.icons/material/hospital-marker.svg +1 -0
  7040. docsforge/themes/material/templates/.icons/material/hospital.svg +1 -0
  7041. docsforge/themes/material/templates/.icons/material/hot-tub.svg +1 -0
  7042. docsforge/themes/material/templates/.icons/material/hours-12.svg +1 -0
  7043. docsforge/themes/material/templates/.icons/material/hours-24.svg +1 -0
  7044. docsforge/themes/material/templates/.icons/material/hub-outline.svg +1 -0
  7045. docsforge/themes/material/templates/.icons/material/hub.svg +1 -0
  7046. docsforge/themes/material/templates/.icons/material/hubspot.svg +1 -0
  7047. docsforge/themes/material/templates/.icons/material/hulu.svg +1 -0
  7048. docsforge/themes/material/templates/.icons/material/human-baby-changing-table.svg +1 -0
  7049. docsforge/themes/material/templates/.icons/material/human-cane.svg +1 -0
  7050. docsforge/themes/material/templates/.icons/material/human-capacity-decrease.svg +1 -0
  7051. docsforge/themes/material/templates/.icons/material/human-capacity-increase.svg +1 -0
  7052. docsforge/themes/material/templates/.icons/material/human-child.svg +1 -0
  7053. docsforge/themes/material/templates/.icons/material/human-dolly.svg +1 -0
  7054. docsforge/themes/material/templates/.icons/material/human-edit.svg +1 -0
  7055. docsforge/themes/material/templates/.icons/material/human-female-boy.svg +1 -0
  7056. docsforge/themes/material/templates/.icons/material/human-female-dance.svg +1 -0
  7057. docsforge/themes/material/templates/.icons/material/human-female-female-child.svg +1 -0
  7058. docsforge/themes/material/templates/.icons/material/human-female-female.svg +1 -0
  7059. docsforge/themes/material/templates/.icons/material/human-female-girl.svg +1 -0
  7060. docsforge/themes/material/templates/.icons/material/human-female.svg +1 -0
  7061. docsforge/themes/material/templates/.icons/material/human-greeting-proximity.svg +1 -0
  7062. docsforge/themes/material/templates/.icons/material/human-greeting-variant.svg +1 -0
  7063. docsforge/themes/material/templates/.icons/material/human-greeting.svg +1 -0
  7064. docsforge/themes/material/templates/.icons/material/human-handsdown.svg +1 -0
  7065. docsforge/themes/material/templates/.icons/material/human-handsup.svg +1 -0
  7066. docsforge/themes/material/templates/.icons/material/human-male-board-poll.svg +1 -0
  7067. docsforge/themes/material/templates/.icons/material/human-male-board.svg +1 -0
  7068. docsforge/themes/material/templates/.icons/material/human-male-boy.svg +1 -0
  7069. docsforge/themes/material/templates/.icons/material/human-male-child.svg +1 -0
  7070. docsforge/themes/material/templates/.icons/material/human-male-female-child.svg +1 -0
  7071. docsforge/themes/material/templates/.icons/material/human-male-female.svg +1 -0
  7072. docsforge/themes/material/templates/.icons/material/human-male-girl.svg +1 -0
  7073. docsforge/themes/material/templates/.icons/material/human-male-height-variant.svg +1 -0
  7074. docsforge/themes/material/templates/.icons/material/human-male-height.svg +1 -0
  7075. docsforge/themes/material/templates/.icons/material/human-male-male-child.svg +1 -0
  7076. docsforge/themes/material/templates/.icons/material/human-male-male.svg +1 -0
  7077. docsforge/themes/material/templates/.icons/material/human-male.svg +1 -0
  7078. docsforge/themes/material/templates/.icons/material/human-non-binary.svg +1 -0
  7079. docsforge/themes/material/templates/.icons/material/human-pregnant.svg +1 -0
  7080. docsforge/themes/material/templates/.icons/material/human-queue.svg +1 -0
  7081. docsforge/themes/material/templates/.icons/material/human-scooter.svg +1 -0
  7082. docsforge/themes/material/templates/.icons/material/human-walker.svg +1 -0
  7083. docsforge/themes/material/templates/.icons/material/human-wheelchair.svg +1 -0
  7084. docsforge/themes/material/templates/.icons/material/human-white-cane.svg +1 -0
  7085. docsforge/themes/material/templates/.icons/material/human.svg +1 -0
  7086. docsforge/themes/material/templates/.icons/material/humble-bundle.svg +1 -0
  7087. docsforge/themes/material/templates/.icons/material/hvac-off.svg +1 -0
  7088. docsforge/themes/material/templates/.icons/material/hvac.svg +1 -0
  7089. docsforge/themes/material/templates/.icons/material/hydraulic-oil-level.svg +1 -0
  7090. docsforge/themes/material/templates/.icons/material/hydraulic-oil-temperature.svg +1 -0
  7091. docsforge/themes/material/templates/.icons/material/hydro-power.svg +1 -0
  7092. docsforge/themes/material/templates/.icons/material/hydrogen-station.svg +1 -0
  7093. docsforge/themes/material/templates/.icons/material/ice-cream-off.svg +1 -0
  7094. docsforge/themes/material/templates/.icons/material/ice-cream.svg +1 -0
  7095. docsforge/themes/material/templates/.icons/material/ice-pop.svg +1 -0
  7096. docsforge/themes/material/templates/.icons/material/id-card.svg +1 -0
  7097. docsforge/themes/material/templates/.icons/material/identifier.svg +1 -0
  7098. docsforge/themes/material/templates/.icons/material/ideogram-cjk-variant.svg +1 -0
  7099. docsforge/themes/material/templates/.icons/material/ideogram-cjk.svg +1 -0
  7100. docsforge/themes/material/templates/.icons/material/image-album.svg +1 -0
  7101. docsforge/themes/material/templates/.icons/material/image-area-close.svg +1 -0
  7102. docsforge/themes/material/templates/.icons/material/image-area.svg +1 -0
  7103. docsforge/themes/material/templates/.icons/material/image-auto-adjust.svg +1 -0
  7104. docsforge/themes/material/templates/.icons/material/image-broken-variant.svg +1 -0
  7105. docsforge/themes/material/templates/.icons/material/image-broken.svg +1 -0
  7106. docsforge/themes/material/templates/.icons/material/image-check-outline.svg +1 -0
  7107. docsforge/themes/material/templates/.icons/material/image-check.svg +1 -0
  7108. docsforge/themes/material/templates/.icons/material/image-edit-outline.svg +1 -0
  7109. docsforge/themes/material/templates/.icons/material/image-edit.svg +1 -0
  7110. docsforge/themes/material/templates/.icons/material/image-filter-black-white.svg +1 -0
  7111. docsforge/themes/material/templates/.icons/material/image-filter-center-focus-strong-outline.svg +1 -0
  7112. docsforge/themes/material/templates/.icons/material/image-filter-center-focus-strong.svg +1 -0
  7113. docsforge/themes/material/templates/.icons/material/image-filter-center-focus-weak.svg +1 -0
  7114. docsforge/themes/material/templates/.icons/material/image-filter-center-focus.svg +1 -0
  7115. docsforge/themes/material/templates/.icons/material/image-filter-drama-outline.svg +1 -0
  7116. docsforge/themes/material/templates/.icons/material/image-filter-drama.svg +1 -0
  7117. docsforge/themes/material/templates/.icons/material/image-filter-frames.svg +1 -0
  7118. docsforge/themes/material/templates/.icons/material/image-filter-hdr-outline.svg +1 -0
  7119. docsforge/themes/material/templates/.icons/material/image-filter-hdr.svg +1 -0
  7120. docsforge/themes/material/templates/.icons/material/image-filter-none.svg +1 -0
  7121. docsforge/themes/material/templates/.icons/material/image-filter-tilt-shift.svg +1 -0
  7122. docsforge/themes/material/templates/.icons/material/image-filter-vintage.svg +1 -0
  7123. docsforge/themes/material/templates/.icons/material/image-frame.svg +1 -0
  7124. docsforge/themes/material/templates/.icons/material/image-lock-outline.svg +1 -0
  7125. docsforge/themes/material/templates/.icons/material/image-lock.svg +1 -0
  7126. docsforge/themes/material/templates/.icons/material/image-marker-outline.svg +1 -0
  7127. docsforge/themes/material/templates/.icons/material/image-marker.svg +1 -0
  7128. docsforge/themes/material/templates/.icons/material/image-minus-outline.svg +1 -0
  7129. docsforge/themes/material/templates/.icons/material/image-minus.svg +1 -0
  7130. docsforge/themes/material/templates/.icons/material/image-move.svg +1 -0
  7131. docsforge/themes/material/templates/.icons/material/image-multiple-outline.svg +1 -0
  7132. docsforge/themes/material/templates/.icons/material/image-multiple.svg +1 -0
  7133. docsforge/themes/material/templates/.icons/material/image-off-outline.svg +1 -0
  7134. docsforge/themes/material/templates/.icons/material/image-off.svg +1 -0
  7135. docsforge/themes/material/templates/.icons/material/image-outline.svg +1 -0
  7136. docsforge/themes/material/templates/.icons/material/image-plus-outline.svg +1 -0
  7137. docsforge/themes/material/templates/.icons/material/image-plus.svg +1 -0
  7138. docsforge/themes/material/templates/.icons/material/image-refresh-outline.svg +1 -0
  7139. docsforge/themes/material/templates/.icons/material/image-refresh.svg +1 -0
  7140. docsforge/themes/material/templates/.icons/material/image-remove-outline.svg +1 -0
  7141. docsforge/themes/material/templates/.icons/material/image-remove.svg +1 -0
  7142. docsforge/themes/material/templates/.icons/material/image-search-outline.svg +1 -0
  7143. docsforge/themes/material/templates/.icons/material/image-search.svg +1 -0
  7144. docsforge/themes/material/templates/.icons/material/image-size-select-actual.svg +1 -0
  7145. docsforge/themes/material/templates/.icons/material/image-size-select-large.svg +1 -0
  7146. docsforge/themes/material/templates/.icons/material/image-size-select-small.svg +1 -0
  7147. docsforge/themes/material/templates/.icons/material/image-sync-outline.svg +1 -0
  7148. docsforge/themes/material/templates/.icons/material/image-sync.svg +1 -0
  7149. docsforge/themes/material/templates/.icons/material/image-text.svg +1 -0
  7150. docsforge/themes/material/templates/.icons/material/image.svg +1 -0
  7151. docsforge/themes/material/templates/.icons/material/import.svg +1 -0
  7152. docsforge/themes/material/templates/.icons/material/inbox-arrow-down-outline.svg +1 -0
  7153. docsforge/themes/material/templates/.icons/material/inbox-arrow-down.svg +1 -0
  7154. docsforge/themes/material/templates/.icons/material/inbox-arrow-up-outline.svg +1 -0
  7155. docsforge/themes/material/templates/.icons/material/inbox-arrow-up.svg +1 -0
  7156. docsforge/themes/material/templates/.icons/material/inbox-full-outline.svg +1 -0
  7157. docsforge/themes/material/templates/.icons/material/inbox-full.svg +1 -0
  7158. docsforge/themes/material/templates/.icons/material/inbox-multiple-outline.svg +1 -0
  7159. docsforge/themes/material/templates/.icons/material/inbox-multiple.svg +1 -0
  7160. docsforge/themes/material/templates/.icons/material/inbox-outline.svg +1 -0
  7161. docsforge/themes/material/templates/.icons/material/inbox-remove-outline.svg +1 -0
  7162. docsforge/themes/material/templates/.icons/material/inbox-remove.svg +1 -0
  7163. docsforge/themes/material/templates/.icons/material/inbox.svg +1 -0
  7164. docsforge/themes/material/templates/.icons/material/incognito-circle-off.svg +1 -0
  7165. docsforge/themes/material/templates/.icons/material/incognito-circle.svg +1 -0
  7166. docsforge/themes/material/templates/.icons/material/incognito-off.svg +1 -0
  7167. docsforge/themes/material/templates/.icons/material/incognito.svg +1 -0
  7168. docsforge/themes/material/templates/.icons/material/induction.svg +1 -0
  7169. docsforge/themes/material/templates/.icons/material/infinity.svg +1 -0
  7170. docsforge/themes/material/templates/.icons/material/information-box-outline.svg +1 -0
  7171. docsforge/themes/material/templates/.icons/material/information-box.svg +1 -0
  7172. docsforge/themes/material/templates/.icons/material/information-off-outline.svg +1 -0
  7173. docsforge/themes/material/templates/.icons/material/information-off.svg +1 -0
  7174. docsforge/themes/material/templates/.icons/material/information-outline.svg +1 -0
  7175. docsforge/themes/material/templates/.icons/material/information-slab-box-outline.svg +1 -0
  7176. docsforge/themes/material/templates/.icons/material/information-slab-box.svg +1 -0
  7177. docsforge/themes/material/templates/.icons/material/information-slab-circle-outline.svg +1 -0
  7178. docsforge/themes/material/templates/.icons/material/information-slab-circle.svg +1 -0
  7179. docsforge/themes/material/templates/.icons/material/information-slab-symbol.svg +1 -0
  7180. docsforge/themes/material/templates/.icons/material/information-symbol.svg +1 -0
  7181. docsforge/themes/material/templates/.icons/material/information-variant-box-outline.svg +1 -0
  7182. docsforge/themes/material/templates/.icons/material/information-variant-box.svg +1 -0
  7183. docsforge/themes/material/templates/.icons/material/information-variant-circle-outline.svg +1 -0
  7184. docsforge/themes/material/templates/.icons/material/information-variant-circle.svg +1 -0
  7185. docsforge/themes/material/templates/.icons/material/information-variant.svg +1 -0
  7186. docsforge/themes/material/templates/.icons/material/information.svg +1 -0
  7187. docsforge/themes/material/templates/.icons/material/instagram.svg +1 -0
  7188. docsforge/themes/material/templates/.icons/material/instrument-triangle.svg +1 -0
  7189. docsforge/themes/material/templates/.icons/material/integrated-circuit-chip.svg +1 -0
  7190. docsforge/themes/material/templates/.icons/material/invert-colors-off.svg +1 -0
  7191. docsforge/themes/material/templates/.icons/material/invert-colors.svg +1 -0
  7192. docsforge/themes/material/templates/.icons/material/invoice-arrow-left-outline.svg +1 -0
  7193. docsforge/themes/material/templates/.icons/material/invoice-arrow-left.svg +1 -0
  7194. docsforge/themes/material/templates/.icons/material/invoice-arrow-right-outline.svg +1 -0
  7195. docsforge/themes/material/templates/.icons/material/invoice-arrow-right.svg +1 -0
  7196. docsforge/themes/material/templates/.icons/material/invoice-check-outline.svg +1 -0
  7197. docsforge/themes/material/templates/.icons/material/invoice-check.svg +1 -0
  7198. docsforge/themes/material/templates/.icons/material/invoice-clock-outline.svg +1 -0
  7199. docsforge/themes/material/templates/.icons/material/invoice-clock.svg +1 -0
  7200. docsforge/themes/material/templates/.icons/material/invoice-edit-outline.svg +1 -0
  7201. docsforge/themes/material/templates/.icons/material/invoice-edit.svg +1 -0
  7202. docsforge/themes/material/templates/.icons/material/invoice-export-outline.svg +1 -0
  7203. docsforge/themes/material/templates/.icons/material/invoice-fast-outline.svg +1 -0
  7204. docsforge/themes/material/templates/.icons/material/invoice-fast.svg +1 -0
  7205. docsforge/themes/material/templates/.icons/material/invoice-import-outline.svg +1 -0
  7206. docsforge/themes/material/templates/.icons/material/invoice-import.svg +1 -0
  7207. docsforge/themes/material/templates/.icons/material/invoice-list-outline.svg +1 -0
  7208. docsforge/themes/material/templates/.icons/material/invoice-list.svg +1 -0
  7209. docsforge/themes/material/templates/.icons/material/invoice-minus-outline.svg +1 -0
  7210. docsforge/themes/material/templates/.icons/material/invoice-minus.svg +1 -0
  7211. docsforge/themes/material/templates/.icons/material/invoice-multiple-outline.svg +1 -0
  7212. docsforge/themes/material/templates/.icons/material/invoice-multiple.svg +1 -0
  7213. docsforge/themes/material/templates/.icons/material/invoice-outline.svg +1 -0
  7214. docsforge/themes/material/templates/.icons/material/invoice-plus-outline.svg +1 -0
  7215. docsforge/themes/material/templates/.icons/material/invoice-plus.svg +1 -0
  7216. docsforge/themes/material/templates/.icons/material/invoice-remove-outline.svg +1 -0
  7217. docsforge/themes/material/templates/.icons/material/invoice-remove.svg +1 -0
  7218. docsforge/themes/material/templates/.icons/material/invoice-send-outline.svg +1 -0
  7219. docsforge/themes/material/templates/.icons/material/invoice-send.svg +1 -0
  7220. docsforge/themes/material/templates/.icons/material/invoice-text-arrow-left-outline.svg +1 -0
  7221. docsforge/themes/material/templates/.icons/material/invoice-text-arrow-left.svg +1 -0
  7222. docsforge/themes/material/templates/.icons/material/invoice-text-arrow-right-outline.svg +1 -0
  7223. docsforge/themes/material/templates/.icons/material/invoice-text-arrow-right.svg +1 -0
  7224. docsforge/themes/material/templates/.icons/material/invoice-text-check-outline.svg +1 -0
  7225. docsforge/themes/material/templates/.icons/material/invoice-text-check.svg +1 -0
  7226. docsforge/themes/material/templates/.icons/material/invoice-text-clock-outline.svg +1 -0
  7227. docsforge/themes/material/templates/.icons/material/invoice-text-clock.svg +1 -0
  7228. docsforge/themes/material/templates/.icons/material/invoice-text-edit-outline.svg +1 -0
  7229. docsforge/themes/material/templates/.icons/material/invoice-text-edit.svg +1 -0
  7230. docsforge/themes/material/templates/.icons/material/invoice-text-fast-outline.svg +1 -0
  7231. docsforge/themes/material/templates/.icons/material/invoice-text-fast.svg +1 -0
  7232. docsforge/themes/material/templates/.icons/material/invoice-text-minus-outline.svg +1 -0
  7233. docsforge/themes/material/templates/.icons/material/invoice-text-minus.svg +1 -0
  7234. docsforge/themes/material/templates/.icons/material/invoice-text-multiple-outline.svg +1 -0
  7235. docsforge/themes/material/templates/.icons/material/invoice-text-multiple.svg +1 -0
  7236. docsforge/themes/material/templates/.icons/material/invoice-text-outline.svg +1 -0
  7237. docsforge/themes/material/templates/.icons/material/invoice-text-plus-outline.svg +1 -0
  7238. docsforge/themes/material/templates/.icons/material/invoice-text-plus.svg +1 -0
  7239. docsforge/themes/material/templates/.icons/material/invoice-text-remove-outline.svg +1 -0
  7240. docsforge/themes/material/templates/.icons/material/invoice-text-remove.svg +1 -0
  7241. docsforge/themes/material/templates/.icons/material/invoice-text-send-outline.svg +1 -0
  7242. docsforge/themes/material/templates/.icons/material/invoice-text-send.svg +1 -0
  7243. docsforge/themes/material/templates/.icons/material/invoice-text.svg +1 -0
  7244. docsforge/themes/material/templates/.icons/material/invoice.svg +1 -0
  7245. docsforge/themes/material/templates/.icons/material/iobroker.svg +1 -0
  7246. docsforge/themes/material/templates/.icons/material/ip-network-outline.svg +1 -0
  7247. docsforge/themes/material/templates/.icons/material/ip-network.svg +1 -0
  7248. docsforge/themes/material/templates/.icons/material/ip-outline.svg +1 -0
  7249. docsforge/themes/material/templates/.icons/material/ip.svg +1 -0
  7250. docsforge/themes/material/templates/.icons/material/ipod.svg +1 -0
  7251. docsforge/themes/material/templates/.icons/material/iron-board.svg +1 -0
  7252. docsforge/themes/material/templates/.icons/material/iron-outline.svg +1 -0
  7253. docsforge/themes/material/templates/.icons/material/iron.svg +1 -0
  7254. docsforge/themes/material/templates/.icons/material/island-variant.svg +1 -0
  7255. docsforge/themes/material/templates/.icons/material/island.svg +1 -0
  7256. docsforge/themes/material/templates/.icons/material/iv-bag.svg +1 -0
  7257. docsforge/themes/material/templates/.icons/material/jabber.svg +1 -0
  7258. docsforge/themes/material/templates/.icons/material/jeepney.svg +1 -0
  7259. docsforge/themes/material/templates/.icons/material/jellyfish-outline.svg +1 -0
  7260. docsforge/themes/material/templates/.icons/material/jellyfish.svg +1 -0
  7261. docsforge/themes/material/templates/.icons/material/jira.svg +1 -0
  7262. docsforge/themes/material/templates/.icons/material/jquery.svg +1 -0
  7263. docsforge/themes/material/templates/.icons/material/jsfiddle.svg +1 -0
  7264. docsforge/themes/material/templates/.icons/material/jump-rope.svg +1 -0
  7265. docsforge/themes/material/templates/.icons/material/kabaddi.svg +1 -0
  7266. docsforge/themes/material/templates/.icons/material/kangaroo.svg +1 -0
  7267. docsforge/themes/material/templates/.icons/material/karate.svg +1 -0
  7268. docsforge/themes/material/templates/.icons/material/kayaking.svg +1 -0
  7269. docsforge/themes/material/templates/.icons/material/keg.svg +1 -0
  7270. docsforge/themes/material/templates/.icons/material/kettle-alert-outline.svg +1 -0
  7271. docsforge/themes/material/templates/.icons/material/kettle-alert.svg +1 -0
  7272. docsforge/themes/material/templates/.icons/material/kettle-off-outline.svg +1 -0
  7273. docsforge/themes/material/templates/.icons/material/kettle-off.svg +1 -0
  7274. docsforge/themes/material/templates/.icons/material/kettle-outline.svg +1 -0
  7275. docsforge/themes/material/templates/.icons/material/kettle-pour-over.svg +1 -0
  7276. docsforge/themes/material/templates/.icons/material/kettle-steam-outline.svg +1 -0
  7277. docsforge/themes/material/templates/.icons/material/kettle-steam.svg +1 -0
  7278. docsforge/themes/material/templates/.icons/material/kettle.svg +1 -0
  7279. docsforge/themes/material/templates/.icons/material/kettlebell.svg +1 -0
  7280. docsforge/themes/material/templates/.icons/material/key-alert-outline.svg +1 -0
  7281. docsforge/themes/material/templates/.icons/material/key-alert.svg +1 -0
  7282. docsforge/themes/material/templates/.icons/material/key-arrow-right.svg +1 -0
  7283. docsforge/themes/material/templates/.icons/material/key-chain-variant.svg +1 -0
  7284. docsforge/themes/material/templates/.icons/material/key-chain.svg +1 -0
  7285. docsforge/themes/material/templates/.icons/material/key-change.svg +1 -0
  7286. docsforge/themes/material/templates/.icons/material/key-link.svg +1 -0
  7287. docsforge/themes/material/templates/.icons/material/key-minus.svg +1 -0
  7288. docsforge/themes/material/templates/.icons/material/key-outline.svg +1 -0
  7289. docsforge/themes/material/templates/.icons/material/key-plus.svg +1 -0
  7290. docsforge/themes/material/templates/.icons/material/key-remove.svg +1 -0
  7291. docsforge/themes/material/templates/.icons/material/key-star.svg +1 -0
  7292. docsforge/themes/material/templates/.icons/material/key-variant.svg +1 -0
  7293. docsforge/themes/material/templates/.icons/material/key-wireless.svg +1 -0
  7294. docsforge/themes/material/templates/.icons/material/key.svg +1 -0
  7295. docsforge/themes/material/templates/.icons/material/keyboard-backspace.svg +1 -0
  7296. docsforge/themes/material/templates/.icons/material/keyboard-caps.svg +1 -0
  7297. docsforge/themes/material/templates/.icons/material/keyboard-close-outline.svg +1 -0
  7298. docsforge/themes/material/templates/.icons/material/keyboard-close.svg +1 -0
  7299. docsforge/themes/material/templates/.icons/material/keyboard-esc.svg +1 -0
  7300. docsforge/themes/material/templates/.icons/material/keyboard-f1.svg +1 -0
  7301. docsforge/themes/material/templates/.icons/material/keyboard-f10.svg +1 -0
  7302. docsforge/themes/material/templates/.icons/material/keyboard-f11.svg +1 -0
  7303. docsforge/themes/material/templates/.icons/material/keyboard-f12.svg +1 -0
  7304. docsforge/themes/material/templates/.icons/material/keyboard-f2.svg +1 -0
  7305. docsforge/themes/material/templates/.icons/material/keyboard-f3.svg +1 -0
  7306. docsforge/themes/material/templates/.icons/material/keyboard-f4.svg +1 -0
  7307. docsforge/themes/material/templates/.icons/material/keyboard-f5.svg +1 -0
  7308. docsforge/themes/material/templates/.icons/material/keyboard-f6.svg +1 -0
  7309. docsforge/themes/material/templates/.icons/material/keyboard-f7.svg +1 -0
  7310. docsforge/themes/material/templates/.icons/material/keyboard-f8.svg +1 -0
  7311. docsforge/themes/material/templates/.icons/material/keyboard-f9.svg +1 -0
  7312. docsforge/themes/material/templates/.icons/material/keyboard-off-outline.svg +1 -0
  7313. docsforge/themes/material/templates/.icons/material/keyboard-off.svg +1 -0
  7314. docsforge/themes/material/templates/.icons/material/keyboard-outline.svg +1 -0
  7315. docsforge/themes/material/templates/.icons/material/keyboard-return.svg +1 -0
  7316. docsforge/themes/material/templates/.icons/material/keyboard-settings-outline.svg +1 -0
  7317. docsforge/themes/material/templates/.icons/material/keyboard-settings.svg +1 -0
  7318. docsforge/themes/material/templates/.icons/material/keyboard-space.svg +1 -0
  7319. docsforge/themes/material/templates/.icons/material/keyboard-tab-reverse.svg +1 -0
  7320. docsforge/themes/material/templates/.icons/material/keyboard-tab.svg +1 -0
  7321. docsforge/themes/material/templates/.icons/material/keyboard-variant.svg +1 -0
  7322. docsforge/themes/material/templates/.icons/material/keyboard.svg +1 -0
  7323. docsforge/themes/material/templates/.icons/material/khanda.svg +1 -0
  7324. docsforge/themes/material/templates/.icons/material/kickstarter.svg +1 -0
  7325. docsforge/themes/material/templates/.icons/material/kite-outline.svg +1 -0
  7326. docsforge/themes/material/templates/.icons/material/kite.svg +1 -0
  7327. docsforge/themes/material/templates/.icons/material/kitesurfing.svg +1 -0
  7328. docsforge/themes/material/templates/.icons/material/klingon.svg +1 -0
  7329. docsforge/themes/material/templates/.icons/material/knife-military.svg +1 -0
  7330. docsforge/themes/material/templates/.icons/material/knife.svg +1 -0
  7331. docsforge/themes/material/templates/.icons/material/knob.svg +1 -0
  7332. docsforge/themes/material/templates/.icons/material/koala.svg +1 -0
  7333. docsforge/themes/material/templates/.icons/material/kodi.svg +1 -0
  7334. docsforge/themes/material/templates/.icons/material/kubernetes.svg +1 -0
  7335. docsforge/themes/material/templates/.icons/material/label-multiple-outline.svg +1 -0
  7336. docsforge/themes/material/templates/.icons/material/label-multiple.svg +1 -0
  7337. docsforge/themes/material/templates/.icons/material/label-off-outline.svg +1 -0
  7338. docsforge/themes/material/templates/.icons/material/label-off.svg +1 -0
  7339. docsforge/themes/material/templates/.icons/material/label-outline.svg +1 -0
  7340. docsforge/themes/material/templates/.icons/material/label-percent-outline.svg +1 -0
  7341. docsforge/themes/material/templates/.icons/material/label-percent.svg +1 -0
  7342. docsforge/themes/material/templates/.icons/material/label-variant-outline.svg +1 -0
  7343. docsforge/themes/material/templates/.icons/material/label-variant.svg +1 -0
  7344. docsforge/themes/material/templates/.icons/material/label.svg +1 -0
  7345. docsforge/themes/material/templates/.icons/material/ladder.svg +1 -0
  7346. docsforge/themes/material/templates/.icons/material/ladybug.svg +1 -0
  7347. docsforge/themes/material/templates/.icons/material/lambda.svg +1 -0
  7348. docsforge/themes/material/templates/.icons/material/lamp-outline.svg +1 -0
  7349. docsforge/themes/material/templates/.icons/material/lamp.svg +1 -0
  7350. docsforge/themes/material/templates/.icons/material/lamps-outline.svg +1 -0
  7351. docsforge/themes/material/templates/.icons/material/lamps.svg +1 -0
  7352. docsforge/themes/material/templates/.icons/material/lan-check.svg +1 -0
  7353. docsforge/themes/material/templates/.icons/material/lan-connect.svg +1 -0
  7354. docsforge/themes/material/templates/.icons/material/lan-disconnect.svg +1 -0
  7355. docsforge/themes/material/templates/.icons/material/lan-pending.svg +1 -0
  7356. docsforge/themes/material/templates/.icons/material/lan.svg +1 -0
  7357. docsforge/themes/material/templates/.icons/material/land-fields.svg +1 -0
  7358. docsforge/themes/material/templates/.icons/material/land-plots-circle-variant.svg +1 -0
  7359. docsforge/themes/material/templates/.icons/material/land-plots-circle.svg +1 -0
  7360. docsforge/themes/material/templates/.icons/material/land-plots-marker.svg +1 -0
  7361. docsforge/themes/material/templates/.icons/material/land-plots.svg +1 -0
  7362. docsforge/themes/material/templates/.icons/material/land-rows-horizontal.svg +1 -0
  7363. docsforge/themes/material/templates/.icons/material/land-rows-vertical.svg +1 -0
  7364. docsforge/themes/material/templates/.icons/material/landslide-outline.svg +1 -0
  7365. docsforge/themes/material/templates/.icons/material/landslide.svg +1 -0
  7366. docsforge/themes/material/templates/.icons/material/language-c.svg +1 -0
  7367. docsforge/themes/material/templates/.icons/material/language-cpp.svg +1 -0
  7368. docsforge/themes/material/templates/.icons/material/language-csharp.svg +1 -0
  7369. docsforge/themes/material/templates/.icons/material/language-css3.svg +1 -0
  7370. docsforge/themes/material/templates/.icons/material/language-fortran.svg +1 -0
  7371. docsforge/themes/material/templates/.icons/material/language-go.svg +1 -0
  7372. docsforge/themes/material/templates/.icons/material/language-haskell.svg +1 -0
  7373. docsforge/themes/material/templates/.icons/material/language-html5.svg +1 -0
  7374. docsforge/themes/material/templates/.icons/material/language-java.svg +1 -0
  7375. docsforge/themes/material/templates/.icons/material/language-javascript.svg +1 -0
  7376. docsforge/themes/material/templates/.icons/material/language-kotlin.svg +1 -0
  7377. docsforge/themes/material/templates/.icons/material/language-lua.svg +1 -0
  7378. docsforge/themes/material/templates/.icons/material/language-markdown-outline.svg +1 -0
  7379. docsforge/themes/material/templates/.icons/material/language-markdown.svg +1 -0
  7380. docsforge/themes/material/templates/.icons/material/language-php.svg +1 -0
  7381. docsforge/themes/material/templates/.icons/material/language-python.svg +1 -0
  7382. docsforge/themes/material/templates/.icons/material/language-r.svg +1 -0
  7383. docsforge/themes/material/templates/.icons/material/language-ruby-on-rails.svg +1 -0
  7384. docsforge/themes/material/templates/.icons/material/language-ruby.svg +1 -0
  7385. docsforge/themes/material/templates/.icons/material/language-rust.svg +1 -0
  7386. docsforge/themes/material/templates/.icons/material/language-swift.svg +1 -0
  7387. docsforge/themes/material/templates/.icons/material/language-typescript.svg +1 -0
  7388. docsforge/themes/material/templates/.icons/material/language-xaml.svg +1 -0
  7389. docsforge/themes/material/templates/.icons/material/laptop-account.svg +1 -0
  7390. docsforge/themes/material/templates/.icons/material/laptop-off.svg +1 -0
  7391. docsforge/themes/material/templates/.icons/material/laptop.svg +1 -0
  7392. docsforge/themes/material/templates/.icons/material/laravel.svg +1 -0
  7393. docsforge/themes/material/templates/.icons/material/laser-pointer.svg +1 -0
  7394. docsforge/themes/material/templates/.icons/material/lasso.svg +1 -0
  7395. docsforge/themes/material/templates/.icons/material/lastpass.svg +1 -0
  7396. docsforge/themes/material/templates/.icons/material/latitude.svg +1 -0
  7397. docsforge/themes/material/templates/.icons/material/launch.svg +1 -0
  7398. docsforge/themes/material/templates/.icons/material/lava-lamp.svg +1 -0
  7399. docsforge/themes/material/templates/.icons/material/layers-edit.svg +1 -0
  7400. docsforge/themes/material/templates/.icons/material/layers-minus.svg +1 -0
  7401. docsforge/themes/material/templates/.icons/material/layers-off-outline.svg +1 -0
  7402. docsforge/themes/material/templates/.icons/material/layers-off.svg +1 -0
  7403. docsforge/themes/material/templates/.icons/material/layers-outline.svg +1 -0
  7404. docsforge/themes/material/templates/.icons/material/layers-plus.svg +1 -0
  7405. docsforge/themes/material/templates/.icons/material/layers-remove.svg +1 -0
  7406. docsforge/themes/material/templates/.icons/material/layers-search-outline.svg +1 -0
  7407. docsforge/themes/material/templates/.icons/material/layers-search.svg +1 -0
  7408. docsforge/themes/material/templates/.icons/material/layers-triple-outline.svg +1 -0
  7409. docsforge/themes/material/templates/.icons/material/layers-triple.svg +1 -0
  7410. docsforge/themes/material/templates/.icons/material/layers.svg +1 -0
  7411. docsforge/themes/material/templates/.icons/material/lead-pencil.svg +1 -0
  7412. docsforge/themes/material/templates/.icons/material/leaf-circle-outline.svg +1 -0
  7413. docsforge/themes/material/templates/.icons/material/leaf-circle.svg +1 -0
  7414. docsforge/themes/material/templates/.icons/material/leaf-maple-off.svg +1 -0
  7415. docsforge/themes/material/templates/.icons/material/leaf-maple.svg +1 -0
  7416. docsforge/themes/material/templates/.icons/material/leaf-off.svg +1 -0
  7417. docsforge/themes/material/templates/.icons/material/leaf.svg +1 -0
  7418. docsforge/themes/material/templates/.icons/material/leak-off.svg +1 -0
  7419. docsforge/themes/material/templates/.icons/material/leak.svg +1 -0
  7420. docsforge/themes/material/templates/.icons/material/lectern.svg +1 -0
  7421. docsforge/themes/material/templates/.icons/material/led-off.svg +1 -0
  7422. docsforge/themes/material/templates/.icons/material/led-on.svg +1 -0
  7423. docsforge/themes/material/templates/.icons/material/led-outline.svg +1 -0
  7424. docsforge/themes/material/templates/.icons/material/led-strip-variant-off.svg +1 -0
  7425. docsforge/themes/material/templates/.icons/material/led-strip-variant.svg +1 -0
  7426. docsforge/themes/material/templates/.icons/material/led-strip.svg +1 -0
  7427. docsforge/themes/material/templates/.icons/material/led-variant-off.svg +1 -0
  7428. docsforge/themes/material/templates/.icons/material/led-variant-on.svg +1 -0
  7429. docsforge/themes/material/templates/.icons/material/led-variant-outline.svg +1 -0
  7430. docsforge/themes/material/templates/.icons/material/leek.svg +1 -0
  7431. docsforge/themes/material/templates/.icons/material/less-than-or-equal.svg +1 -0
  7432. docsforge/themes/material/templates/.icons/material/less-than.svg +1 -0
  7433. docsforge/themes/material/templates/.icons/material/library-outline.svg +1 -0
  7434. docsforge/themes/material/templates/.icons/material/library-shelves.svg +1 -0
  7435. docsforge/themes/material/templates/.icons/material/library.svg +1 -0
  7436. docsforge/themes/material/templates/.icons/material/license.svg +1 -0
  7437. docsforge/themes/material/templates/.icons/material/lifebuoy.svg +1 -0
  7438. docsforge/themes/material/templates/.icons/material/light-flood-down.svg +1 -0
  7439. docsforge/themes/material/templates/.icons/material/light-flood-up.svg +1 -0
  7440. docsforge/themes/material/templates/.icons/material/light-recessed.svg +1 -0
  7441. docsforge/themes/material/templates/.icons/material/light-switch-off.svg +1 -0
  7442. docsforge/themes/material/templates/.icons/material/light-switch.svg +1 -0
  7443. docsforge/themes/material/templates/.icons/material/lightbulb-alert-outline.svg +1 -0
  7444. docsforge/themes/material/templates/.icons/material/lightbulb-alert.svg +1 -0
  7445. docsforge/themes/material/templates/.icons/material/lightbulb-auto-outline.svg +1 -0
  7446. docsforge/themes/material/templates/.icons/material/lightbulb-auto.svg +1 -0
  7447. docsforge/themes/material/templates/.icons/material/lightbulb-cfl-off.svg +1 -0
  7448. docsforge/themes/material/templates/.icons/material/lightbulb-cfl-spiral-off.svg +1 -0
  7449. docsforge/themes/material/templates/.icons/material/lightbulb-cfl-spiral.svg +1 -0
  7450. docsforge/themes/material/templates/.icons/material/lightbulb-cfl.svg +1 -0
  7451. docsforge/themes/material/templates/.icons/material/lightbulb-fluorescent-tube-outline.svg +1 -0
  7452. docsforge/themes/material/templates/.icons/material/lightbulb-fluorescent-tube.svg +1 -0
  7453. docsforge/themes/material/templates/.icons/material/lightbulb-group-off-outline.svg +1 -0
  7454. docsforge/themes/material/templates/.icons/material/lightbulb-group-off.svg +1 -0
  7455. docsforge/themes/material/templates/.icons/material/lightbulb-group-outline.svg +1 -0
  7456. docsforge/themes/material/templates/.icons/material/lightbulb-group.svg +1 -0
  7457. docsforge/themes/material/templates/.icons/material/lightbulb-multiple-off-outline.svg +1 -0
  7458. docsforge/themes/material/templates/.icons/material/lightbulb-multiple-off.svg +1 -0
  7459. docsforge/themes/material/templates/.icons/material/lightbulb-multiple-outline.svg +1 -0
  7460. docsforge/themes/material/templates/.icons/material/lightbulb-multiple.svg +1 -0
  7461. docsforge/themes/material/templates/.icons/material/lightbulb-night-outline.svg +1 -0
  7462. docsforge/themes/material/templates/.icons/material/lightbulb-night.svg +1 -0
  7463. docsforge/themes/material/templates/.icons/material/lightbulb-off-outline.svg +1 -0
  7464. docsforge/themes/material/templates/.icons/material/lightbulb-off.svg +1 -0
  7465. docsforge/themes/material/templates/.icons/material/lightbulb-on-10.svg +1 -0
  7466. docsforge/themes/material/templates/.icons/material/lightbulb-on-20.svg +1 -0
  7467. docsforge/themes/material/templates/.icons/material/lightbulb-on-30.svg +1 -0
  7468. docsforge/themes/material/templates/.icons/material/lightbulb-on-40.svg +1 -0
  7469. docsforge/themes/material/templates/.icons/material/lightbulb-on-50.svg +1 -0
  7470. docsforge/themes/material/templates/.icons/material/lightbulb-on-60.svg +1 -0
  7471. docsforge/themes/material/templates/.icons/material/lightbulb-on-70.svg +1 -0
  7472. docsforge/themes/material/templates/.icons/material/lightbulb-on-80.svg +1 -0
  7473. docsforge/themes/material/templates/.icons/material/lightbulb-on-90.svg +1 -0
  7474. docsforge/themes/material/templates/.icons/material/lightbulb-on-outline.svg +1 -0
  7475. docsforge/themes/material/templates/.icons/material/lightbulb-on.svg +1 -0
  7476. docsforge/themes/material/templates/.icons/material/lightbulb-outline.svg +1 -0
  7477. docsforge/themes/material/templates/.icons/material/lightbulb-question-outline.svg +1 -0
  7478. docsforge/themes/material/templates/.icons/material/lightbulb-question.svg +1 -0
  7479. docsforge/themes/material/templates/.icons/material/lightbulb-spot-off.svg +1 -0
  7480. docsforge/themes/material/templates/.icons/material/lightbulb-spot.svg +1 -0
  7481. docsforge/themes/material/templates/.icons/material/lightbulb-variant-outline.svg +1 -0
  7482. docsforge/themes/material/templates/.icons/material/lightbulb-variant.svg +1 -0
  7483. docsforge/themes/material/templates/.icons/material/lightbulb.svg +1 -0
  7484. docsforge/themes/material/templates/.icons/material/lighthouse-on.svg +1 -0
  7485. docsforge/themes/material/templates/.icons/material/lighthouse.svg +1 -0
  7486. docsforge/themes/material/templates/.icons/material/lightning-bolt-circle.svg +1 -0
  7487. docsforge/themes/material/templates/.icons/material/lightning-bolt-outline.svg +1 -0
  7488. docsforge/themes/material/templates/.icons/material/lightning-bolt.svg +1 -0
  7489. docsforge/themes/material/templates/.icons/material/line-scan.svg +1 -0
  7490. docsforge/themes/material/templates/.icons/material/lingerie.svg +1 -0
  7491. docsforge/themes/material/templates/.icons/material/link-box-outline.svg +1 -0
  7492. docsforge/themes/material/templates/.icons/material/link-box-variant-outline.svg +1 -0
  7493. docsforge/themes/material/templates/.icons/material/link-box-variant.svg +1 -0
  7494. docsforge/themes/material/templates/.icons/material/link-box.svg +1 -0
  7495. docsforge/themes/material/templates/.icons/material/link-circle-outline.svg +1 -0
  7496. docsforge/themes/material/templates/.icons/material/link-circle.svg +1 -0
  7497. docsforge/themes/material/templates/.icons/material/link-edit.svg +1 -0
  7498. docsforge/themes/material/templates/.icons/material/link-lock.svg +1 -0
  7499. docsforge/themes/material/templates/.icons/material/link-off.svg +1 -0
  7500. docsforge/themes/material/templates/.icons/material/link-plus.svg +1 -0
  7501. docsforge/themes/material/templates/.icons/material/link-variant-minus.svg +1 -0
  7502. docsforge/themes/material/templates/.icons/material/link-variant-off.svg +1 -0
  7503. docsforge/themes/material/templates/.icons/material/link-variant-plus.svg +1 -0
  7504. docsforge/themes/material/templates/.icons/material/link-variant-remove.svg +1 -0
  7505. docsforge/themes/material/templates/.icons/material/link-variant.svg +1 -0
  7506. docsforge/themes/material/templates/.icons/material/link.svg +1 -0
  7507. docsforge/themes/material/templates/.icons/material/linkedin.svg +1 -0
  7508. docsforge/themes/material/templates/.icons/material/linux-mint.svg +1 -0
  7509. docsforge/themes/material/templates/.icons/material/linux.svg +1 -0
  7510. docsforge/themes/material/templates/.icons/material/lipstick.svg +1 -0
  7511. docsforge/themes/material/templates/.icons/material/liquid-spot.svg +1 -0
  7512. docsforge/themes/material/templates/.icons/material/liquor.svg +1 -0
  7513. docsforge/themes/material/templates/.icons/material/list-box-outline.svg +1 -0
  7514. docsforge/themes/material/templates/.icons/material/list-box.svg +1 -0
  7515. docsforge/themes/material/templates/.icons/material/list-status.svg +1 -0
  7516. docsforge/themes/material/templates/.icons/material/litecoin.svg +1 -0
  7517. docsforge/themes/material/templates/.icons/material/loading.svg +1 -0
  7518. docsforge/themes/material/templates/.icons/material/location-enter.svg +1 -0
  7519. docsforge/themes/material/templates/.icons/material/location-exit.svg +1 -0
  7520. docsforge/themes/material/templates/.icons/material/lock-alert-outline.svg +1 -0
  7521. docsforge/themes/material/templates/.icons/material/lock-alert.svg +1 -0
  7522. docsforge/themes/material/templates/.icons/material/lock-check-outline.svg +1 -0
  7523. docsforge/themes/material/templates/.icons/material/lock-check.svg +1 -0
  7524. docsforge/themes/material/templates/.icons/material/lock-clock.svg +1 -0
  7525. docsforge/themes/material/templates/.icons/material/lock-minus-outline.svg +1 -0
  7526. docsforge/themes/material/templates/.icons/material/lock-minus.svg +1 -0
  7527. docsforge/themes/material/templates/.icons/material/lock-off-outline.svg +1 -0
  7528. docsforge/themes/material/templates/.icons/material/lock-off.svg +1 -0
  7529. docsforge/themes/material/templates/.icons/material/lock-open-alert-outline.svg +1 -0
  7530. docsforge/themes/material/templates/.icons/material/lock-open-alert.svg +1 -0
  7531. docsforge/themes/material/templates/.icons/material/lock-open-check-outline.svg +1 -0
  7532. docsforge/themes/material/templates/.icons/material/lock-open-check.svg +1 -0
  7533. docsforge/themes/material/templates/.icons/material/lock-open-minus-outline.svg +1 -0
  7534. docsforge/themes/material/templates/.icons/material/lock-open-minus.svg +1 -0
  7535. docsforge/themes/material/templates/.icons/material/lock-open-outline.svg +1 -0
  7536. docsforge/themes/material/templates/.icons/material/lock-open-plus-outline.svg +1 -0
  7537. docsforge/themes/material/templates/.icons/material/lock-open-plus.svg +1 -0
  7538. docsforge/themes/material/templates/.icons/material/lock-open-remove-outline.svg +1 -0
  7539. docsforge/themes/material/templates/.icons/material/lock-open-remove.svg +1 -0
  7540. docsforge/themes/material/templates/.icons/material/lock-open-variant-outline.svg +1 -0
  7541. docsforge/themes/material/templates/.icons/material/lock-open-variant.svg +1 -0
  7542. docsforge/themes/material/templates/.icons/material/lock-open.svg +1 -0
  7543. docsforge/themes/material/templates/.icons/material/lock-outline.svg +1 -0
  7544. docsforge/themes/material/templates/.icons/material/lock-pattern.svg +1 -0
  7545. docsforge/themes/material/templates/.icons/material/lock-percent-open-outline.svg +1 -0
  7546. docsforge/themes/material/templates/.icons/material/lock-percent-open-variant-outline.svg +1 -0
  7547. docsforge/themes/material/templates/.icons/material/lock-percent-open-variant.svg +1 -0
  7548. docsforge/themes/material/templates/.icons/material/lock-percent-open.svg +1 -0
  7549. docsforge/themes/material/templates/.icons/material/lock-percent-outline.svg +1 -0
  7550. docsforge/themes/material/templates/.icons/material/lock-percent.svg +1 -0
  7551. docsforge/themes/material/templates/.icons/material/lock-plus-outline.svg +1 -0
  7552. docsforge/themes/material/templates/.icons/material/lock-plus.svg +1 -0
  7553. docsforge/themes/material/templates/.icons/material/lock-question.svg +1 -0
  7554. docsforge/themes/material/templates/.icons/material/lock-remove-outline.svg +1 -0
  7555. docsforge/themes/material/templates/.icons/material/lock-remove.svg +1 -0
  7556. docsforge/themes/material/templates/.icons/material/lock-reset.svg +1 -0
  7557. docsforge/themes/material/templates/.icons/material/lock-smart.svg +1 -0
  7558. docsforge/themes/material/templates/.icons/material/lock.svg +1 -0
  7559. docsforge/themes/material/templates/.icons/material/locker-multiple.svg +1 -0
  7560. docsforge/themes/material/templates/.icons/material/locker.svg +1 -0
  7561. docsforge/themes/material/templates/.icons/material/login-variant.svg +1 -0
  7562. docsforge/themes/material/templates/.icons/material/login.svg +1 -0
  7563. docsforge/themes/material/templates/.icons/material/logout-variant.svg +1 -0
  7564. docsforge/themes/material/templates/.icons/material/logout.svg +1 -0
  7565. docsforge/themes/material/templates/.icons/material/longitude.svg +1 -0
  7566. docsforge/themes/material/templates/.icons/material/looks.svg +1 -0
  7567. docsforge/themes/material/templates/.icons/material/lotion-outline.svg +1 -0
  7568. docsforge/themes/material/templates/.icons/material/lotion-plus-outline.svg +1 -0
  7569. docsforge/themes/material/templates/.icons/material/lotion-plus.svg +1 -0
  7570. docsforge/themes/material/templates/.icons/material/lotion.svg +1 -0
  7571. docsforge/themes/material/templates/.icons/material/loupe.svg +1 -0
  7572. docsforge/themes/material/templates/.icons/material/lumx.svg +1 -0
  7573. docsforge/themes/material/templates/.icons/material/lungs.svg +1 -0
  7574. docsforge/themes/material/templates/.icons/material/mace.svg +1 -0
  7575. docsforge/themes/material/templates/.icons/material/magazine-pistol.svg +1 -0
  7576. docsforge/themes/material/templates/.icons/material/magazine-rifle.svg +1 -0
  7577. docsforge/themes/material/templates/.icons/material/magic-staff.svg +1 -0
  7578. docsforge/themes/material/templates/.icons/material/magnet-on.svg +1 -0
  7579. docsforge/themes/material/templates/.icons/material/magnet.svg +1 -0
  7580. docsforge/themes/material/templates/.icons/material/magnify-close.svg +1 -0
  7581. docsforge/themes/material/templates/.icons/material/magnify-expand.svg +1 -0
  7582. docsforge/themes/material/templates/.icons/material/magnify-minus-cursor.svg +1 -0
  7583. docsforge/themes/material/templates/.icons/material/magnify-minus-outline.svg +1 -0
  7584. docsforge/themes/material/templates/.icons/material/magnify-minus.svg +1 -0
  7585. docsforge/themes/material/templates/.icons/material/magnify-plus-cursor.svg +1 -0
  7586. docsforge/themes/material/templates/.icons/material/magnify-plus-outline.svg +1 -0
  7587. docsforge/themes/material/templates/.icons/material/magnify-plus.svg +1 -0
  7588. docsforge/themes/material/templates/.icons/material/magnify-remove-cursor.svg +1 -0
  7589. docsforge/themes/material/templates/.icons/material/magnify-remove-outline.svg +1 -0
  7590. docsforge/themes/material/templates/.icons/material/magnify-scan.svg +1 -0
  7591. docsforge/themes/material/templates/.icons/material/magnify.svg +1 -0
  7592. docsforge/themes/material/templates/.icons/material/mail.svg +1 -0
  7593. docsforge/themes/material/templates/.icons/material/mailbox-open-outline.svg +1 -0
  7594. docsforge/themes/material/templates/.icons/material/mailbox-open-up-outline.svg +1 -0
  7595. docsforge/themes/material/templates/.icons/material/mailbox-open-up.svg +1 -0
  7596. docsforge/themes/material/templates/.icons/material/mailbox-open.svg +1 -0
  7597. docsforge/themes/material/templates/.icons/material/mailbox-outline.svg +1 -0
  7598. docsforge/themes/material/templates/.icons/material/mailbox-up-outline.svg +1 -0
  7599. docsforge/themes/material/templates/.icons/material/mailbox-up.svg +1 -0
  7600. docsforge/themes/material/templates/.icons/material/mailbox.svg +1 -0
  7601. docsforge/themes/material/templates/.icons/material/manjaro.svg +1 -0
  7602. docsforge/themes/material/templates/.icons/material/map-check-outline.svg +1 -0
  7603. docsforge/themes/material/templates/.icons/material/map-check.svg +1 -0
  7604. docsforge/themes/material/templates/.icons/material/map-clock-outline.svg +1 -0
  7605. docsforge/themes/material/templates/.icons/material/map-clock.svg +1 -0
  7606. docsforge/themes/material/templates/.icons/material/map-legend.svg +1 -0
  7607. docsforge/themes/material/templates/.icons/material/map-marker-account-outline.svg +1 -0
  7608. docsforge/themes/material/templates/.icons/material/map-marker-account.svg +1 -0
  7609. docsforge/themes/material/templates/.icons/material/map-marker-alert-outline.svg +1 -0
  7610. docsforge/themes/material/templates/.icons/material/map-marker-alert.svg +1 -0
  7611. docsforge/themes/material/templates/.icons/material/map-marker-check-outline.svg +1 -0
  7612. docsforge/themes/material/templates/.icons/material/map-marker-check.svg +1 -0
  7613. docsforge/themes/material/templates/.icons/material/map-marker-circle.svg +1 -0
  7614. docsforge/themes/material/templates/.icons/material/map-marker-distance.svg +1 -0
  7615. docsforge/themes/material/templates/.icons/material/map-marker-down.svg +1 -0
  7616. docsforge/themes/material/templates/.icons/material/map-marker-left-outline.svg +1 -0
  7617. docsforge/themes/material/templates/.icons/material/map-marker-left.svg +1 -0
  7618. docsforge/themes/material/templates/.icons/material/map-marker-minus-outline.svg +1 -0
  7619. docsforge/themes/material/templates/.icons/material/map-marker-minus.svg +1 -0
  7620. docsforge/themes/material/templates/.icons/material/map-marker-multiple-outline.svg +1 -0
  7621. docsforge/themes/material/templates/.icons/material/map-marker-multiple.svg +1 -0
  7622. docsforge/themes/material/templates/.icons/material/map-marker-off-outline.svg +1 -0
  7623. docsforge/themes/material/templates/.icons/material/map-marker-off.svg +1 -0
  7624. docsforge/themes/material/templates/.icons/material/map-marker-outline.svg +1 -0
  7625. docsforge/themes/material/templates/.icons/material/map-marker-path.svg +1 -0
  7626. docsforge/themes/material/templates/.icons/material/map-marker-plus-outline.svg +1 -0
  7627. docsforge/themes/material/templates/.icons/material/map-marker-plus.svg +1 -0
  7628. docsforge/themes/material/templates/.icons/material/map-marker-question-outline.svg +1 -0
  7629. docsforge/themes/material/templates/.icons/material/map-marker-question.svg +1 -0
  7630. docsforge/themes/material/templates/.icons/material/map-marker-radius-outline.svg +1 -0
  7631. docsforge/themes/material/templates/.icons/material/map-marker-radius.svg +1 -0
  7632. docsforge/themes/material/templates/.icons/material/map-marker-remove-outline.svg +1 -0
  7633. docsforge/themes/material/templates/.icons/material/map-marker-remove-variant.svg +1 -0
  7634. docsforge/themes/material/templates/.icons/material/map-marker-remove.svg +1 -0
  7635. docsforge/themes/material/templates/.icons/material/map-marker-right-outline.svg +1 -0
  7636. docsforge/themes/material/templates/.icons/material/map-marker-right.svg +1 -0
  7637. docsforge/themes/material/templates/.icons/material/map-marker-star-outline.svg +1 -0
  7638. docsforge/themes/material/templates/.icons/material/map-marker-star.svg +1 -0
  7639. docsforge/themes/material/templates/.icons/material/map-marker-up.svg +1 -0
  7640. docsforge/themes/material/templates/.icons/material/map-marker.svg +1 -0
  7641. docsforge/themes/material/templates/.icons/material/map-minus.svg +1 -0
  7642. docsforge/themes/material/templates/.icons/material/map-outline.svg +1 -0
  7643. docsforge/themes/material/templates/.icons/material/map-plus.svg +1 -0
  7644. docsforge/themes/material/templates/.icons/material/map-search-outline.svg +1 -0
  7645. docsforge/themes/material/templates/.icons/material/map-search.svg +1 -0
  7646. docsforge/themes/material/templates/.icons/material/map.svg +1 -0
  7647. docsforge/themes/material/templates/.icons/material/mapbox.svg +1 -0
  7648. docsforge/themes/material/templates/.icons/material/margin.svg +1 -0
  7649. docsforge/themes/material/templates/.icons/material/marker-cancel.svg +1 -0
  7650. docsforge/themes/material/templates/.icons/material/marker-check.svg +1 -0
  7651. docsforge/themes/material/templates/.icons/material/marker.svg +1 -0
  7652. docsforge/themes/material/templates/.icons/material/mastodon.svg +1 -0
  7653. docsforge/themes/material/templates/.icons/material/material-design.svg +1 -0
  7654. docsforge/themes/material/templates/.icons/material/material-ui.svg +1 -0
  7655. docsforge/themes/material/templates/.icons/material/math-compass.svg +1 -0
  7656. docsforge/themes/material/templates/.icons/material/math-cos.svg +1 -0
  7657. docsforge/themes/material/templates/.icons/material/math-integral-box.svg +1 -0
  7658. docsforge/themes/material/templates/.icons/material/math-integral.svg +1 -0
  7659. docsforge/themes/material/templates/.icons/material/math-log.svg +1 -0
  7660. docsforge/themes/material/templates/.icons/material/math-norm-box.svg +1 -0
  7661. docsforge/themes/material/templates/.icons/material/math-norm.svg +1 -0
  7662. docsforge/themes/material/templates/.icons/material/math-sin.svg +1 -0
  7663. docsforge/themes/material/templates/.icons/material/math-tan.svg +1 -0
  7664. docsforge/themes/material/templates/.icons/material/matrix.svg +1 -0
  7665. docsforge/themes/material/templates/.icons/material/medal-outline.svg +1 -0
  7666. docsforge/themes/material/templates/.icons/material/medal.svg +1 -0
  7667. docsforge/themes/material/templates/.icons/material/medical-bag.svg +1 -0
  7668. docsforge/themes/material/templates/.icons/material/medical-cotton-swab.svg +1 -0
  7669. docsforge/themes/material/templates/.icons/material/medication-outline.svg +1 -0
  7670. docsforge/themes/material/templates/.icons/material/medication.svg +1 -0
  7671. docsforge/themes/material/templates/.icons/material/meditation.svg +1 -0
  7672. docsforge/themes/material/templates/.icons/material/memory-arrow-down.svg +1 -0
  7673. docsforge/themes/material/templates/.icons/material/memory.svg +1 -0
  7674. docsforge/themes/material/templates/.icons/material/menorah-fire.svg +1 -0
  7675. docsforge/themes/material/templates/.icons/material/menorah.svg +1 -0
  7676. docsforge/themes/material/templates/.icons/material/menu-close.svg +1 -0
  7677. docsforge/themes/material/templates/.icons/material/menu-down-outline.svg +1 -0
  7678. docsforge/themes/material/templates/.icons/material/menu-down.svg +1 -0
  7679. docsforge/themes/material/templates/.icons/material/menu-left-outline.svg +1 -0
  7680. docsforge/themes/material/templates/.icons/material/menu-left.svg +1 -0
  7681. docsforge/themes/material/templates/.icons/material/menu-open.svg +1 -0
  7682. docsforge/themes/material/templates/.icons/material/menu-right-outline.svg +1 -0
  7683. docsforge/themes/material/templates/.icons/material/menu-right.svg +1 -0
  7684. docsforge/themes/material/templates/.icons/material/menu-swap-outline.svg +1 -0
  7685. docsforge/themes/material/templates/.icons/material/menu-swap.svg +1 -0
  7686. docsforge/themes/material/templates/.icons/material/menu-up-outline.svg +1 -0
  7687. docsforge/themes/material/templates/.icons/material/menu-up.svg +1 -0
  7688. docsforge/themes/material/templates/.icons/material/menu.svg +1 -0
  7689. docsforge/themes/material/templates/.icons/material/merge.svg +1 -0
  7690. docsforge/themes/material/templates/.icons/material/message-alert-outline.svg +1 -0
  7691. docsforge/themes/material/templates/.icons/material/message-alert.svg +1 -0
  7692. docsforge/themes/material/templates/.icons/material/message-arrow-left-outline.svg +1 -0
  7693. docsforge/themes/material/templates/.icons/material/message-arrow-left.svg +1 -0
  7694. docsforge/themes/material/templates/.icons/material/message-arrow-right-outline.svg +1 -0
  7695. docsforge/themes/material/templates/.icons/material/message-arrow-right.svg +1 -0
  7696. docsforge/themes/material/templates/.icons/material/message-badge-outline.svg +1 -0
  7697. docsforge/themes/material/templates/.icons/material/message-badge.svg +1 -0
  7698. docsforge/themes/material/templates/.icons/material/message-bookmark-outline.svg +1 -0
  7699. docsforge/themes/material/templates/.icons/material/message-bookmark.svg +1 -0
  7700. docsforge/themes/material/templates/.icons/material/message-bulleted-off.svg +1 -0
  7701. docsforge/themes/material/templates/.icons/material/message-bulleted.svg +1 -0
  7702. docsforge/themes/material/templates/.icons/material/message-check-outline.svg +1 -0
  7703. docsforge/themes/material/templates/.icons/material/message-check.svg +1 -0
  7704. docsforge/themes/material/templates/.icons/material/message-cog-outline.svg +1 -0
  7705. docsforge/themes/material/templates/.icons/material/message-cog.svg +1 -0
  7706. docsforge/themes/material/templates/.icons/material/message-draw.svg +1 -0
  7707. docsforge/themes/material/templates/.icons/material/message-fast-outline.svg +1 -0
  7708. docsforge/themes/material/templates/.icons/material/message-fast.svg +1 -0
  7709. docsforge/themes/material/templates/.icons/material/message-flash-outline.svg +1 -0
  7710. docsforge/themes/material/templates/.icons/material/message-flash.svg +1 -0
  7711. docsforge/themes/material/templates/.icons/material/message-image-outline.svg +1 -0
  7712. docsforge/themes/material/templates/.icons/material/message-image.svg +1 -0
  7713. docsforge/themes/material/templates/.icons/material/message-lock-outline.svg +1 -0
  7714. docsforge/themes/material/templates/.icons/material/message-lock.svg +1 -0
  7715. docsforge/themes/material/templates/.icons/material/message-minus-outline.svg +1 -0
  7716. docsforge/themes/material/templates/.icons/material/message-minus.svg +1 -0
  7717. docsforge/themes/material/templates/.icons/material/message-off-outline.svg +1 -0
  7718. docsforge/themes/material/templates/.icons/material/message-off.svg +1 -0
  7719. docsforge/themes/material/templates/.icons/material/message-outline.svg +1 -0
  7720. docsforge/themes/material/templates/.icons/material/message-plus-outline.svg +1 -0
  7721. docsforge/themes/material/templates/.icons/material/message-plus.svg +1 -0
  7722. docsforge/themes/material/templates/.icons/material/message-processing-outline.svg +1 -0
  7723. docsforge/themes/material/templates/.icons/material/message-processing.svg +1 -0
  7724. docsforge/themes/material/templates/.icons/material/message-question-outline.svg +1 -0
  7725. docsforge/themes/material/templates/.icons/material/message-question.svg +1 -0
  7726. docsforge/themes/material/templates/.icons/material/message-reply-outline.svg +1 -0
  7727. docsforge/themes/material/templates/.icons/material/message-reply-text-outline.svg +1 -0
  7728. docsforge/themes/material/templates/.icons/material/message-reply-text.svg +1 -0
  7729. docsforge/themes/material/templates/.icons/material/message-reply.svg +1 -0
  7730. docsforge/themes/material/templates/.icons/material/message-settings-outline.svg +1 -0
  7731. docsforge/themes/material/templates/.icons/material/message-settings.svg +1 -0
  7732. docsforge/themes/material/templates/.icons/material/message-star-outline.svg +1 -0
  7733. docsforge/themes/material/templates/.icons/material/message-star.svg +1 -0
  7734. docsforge/themes/material/templates/.icons/material/message-text-clock-outline.svg +1 -0
  7735. docsforge/themes/material/templates/.icons/material/message-text-clock.svg +1 -0
  7736. docsforge/themes/material/templates/.icons/material/message-text-fast-outline.svg +1 -0
  7737. docsforge/themes/material/templates/.icons/material/message-text-fast.svg +1 -0
  7738. docsforge/themes/material/templates/.icons/material/message-text-lock-outline.svg +1 -0
  7739. docsforge/themes/material/templates/.icons/material/message-text-lock.svg +1 -0
  7740. docsforge/themes/material/templates/.icons/material/message-text-outline.svg +1 -0
  7741. docsforge/themes/material/templates/.icons/material/message-text.svg +1 -0
  7742. docsforge/themes/material/templates/.icons/material/message-video.svg +1 -0
  7743. docsforge/themes/material/templates/.icons/material/message.svg +1 -0
  7744. docsforge/themes/material/templates/.icons/material/meteor.svg +1 -0
  7745. docsforge/themes/material/templates/.icons/material/meter-electric-outline.svg +1 -0
  7746. docsforge/themes/material/templates/.icons/material/meter-electric.svg +1 -0
  7747. docsforge/themes/material/templates/.icons/material/meter-gas-outline.svg +1 -0
  7748. docsforge/themes/material/templates/.icons/material/meter-gas.svg +1 -0
  7749. docsforge/themes/material/templates/.icons/material/metronome-tick.svg +1 -0
  7750. docsforge/themes/material/templates/.icons/material/metronome.svg +1 -0
  7751. docsforge/themes/material/templates/.icons/material/micro-sd.svg +1 -0
  7752. docsforge/themes/material/templates/.icons/material/microphone-message-off.svg +1 -0
  7753. docsforge/themes/material/templates/.icons/material/microphone-message.svg +1 -0
  7754. docsforge/themes/material/templates/.icons/material/microphone-minus.svg +1 -0
  7755. docsforge/themes/material/templates/.icons/material/microphone-off.svg +1 -0
  7756. docsforge/themes/material/templates/.icons/material/microphone-outline.svg +1 -0
  7757. docsforge/themes/material/templates/.icons/material/microphone-plus.svg +1 -0
  7758. docsforge/themes/material/templates/.icons/material/microphone-question-outline.svg +1 -0
  7759. docsforge/themes/material/templates/.icons/material/microphone-question.svg +1 -0
  7760. docsforge/themes/material/templates/.icons/material/microphone-settings.svg +1 -0
  7761. docsforge/themes/material/templates/.icons/material/microphone-variant-off.svg +1 -0
  7762. docsforge/themes/material/templates/.icons/material/microphone-variant.svg +1 -0
  7763. docsforge/themes/material/templates/.icons/material/microphone.svg +1 -0
  7764. docsforge/themes/material/templates/.icons/material/microscope.svg +1 -0
  7765. docsforge/themes/material/templates/.icons/material/microsoft-access.svg +1 -0
  7766. docsforge/themes/material/templates/.icons/material/microsoft-azure-devops.svg +1 -0
  7767. docsforge/themes/material/templates/.icons/material/microsoft-azure.svg +1 -0
  7768. docsforge/themes/material/templates/.icons/material/microsoft-bing.svg +1 -0
  7769. docsforge/themes/material/templates/.icons/material/microsoft-dynamics-365.svg +1 -0
  7770. docsforge/themes/material/templates/.icons/material/microsoft-edge.svg +1 -0
  7771. docsforge/themes/material/templates/.icons/material/microsoft-excel.svg +1 -0
  7772. docsforge/themes/material/templates/.icons/material/microsoft-internet-explorer.svg +1 -0
  7773. docsforge/themes/material/templates/.icons/material/microsoft-office.svg +1 -0
  7774. docsforge/themes/material/templates/.icons/material/microsoft-onedrive.svg +1 -0
  7775. docsforge/themes/material/templates/.icons/material/microsoft-onenote.svg +1 -0
  7776. docsforge/themes/material/templates/.icons/material/microsoft-outlook.svg +1 -0
  7777. docsforge/themes/material/templates/.icons/material/microsoft-powerpoint.svg +1 -0
  7778. docsforge/themes/material/templates/.icons/material/microsoft-sharepoint.svg +1 -0
  7779. docsforge/themes/material/templates/.icons/material/microsoft-teams.svg +1 -0
  7780. docsforge/themes/material/templates/.icons/material/microsoft-visual-studio-code.svg +1 -0
  7781. docsforge/themes/material/templates/.icons/material/microsoft-visual-studio.svg +1 -0
  7782. docsforge/themes/material/templates/.icons/material/microsoft-windows-classic.svg +1 -0
  7783. docsforge/themes/material/templates/.icons/material/microsoft-windows.svg +1 -0
  7784. docsforge/themes/material/templates/.icons/material/microsoft-word.svg +1 -0
  7785. docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-battery-alert.svg +1 -0
  7786. docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-battery-charging.svg +1 -0
  7787. docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-battery-empty.svg +1 -0
  7788. docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-battery-full.svg +1 -0
  7789. docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-battery-low.svg +1 -0
  7790. docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-battery-medium.svg +1 -0
  7791. docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-battery-unknown.svg +1 -0
  7792. docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-menu.svg +1 -0
  7793. docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-off.svg +1 -0
  7794. docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-view.svg +1 -0
  7795. docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller.svg +1 -0
  7796. docsforge/themes/material/templates/.icons/material/microsoft-xbox.svg +1 -0
  7797. docsforge/themes/material/templates/.icons/material/microsoft.svg +1 -0
  7798. docsforge/themes/material/templates/.icons/material/microwave-off.svg +1 -0
  7799. docsforge/themes/material/templates/.icons/material/microwave.svg +1 -0
  7800. docsforge/themes/material/templates/.icons/material/middleware-outline.svg +1 -0
  7801. docsforge/themes/material/templates/.icons/material/middleware.svg +1 -0
  7802. docsforge/themes/material/templates/.icons/material/midi-port.svg +1 -0
  7803. docsforge/themes/material/templates/.icons/material/midi.svg +1 -0
  7804. docsforge/themes/material/templates/.icons/material/mine.svg +1 -0
  7805. docsforge/themes/material/templates/.icons/material/minecraft.svg +1 -0
  7806. docsforge/themes/material/templates/.icons/material/mini-sd.svg +1 -0
  7807. docsforge/themes/material/templates/.icons/material/minidisc.svg +1 -0
  7808. docsforge/themes/material/templates/.icons/material/minus-box-multiple-outline.svg +1 -0
  7809. docsforge/themes/material/templates/.icons/material/minus-box-multiple.svg +1 -0
  7810. docsforge/themes/material/templates/.icons/material/minus-box-outline.svg +1 -0
  7811. docsforge/themes/material/templates/.icons/material/minus-box.svg +1 -0
  7812. docsforge/themes/material/templates/.icons/material/minus-circle-multiple-outline.svg +1 -0
  7813. docsforge/themes/material/templates/.icons/material/minus-circle-multiple.svg +1 -0
  7814. docsforge/themes/material/templates/.icons/material/minus-circle-off-outline.svg +1 -0
  7815. docsforge/themes/material/templates/.icons/material/minus-circle-off.svg +1 -0
  7816. docsforge/themes/material/templates/.icons/material/minus-circle-outline.svg +1 -0
  7817. docsforge/themes/material/templates/.icons/material/minus-circle.svg +1 -0
  7818. docsforge/themes/material/templates/.icons/material/minus-network-outline.svg +1 -0
  7819. docsforge/themes/material/templates/.icons/material/minus-network.svg +1 -0
  7820. docsforge/themes/material/templates/.icons/material/minus-thick.svg +1 -0
  7821. docsforge/themes/material/templates/.icons/material/minus.svg +1 -0
  7822. docsforge/themes/material/templates/.icons/material/mirror-rectangle.svg +1 -0
  7823. docsforge/themes/material/templates/.icons/material/mirror-variant.svg +1 -0
  7824. docsforge/themes/material/templates/.icons/material/mirror.svg +1 -0
  7825. docsforge/themes/material/templates/.icons/material/mixed-martial-arts.svg +1 -0
  7826. docsforge/themes/material/templates/.icons/material/mixed-reality.svg +1 -0
  7827. docsforge/themes/material/templates/.icons/material/molecule-co.svg +1 -0
  7828. docsforge/themes/material/templates/.icons/material/molecule-co2.svg +1 -0
  7829. docsforge/themes/material/templates/.icons/material/molecule.svg +1 -0
  7830. docsforge/themes/material/templates/.icons/material/monitor-account.svg +1 -0
  7831. docsforge/themes/material/templates/.icons/material/monitor-arrow-down-variant.svg +1 -0
  7832. docsforge/themes/material/templates/.icons/material/monitor-arrow-down.svg +1 -0
  7833. docsforge/themes/material/templates/.icons/material/monitor-cellphone-star.svg +1 -0
  7834. docsforge/themes/material/templates/.icons/material/monitor-cellphone.svg +1 -0
  7835. docsforge/themes/material/templates/.icons/material/monitor-dashboard.svg +1 -0
  7836. docsforge/themes/material/templates/.icons/material/monitor-edit.svg +1 -0
  7837. docsforge/themes/material/templates/.icons/material/monitor-eye.svg +1 -0
  7838. docsforge/themes/material/templates/.icons/material/monitor-lock.svg +1 -0
  7839. docsforge/themes/material/templates/.icons/material/monitor-multiple.svg +1 -0
  7840. docsforge/themes/material/templates/.icons/material/monitor-off.svg +1 -0
  7841. docsforge/themes/material/templates/.icons/material/monitor-screenshot.svg +1 -0
  7842. docsforge/themes/material/templates/.icons/material/monitor-share.svg +1 -0
  7843. docsforge/themes/material/templates/.icons/material/monitor-shimmer.svg +1 -0
  7844. docsforge/themes/material/templates/.icons/material/monitor-small.svg +1 -0
  7845. docsforge/themes/material/templates/.icons/material/monitor-speaker-off.svg +1 -0
  7846. docsforge/themes/material/templates/.icons/material/monitor-speaker.svg +1 -0
  7847. docsforge/themes/material/templates/.icons/material/monitor-star.svg +1 -0
  7848. docsforge/themes/material/templates/.icons/material/monitor-vertical.svg +1 -0
  7849. docsforge/themes/material/templates/.icons/material/monitor.svg +1 -0
  7850. docsforge/themes/material/templates/.icons/material/moon-first-quarter.svg +1 -0
  7851. docsforge/themes/material/templates/.icons/material/moon-full.svg +1 -0
  7852. docsforge/themes/material/templates/.icons/material/moon-last-quarter.svg +1 -0
  7853. docsforge/themes/material/templates/.icons/material/moon-new.svg +1 -0
  7854. docsforge/themes/material/templates/.icons/material/moon-waning-crescent.svg +1 -0
  7855. docsforge/themes/material/templates/.icons/material/moon-waning-gibbous.svg +1 -0
  7856. docsforge/themes/material/templates/.icons/material/moon-waxing-crescent.svg +1 -0
  7857. docsforge/themes/material/templates/.icons/material/moon-waxing-gibbous.svg +1 -0
  7858. docsforge/themes/material/templates/.icons/material/moped-electric-outline.svg +1 -0
  7859. docsforge/themes/material/templates/.icons/material/moped-electric.svg +1 -0
  7860. docsforge/themes/material/templates/.icons/material/moped-outline.svg +1 -0
  7861. docsforge/themes/material/templates/.icons/material/moped.svg +1 -0
  7862. docsforge/themes/material/templates/.icons/material/more.svg +1 -0
  7863. docsforge/themes/material/templates/.icons/material/mortar-pestle-plus.svg +1 -0
  7864. docsforge/themes/material/templates/.icons/material/mortar-pestle.svg +1 -0
  7865. docsforge/themes/material/templates/.icons/material/mosque-outline.svg +1 -0
  7866. docsforge/themes/material/templates/.icons/material/mosque.svg +1 -0
  7867. docsforge/themes/material/templates/.icons/material/mother-heart.svg +1 -0
  7868. docsforge/themes/material/templates/.icons/material/mother-nurse.svg +1 -0
  7869. docsforge/themes/material/templates/.icons/material/motion-outline.svg +1 -0
  7870. docsforge/themes/material/templates/.icons/material/motion-pause-outline.svg +1 -0
  7871. docsforge/themes/material/templates/.icons/material/motion-pause.svg +1 -0
  7872. docsforge/themes/material/templates/.icons/material/motion-play-outline.svg +1 -0
  7873. docsforge/themes/material/templates/.icons/material/motion-play.svg +1 -0
  7874. docsforge/themes/material/templates/.icons/material/motion-sensor-off.svg +1 -0
  7875. docsforge/themes/material/templates/.icons/material/motion-sensor.svg +1 -0
  7876. docsforge/themes/material/templates/.icons/material/motion.svg +1 -0
  7877. docsforge/themes/material/templates/.icons/material/motorbike-electric.svg +1 -0
  7878. docsforge/themes/material/templates/.icons/material/motorbike-off.svg +1 -0
  7879. docsforge/themes/material/templates/.icons/material/motorbike.svg +1 -0
  7880. docsforge/themes/material/templates/.icons/material/mouse-bluetooth.svg +1 -0
  7881. docsforge/themes/material/templates/.icons/material/mouse-left-click-outline.svg +1 -0
  7882. docsforge/themes/material/templates/.icons/material/mouse-left-click.svg +1 -0
  7883. docsforge/themes/material/templates/.icons/material/mouse-move-down.svg +1 -0
  7884. docsforge/themes/material/templates/.icons/material/mouse-move-up.svg +1 -0
  7885. docsforge/themes/material/templates/.icons/material/mouse-move-vertical.svg +1 -0
  7886. docsforge/themes/material/templates/.icons/material/mouse-off.svg +1 -0
  7887. docsforge/themes/material/templates/.icons/material/mouse-outline.svg +1 -0
  7888. docsforge/themes/material/templates/.icons/material/mouse-right-click-outline.svg +1 -0
  7889. docsforge/themes/material/templates/.icons/material/mouse-right-click.svg +1 -0
  7890. docsforge/themes/material/templates/.icons/material/mouse-scroll-wheel.svg +1 -0
  7891. docsforge/themes/material/templates/.icons/material/mouse-variant-off.svg +1 -0
  7892. docsforge/themes/material/templates/.icons/material/mouse-variant.svg +1 -0
  7893. docsforge/themes/material/templates/.icons/material/mouse.svg +1 -0
  7894. docsforge/themes/material/templates/.icons/material/move-resize-variant.svg +1 -0
  7895. docsforge/themes/material/templates/.icons/material/move-resize.svg +1 -0
  7896. docsforge/themes/material/templates/.icons/material/movie-check-outline.svg +1 -0
  7897. docsforge/themes/material/templates/.icons/material/movie-check.svg +1 -0
  7898. docsforge/themes/material/templates/.icons/material/movie-cog-outline.svg +1 -0
  7899. docsforge/themes/material/templates/.icons/material/movie-cog.svg +1 -0
  7900. docsforge/themes/material/templates/.icons/material/movie-edit-outline.svg +1 -0
  7901. docsforge/themes/material/templates/.icons/material/movie-edit.svg +1 -0
  7902. docsforge/themes/material/templates/.icons/material/movie-filter-outline.svg +1 -0
  7903. docsforge/themes/material/templates/.icons/material/movie-filter.svg +1 -0
  7904. docsforge/themes/material/templates/.icons/material/movie-minus-outline.svg +1 -0
  7905. docsforge/themes/material/templates/.icons/material/movie-minus.svg +1 -0
  7906. docsforge/themes/material/templates/.icons/material/movie-off-outline.svg +1 -0
  7907. docsforge/themes/material/templates/.icons/material/movie-off.svg +1 -0
  7908. docsforge/themes/material/templates/.icons/material/movie-open-check-outline.svg +1 -0
  7909. docsforge/themes/material/templates/.icons/material/movie-open-check.svg +1 -0
  7910. docsforge/themes/material/templates/.icons/material/movie-open-cog-outline.svg +1 -0
  7911. docsforge/themes/material/templates/.icons/material/movie-open-cog.svg +1 -0
  7912. docsforge/themes/material/templates/.icons/material/movie-open-edit-outline.svg +1 -0
  7913. docsforge/themes/material/templates/.icons/material/movie-open-edit.svg +1 -0
  7914. docsforge/themes/material/templates/.icons/material/movie-open-minus-outline.svg +1 -0
  7915. docsforge/themes/material/templates/.icons/material/movie-open-minus.svg +1 -0
  7916. docsforge/themes/material/templates/.icons/material/movie-open-off-outline.svg +1 -0
  7917. docsforge/themes/material/templates/.icons/material/movie-open-off.svg +1 -0
  7918. docsforge/themes/material/templates/.icons/material/movie-open-outline.svg +1 -0
  7919. docsforge/themes/material/templates/.icons/material/movie-open-play-outline.svg +1 -0
  7920. docsforge/themes/material/templates/.icons/material/movie-open-play.svg +1 -0
  7921. docsforge/themes/material/templates/.icons/material/movie-open-plus-outline.svg +1 -0
  7922. docsforge/themes/material/templates/.icons/material/movie-open-plus.svg +1 -0
  7923. docsforge/themes/material/templates/.icons/material/movie-open-remove-outline.svg +1 -0
  7924. docsforge/themes/material/templates/.icons/material/movie-open-remove.svg +1 -0
  7925. docsforge/themes/material/templates/.icons/material/movie-open-settings-outline.svg +1 -0
  7926. docsforge/themes/material/templates/.icons/material/movie-open-settings.svg +1 -0
  7927. docsforge/themes/material/templates/.icons/material/movie-open-star-outline.svg +1 -0
  7928. docsforge/themes/material/templates/.icons/material/movie-open-star.svg +1 -0
  7929. docsforge/themes/material/templates/.icons/material/movie-open.svg +1 -0
  7930. docsforge/themes/material/templates/.icons/material/movie-outline.svg +1 -0
  7931. docsforge/themes/material/templates/.icons/material/movie-play-outline.svg +1 -0
  7932. docsforge/themes/material/templates/.icons/material/movie-play.svg +1 -0
  7933. docsforge/themes/material/templates/.icons/material/movie-plus-outline.svg +1 -0
  7934. docsforge/themes/material/templates/.icons/material/movie-plus.svg +1 -0
  7935. docsforge/themes/material/templates/.icons/material/movie-remove-outline.svg +1 -0
  7936. docsforge/themes/material/templates/.icons/material/movie-remove.svg +1 -0
  7937. docsforge/themes/material/templates/.icons/material/movie-roll.svg +1 -0
  7938. docsforge/themes/material/templates/.icons/material/movie-search-outline.svg +1 -0
  7939. docsforge/themes/material/templates/.icons/material/movie-search.svg +1 -0
  7940. docsforge/themes/material/templates/.icons/material/movie-settings-outline.svg +1 -0
  7941. docsforge/themes/material/templates/.icons/material/movie-settings.svg +1 -0
  7942. docsforge/themes/material/templates/.icons/material/movie-star-outline.svg +1 -0
  7943. docsforge/themes/material/templates/.icons/material/movie-star.svg +1 -0
  7944. docsforge/themes/material/templates/.icons/material/movie.svg +1 -0
  7945. docsforge/themes/material/templates/.icons/material/mower-bag-on.svg +1 -0
  7946. docsforge/themes/material/templates/.icons/material/mower-bag.svg +1 -0
  7947. docsforge/themes/material/templates/.icons/material/mower-on.svg +1 -0
  7948. docsforge/themes/material/templates/.icons/material/mower.svg +1 -0
  7949. docsforge/themes/material/templates/.icons/material/muffin.svg +1 -0
  7950. docsforge/themes/material/templates/.icons/material/multicast.svg +1 -0
  7951. docsforge/themes/material/templates/.icons/material/multimedia.svg +1 -0
  7952. docsforge/themes/material/templates/.icons/material/multiplication-box.svg +1 -0
  7953. docsforge/themes/material/templates/.icons/material/multiplication.svg +1 -0
  7954. docsforge/themes/material/templates/.icons/material/mushroom-off-outline.svg +1 -0
  7955. docsforge/themes/material/templates/.icons/material/mushroom-off.svg +1 -0
  7956. docsforge/themes/material/templates/.icons/material/mushroom-outline.svg +1 -0
  7957. docsforge/themes/material/templates/.icons/material/mushroom.svg +1 -0
  7958. docsforge/themes/material/templates/.icons/material/music-accidental-double-flat.svg +1 -0
  7959. docsforge/themes/material/templates/.icons/material/music-accidental-double-sharp.svg +1 -0
  7960. docsforge/themes/material/templates/.icons/material/music-accidental-flat.svg +1 -0
  7961. docsforge/themes/material/templates/.icons/material/music-accidental-natural.svg +1 -0
  7962. docsforge/themes/material/templates/.icons/material/music-accidental-sharp.svg +1 -0
  7963. docsforge/themes/material/templates/.icons/material/music-box-multiple-outline.svg +1 -0
  7964. docsforge/themes/material/templates/.icons/material/music-box-multiple.svg +1 -0
  7965. docsforge/themes/material/templates/.icons/material/music-box-outline.svg +1 -0
  7966. docsforge/themes/material/templates/.icons/material/music-box.svg +1 -0
  7967. docsforge/themes/material/templates/.icons/material/music-circle-outline.svg +1 -0
  7968. docsforge/themes/material/templates/.icons/material/music-circle.svg +1 -0
  7969. docsforge/themes/material/templates/.icons/material/music-clef-alto.svg +1 -0
  7970. docsforge/themes/material/templates/.icons/material/music-clef-bass.svg +1 -0
  7971. docsforge/themes/material/templates/.icons/material/music-clef-treble.svg +1 -0
  7972. docsforge/themes/material/templates/.icons/material/music-note-bluetooth-off.svg +1 -0
  7973. docsforge/themes/material/templates/.icons/material/music-note-bluetooth.svg +1 -0
  7974. docsforge/themes/material/templates/.icons/material/music-note-eighth-dotted.svg +1 -0
  7975. docsforge/themes/material/templates/.icons/material/music-note-eighth.svg +1 -0
  7976. docsforge/themes/material/templates/.icons/material/music-note-half-dotted.svg +1 -0
  7977. docsforge/themes/material/templates/.icons/material/music-note-half.svg +1 -0
  7978. docsforge/themes/material/templates/.icons/material/music-note-minus.svg +1 -0
  7979. docsforge/themes/material/templates/.icons/material/music-note-off-outline.svg +1 -0
  7980. docsforge/themes/material/templates/.icons/material/music-note-off.svg +1 -0
  7981. docsforge/themes/material/templates/.icons/material/music-note-outline.svg +1 -0
  7982. docsforge/themes/material/templates/.icons/material/music-note-plus.svg +1 -0
  7983. docsforge/themes/material/templates/.icons/material/music-note-quarter-dotted.svg +1 -0
  7984. docsforge/themes/material/templates/.icons/material/music-note-quarter.svg +1 -0
  7985. docsforge/themes/material/templates/.icons/material/music-note-sixteenth-dotted.svg +1 -0
  7986. docsforge/themes/material/templates/.icons/material/music-note-sixteenth.svg +1 -0
  7987. docsforge/themes/material/templates/.icons/material/music-note-whole-dotted.svg +1 -0
  7988. docsforge/themes/material/templates/.icons/material/music-note-whole.svg +1 -0
  7989. docsforge/themes/material/templates/.icons/material/music-note.svg +1 -0
  7990. docsforge/themes/material/templates/.icons/material/music-off.svg +1 -0
  7991. docsforge/themes/material/templates/.icons/material/music-rest-eighth.svg +1 -0
  7992. docsforge/themes/material/templates/.icons/material/music-rest-half.svg +1 -0
  7993. docsforge/themes/material/templates/.icons/material/music-rest-quarter.svg +1 -0
  7994. docsforge/themes/material/templates/.icons/material/music-rest-sixteenth.svg +1 -0
  7995. docsforge/themes/material/templates/.icons/material/music-rest-whole.svg +1 -0
  7996. docsforge/themes/material/templates/.icons/material/music.svg +1 -0
  7997. docsforge/themes/material/templates/.icons/material/mustache.svg +1 -0
  7998. docsforge/themes/material/templates/.icons/material/nail.svg +1 -0
  7999. docsforge/themes/material/templates/.icons/material/nas.svg +1 -0
  8000. docsforge/themes/material/templates/.icons/material/nativescript.svg +1 -0
  8001. docsforge/themes/material/templates/.icons/material/nature-outline.svg +1 -0
  8002. docsforge/themes/material/templates/.icons/material/nature-people-outline.svg +1 -0
  8003. docsforge/themes/material/templates/.icons/material/nature-people.svg +1 -0
  8004. docsforge/themes/material/templates/.icons/material/nature.svg +1 -0
  8005. docsforge/themes/material/templates/.icons/material/navigation-outline.svg +1 -0
  8006. docsforge/themes/material/templates/.icons/material/navigation-variant-outline.svg +1 -0
  8007. docsforge/themes/material/templates/.icons/material/navigation-variant.svg +1 -0
  8008. docsforge/themes/material/templates/.icons/material/navigation.svg +1 -0
  8009. docsforge/themes/material/templates/.icons/material/near-me.svg +1 -0
  8010. docsforge/themes/material/templates/.icons/material/necklace.svg +1 -0
  8011. docsforge/themes/material/templates/.icons/material/needle-off.svg +1 -0
  8012. docsforge/themes/material/templates/.icons/material/needle.svg +1 -0
  8013. docsforge/themes/material/templates/.icons/material/netflix.svg +1 -0
  8014. docsforge/themes/material/templates/.icons/material/network-off-outline.svg +1 -0
  8015. docsforge/themes/material/templates/.icons/material/network-off.svg +1 -0
  8016. docsforge/themes/material/templates/.icons/material/network-outline.svg +1 -0
  8017. docsforge/themes/material/templates/.icons/material/network-pos.svg +1 -0
  8018. docsforge/themes/material/templates/.icons/material/network-strength-1-alert.svg +1 -0
  8019. docsforge/themes/material/templates/.icons/material/network-strength-1.svg +1 -0
  8020. docsforge/themes/material/templates/.icons/material/network-strength-2-alert.svg +1 -0
  8021. docsforge/themes/material/templates/.icons/material/network-strength-2.svg +1 -0
  8022. docsforge/themes/material/templates/.icons/material/network-strength-3-alert.svg +1 -0
  8023. docsforge/themes/material/templates/.icons/material/network-strength-3.svg +1 -0
  8024. docsforge/themes/material/templates/.icons/material/network-strength-4-alert.svg +1 -0
  8025. docsforge/themes/material/templates/.icons/material/network-strength-4-cog.svg +1 -0
  8026. docsforge/themes/material/templates/.icons/material/network-strength-4.svg +1 -0
  8027. docsforge/themes/material/templates/.icons/material/network-strength-off-outline.svg +1 -0
  8028. docsforge/themes/material/templates/.icons/material/network-strength-off.svg +1 -0
  8029. docsforge/themes/material/templates/.icons/material/network-strength-outline.svg +1 -0
  8030. docsforge/themes/material/templates/.icons/material/network.svg +1 -0
  8031. docsforge/themes/material/templates/.icons/material/new-box.svg +1 -0
  8032. docsforge/themes/material/templates/.icons/material/newspaper-check.svg +1 -0
  8033. docsforge/themes/material/templates/.icons/material/newspaper-minus.svg +1 -0
  8034. docsforge/themes/material/templates/.icons/material/newspaper-plus.svg +1 -0
  8035. docsforge/themes/material/templates/.icons/material/newspaper-remove.svg +1 -0
  8036. docsforge/themes/material/templates/.icons/material/newspaper-variant-multiple-outline.svg +1 -0
  8037. docsforge/themes/material/templates/.icons/material/newspaper-variant-multiple.svg +1 -0
  8038. docsforge/themes/material/templates/.icons/material/newspaper-variant-outline.svg +1 -0
  8039. docsforge/themes/material/templates/.icons/material/newspaper-variant.svg +1 -0
  8040. docsforge/themes/material/templates/.icons/material/newspaper.svg +1 -0
  8041. docsforge/themes/material/templates/.icons/material/nfc-search-variant.svg +1 -0
  8042. docsforge/themes/material/templates/.icons/material/nfc-tap.svg +1 -0
  8043. docsforge/themes/material/templates/.icons/material/nfc-variant-off.svg +1 -0
  8044. docsforge/themes/material/templates/.icons/material/nfc-variant.svg +1 -0
  8045. docsforge/themes/material/templates/.icons/material/nfc.svg +1 -0
  8046. docsforge/themes/material/templates/.icons/material/ninja.svg +1 -0
  8047. docsforge/themes/material/templates/.icons/material/nintendo-game-boy.svg +1 -0
  8048. docsforge/themes/material/templates/.icons/material/nintendo-switch.svg +1 -0
  8049. docsforge/themes/material/templates/.icons/material/nintendo-wii.svg +1 -0
  8050. docsforge/themes/material/templates/.icons/material/nintendo-wiiu.svg +1 -0
  8051. docsforge/themes/material/templates/.icons/material/nix.svg +1 -0
  8052. docsforge/themes/material/templates/.icons/material/nodejs.svg +1 -0
  8053. docsforge/themes/material/templates/.icons/material/noodles.svg +1 -0
  8054. docsforge/themes/material/templates/.icons/material/not-equal-variant.svg +1 -0
  8055. docsforge/themes/material/templates/.icons/material/not-equal.svg +1 -0
  8056. docsforge/themes/material/templates/.icons/material/note-alert-outline.svg +1 -0
  8057. docsforge/themes/material/templates/.icons/material/note-alert.svg +1 -0
  8058. docsforge/themes/material/templates/.icons/material/note-check-outline.svg +1 -0
  8059. docsforge/themes/material/templates/.icons/material/note-check.svg +1 -0
  8060. docsforge/themes/material/templates/.icons/material/note-edit-outline.svg +1 -0
  8061. docsforge/themes/material/templates/.icons/material/note-edit.svg +1 -0
  8062. docsforge/themes/material/templates/.icons/material/note-minus-outline.svg +1 -0
  8063. docsforge/themes/material/templates/.icons/material/note-minus.svg +1 -0
  8064. docsforge/themes/material/templates/.icons/material/note-multiple-outline.svg +1 -0
  8065. docsforge/themes/material/templates/.icons/material/note-multiple.svg +1 -0
  8066. docsforge/themes/material/templates/.icons/material/note-off-outline.svg +1 -0
  8067. docsforge/themes/material/templates/.icons/material/note-off.svg +1 -0
  8068. docsforge/themes/material/templates/.icons/material/note-outline.svg +1 -0
  8069. docsforge/themes/material/templates/.icons/material/note-plus-outline.svg +1 -0
  8070. docsforge/themes/material/templates/.icons/material/note-plus.svg +1 -0
  8071. docsforge/themes/material/templates/.icons/material/note-remove-outline.svg +1 -0
  8072. docsforge/themes/material/templates/.icons/material/note-remove.svg +1 -0
  8073. docsforge/themes/material/templates/.icons/material/note-search-outline.svg +1 -0
  8074. docsforge/themes/material/templates/.icons/material/note-search.svg +1 -0
  8075. docsforge/themes/material/templates/.icons/material/note-text-outline.svg +1 -0
  8076. docsforge/themes/material/templates/.icons/material/note-text.svg +1 -0
  8077. docsforge/themes/material/templates/.icons/material/note.svg +1 -0
  8078. docsforge/themes/material/templates/.icons/material/notebook-check-outline.svg +1 -0
  8079. docsforge/themes/material/templates/.icons/material/notebook-check.svg +1 -0
  8080. docsforge/themes/material/templates/.icons/material/notebook-edit-outline.svg +1 -0
  8081. docsforge/themes/material/templates/.icons/material/notebook-edit.svg +1 -0
  8082. docsforge/themes/material/templates/.icons/material/notebook-heart-outline.svg +1 -0
  8083. docsforge/themes/material/templates/.icons/material/notebook-heart.svg +1 -0
  8084. docsforge/themes/material/templates/.icons/material/notebook-minus-outline.svg +1 -0
  8085. docsforge/themes/material/templates/.icons/material/notebook-minus.svg +1 -0
  8086. docsforge/themes/material/templates/.icons/material/notebook-multiple.svg +1 -0
  8087. docsforge/themes/material/templates/.icons/material/notebook-outline.svg +1 -0
  8088. docsforge/themes/material/templates/.icons/material/notebook-plus-outline.svg +1 -0
  8089. docsforge/themes/material/templates/.icons/material/notebook-plus.svg +1 -0
  8090. docsforge/themes/material/templates/.icons/material/notebook-remove-outline.svg +1 -0
  8091. docsforge/themes/material/templates/.icons/material/notebook-remove.svg +1 -0
  8092. docsforge/themes/material/templates/.icons/material/notebook.svg +1 -0
  8093. docsforge/themes/material/templates/.icons/material/notification-clear-all.svg +1 -0
  8094. docsforge/themes/material/templates/.icons/material/npm.svg +1 -0
  8095. docsforge/themes/material/templates/.icons/material/nuke.svg +1 -0
  8096. docsforge/themes/material/templates/.icons/material/null.svg +1 -0
  8097. docsforge/themes/material/templates/.icons/material/numeric-0-box-multiple-outline.svg +1 -0
  8098. docsforge/themes/material/templates/.icons/material/numeric-0-box-multiple.svg +1 -0
  8099. docsforge/themes/material/templates/.icons/material/numeric-0-box-outline.svg +1 -0
  8100. docsforge/themes/material/templates/.icons/material/numeric-0-box.svg +1 -0
  8101. docsforge/themes/material/templates/.icons/material/numeric-0-circle-outline.svg +1 -0
  8102. docsforge/themes/material/templates/.icons/material/numeric-0-circle.svg +1 -0
  8103. docsforge/themes/material/templates/.icons/material/numeric-0.svg +1 -0
  8104. docsforge/themes/material/templates/.icons/material/numeric-1-box-multiple-outline.svg +1 -0
  8105. docsforge/themes/material/templates/.icons/material/numeric-1-box-multiple.svg +1 -0
  8106. docsforge/themes/material/templates/.icons/material/numeric-1-box-outline.svg +1 -0
  8107. docsforge/themes/material/templates/.icons/material/numeric-1-box.svg +1 -0
  8108. docsforge/themes/material/templates/.icons/material/numeric-1-circle-outline.svg +1 -0
  8109. docsforge/themes/material/templates/.icons/material/numeric-1-circle.svg +1 -0
  8110. docsforge/themes/material/templates/.icons/material/numeric-1.svg +1 -0
  8111. docsforge/themes/material/templates/.icons/material/numeric-10-box-multiple-outline.svg +1 -0
  8112. docsforge/themes/material/templates/.icons/material/numeric-10-box-multiple.svg +1 -0
  8113. docsforge/themes/material/templates/.icons/material/numeric-10-box-outline.svg +1 -0
  8114. docsforge/themes/material/templates/.icons/material/numeric-10-box.svg +1 -0
  8115. docsforge/themes/material/templates/.icons/material/numeric-10-circle-outline.svg +1 -0
  8116. docsforge/themes/material/templates/.icons/material/numeric-10-circle.svg +1 -0
  8117. docsforge/themes/material/templates/.icons/material/numeric-10.svg +1 -0
  8118. docsforge/themes/material/templates/.icons/material/numeric-2-box-multiple-outline.svg +1 -0
  8119. docsforge/themes/material/templates/.icons/material/numeric-2-box-multiple.svg +1 -0
  8120. docsforge/themes/material/templates/.icons/material/numeric-2-box-outline.svg +1 -0
  8121. docsforge/themes/material/templates/.icons/material/numeric-2-box.svg +1 -0
  8122. docsforge/themes/material/templates/.icons/material/numeric-2-circle-outline.svg +1 -0
  8123. docsforge/themes/material/templates/.icons/material/numeric-2-circle.svg +1 -0
  8124. docsforge/themes/material/templates/.icons/material/numeric-2.svg +1 -0
  8125. docsforge/themes/material/templates/.icons/material/numeric-3-box-multiple-outline.svg +1 -0
  8126. docsforge/themes/material/templates/.icons/material/numeric-3-box-multiple.svg +1 -0
  8127. docsforge/themes/material/templates/.icons/material/numeric-3-box-outline.svg +1 -0
  8128. docsforge/themes/material/templates/.icons/material/numeric-3-box.svg +1 -0
  8129. docsforge/themes/material/templates/.icons/material/numeric-3-circle-outline.svg +1 -0
  8130. docsforge/themes/material/templates/.icons/material/numeric-3-circle.svg +1 -0
  8131. docsforge/themes/material/templates/.icons/material/numeric-3.svg +1 -0
  8132. docsforge/themes/material/templates/.icons/material/numeric-4-box-multiple-outline.svg +1 -0
  8133. docsforge/themes/material/templates/.icons/material/numeric-4-box-multiple.svg +1 -0
  8134. docsforge/themes/material/templates/.icons/material/numeric-4-box-outline.svg +1 -0
  8135. docsforge/themes/material/templates/.icons/material/numeric-4-box.svg +1 -0
  8136. docsforge/themes/material/templates/.icons/material/numeric-4-circle-outline.svg +1 -0
  8137. docsforge/themes/material/templates/.icons/material/numeric-4-circle.svg +1 -0
  8138. docsforge/themes/material/templates/.icons/material/numeric-4.svg +1 -0
  8139. docsforge/themes/material/templates/.icons/material/numeric-5-box-multiple-outline.svg +1 -0
  8140. docsforge/themes/material/templates/.icons/material/numeric-5-box-multiple.svg +1 -0
  8141. docsforge/themes/material/templates/.icons/material/numeric-5-box-outline.svg +1 -0
  8142. docsforge/themes/material/templates/.icons/material/numeric-5-box.svg +1 -0
  8143. docsforge/themes/material/templates/.icons/material/numeric-5-circle-outline.svg +1 -0
  8144. docsforge/themes/material/templates/.icons/material/numeric-5-circle.svg +1 -0
  8145. docsforge/themes/material/templates/.icons/material/numeric-5.svg +1 -0
  8146. docsforge/themes/material/templates/.icons/material/numeric-6-box-multiple-outline.svg +1 -0
  8147. docsforge/themes/material/templates/.icons/material/numeric-6-box-multiple.svg +1 -0
  8148. docsforge/themes/material/templates/.icons/material/numeric-6-box-outline.svg +1 -0
  8149. docsforge/themes/material/templates/.icons/material/numeric-6-box.svg +1 -0
  8150. docsforge/themes/material/templates/.icons/material/numeric-6-circle-outline.svg +1 -0
  8151. docsforge/themes/material/templates/.icons/material/numeric-6-circle.svg +1 -0
  8152. docsforge/themes/material/templates/.icons/material/numeric-6.svg +1 -0
  8153. docsforge/themes/material/templates/.icons/material/numeric-7-box-multiple-outline.svg +1 -0
  8154. docsforge/themes/material/templates/.icons/material/numeric-7-box-multiple.svg +1 -0
  8155. docsforge/themes/material/templates/.icons/material/numeric-7-box-outline.svg +1 -0
  8156. docsforge/themes/material/templates/.icons/material/numeric-7-box.svg +1 -0
  8157. docsforge/themes/material/templates/.icons/material/numeric-7-circle-outline.svg +1 -0
  8158. docsforge/themes/material/templates/.icons/material/numeric-7-circle.svg +1 -0
  8159. docsforge/themes/material/templates/.icons/material/numeric-7.svg +1 -0
  8160. docsforge/themes/material/templates/.icons/material/numeric-8-box-multiple-outline.svg +1 -0
  8161. docsforge/themes/material/templates/.icons/material/numeric-8-box-multiple.svg +1 -0
  8162. docsforge/themes/material/templates/.icons/material/numeric-8-box-outline.svg +1 -0
  8163. docsforge/themes/material/templates/.icons/material/numeric-8-box.svg +1 -0
  8164. docsforge/themes/material/templates/.icons/material/numeric-8-circle-outline.svg +1 -0
  8165. docsforge/themes/material/templates/.icons/material/numeric-8-circle.svg +1 -0
  8166. docsforge/themes/material/templates/.icons/material/numeric-8.svg +1 -0
  8167. docsforge/themes/material/templates/.icons/material/numeric-9-box-multiple-outline.svg +1 -0
  8168. docsforge/themes/material/templates/.icons/material/numeric-9-box-multiple.svg +1 -0
  8169. docsforge/themes/material/templates/.icons/material/numeric-9-box-outline.svg +1 -0
  8170. docsforge/themes/material/templates/.icons/material/numeric-9-box.svg +1 -0
  8171. docsforge/themes/material/templates/.icons/material/numeric-9-circle-outline.svg +1 -0
  8172. docsforge/themes/material/templates/.icons/material/numeric-9-circle.svg +1 -0
  8173. docsforge/themes/material/templates/.icons/material/numeric-9-plus-box-multiple-outline.svg +1 -0
  8174. docsforge/themes/material/templates/.icons/material/numeric-9-plus-box-multiple.svg +1 -0
  8175. docsforge/themes/material/templates/.icons/material/numeric-9-plus-box-outline.svg +1 -0
  8176. docsforge/themes/material/templates/.icons/material/numeric-9-plus-box.svg +1 -0
  8177. docsforge/themes/material/templates/.icons/material/numeric-9-plus-circle-outline.svg +1 -0
  8178. docsforge/themes/material/templates/.icons/material/numeric-9-plus-circle.svg +1 -0
  8179. docsforge/themes/material/templates/.icons/material/numeric-9-plus.svg +1 -0
  8180. docsforge/themes/material/templates/.icons/material/numeric-9.svg +1 -0
  8181. docsforge/themes/material/templates/.icons/material/numeric-negative-1.svg +1 -0
  8182. docsforge/themes/material/templates/.icons/material/numeric-off.svg +1 -0
  8183. docsforge/themes/material/templates/.icons/material/numeric-positive-1.svg +1 -0
  8184. docsforge/themes/material/templates/.icons/material/numeric.svg +1 -0
  8185. docsforge/themes/material/templates/.icons/material/nut.svg +1 -0
  8186. docsforge/themes/material/templates/.icons/material/nutrition.svg +1 -0
  8187. docsforge/themes/material/templates/.icons/material/nuxt.svg +1 -0
  8188. docsforge/themes/material/templates/.icons/material/oar.svg +1 -0
  8189. docsforge/themes/material/templates/.icons/material/ocarina.svg +1 -0
  8190. docsforge/themes/material/templates/.icons/material/oci.svg +1 -0
  8191. docsforge/themes/material/templates/.icons/material/ocr.svg +1 -0
  8192. docsforge/themes/material/templates/.icons/material/octagon-outline.svg +1 -0
  8193. docsforge/themes/material/templates/.icons/material/octagon.svg +1 -0
  8194. docsforge/themes/material/templates/.icons/material/octagram-edit-outline.svg +1 -0
  8195. docsforge/themes/material/templates/.icons/material/octagram-edit.svg +1 -0
  8196. docsforge/themes/material/templates/.icons/material/octagram-minus-outline.svg +1 -0
  8197. docsforge/themes/material/templates/.icons/material/octagram-minus.svg +1 -0
  8198. docsforge/themes/material/templates/.icons/material/octagram-outline.svg +1 -0
  8199. docsforge/themes/material/templates/.icons/material/octagram-plus-outline.svg +1 -0
  8200. docsforge/themes/material/templates/.icons/material/octagram-plus.svg +1 -0
  8201. docsforge/themes/material/templates/.icons/material/octagram.svg +1 -0
  8202. docsforge/themes/material/templates/.icons/material/octahedron-off.svg +1 -0
  8203. docsforge/themes/material/templates/.icons/material/octahedron.svg +1 -0
  8204. docsforge/themes/material/templates/.icons/material/odnoklassniki.svg +1 -0
  8205. docsforge/themes/material/templates/.icons/material/offer.svg +1 -0
  8206. docsforge/themes/material/templates/.icons/material/office-building-cog-outline.svg +1 -0
  8207. docsforge/themes/material/templates/.icons/material/office-building-cog.svg +1 -0
  8208. docsforge/themes/material/templates/.icons/material/office-building-marker-outline.svg +1 -0
  8209. docsforge/themes/material/templates/.icons/material/office-building-marker.svg +1 -0
  8210. docsforge/themes/material/templates/.icons/material/office-building-minus-outline.svg +1 -0
  8211. docsforge/themes/material/templates/.icons/material/office-building-minus.svg +1 -0
  8212. docsforge/themes/material/templates/.icons/material/office-building-outline.svg +1 -0
  8213. docsforge/themes/material/templates/.icons/material/office-building-plus-outline.svg +1 -0
  8214. docsforge/themes/material/templates/.icons/material/office-building-plus.svg +1 -0
  8215. docsforge/themes/material/templates/.icons/material/office-building-remove-outline.svg +1 -0
  8216. docsforge/themes/material/templates/.icons/material/office-building-remove.svg +1 -0
  8217. docsforge/themes/material/templates/.icons/material/office-building.svg +1 -0
  8218. docsforge/themes/material/templates/.icons/material/oil-lamp.svg +1 -0
  8219. docsforge/themes/material/templates/.icons/material/oil-level.svg +1 -0
  8220. docsforge/themes/material/templates/.icons/material/oil-temperature.svg +1 -0
  8221. docsforge/themes/material/templates/.icons/material/oil.svg +1 -0
  8222. docsforge/themes/material/templates/.icons/material/om.svg +1 -0
  8223. docsforge/themes/material/templates/.icons/material/omega.svg +1 -0
  8224. docsforge/themes/material/templates/.icons/material/one-up.svg +1 -0
  8225. docsforge/themes/material/templates/.icons/material/onepassword.svg +1 -0
  8226. docsforge/themes/material/templates/.icons/material/opacity.svg +1 -0
  8227. docsforge/themes/material/templates/.icons/material/open-in-app.svg +1 -0
  8228. docsforge/themes/material/templates/.icons/material/open-in-new.svg +1 -0
  8229. docsforge/themes/material/templates/.icons/material/open-source-initiative.svg +1 -0
  8230. docsforge/themes/material/templates/.icons/material/openid.svg +1 -0
  8231. docsforge/themes/material/templates/.icons/material/opera.svg +1 -0
  8232. docsforge/themes/material/templates/.icons/material/orbit-variant.svg +1 -0
  8233. docsforge/themes/material/templates/.icons/material/orbit.svg +1 -0
  8234. docsforge/themes/material/templates/.icons/material/order-alphabetical-ascending.svg +1 -0
  8235. docsforge/themes/material/templates/.icons/material/order-alphabetical-descending.svg +1 -0
  8236. docsforge/themes/material/templates/.icons/material/order-bool-ascending-variant.svg +1 -0
  8237. docsforge/themes/material/templates/.icons/material/order-bool-ascending.svg +1 -0
  8238. docsforge/themes/material/templates/.icons/material/order-bool-descending-variant.svg +1 -0
  8239. docsforge/themes/material/templates/.icons/material/order-bool-descending.svg +1 -0
  8240. docsforge/themes/material/templates/.icons/material/order-numeric-ascending.svg +1 -0
  8241. docsforge/themes/material/templates/.icons/material/order-numeric-descending.svg +1 -0
  8242. docsforge/themes/material/templates/.icons/material/origin.svg +1 -0
  8243. docsforge/themes/material/templates/.icons/material/ornament-variant.svg +1 -0
  8244. docsforge/themes/material/templates/.icons/material/ornament.svg +1 -0
  8245. docsforge/themes/material/templates/.icons/material/outdoor-lamp.svg +1 -0
  8246. docsforge/themes/material/templates/.icons/material/overscan.svg +1 -0
  8247. docsforge/themes/material/templates/.icons/material/owl.svg +1 -0
  8248. docsforge/themes/material/templates/.icons/material/pac-man.svg +1 -0
  8249. docsforge/themes/material/templates/.icons/material/package-check.svg +1 -0
  8250. docsforge/themes/material/templates/.icons/material/package-down.svg +1 -0
  8251. docsforge/themes/material/templates/.icons/material/package-up.svg +1 -0
  8252. docsforge/themes/material/templates/.icons/material/package-variant-closed-check.svg +1 -0
  8253. docsforge/themes/material/templates/.icons/material/package-variant-closed-minus.svg +1 -0
  8254. docsforge/themes/material/templates/.icons/material/package-variant-closed-plus.svg +1 -0
  8255. docsforge/themes/material/templates/.icons/material/package-variant-closed-remove.svg +1 -0
  8256. docsforge/themes/material/templates/.icons/material/package-variant-closed.svg +1 -0
  8257. docsforge/themes/material/templates/.icons/material/package-variant-minus.svg +1 -0
  8258. docsforge/themes/material/templates/.icons/material/package-variant-plus.svg +1 -0
  8259. docsforge/themes/material/templates/.icons/material/package-variant-remove.svg +1 -0
  8260. docsforge/themes/material/templates/.icons/material/package-variant.svg +1 -0
  8261. docsforge/themes/material/templates/.icons/material/package.svg +1 -0
  8262. docsforge/themes/material/templates/.icons/material/page-first.svg +1 -0
  8263. docsforge/themes/material/templates/.icons/material/page-last.svg +1 -0
  8264. docsforge/themes/material/templates/.icons/material/page-layout-body.svg +1 -0
  8265. docsforge/themes/material/templates/.icons/material/page-layout-footer.svg +1 -0
  8266. docsforge/themes/material/templates/.icons/material/page-layout-header-footer.svg +1 -0
  8267. docsforge/themes/material/templates/.icons/material/page-layout-header.svg +1 -0
  8268. docsforge/themes/material/templates/.icons/material/page-layout-sidebar-left.svg +1 -0
  8269. docsforge/themes/material/templates/.icons/material/page-layout-sidebar-right.svg +1 -0
  8270. docsforge/themes/material/templates/.icons/material/page-next-outline.svg +1 -0
  8271. docsforge/themes/material/templates/.icons/material/page-next.svg +1 -0
  8272. docsforge/themes/material/templates/.icons/material/page-previous-outline.svg +1 -0
  8273. docsforge/themes/material/templates/.icons/material/page-previous.svg +1 -0
  8274. docsforge/themes/material/templates/.icons/material/pail-minus-outline.svg +1 -0
  8275. docsforge/themes/material/templates/.icons/material/pail-minus.svg +1 -0
  8276. docsforge/themes/material/templates/.icons/material/pail-off-outline.svg +1 -0
  8277. docsforge/themes/material/templates/.icons/material/pail-off.svg +1 -0
  8278. docsforge/themes/material/templates/.icons/material/pail-outline.svg +1 -0
  8279. docsforge/themes/material/templates/.icons/material/pail-plus-outline.svg +1 -0
  8280. docsforge/themes/material/templates/.icons/material/pail-plus.svg +1 -0
  8281. docsforge/themes/material/templates/.icons/material/pail-remove-outline.svg +1 -0
  8282. docsforge/themes/material/templates/.icons/material/pail-remove.svg +1 -0
  8283. docsforge/themes/material/templates/.icons/material/pail.svg +1 -0
  8284. docsforge/themes/material/templates/.icons/material/palette-advanced.svg +1 -0
  8285. docsforge/themes/material/templates/.icons/material/palette-outline.svg +1 -0
  8286. docsforge/themes/material/templates/.icons/material/palette-swatch-outline.svg +1 -0
  8287. docsforge/themes/material/templates/.icons/material/palette-swatch-variant.svg +1 -0
  8288. docsforge/themes/material/templates/.icons/material/palette-swatch.svg +1 -0
  8289. docsforge/themes/material/templates/.icons/material/palette.svg +1 -0
  8290. docsforge/themes/material/templates/.icons/material/palm-tree.svg +1 -0
  8291. docsforge/themes/material/templates/.icons/material/pan-bottom-left.svg +1 -0
  8292. docsforge/themes/material/templates/.icons/material/pan-bottom-right.svg +1 -0
  8293. docsforge/themes/material/templates/.icons/material/pan-down.svg +1 -0
  8294. docsforge/themes/material/templates/.icons/material/pan-horizontal.svg +1 -0
  8295. docsforge/themes/material/templates/.icons/material/pan-left.svg +1 -0
  8296. docsforge/themes/material/templates/.icons/material/pan-right.svg +1 -0
  8297. docsforge/themes/material/templates/.icons/material/pan-top-left.svg +1 -0
  8298. docsforge/themes/material/templates/.icons/material/pan-top-right.svg +1 -0
  8299. docsforge/themes/material/templates/.icons/material/pan-up.svg +1 -0
  8300. docsforge/themes/material/templates/.icons/material/pan-vertical.svg +1 -0
  8301. docsforge/themes/material/templates/.icons/material/pan.svg +1 -0
  8302. docsforge/themes/material/templates/.icons/material/panda.svg +1 -0
  8303. docsforge/themes/material/templates/.icons/material/pandora.svg +1 -0
  8304. docsforge/themes/material/templates/.icons/material/panorama-fisheye.svg +1 -0
  8305. docsforge/themes/material/templates/.icons/material/panorama-horizontal-outline.svg +1 -0
  8306. docsforge/themes/material/templates/.icons/material/panorama-horizontal.svg +1 -0
  8307. docsforge/themes/material/templates/.icons/material/panorama-outline.svg +1 -0
  8308. docsforge/themes/material/templates/.icons/material/panorama-sphere-outline.svg +1 -0
  8309. docsforge/themes/material/templates/.icons/material/panorama-sphere.svg +1 -0
  8310. docsforge/themes/material/templates/.icons/material/panorama-variant-outline.svg +1 -0
  8311. docsforge/themes/material/templates/.icons/material/panorama-variant.svg +1 -0
  8312. docsforge/themes/material/templates/.icons/material/panorama-vertical-outline.svg +1 -0
  8313. docsforge/themes/material/templates/.icons/material/panorama-vertical.svg +1 -0
  8314. docsforge/themes/material/templates/.icons/material/panorama-wide-angle-outline.svg +1 -0
  8315. docsforge/themes/material/templates/.icons/material/panorama-wide-angle.svg +1 -0
  8316. docsforge/themes/material/templates/.icons/material/panorama.svg +1 -0
  8317. docsforge/themes/material/templates/.icons/material/paper-cut-vertical.svg +1 -0
  8318. docsforge/themes/material/templates/.icons/material/paper-roll-outline.svg +1 -0
  8319. docsforge/themes/material/templates/.icons/material/paper-roll.svg +1 -0
  8320. docsforge/themes/material/templates/.icons/material/paperclip-check.svg +1 -0
  8321. docsforge/themes/material/templates/.icons/material/paperclip-lock.svg +1 -0
  8322. docsforge/themes/material/templates/.icons/material/paperclip-minus.svg +1 -0
  8323. docsforge/themes/material/templates/.icons/material/paperclip-off.svg +1 -0
  8324. docsforge/themes/material/templates/.icons/material/paperclip-plus.svg +1 -0
  8325. docsforge/themes/material/templates/.icons/material/paperclip-remove.svg +1 -0
  8326. docsforge/themes/material/templates/.icons/material/paperclip.svg +1 -0
  8327. docsforge/themes/material/templates/.icons/material/parachute-outline.svg +1 -0
  8328. docsforge/themes/material/templates/.icons/material/parachute.svg +1 -0
  8329. docsforge/themes/material/templates/.icons/material/paragliding.svg +1 -0
  8330. docsforge/themes/material/templates/.icons/material/parking.svg +1 -0
  8331. docsforge/themes/material/templates/.icons/material/party-popper.svg +1 -0
  8332. docsforge/themes/material/templates/.icons/material/passport-alert.svg +1 -0
  8333. docsforge/themes/material/templates/.icons/material/passport-biometric.svg +1 -0
  8334. docsforge/themes/material/templates/.icons/material/passport-cancel.svg +1 -0
  8335. docsforge/themes/material/templates/.icons/material/passport-check.svg +1 -0
  8336. docsforge/themes/material/templates/.icons/material/passport-minus.svg +1 -0
  8337. docsforge/themes/material/templates/.icons/material/passport-plus.svg +1 -0
  8338. docsforge/themes/material/templates/.icons/material/passport-remove.svg +1 -0
  8339. docsforge/themes/material/templates/.icons/material/passport.svg +1 -0
  8340. docsforge/themes/material/templates/.icons/material/pasta.svg +1 -0
  8341. docsforge/themes/material/templates/.icons/material/patio-heater.svg +1 -0
  8342. docsforge/themes/material/templates/.icons/material/patreon.svg +1 -0
  8343. docsforge/themes/material/templates/.icons/material/pause-box-outline.svg +1 -0
  8344. docsforge/themes/material/templates/.icons/material/pause-box.svg +1 -0
  8345. docsforge/themes/material/templates/.icons/material/pause-circle-outline.svg +1 -0
  8346. docsforge/themes/material/templates/.icons/material/pause-circle.svg +1 -0
  8347. docsforge/themes/material/templates/.icons/material/pause-octagon-outline.svg +1 -0
  8348. docsforge/themes/material/templates/.icons/material/pause-octagon.svg +1 -0
  8349. docsforge/themes/material/templates/.icons/material/pause.svg +1 -0
  8350. docsforge/themes/material/templates/.icons/material/paw-off-outline.svg +1 -0
  8351. docsforge/themes/material/templates/.icons/material/paw-off.svg +1 -0
  8352. docsforge/themes/material/templates/.icons/material/paw-outline.svg +1 -0
  8353. docsforge/themes/material/templates/.icons/material/paw.svg +1 -0
  8354. docsforge/themes/material/templates/.icons/material/peace.svg +1 -0
  8355. docsforge/themes/material/templates/.icons/material/peanut-off-outline.svg +1 -0
  8356. docsforge/themes/material/templates/.icons/material/peanut-off.svg +1 -0
  8357. docsforge/themes/material/templates/.icons/material/peanut-outline.svg +1 -0
  8358. docsforge/themes/material/templates/.icons/material/peanut.svg +1 -0
  8359. docsforge/themes/material/templates/.icons/material/pen-lock.svg +1 -0
  8360. docsforge/themes/material/templates/.icons/material/pen-minus.svg +1 -0
  8361. docsforge/themes/material/templates/.icons/material/pen-off.svg +1 -0
  8362. docsforge/themes/material/templates/.icons/material/pen-plus.svg +1 -0
  8363. docsforge/themes/material/templates/.icons/material/pen-remove.svg +1 -0
  8364. docsforge/themes/material/templates/.icons/material/pen.svg +1 -0
  8365. docsforge/themes/material/templates/.icons/material/pencil-box-multiple-outline.svg +1 -0
  8366. docsforge/themes/material/templates/.icons/material/pencil-box-multiple.svg +1 -0
  8367. docsforge/themes/material/templates/.icons/material/pencil-box-outline.svg +1 -0
  8368. docsforge/themes/material/templates/.icons/material/pencil-box.svg +1 -0
  8369. docsforge/themes/material/templates/.icons/material/pencil-circle-outline.svg +1 -0
  8370. docsforge/themes/material/templates/.icons/material/pencil-circle.svg +1 -0
  8371. docsforge/themes/material/templates/.icons/material/pencil-lock-outline.svg +1 -0
  8372. docsforge/themes/material/templates/.icons/material/pencil-lock.svg +1 -0
  8373. docsforge/themes/material/templates/.icons/material/pencil-minus-outline.svg +1 -0
  8374. docsforge/themes/material/templates/.icons/material/pencil-minus.svg +1 -0
  8375. docsforge/themes/material/templates/.icons/material/pencil-off-outline.svg +1 -0
  8376. docsforge/themes/material/templates/.icons/material/pencil-off.svg +1 -0
  8377. docsforge/themes/material/templates/.icons/material/pencil-outline.svg +1 -0
  8378. docsforge/themes/material/templates/.icons/material/pencil-plus-outline.svg +1 -0
  8379. docsforge/themes/material/templates/.icons/material/pencil-plus.svg +1 -0
  8380. docsforge/themes/material/templates/.icons/material/pencil-remove-outline.svg +1 -0
  8381. docsforge/themes/material/templates/.icons/material/pencil-remove.svg +1 -0
  8382. docsforge/themes/material/templates/.icons/material/pencil-ruler-outline.svg +1 -0
  8383. docsforge/themes/material/templates/.icons/material/pencil-ruler.svg +1 -0
  8384. docsforge/themes/material/templates/.icons/material/pencil.svg +1 -0
  8385. docsforge/themes/material/templates/.icons/material/penguin.svg +1 -0
  8386. docsforge/themes/material/templates/.icons/material/pentagon-outline.svg +1 -0
  8387. docsforge/themes/material/templates/.icons/material/pentagon.svg +1 -0
  8388. docsforge/themes/material/templates/.icons/material/pentagram.svg +1 -0
  8389. docsforge/themes/material/templates/.icons/material/percent-box-outline.svg +1 -0
  8390. docsforge/themes/material/templates/.icons/material/percent-box.svg +1 -0
  8391. docsforge/themes/material/templates/.icons/material/percent-circle-outline.svg +1 -0
  8392. docsforge/themes/material/templates/.icons/material/percent-circle.svg +1 -0
  8393. docsforge/themes/material/templates/.icons/material/percent-outline.svg +1 -0
  8394. docsforge/themes/material/templates/.icons/material/percent.svg +1 -0
  8395. docsforge/themes/material/templates/.icons/material/periodic-table.svg +1 -0
  8396. docsforge/themes/material/templates/.icons/material/perspective-less.svg +1 -0
  8397. docsforge/themes/material/templates/.icons/material/perspective-more.svg +1 -0
  8398. docsforge/themes/material/templates/.icons/material/ph.svg +1 -0
  8399. docsforge/themes/material/templates/.icons/material/phone-alert-outline.svg +1 -0
  8400. docsforge/themes/material/templates/.icons/material/phone-alert.svg +1 -0
  8401. docsforge/themes/material/templates/.icons/material/phone-bluetooth-outline.svg +1 -0
  8402. docsforge/themes/material/templates/.icons/material/phone-bluetooth.svg +1 -0
  8403. docsforge/themes/material/templates/.icons/material/phone-cancel-outline.svg +1 -0
  8404. docsforge/themes/material/templates/.icons/material/phone-cancel.svg +1 -0
  8405. docsforge/themes/material/templates/.icons/material/phone-check-outline.svg +1 -0
  8406. docsforge/themes/material/templates/.icons/material/phone-check.svg +1 -0
  8407. docsforge/themes/material/templates/.icons/material/phone-classic-off.svg +1 -0
  8408. docsforge/themes/material/templates/.icons/material/phone-classic.svg +1 -0
  8409. docsforge/themes/material/templates/.icons/material/phone-clock.svg +1 -0
  8410. docsforge/themes/material/templates/.icons/material/phone-dial-outline.svg +1 -0
  8411. docsforge/themes/material/templates/.icons/material/phone-dial.svg +1 -0
  8412. docsforge/themes/material/templates/.icons/material/phone-forward-outline.svg +1 -0
  8413. docsforge/themes/material/templates/.icons/material/phone-forward.svg +1 -0
  8414. docsforge/themes/material/templates/.icons/material/phone-hangup-outline.svg +1 -0
  8415. docsforge/themes/material/templates/.icons/material/phone-hangup.svg +1 -0
  8416. docsforge/themes/material/templates/.icons/material/phone-in-talk-outline.svg +1 -0
  8417. docsforge/themes/material/templates/.icons/material/phone-in-talk.svg +1 -0
  8418. docsforge/themes/material/templates/.icons/material/phone-incoming-outgoing-outline.svg +1 -0
  8419. docsforge/themes/material/templates/.icons/material/phone-incoming-outgoing.svg +1 -0
  8420. docsforge/themes/material/templates/.icons/material/phone-incoming-outline.svg +1 -0
  8421. docsforge/themes/material/templates/.icons/material/phone-incoming.svg +1 -0
  8422. docsforge/themes/material/templates/.icons/material/phone-lock-outline.svg +1 -0
  8423. docsforge/themes/material/templates/.icons/material/phone-lock.svg +1 -0
  8424. docsforge/themes/material/templates/.icons/material/phone-log-outline.svg +1 -0
  8425. docsforge/themes/material/templates/.icons/material/phone-log.svg +1 -0
  8426. docsforge/themes/material/templates/.icons/material/phone-message-outline.svg +1 -0
  8427. docsforge/themes/material/templates/.icons/material/phone-message.svg +1 -0
  8428. docsforge/themes/material/templates/.icons/material/phone-minus-outline.svg +1 -0
  8429. docsforge/themes/material/templates/.icons/material/phone-minus.svg +1 -0
  8430. docsforge/themes/material/templates/.icons/material/phone-missed-outline.svg +1 -0
  8431. docsforge/themes/material/templates/.icons/material/phone-missed.svg +1 -0
  8432. docsforge/themes/material/templates/.icons/material/phone-off-outline.svg +1 -0
  8433. docsforge/themes/material/templates/.icons/material/phone-off.svg +1 -0
  8434. docsforge/themes/material/templates/.icons/material/phone-outgoing-outline.svg +1 -0
  8435. docsforge/themes/material/templates/.icons/material/phone-outgoing.svg +1 -0
  8436. docsforge/themes/material/templates/.icons/material/phone-outline.svg +1 -0
  8437. docsforge/themes/material/templates/.icons/material/phone-paused-outline.svg +1 -0
  8438. docsforge/themes/material/templates/.icons/material/phone-paused.svg +1 -0
  8439. docsforge/themes/material/templates/.icons/material/phone-plus-outline.svg +1 -0
  8440. docsforge/themes/material/templates/.icons/material/phone-plus.svg +1 -0
  8441. docsforge/themes/material/templates/.icons/material/phone-refresh-outline.svg +1 -0
  8442. docsforge/themes/material/templates/.icons/material/phone-refresh.svg +1 -0
  8443. docsforge/themes/material/templates/.icons/material/phone-remove-outline.svg +1 -0
  8444. docsforge/themes/material/templates/.icons/material/phone-remove.svg +1 -0
  8445. docsforge/themes/material/templates/.icons/material/phone-return-outline.svg +1 -0
  8446. docsforge/themes/material/templates/.icons/material/phone-return.svg +1 -0
  8447. docsforge/themes/material/templates/.icons/material/phone-ring-outline.svg +1 -0
  8448. docsforge/themes/material/templates/.icons/material/phone-ring.svg +1 -0
  8449. docsforge/themes/material/templates/.icons/material/phone-rotate-landscape.svg +1 -0
  8450. docsforge/themes/material/templates/.icons/material/phone-rotate-portrait.svg +1 -0
  8451. docsforge/themes/material/templates/.icons/material/phone-settings-outline.svg +1 -0
  8452. docsforge/themes/material/templates/.icons/material/phone-settings.svg +1 -0
  8453. docsforge/themes/material/templates/.icons/material/phone-sync-outline.svg +1 -0
  8454. docsforge/themes/material/templates/.icons/material/phone-sync.svg +1 -0
  8455. docsforge/themes/material/templates/.icons/material/phone-voip.svg +1 -0
  8456. docsforge/themes/material/templates/.icons/material/phone.svg +1 -0
  8457. docsforge/themes/material/templates/.icons/material/pi-box.svg +1 -0
  8458. docsforge/themes/material/templates/.icons/material/pi-hole.svg +1 -0
  8459. docsforge/themes/material/templates/.icons/material/pi.svg +1 -0
  8460. docsforge/themes/material/templates/.icons/material/piano-off.svg +1 -0
  8461. docsforge/themes/material/templates/.icons/material/piano.svg +1 -0
  8462. docsforge/themes/material/templates/.icons/material/pickaxe.svg +1 -0
  8463. docsforge/themes/material/templates/.icons/material/picture-in-picture-bottom-right-outline.svg +1 -0
  8464. docsforge/themes/material/templates/.icons/material/picture-in-picture-bottom-right.svg +1 -0
  8465. docsforge/themes/material/templates/.icons/material/picture-in-picture-top-right-outline.svg +1 -0
  8466. docsforge/themes/material/templates/.icons/material/picture-in-picture-top-right.svg +1 -0
  8467. docsforge/themes/material/templates/.icons/material/pier-crane.svg +1 -0
  8468. docsforge/themes/material/templates/.icons/material/pier.svg +1 -0
  8469. docsforge/themes/material/templates/.icons/material/pig-variant-outline.svg +1 -0
  8470. docsforge/themes/material/templates/.icons/material/pig-variant.svg +1 -0
  8471. docsforge/themes/material/templates/.icons/material/pig.svg +1 -0
  8472. docsforge/themes/material/templates/.icons/material/piggy-bank-outline.svg +1 -0
  8473. docsforge/themes/material/templates/.icons/material/piggy-bank.svg +1 -0
  8474. docsforge/themes/material/templates/.icons/material/pill-multiple.svg +1 -0
  8475. docsforge/themes/material/templates/.icons/material/pill-off.svg +1 -0
  8476. docsforge/themes/material/templates/.icons/material/pill.svg +1 -0
  8477. docsforge/themes/material/templates/.icons/material/pillar.svg +1 -0
  8478. docsforge/themes/material/templates/.icons/material/pin-off-outline.svg +1 -0
  8479. docsforge/themes/material/templates/.icons/material/pin-off.svg +1 -0
  8480. docsforge/themes/material/templates/.icons/material/pin-outline.svg +1 -0
  8481. docsforge/themes/material/templates/.icons/material/pin.svg +1 -0
  8482. docsforge/themes/material/templates/.icons/material/pine-tree-box.svg +1 -0
  8483. docsforge/themes/material/templates/.icons/material/pine-tree-fire.svg +1 -0
  8484. docsforge/themes/material/templates/.icons/material/pine-tree-variant-outline.svg +1 -0
  8485. docsforge/themes/material/templates/.icons/material/pine-tree-variant.svg +1 -0
  8486. docsforge/themes/material/templates/.icons/material/pine-tree.svg +1 -0
  8487. docsforge/themes/material/templates/.icons/material/pinterest.svg +1 -0
  8488. docsforge/themes/material/templates/.icons/material/pinwheel-outline.svg +1 -0
  8489. docsforge/themes/material/templates/.icons/material/pinwheel.svg +1 -0
  8490. docsforge/themes/material/templates/.icons/material/pipe-disconnected.svg +1 -0
  8491. docsforge/themes/material/templates/.icons/material/pipe-leak.svg +1 -0
  8492. docsforge/themes/material/templates/.icons/material/pipe-valve.svg +1 -0
  8493. docsforge/themes/material/templates/.icons/material/pipe-wrench.svg +1 -0
  8494. docsforge/themes/material/templates/.icons/material/pipe.svg +1 -0
  8495. docsforge/themes/material/templates/.icons/material/pirate.svg +1 -0
  8496. docsforge/themes/material/templates/.icons/material/pistol.svg +1 -0
  8497. docsforge/themes/material/templates/.icons/material/piston.svg +1 -0
  8498. docsforge/themes/material/templates/.icons/material/pitchfork.svg +1 -0
  8499. docsforge/themes/material/templates/.icons/material/pizza.svg +1 -0
  8500. docsforge/themes/material/templates/.icons/material/plane-car.svg +1 -0
  8501. docsforge/themes/material/templates/.icons/material/plane-train.svg +1 -0
  8502. docsforge/themes/material/templates/.icons/material/play-box-edit-outline.svg +1 -0
  8503. docsforge/themes/material/templates/.icons/material/play-box-lock-open-outline.svg +1 -0
  8504. docsforge/themes/material/templates/.icons/material/play-box-lock-open.svg +1 -0
  8505. docsforge/themes/material/templates/.icons/material/play-box-lock-outline.svg +1 -0
  8506. docsforge/themes/material/templates/.icons/material/play-box-lock.svg +1 -0
  8507. docsforge/themes/material/templates/.icons/material/play-box-multiple-outline.svg +1 -0
  8508. docsforge/themes/material/templates/.icons/material/play-box-multiple.svg +1 -0
  8509. docsforge/themes/material/templates/.icons/material/play-box-outline.svg +1 -0
  8510. docsforge/themes/material/templates/.icons/material/play-box.svg +1 -0
  8511. docsforge/themes/material/templates/.icons/material/play-circle-outline.svg +1 -0
  8512. docsforge/themes/material/templates/.icons/material/play-circle.svg +1 -0
  8513. docsforge/themes/material/templates/.icons/material/play-network-outline.svg +1 -0
  8514. docsforge/themes/material/templates/.icons/material/play-network.svg +1 -0
  8515. docsforge/themes/material/templates/.icons/material/play-outline.svg +1 -0
  8516. docsforge/themes/material/templates/.icons/material/play-pause.svg +1 -0
  8517. docsforge/themes/material/templates/.icons/material/play-protected-content.svg +1 -0
  8518. docsforge/themes/material/templates/.icons/material/play-speed.svg +1 -0
  8519. docsforge/themes/material/templates/.icons/material/play.svg +1 -0
  8520. docsforge/themes/material/templates/.icons/material/playlist-check.svg +1 -0
  8521. docsforge/themes/material/templates/.icons/material/playlist-edit.svg +1 -0
  8522. docsforge/themes/material/templates/.icons/material/playlist-minus.svg +1 -0
  8523. docsforge/themes/material/templates/.icons/material/playlist-music-outline.svg +1 -0
  8524. docsforge/themes/material/templates/.icons/material/playlist-music.svg +1 -0
  8525. docsforge/themes/material/templates/.icons/material/playlist-play.svg +1 -0
  8526. docsforge/themes/material/templates/.icons/material/playlist-plus.svg +1 -0
  8527. docsforge/themes/material/templates/.icons/material/playlist-remove.svg +1 -0
  8528. docsforge/themes/material/templates/.icons/material/playlist-star.svg +1 -0
  8529. docsforge/themes/material/templates/.icons/material/plex.svg +1 -0
  8530. docsforge/themes/material/templates/.icons/material/pliers.svg +1 -0
  8531. docsforge/themes/material/templates/.icons/material/plus-box-multiple-outline.svg +1 -0
  8532. docsforge/themes/material/templates/.icons/material/plus-box-multiple.svg +1 -0
  8533. docsforge/themes/material/templates/.icons/material/plus-box-outline.svg +1 -0
  8534. docsforge/themes/material/templates/.icons/material/plus-box.svg +1 -0
  8535. docsforge/themes/material/templates/.icons/material/plus-circle-multiple-outline.svg +1 -0
  8536. docsforge/themes/material/templates/.icons/material/plus-circle-multiple.svg +1 -0
  8537. docsforge/themes/material/templates/.icons/material/plus-circle-outline.svg +1 -0
  8538. docsforge/themes/material/templates/.icons/material/plus-circle.svg +1 -0
  8539. docsforge/themes/material/templates/.icons/material/plus-lock-open.svg +1 -0
  8540. docsforge/themes/material/templates/.icons/material/plus-lock.svg +1 -0
  8541. docsforge/themes/material/templates/.icons/material/plus-minus-box.svg +1 -0
  8542. docsforge/themes/material/templates/.icons/material/plus-minus-variant.svg +1 -0
  8543. docsforge/themes/material/templates/.icons/material/plus-minus.svg +1 -0
  8544. docsforge/themes/material/templates/.icons/material/plus-network-outline.svg +1 -0
  8545. docsforge/themes/material/templates/.icons/material/plus-network.svg +1 -0
  8546. docsforge/themes/material/templates/.icons/material/plus-outline.svg +1 -0
  8547. docsforge/themes/material/templates/.icons/material/plus-thick.svg +1 -0
  8548. docsforge/themes/material/templates/.icons/material/plus.svg +1 -0
  8549. docsforge/themes/material/templates/.icons/material/pocket.svg +1 -0
  8550. docsforge/themes/material/templates/.icons/material/podcast.svg +1 -0
  8551. docsforge/themes/material/templates/.icons/material/podium-bronze.svg +1 -0
  8552. docsforge/themes/material/templates/.icons/material/podium-gold.svg +1 -0
  8553. docsforge/themes/material/templates/.icons/material/podium-silver.svg +1 -0
  8554. docsforge/themes/material/templates/.icons/material/podium.svg +1 -0
  8555. docsforge/themes/material/templates/.icons/material/point-of-sale.svg +1 -0
  8556. docsforge/themes/material/templates/.icons/material/pokeball.svg +1 -0
  8557. docsforge/themes/material/templates/.icons/material/pokemon-go.svg +1 -0
  8558. docsforge/themes/material/templates/.icons/material/poker-chip.svg +1 -0
  8559. docsforge/themes/material/templates/.icons/material/polaroid.svg +1 -0
  8560. docsforge/themes/material/templates/.icons/material/police-badge-outline.svg +1 -0
  8561. docsforge/themes/material/templates/.icons/material/police-badge.svg +1 -0
  8562. docsforge/themes/material/templates/.icons/material/police-station.svg +1 -0
  8563. docsforge/themes/material/templates/.icons/material/poll.svg +1 -0
  8564. docsforge/themes/material/templates/.icons/material/polo.svg +1 -0
  8565. docsforge/themes/material/templates/.icons/material/polymer.svg +1 -0
  8566. docsforge/themes/material/templates/.icons/material/pool-thermometer.svg +1 -0
  8567. docsforge/themes/material/templates/.icons/material/pool.svg +1 -0
  8568. docsforge/themes/material/templates/.icons/material/popcorn.svg +1 -0
  8569. docsforge/themes/material/templates/.icons/material/post-lamp.svg +1 -0
  8570. docsforge/themes/material/templates/.icons/material/post-outline.svg +1 -0
  8571. docsforge/themes/material/templates/.icons/material/post.svg +1 -0
  8572. docsforge/themes/material/templates/.icons/material/postage-stamp.svg +1 -0
  8573. docsforge/themes/material/templates/.icons/material/pot-mix-outline.svg +1 -0
  8574. docsforge/themes/material/templates/.icons/material/pot-mix.svg +1 -0
  8575. docsforge/themes/material/templates/.icons/material/pot-outline.svg +1 -0
  8576. docsforge/themes/material/templates/.icons/material/pot-steam-outline.svg +1 -0
  8577. docsforge/themes/material/templates/.icons/material/pot-steam.svg +1 -0
  8578. docsforge/themes/material/templates/.icons/material/pot.svg +1 -0
  8579. docsforge/themes/material/templates/.icons/material/pound-box-outline.svg +1 -0
  8580. docsforge/themes/material/templates/.icons/material/pound-box.svg +1 -0
  8581. docsforge/themes/material/templates/.icons/material/pound.svg +1 -0
  8582. docsforge/themes/material/templates/.icons/material/power-cycle.svg +1 -0
  8583. docsforge/themes/material/templates/.icons/material/power-off.svg +1 -0
  8584. docsforge/themes/material/templates/.icons/material/power-on.svg +1 -0
  8585. docsforge/themes/material/templates/.icons/material/power-plug-battery-outline.svg +1 -0
  8586. docsforge/themes/material/templates/.icons/material/power-plug-battery.svg +1 -0
  8587. docsforge/themes/material/templates/.icons/material/power-plug-off-outline.svg +1 -0
  8588. docsforge/themes/material/templates/.icons/material/power-plug-off.svg +1 -0
  8589. docsforge/themes/material/templates/.icons/material/power-plug-outline.svg +1 -0
  8590. docsforge/themes/material/templates/.icons/material/power-plug.svg +1 -0
  8591. docsforge/themes/material/templates/.icons/material/power-settings.svg +1 -0
  8592. docsforge/themes/material/templates/.icons/material/power-sleep.svg +1 -0
  8593. docsforge/themes/material/templates/.icons/material/power-socket-au.svg +1 -0
  8594. docsforge/themes/material/templates/.icons/material/power-socket-ch.svg +1 -0
  8595. docsforge/themes/material/templates/.icons/material/power-socket-de.svg +1 -0
  8596. docsforge/themes/material/templates/.icons/material/power-socket-eu.svg +1 -0
  8597. docsforge/themes/material/templates/.icons/material/power-socket-fr.svg +1 -0
  8598. docsforge/themes/material/templates/.icons/material/power-socket-it.svg +1 -0
  8599. docsforge/themes/material/templates/.icons/material/power-socket-jp.svg +1 -0
  8600. docsforge/themes/material/templates/.icons/material/power-socket-uk.svg +1 -0
  8601. docsforge/themes/material/templates/.icons/material/power-socket-us.svg +1 -0
  8602. docsforge/themes/material/templates/.icons/material/power-socket.svg +1 -0
  8603. docsforge/themes/material/templates/.icons/material/power-standby.svg +1 -0
  8604. docsforge/themes/material/templates/.icons/material/power.svg +1 -0
  8605. docsforge/themes/material/templates/.icons/material/powershell.svg +1 -0
  8606. docsforge/themes/material/templates/.icons/material/prescription.svg +1 -0
  8607. docsforge/themes/material/templates/.icons/material/presentation-play.svg +1 -0
  8608. docsforge/themes/material/templates/.icons/material/presentation.svg +1 -0
  8609. docsforge/themes/material/templates/.icons/material/pretzel.svg +1 -0
  8610. docsforge/themes/material/templates/.icons/material/printer-3d-nozzle-alert-outline.svg +1 -0
  8611. docsforge/themes/material/templates/.icons/material/printer-3d-nozzle-alert.svg +1 -0
  8612. docsforge/themes/material/templates/.icons/material/printer-3d-nozzle-heat-outline.svg +1 -0
  8613. docsforge/themes/material/templates/.icons/material/printer-3d-nozzle-heat.svg +1 -0
  8614. docsforge/themes/material/templates/.icons/material/printer-3d-nozzle-off-outline.svg +1 -0
  8615. docsforge/themes/material/templates/.icons/material/printer-3d-nozzle-off.svg +1 -0
  8616. docsforge/themes/material/templates/.icons/material/printer-3d-nozzle-outline.svg +1 -0
  8617. docsforge/themes/material/templates/.icons/material/printer-3d-nozzle.svg +1 -0
  8618. docsforge/themes/material/templates/.icons/material/printer-3d-off.svg +1 -0
  8619. docsforge/themes/material/templates/.icons/material/printer-3d.svg +1 -0
  8620. docsforge/themes/material/templates/.icons/material/printer-alert.svg +1 -0
  8621. docsforge/themes/material/templates/.icons/material/printer-check.svg +1 -0
  8622. docsforge/themes/material/templates/.icons/material/printer-eye.svg +1 -0
  8623. docsforge/themes/material/templates/.icons/material/printer-off-outline.svg +1 -0
  8624. docsforge/themes/material/templates/.icons/material/printer-off.svg +1 -0
  8625. docsforge/themes/material/templates/.icons/material/printer-outline.svg +1 -0
  8626. docsforge/themes/material/templates/.icons/material/printer-pos-alert-outline.svg +1 -0
  8627. docsforge/themes/material/templates/.icons/material/printer-pos-alert.svg +1 -0
  8628. docsforge/themes/material/templates/.icons/material/printer-pos-cancel-outline.svg +1 -0
  8629. docsforge/themes/material/templates/.icons/material/printer-pos-cancel.svg +1 -0
  8630. docsforge/themes/material/templates/.icons/material/printer-pos-check-outline.svg +1 -0
  8631. docsforge/themes/material/templates/.icons/material/printer-pos-check.svg +1 -0
  8632. docsforge/themes/material/templates/.icons/material/printer-pos-cog-outline.svg +1 -0
  8633. docsforge/themes/material/templates/.icons/material/printer-pos-cog.svg +1 -0
  8634. docsforge/themes/material/templates/.icons/material/printer-pos-edit-outline.svg +1 -0
  8635. docsforge/themes/material/templates/.icons/material/printer-pos-edit.svg +1 -0
  8636. docsforge/themes/material/templates/.icons/material/printer-pos-minus-outline.svg +1 -0
  8637. docsforge/themes/material/templates/.icons/material/printer-pos-minus.svg +1 -0
  8638. docsforge/themes/material/templates/.icons/material/printer-pos-network-outline.svg +1 -0
  8639. docsforge/themes/material/templates/.icons/material/printer-pos-network.svg +1 -0
  8640. docsforge/themes/material/templates/.icons/material/printer-pos-off-outline.svg +1 -0
  8641. docsforge/themes/material/templates/.icons/material/printer-pos-off.svg +1 -0
  8642. docsforge/themes/material/templates/.icons/material/printer-pos-outline.svg +1 -0
  8643. docsforge/themes/material/templates/.icons/material/printer-pos-pause-outline.svg +1 -0
  8644. docsforge/themes/material/templates/.icons/material/printer-pos-pause.svg +1 -0
  8645. docsforge/themes/material/templates/.icons/material/printer-pos-play-outline.svg +1 -0
  8646. docsforge/themes/material/templates/.icons/material/printer-pos-play.svg +1 -0
  8647. docsforge/themes/material/templates/.icons/material/printer-pos-plus-outline.svg +1 -0
  8648. docsforge/themes/material/templates/.icons/material/printer-pos-plus.svg +1 -0
  8649. docsforge/themes/material/templates/.icons/material/printer-pos-refresh-outline.svg +1 -0
  8650. docsforge/themes/material/templates/.icons/material/printer-pos-refresh.svg +1 -0
  8651. docsforge/themes/material/templates/.icons/material/printer-pos-remove-outline.svg +1 -0
  8652. docsforge/themes/material/templates/.icons/material/printer-pos-remove.svg +1 -0
  8653. docsforge/themes/material/templates/.icons/material/printer-pos-star-outline.svg +1 -0
  8654. docsforge/themes/material/templates/.icons/material/printer-pos-star.svg +1 -0
  8655. docsforge/themes/material/templates/.icons/material/printer-pos-stop-outline.svg +1 -0
  8656. docsforge/themes/material/templates/.icons/material/printer-pos-stop.svg +1 -0
  8657. docsforge/themes/material/templates/.icons/material/printer-pos-sync-outline.svg +1 -0
  8658. docsforge/themes/material/templates/.icons/material/printer-pos-sync.svg +1 -0
  8659. docsforge/themes/material/templates/.icons/material/printer-pos-wrench-outline.svg +1 -0
  8660. docsforge/themes/material/templates/.icons/material/printer-pos-wrench.svg +1 -0
  8661. docsforge/themes/material/templates/.icons/material/printer-pos.svg +1 -0
  8662. docsforge/themes/material/templates/.icons/material/printer-search.svg +1 -0
  8663. docsforge/themes/material/templates/.icons/material/printer-settings.svg +1 -0
  8664. docsforge/themes/material/templates/.icons/material/printer-wireless.svg +1 -0
  8665. docsforge/themes/material/templates/.icons/material/printer.svg +1 -0
  8666. docsforge/themes/material/templates/.icons/material/priority-high.svg +1 -0
  8667. docsforge/themes/material/templates/.icons/material/priority-low.svg +1 -0
  8668. docsforge/themes/material/templates/.icons/material/professional-hexagon.svg +1 -0
  8669. docsforge/themes/material/templates/.icons/material/progress-alert.svg +1 -0
  8670. docsforge/themes/material/templates/.icons/material/progress-check.svg +1 -0
  8671. docsforge/themes/material/templates/.icons/material/progress-clock.svg +1 -0
  8672. docsforge/themes/material/templates/.icons/material/progress-close.svg +1 -0
  8673. docsforge/themes/material/templates/.icons/material/progress-download.svg +1 -0
  8674. docsforge/themes/material/templates/.icons/material/progress-helper.svg +1 -0
  8675. docsforge/themes/material/templates/.icons/material/progress-pencil.svg +1 -0
  8676. docsforge/themes/material/templates/.icons/material/progress-question.svg +1 -0
  8677. docsforge/themes/material/templates/.icons/material/progress-star-four-points.svg +1 -0
  8678. docsforge/themes/material/templates/.icons/material/progress-star.svg +1 -0
  8679. docsforge/themes/material/templates/.icons/material/progress-tag.svg +1 -0
  8680. docsforge/themes/material/templates/.icons/material/progress-upload.svg +1 -0
  8681. docsforge/themes/material/templates/.icons/material/progress-wrench.svg +1 -0
  8682. docsforge/themes/material/templates/.icons/material/projector-off.svg +1 -0
  8683. docsforge/themes/material/templates/.icons/material/projector-screen-off-outline.svg +1 -0
  8684. docsforge/themes/material/templates/.icons/material/projector-screen-off.svg +1 -0
  8685. docsforge/themes/material/templates/.icons/material/projector-screen-outline.svg +1 -0
  8686. docsforge/themes/material/templates/.icons/material/projector-screen-variant-off-outline.svg +1 -0
  8687. docsforge/themes/material/templates/.icons/material/projector-screen-variant-off.svg +1 -0
  8688. docsforge/themes/material/templates/.icons/material/projector-screen-variant-outline.svg +1 -0
  8689. docsforge/themes/material/templates/.icons/material/projector-screen-variant.svg +1 -0
  8690. docsforge/themes/material/templates/.icons/material/projector-screen.svg +1 -0
  8691. docsforge/themes/material/templates/.icons/material/projector.svg +1 -0
  8692. docsforge/themes/material/templates/.icons/material/propane-tank-outline.svg +1 -0
  8693. docsforge/themes/material/templates/.icons/material/propane-tank.svg +1 -0
  8694. docsforge/themes/material/templates/.icons/material/protocol.svg +1 -0
  8695. docsforge/themes/material/templates/.icons/material/publish-off.svg +1 -0
  8696. docsforge/themes/material/templates/.icons/material/publish.svg +1 -0
  8697. docsforge/themes/material/templates/.icons/material/pulse.svg +1 -0
  8698. docsforge/themes/material/templates/.icons/material/pump-off.svg +1 -0
  8699. docsforge/themes/material/templates/.icons/material/pump.svg +1 -0
  8700. docsforge/themes/material/templates/.icons/material/pumpkin.svg +1 -0
  8701. docsforge/themes/material/templates/.icons/material/purse-outline.svg +1 -0
  8702. docsforge/themes/material/templates/.icons/material/purse.svg +1 -0
  8703. docsforge/themes/material/templates/.icons/material/puzzle-check-outline.svg +1 -0
  8704. docsforge/themes/material/templates/.icons/material/puzzle-check.svg +1 -0
  8705. docsforge/themes/material/templates/.icons/material/puzzle-edit-outline.svg +1 -0
  8706. docsforge/themes/material/templates/.icons/material/puzzle-edit.svg +1 -0
  8707. docsforge/themes/material/templates/.icons/material/puzzle-heart-outline.svg +1 -0
  8708. docsforge/themes/material/templates/.icons/material/puzzle-heart.svg +1 -0
  8709. docsforge/themes/material/templates/.icons/material/puzzle-minus-outline.svg +1 -0
  8710. docsforge/themes/material/templates/.icons/material/puzzle-minus.svg +1 -0
  8711. docsforge/themes/material/templates/.icons/material/puzzle-outline.svg +1 -0
  8712. docsforge/themes/material/templates/.icons/material/puzzle-plus-outline.svg +1 -0
  8713. docsforge/themes/material/templates/.icons/material/puzzle-plus.svg +1 -0
  8714. docsforge/themes/material/templates/.icons/material/puzzle-remove-outline.svg +1 -0
  8715. docsforge/themes/material/templates/.icons/material/puzzle-remove.svg +1 -0
  8716. docsforge/themes/material/templates/.icons/material/puzzle-star-outline.svg +1 -0
  8717. docsforge/themes/material/templates/.icons/material/puzzle-star.svg +1 -0
  8718. docsforge/themes/material/templates/.icons/material/puzzle.svg +1 -0
  8719. docsforge/themes/material/templates/.icons/material/pyramid-off.svg +1 -0
  8720. docsforge/themes/material/templates/.icons/material/pyramid.svg +1 -0
  8721. docsforge/themes/material/templates/.icons/material/qi.svg +1 -0
  8722. docsforge/themes/material/templates/.icons/material/qqchat.svg +1 -0
  8723. docsforge/themes/material/templates/.icons/material/qrcode-edit.svg +1 -0
  8724. docsforge/themes/material/templates/.icons/material/qrcode-minus.svg +1 -0
  8725. docsforge/themes/material/templates/.icons/material/qrcode-plus.svg +1 -0
  8726. docsforge/themes/material/templates/.icons/material/qrcode-remove.svg +1 -0
  8727. docsforge/themes/material/templates/.icons/material/qrcode-scan.svg +1 -0
  8728. docsforge/themes/material/templates/.icons/material/qrcode.svg +1 -0
  8729. docsforge/themes/material/templates/.icons/material/quadcopter.svg +1 -0
  8730. docsforge/themes/material/templates/.icons/material/quality-high.svg +1 -0
  8731. docsforge/themes/material/templates/.icons/material/quality-low.svg +1 -0
  8732. docsforge/themes/material/templates/.icons/material/quality-medium.svg +1 -0
  8733. docsforge/themes/material/templates/.icons/material/queue-first-in-last-out.svg +1 -0
  8734. docsforge/themes/material/templates/.icons/material/quora.svg +1 -0
  8735. docsforge/themes/material/templates/.icons/material/rabbit-variant-outline.svg +1 -0
  8736. docsforge/themes/material/templates/.icons/material/rabbit-variant.svg +1 -0
  8737. docsforge/themes/material/templates/.icons/material/rabbit.svg +1 -0
  8738. docsforge/themes/material/templates/.icons/material/racing-helmet.svg +1 -0
  8739. docsforge/themes/material/templates/.icons/material/racquetball.svg +1 -0
  8740. docsforge/themes/material/templates/.icons/material/radar.svg +1 -0
  8741. docsforge/themes/material/templates/.icons/material/radiator-disabled.svg +1 -0
  8742. docsforge/themes/material/templates/.icons/material/radiator-off.svg +1 -0
  8743. docsforge/themes/material/templates/.icons/material/radiator.svg +1 -0
  8744. docsforge/themes/material/templates/.icons/material/radio-am.svg +1 -0
  8745. docsforge/themes/material/templates/.icons/material/radio-fm.svg +1 -0
  8746. docsforge/themes/material/templates/.icons/material/radio-handheld.svg +1 -0
  8747. docsforge/themes/material/templates/.icons/material/radio-off.svg +1 -0
  8748. docsforge/themes/material/templates/.icons/material/radio-tower.svg +1 -0
  8749. docsforge/themes/material/templates/.icons/material/radio.svg +1 -0
  8750. docsforge/themes/material/templates/.icons/material/radioactive-circle-outline.svg +1 -0
  8751. docsforge/themes/material/templates/.icons/material/radioactive-circle.svg +1 -0
  8752. docsforge/themes/material/templates/.icons/material/radioactive-off.svg +1 -0
  8753. docsforge/themes/material/templates/.icons/material/radioactive.svg +1 -0
  8754. docsforge/themes/material/templates/.icons/material/radiobox-blank.svg +1 -0
  8755. docsforge/themes/material/templates/.icons/material/radiobox-indeterminate-variant.svg +1 -0
  8756. docsforge/themes/material/templates/.icons/material/radiobox-marked.svg +1 -0
  8757. docsforge/themes/material/templates/.icons/material/radiology-box-outline.svg +1 -0
  8758. docsforge/themes/material/templates/.icons/material/radiology-box.svg +1 -0
  8759. docsforge/themes/material/templates/.icons/material/radius-outline.svg +1 -0
  8760. docsforge/themes/material/templates/.icons/material/radius.svg +1 -0
  8761. docsforge/themes/material/templates/.icons/material/railroad-light.svg +1 -0
  8762. docsforge/themes/material/templates/.icons/material/rake.svg +1 -0
  8763. docsforge/themes/material/templates/.icons/material/raspberry-pi.svg +1 -0
  8764. docsforge/themes/material/templates/.icons/material/raw-off.svg +1 -0
  8765. docsforge/themes/material/templates/.icons/material/raw.svg +1 -0
  8766. docsforge/themes/material/templates/.icons/material/ray-end-arrow.svg +1 -0
  8767. docsforge/themes/material/templates/.icons/material/ray-end.svg +1 -0
  8768. docsforge/themes/material/templates/.icons/material/ray-start-arrow.svg +1 -0
  8769. docsforge/themes/material/templates/.icons/material/ray-start-end.svg +1 -0
  8770. docsforge/themes/material/templates/.icons/material/ray-start-vertex-end.svg +1 -0
  8771. docsforge/themes/material/templates/.icons/material/ray-start.svg +1 -0
  8772. docsforge/themes/material/templates/.icons/material/ray-vertex.svg +1 -0
  8773. docsforge/themes/material/templates/.icons/material/razor-double-edge.svg +1 -0
  8774. docsforge/themes/material/templates/.icons/material/razor-single-edge.svg +1 -0
  8775. docsforge/themes/material/templates/.icons/material/react.svg +1 -0
  8776. docsforge/themes/material/templates/.icons/material/read.svg +1 -0
  8777. docsforge/themes/material/templates/.icons/material/receipt-clock-outline.svg +1 -0
  8778. docsforge/themes/material/templates/.icons/material/receipt-clock.svg +1 -0
  8779. docsforge/themes/material/templates/.icons/material/receipt-outline.svg +1 -0
  8780. docsforge/themes/material/templates/.icons/material/receipt-send-outline.svg +1 -0
  8781. docsforge/themes/material/templates/.icons/material/receipt-send.svg +1 -0
  8782. docsforge/themes/material/templates/.icons/material/receipt-text-arrow-left-outline.svg +1 -0
  8783. docsforge/themes/material/templates/.icons/material/receipt-text-arrow-left.svg +1 -0
  8784. docsforge/themes/material/templates/.icons/material/receipt-text-arrow-right-outline.svg +1 -0
  8785. docsforge/themes/material/templates/.icons/material/receipt-text-arrow-right.svg +1 -0
  8786. docsforge/themes/material/templates/.icons/material/receipt-text-check-outline.svg +1 -0
  8787. docsforge/themes/material/templates/.icons/material/receipt-text-check.svg +1 -0
  8788. docsforge/themes/material/templates/.icons/material/receipt-text-clock-outline.svg +1 -0
  8789. docsforge/themes/material/templates/.icons/material/receipt-text-clock.svg +1 -0
  8790. docsforge/themes/material/templates/.icons/material/receipt-text-edit-outline.svg +1 -0
  8791. docsforge/themes/material/templates/.icons/material/receipt-text-edit.svg +1 -0
  8792. docsforge/themes/material/templates/.icons/material/receipt-text-minus-outline.svg +1 -0
  8793. docsforge/themes/material/templates/.icons/material/receipt-text-minus.svg +1 -0
  8794. docsforge/themes/material/templates/.icons/material/receipt-text-outline.svg +1 -0
  8795. docsforge/themes/material/templates/.icons/material/receipt-text-plus-outline.svg +1 -0
  8796. docsforge/themes/material/templates/.icons/material/receipt-text-plus.svg +1 -0
  8797. docsforge/themes/material/templates/.icons/material/receipt-text-remove-outline.svg +1 -0
  8798. docsforge/themes/material/templates/.icons/material/receipt-text-remove.svg +1 -0
  8799. docsforge/themes/material/templates/.icons/material/receipt-text-send-outline.svg +1 -0
  8800. docsforge/themes/material/templates/.icons/material/receipt-text-send.svg +1 -0
  8801. docsforge/themes/material/templates/.icons/material/receipt-text.svg +1 -0
  8802. docsforge/themes/material/templates/.icons/material/receipt.svg +1 -0
  8803. docsforge/themes/material/templates/.icons/material/record-circle-outline.svg +1 -0
  8804. docsforge/themes/material/templates/.icons/material/record-circle.svg +1 -0
  8805. docsforge/themes/material/templates/.icons/material/record-player.svg +1 -0
  8806. docsforge/themes/material/templates/.icons/material/record-rec.svg +1 -0
  8807. docsforge/themes/material/templates/.icons/material/record.svg +1 -0
  8808. docsforge/themes/material/templates/.icons/material/rectangle-outline.svg +1 -0
  8809. docsforge/themes/material/templates/.icons/material/rectangle.svg +1 -0
  8810. docsforge/themes/material/templates/.icons/material/recycle-variant.svg +1 -0
  8811. docsforge/themes/material/templates/.icons/material/recycle.svg +1 -0
  8812. docsforge/themes/material/templates/.icons/material/reddit.svg +1 -0
  8813. docsforge/themes/material/templates/.icons/material/redhat.svg +1 -0
  8814. docsforge/themes/material/templates/.icons/material/redo-variant.svg +1 -0
  8815. docsforge/themes/material/templates/.icons/material/redo.svg +1 -0
  8816. docsforge/themes/material/templates/.icons/material/reflect-horizontal.svg +1 -0
  8817. docsforge/themes/material/templates/.icons/material/reflect-vertical.svg +1 -0
  8818. docsforge/themes/material/templates/.icons/material/refresh-auto.svg +1 -0
  8819. docsforge/themes/material/templates/.icons/material/refresh-circle.svg +1 -0
  8820. docsforge/themes/material/templates/.icons/material/refresh.svg +1 -0
  8821. docsforge/themes/material/templates/.icons/material/regex.svg +1 -0
  8822. docsforge/themes/material/templates/.icons/material/registered-trademark.svg +1 -0
  8823. docsforge/themes/material/templates/.icons/material/reiterate.svg +1 -0
  8824. docsforge/themes/material/templates/.icons/material/relation-many-to-many.svg +1 -0
  8825. docsforge/themes/material/templates/.icons/material/relation-many-to-one-or-many.svg +1 -0
  8826. docsforge/themes/material/templates/.icons/material/relation-many-to-one.svg +1 -0
  8827. docsforge/themes/material/templates/.icons/material/relation-many-to-only-one.svg +1 -0
  8828. docsforge/themes/material/templates/.icons/material/relation-many-to-zero-or-many.svg +1 -0
  8829. docsforge/themes/material/templates/.icons/material/relation-many-to-zero-or-one.svg +1 -0
  8830. docsforge/themes/material/templates/.icons/material/relation-one-or-many-to-many.svg +1 -0
  8831. docsforge/themes/material/templates/.icons/material/relation-one-or-many-to-one-or-many.svg +1 -0
  8832. docsforge/themes/material/templates/.icons/material/relation-one-or-many-to-one.svg +1 -0
  8833. docsforge/themes/material/templates/.icons/material/relation-one-or-many-to-only-one.svg +1 -0
  8834. docsforge/themes/material/templates/.icons/material/relation-one-or-many-to-zero-or-many.svg +1 -0
  8835. docsforge/themes/material/templates/.icons/material/relation-one-or-many-to-zero-or-one.svg +1 -0
  8836. docsforge/themes/material/templates/.icons/material/relation-one-to-many.svg +1 -0
  8837. docsforge/themes/material/templates/.icons/material/relation-one-to-one-or-many.svg +1 -0
  8838. docsforge/themes/material/templates/.icons/material/relation-one-to-one.svg +1 -0
  8839. docsforge/themes/material/templates/.icons/material/relation-one-to-only-one.svg +1 -0
  8840. docsforge/themes/material/templates/.icons/material/relation-one-to-zero-or-many.svg +1 -0
  8841. docsforge/themes/material/templates/.icons/material/relation-one-to-zero-or-one.svg +1 -0
  8842. docsforge/themes/material/templates/.icons/material/relation-only-one-to-many.svg +1 -0
  8843. docsforge/themes/material/templates/.icons/material/relation-only-one-to-one-or-many.svg +1 -0
  8844. docsforge/themes/material/templates/.icons/material/relation-only-one-to-one.svg +1 -0
  8845. docsforge/themes/material/templates/.icons/material/relation-only-one-to-only-one.svg +1 -0
  8846. docsforge/themes/material/templates/.icons/material/relation-only-one-to-zero-or-many.svg +1 -0
  8847. docsforge/themes/material/templates/.icons/material/relation-only-one-to-zero-or-one.svg +1 -0
  8848. docsforge/themes/material/templates/.icons/material/relation-zero-or-many-to-many.svg +1 -0
  8849. docsforge/themes/material/templates/.icons/material/relation-zero-or-many-to-one-or-many.svg +1 -0
  8850. docsforge/themes/material/templates/.icons/material/relation-zero-or-many-to-one.svg +1 -0
  8851. docsforge/themes/material/templates/.icons/material/relation-zero-or-many-to-only-one.svg +1 -0
  8852. docsforge/themes/material/templates/.icons/material/relation-zero-or-many-to-zero-or-many.svg +1 -0
  8853. docsforge/themes/material/templates/.icons/material/relation-zero-or-many-to-zero-or-one.svg +1 -0
  8854. docsforge/themes/material/templates/.icons/material/relation-zero-or-one-to-many.svg +1 -0
  8855. docsforge/themes/material/templates/.icons/material/relation-zero-or-one-to-one-or-many.svg +1 -0
  8856. docsforge/themes/material/templates/.icons/material/relation-zero-or-one-to-one.svg +1 -0
  8857. docsforge/themes/material/templates/.icons/material/relation-zero-or-one-to-only-one.svg +1 -0
  8858. docsforge/themes/material/templates/.icons/material/relation-zero-or-one-to-zero-or-many.svg +1 -0
  8859. docsforge/themes/material/templates/.icons/material/relation-zero-or-one-to-zero-or-one.svg +1 -0
  8860. docsforge/themes/material/templates/.icons/material/relative-scale.svg +1 -0
  8861. docsforge/themes/material/templates/.icons/material/reload-alert.svg +1 -0
  8862. docsforge/themes/material/templates/.icons/material/reload.svg +1 -0
  8863. docsforge/themes/material/templates/.icons/material/reminder.svg +1 -0
  8864. docsforge/themes/material/templates/.icons/material/remote-desktop.svg +1 -0
  8865. docsforge/themes/material/templates/.icons/material/remote-off.svg +1 -0
  8866. docsforge/themes/material/templates/.icons/material/remote-tv-off.svg +1 -0
  8867. docsforge/themes/material/templates/.icons/material/remote-tv.svg +1 -0
  8868. docsforge/themes/material/templates/.icons/material/remote.svg +1 -0
  8869. docsforge/themes/material/templates/.icons/material/rename-box-outline.svg +1 -0
  8870. docsforge/themes/material/templates/.icons/material/rename-box.svg +1 -0
  8871. docsforge/themes/material/templates/.icons/material/rename-outline.svg +1 -0
  8872. docsforge/themes/material/templates/.icons/material/rename.svg +1 -0
  8873. docsforge/themes/material/templates/.icons/material/reorder-horizontal.svg +1 -0
  8874. docsforge/themes/material/templates/.icons/material/reorder-vertical.svg +1 -0
  8875. docsforge/themes/material/templates/.icons/material/repeat-off.svg +1 -0
  8876. docsforge/themes/material/templates/.icons/material/repeat-once.svg +1 -0
  8877. docsforge/themes/material/templates/.icons/material/repeat-variant.svg +1 -0
  8878. docsforge/themes/material/templates/.icons/material/repeat.svg +1 -0
  8879. docsforge/themes/material/templates/.icons/material/replay.svg +1 -0
  8880. docsforge/themes/material/templates/.icons/material/reply-all-outline.svg +1 -0
  8881. docsforge/themes/material/templates/.icons/material/reply-all.svg +1 -0
  8882. docsforge/themes/material/templates/.icons/material/reply-circle.svg +1 -0
  8883. docsforge/themes/material/templates/.icons/material/reply-outline.svg +1 -0
  8884. docsforge/themes/material/templates/.icons/material/reply.svg +1 -0
  8885. docsforge/themes/material/templates/.icons/material/reproduction.svg +1 -0
  8886. docsforge/themes/material/templates/.icons/material/resistor-nodes.svg +1 -0
  8887. docsforge/themes/material/templates/.icons/material/resistor.svg +1 -0
  8888. docsforge/themes/material/templates/.icons/material/resize-bottom-right.svg +1 -0
  8889. docsforge/themes/material/templates/.icons/material/resize.svg +1 -0
  8890. docsforge/themes/material/templates/.icons/material/responsive.svg +1 -0
  8891. docsforge/themes/material/templates/.icons/material/restart-alert.svg +1 -0
  8892. docsforge/themes/material/templates/.icons/material/restart-off.svg +1 -0
  8893. docsforge/themes/material/templates/.icons/material/restart.svg +1 -0
  8894. docsforge/themes/material/templates/.icons/material/restore-alert.svg +1 -0
  8895. docsforge/themes/material/templates/.icons/material/restore.svg +1 -0
  8896. docsforge/themes/material/templates/.icons/material/rewind-10.svg +1 -0
  8897. docsforge/themes/material/templates/.icons/material/rewind-15.svg +1 -0
  8898. docsforge/themes/material/templates/.icons/material/rewind-30.svg +1 -0
  8899. docsforge/themes/material/templates/.icons/material/rewind-45.svg +1 -0
  8900. docsforge/themes/material/templates/.icons/material/rewind-5.svg +1 -0
  8901. docsforge/themes/material/templates/.icons/material/rewind-60.svg +1 -0
  8902. docsforge/themes/material/templates/.icons/material/rewind-outline.svg +1 -0
  8903. docsforge/themes/material/templates/.icons/material/rewind.svg +1 -0
  8904. docsforge/themes/material/templates/.icons/material/rhombus-medium-outline.svg +1 -0
  8905. docsforge/themes/material/templates/.icons/material/rhombus-medium.svg +1 -0
  8906. docsforge/themes/material/templates/.icons/material/rhombus-outline.svg +1 -0
  8907. docsforge/themes/material/templates/.icons/material/rhombus-split-outline.svg +1 -0
  8908. docsforge/themes/material/templates/.icons/material/rhombus-split.svg +1 -0
  8909. docsforge/themes/material/templates/.icons/material/rhombus.svg +1 -0
  8910. docsforge/themes/material/templates/.icons/material/ribbon.svg +1 -0
  8911. docsforge/themes/material/templates/.icons/material/rice.svg +1 -0
  8912. docsforge/themes/material/templates/.icons/material/rickshaw-electric.svg +1 -0
  8913. docsforge/themes/material/templates/.icons/material/rickshaw.svg +1 -0
  8914. docsforge/themes/material/templates/.icons/material/ring.svg +1 -0
  8915. docsforge/themes/material/templates/.icons/material/rivet.svg +1 -0
  8916. docsforge/themes/material/templates/.icons/material/road-variant.svg +1 -0
  8917. docsforge/themes/material/templates/.icons/material/road.svg +1 -0
  8918. docsforge/themes/material/templates/.icons/material/robber.svg +1 -0
  8919. docsforge/themes/material/templates/.icons/material/robot-angry-outline.svg +1 -0
  8920. docsforge/themes/material/templates/.icons/material/robot-angry.svg +1 -0
  8921. docsforge/themes/material/templates/.icons/material/robot-confused-outline.svg +1 -0
  8922. docsforge/themes/material/templates/.icons/material/robot-confused.svg +1 -0
  8923. docsforge/themes/material/templates/.icons/material/robot-dead-outline.svg +1 -0
  8924. docsforge/themes/material/templates/.icons/material/robot-dead.svg +1 -0
  8925. docsforge/themes/material/templates/.icons/material/robot-excited-outline.svg +1 -0
  8926. docsforge/themes/material/templates/.icons/material/robot-excited.svg +1 -0
  8927. docsforge/themes/material/templates/.icons/material/robot-happy-outline.svg +1 -0
  8928. docsforge/themes/material/templates/.icons/material/robot-happy.svg +1 -0
  8929. docsforge/themes/material/templates/.icons/material/robot-industrial-outline.svg +1 -0
  8930. docsforge/themes/material/templates/.icons/material/robot-industrial.svg +1 -0
  8931. docsforge/themes/material/templates/.icons/material/robot-love-outline.svg +1 -0
  8932. docsforge/themes/material/templates/.icons/material/robot-love.svg +1 -0
  8933. docsforge/themes/material/templates/.icons/material/robot-mower-outline.svg +1 -0
  8934. docsforge/themes/material/templates/.icons/material/robot-mower.svg +1 -0
  8935. docsforge/themes/material/templates/.icons/material/robot-off-outline.svg +1 -0
  8936. docsforge/themes/material/templates/.icons/material/robot-off.svg +1 -0
  8937. docsforge/themes/material/templates/.icons/material/robot-outline.svg +1 -0
  8938. docsforge/themes/material/templates/.icons/material/robot-vacuum-alert.svg +1 -0
  8939. docsforge/themes/material/templates/.icons/material/robot-vacuum-off.svg +1 -0
  8940. docsforge/themes/material/templates/.icons/material/robot-vacuum-variant-alert.svg +1 -0
  8941. docsforge/themes/material/templates/.icons/material/robot-vacuum-variant-off.svg +1 -0
  8942. docsforge/themes/material/templates/.icons/material/robot-vacuum-variant.svg +1 -0
  8943. docsforge/themes/material/templates/.icons/material/robot-vacuum.svg +1 -0
  8944. docsforge/themes/material/templates/.icons/material/robot.svg +1 -0
  8945. docsforge/themes/material/templates/.icons/material/rocket-launch-outline.svg +1 -0
  8946. docsforge/themes/material/templates/.icons/material/rocket-launch.svg +1 -0
  8947. docsforge/themes/material/templates/.icons/material/rocket-outline.svg +1 -0
  8948. docsforge/themes/material/templates/.icons/material/rocket.svg +1 -0
  8949. docsforge/themes/material/templates/.icons/material/rodent.svg +1 -0
  8950. docsforge/themes/material/templates/.icons/material/roller-shade-closed.svg +1 -0
  8951. docsforge/themes/material/templates/.icons/material/roller-shade.svg +1 -0
  8952. docsforge/themes/material/templates/.icons/material/roller-skate-off.svg +1 -0
  8953. docsforge/themes/material/templates/.icons/material/roller-skate.svg +1 -0
  8954. docsforge/themes/material/templates/.icons/material/rollerblade-off.svg +1 -0
  8955. docsforge/themes/material/templates/.icons/material/rollerblade.svg +1 -0
  8956. docsforge/themes/material/templates/.icons/material/rollupjs.svg +1 -0
  8957. docsforge/themes/material/templates/.icons/material/rolodex-outline.svg +1 -0
  8958. docsforge/themes/material/templates/.icons/material/rolodex.svg +1 -0
  8959. docsforge/themes/material/templates/.icons/material/roman-numeral-1.svg +1 -0
  8960. docsforge/themes/material/templates/.icons/material/roman-numeral-10.svg +1 -0
  8961. docsforge/themes/material/templates/.icons/material/roman-numeral-2.svg +1 -0
  8962. docsforge/themes/material/templates/.icons/material/roman-numeral-3.svg +1 -0
  8963. docsforge/themes/material/templates/.icons/material/roman-numeral-4.svg +1 -0
  8964. docsforge/themes/material/templates/.icons/material/roman-numeral-5.svg +1 -0
  8965. docsforge/themes/material/templates/.icons/material/roman-numeral-6.svg +1 -0
  8966. docsforge/themes/material/templates/.icons/material/roman-numeral-7.svg +1 -0
  8967. docsforge/themes/material/templates/.icons/material/roman-numeral-8.svg +1 -0
  8968. docsforge/themes/material/templates/.icons/material/roman-numeral-9.svg +1 -0
  8969. docsforge/themes/material/templates/.icons/material/room-service-outline.svg +1 -0
  8970. docsforge/themes/material/templates/.icons/material/room-service.svg +1 -0
  8971. docsforge/themes/material/templates/.icons/material/rotate-360.svg +1 -0
  8972. docsforge/themes/material/templates/.icons/material/rotate-3d-variant.svg +1 -0
  8973. docsforge/themes/material/templates/.icons/material/rotate-3d.svg +1 -0
  8974. docsforge/themes/material/templates/.icons/material/rotate-left-variant.svg +1 -0
  8975. docsforge/themes/material/templates/.icons/material/rotate-left.svg +1 -0
  8976. docsforge/themes/material/templates/.icons/material/rotate-orbit.svg +1 -0
  8977. docsforge/themes/material/templates/.icons/material/rotate-right-variant.svg +1 -0
  8978. docsforge/themes/material/templates/.icons/material/rotate-right.svg +1 -0
  8979. docsforge/themes/material/templates/.icons/material/rounded-corner.svg +1 -0
  8980. docsforge/themes/material/templates/.icons/material/router-network-wireless.svg +1 -0
  8981. docsforge/themes/material/templates/.icons/material/router-network.svg +1 -0
  8982. docsforge/themes/material/templates/.icons/material/router-wireless-off.svg +1 -0
  8983. docsforge/themes/material/templates/.icons/material/router-wireless-settings.svg +1 -0
  8984. docsforge/themes/material/templates/.icons/material/router-wireless.svg +1 -0
  8985. docsforge/themes/material/templates/.icons/material/router.svg +1 -0
  8986. docsforge/themes/material/templates/.icons/material/routes-clock.svg +1 -0
  8987. docsforge/themes/material/templates/.icons/material/routes.svg +1 -0
  8988. docsforge/themes/material/templates/.icons/material/rowing.svg +1 -0
  8989. docsforge/themes/material/templates/.icons/material/rss-box.svg +1 -0
  8990. docsforge/themes/material/templates/.icons/material/rss-off.svg +1 -0
  8991. docsforge/themes/material/templates/.icons/material/rss.svg +1 -0
  8992. docsforge/themes/material/templates/.icons/material/rug.svg +1 -0
  8993. docsforge/themes/material/templates/.icons/material/rugby.svg +1 -0
  8994. docsforge/themes/material/templates/.icons/material/ruler-square-compass.svg +1 -0
  8995. docsforge/themes/material/templates/.icons/material/ruler-square.svg +1 -0
  8996. docsforge/themes/material/templates/.icons/material/ruler.svg +1 -0
  8997. docsforge/themes/material/templates/.icons/material/run-fast.svg +1 -0
  8998. docsforge/themes/material/templates/.icons/material/run.svg +1 -0
  8999. docsforge/themes/material/templates/.icons/material/rv-truck.svg +1 -0
  9000. docsforge/themes/material/templates/.icons/material/sack-outline.svg +1 -0
  9001. docsforge/themes/material/templates/.icons/material/sack-percent.svg +1 -0
  9002. docsforge/themes/material/templates/.icons/material/sack.svg +1 -0
  9003. docsforge/themes/material/templates/.icons/material/safe-square-outline.svg +1 -0
  9004. docsforge/themes/material/templates/.icons/material/safe-square.svg +1 -0
  9005. docsforge/themes/material/templates/.icons/material/safe.svg +1 -0
  9006. docsforge/themes/material/templates/.icons/material/safety-goggles.svg +1 -0
  9007. docsforge/themes/material/templates/.icons/material/sail-boat-sink.svg +1 -0
  9008. docsforge/themes/material/templates/.icons/material/sail-boat.svg +1 -0
  9009. docsforge/themes/material/templates/.icons/material/sale-outline.svg +1 -0
  9010. docsforge/themes/material/templates/.icons/material/sale.svg +1 -0
  9011. docsforge/themes/material/templates/.icons/material/salesforce.svg +1 -0
  9012. docsforge/themes/material/templates/.icons/material/sass.svg +1 -0
  9013. docsforge/themes/material/templates/.icons/material/satellite-uplink.svg +1 -0
  9014. docsforge/themes/material/templates/.icons/material/satellite-variant.svg +1 -0
  9015. docsforge/themes/material/templates/.icons/material/satellite.svg +1 -0
  9016. docsforge/themes/material/templates/.icons/material/sausage-off.svg +1 -0
  9017. docsforge/themes/material/templates/.icons/material/sausage.svg +1 -0
  9018. docsforge/themes/material/templates/.icons/material/saw-blade.svg +1 -0
  9019. docsforge/themes/material/templates/.icons/material/sawtooth-wave.svg +1 -0
  9020. docsforge/themes/material/templates/.icons/material/saxophone.svg +1 -0
  9021. docsforge/themes/material/templates/.icons/material/scale-balance.svg +1 -0
  9022. docsforge/themes/material/templates/.icons/material/scale-bathroom.svg +1 -0
  9023. docsforge/themes/material/templates/.icons/material/scale-off.svg +1 -0
  9024. docsforge/themes/material/templates/.icons/material/scale-unbalanced.svg +1 -0
  9025. docsforge/themes/material/templates/.icons/material/scale.svg +1 -0
  9026. docsforge/themes/material/templates/.icons/material/scan-helper.svg +1 -0
  9027. docsforge/themes/material/templates/.icons/material/scanner-off.svg +1 -0
  9028. docsforge/themes/material/templates/.icons/material/scanner.svg +1 -0
  9029. docsforge/themes/material/templates/.icons/material/scatter-plot-outline.svg +1 -0
  9030. docsforge/themes/material/templates/.icons/material/scatter-plot.svg +1 -0
  9031. docsforge/themes/material/templates/.icons/material/scent-off.svg +1 -0
  9032. docsforge/themes/material/templates/.icons/material/scent.svg +1 -0
  9033. docsforge/themes/material/templates/.icons/material/school-outline.svg +1 -0
  9034. docsforge/themes/material/templates/.icons/material/school.svg +1 -0
  9035. docsforge/themes/material/templates/.icons/material/scissors-cutting.svg +1 -0
  9036. docsforge/themes/material/templates/.icons/material/scooter-electric.svg +1 -0
  9037. docsforge/themes/material/templates/.icons/material/scooter.svg +1 -0
  9038. docsforge/themes/material/templates/.icons/material/scoreboard-outline.svg +1 -0
  9039. docsforge/themes/material/templates/.icons/material/scoreboard.svg +1 -0
  9040. docsforge/themes/material/templates/.icons/material/screen-rotation-lock.svg +1 -0
  9041. docsforge/themes/material/templates/.icons/material/screen-rotation.svg +1 -0
  9042. docsforge/themes/material/templates/.icons/material/screw-flat-top.svg +1 -0
  9043. docsforge/themes/material/templates/.icons/material/screw-lag.svg +1 -0
  9044. docsforge/themes/material/templates/.icons/material/screw-machine-flat-top.svg +1 -0
  9045. docsforge/themes/material/templates/.icons/material/screw-machine-round-top.svg +1 -0
  9046. docsforge/themes/material/templates/.icons/material/screw-round-top.svg +1 -0
  9047. docsforge/themes/material/templates/.icons/material/screwdriver.svg +1 -0
  9048. docsforge/themes/material/templates/.icons/material/script-outline.svg +1 -0
  9049. docsforge/themes/material/templates/.icons/material/script-text-key-outline.svg +1 -0
  9050. docsforge/themes/material/templates/.icons/material/script-text-key.svg +1 -0
  9051. docsforge/themes/material/templates/.icons/material/script-text-outline.svg +1 -0
  9052. docsforge/themes/material/templates/.icons/material/script-text-play-outline.svg +1 -0
  9053. docsforge/themes/material/templates/.icons/material/script-text-play.svg +1 -0
  9054. docsforge/themes/material/templates/.icons/material/script-text.svg +1 -0
  9055. docsforge/themes/material/templates/.icons/material/script.svg +1 -0
  9056. docsforge/themes/material/templates/.icons/material/sd.svg +1 -0
  9057. docsforge/themes/material/templates/.icons/material/seal-variant.svg +1 -0
  9058. docsforge/themes/material/templates/.icons/material/seal.svg +1 -0
  9059. docsforge/themes/material/templates/.icons/material/search-web.svg +1 -0
  9060. docsforge/themes/material/templates/.icons/material/seat-flat-angled.svg +1 -0
  9061. docsforge/themes/material/templates/.icons/material/seat-flat.svg +1 -0
  9062. docsforge/themes/material/templates/.icons/material/seat-individual-suite.svg +1 -0
  9063. docsforge/themes/material/templates/.icons/material/seat-legroom-extra.svg +1 -0
  9064. docsforge/themes/material/templates/.icons/material/seat-legroom-normal.svg +1 -0
  9065. docsforge/themes/material/templates/.icons/material/seat-legroom-reduced.svg +1 -0
  9066. docsforge/themes/material/templates/.icons/material/seat-outline.svg +1 -0
  9067. docsforge/themes/material/templates/.icons/material/seat-passenger.svg +1 -0
  9068. docsforge/themes/material/templates/.icons/material/seat-recline-extra.svg +1 -0
  9069. docsforge/themes/material/templates/.icons/material/seat-recline-normal.svg +1 -0
  9070. docsforge/themes/material/templates/.icons/material/seat.svg +1 -0
  9071. docsforge/themes/material/templates/.icons/material/seatbelt.svg +1 -0
  9072. docsforge/themes/material/templates/.icons/material/security-network.svg +1 -0
  9073. docsforge/themes/material/templates/.icons/material/security.svg +1 -0
  9074. docsforge/themes/material/templates/.icons/material/seed-off-outline.svg +1 -0
  9075. docsforge/themes/material/templates/.icons/material/seed-off.svg +1 -0
  9076. docsforge/themes/material/templates/.icons/material/seed-outline.svg +1 -0
  9077. docsforge/themes/material/templates/.icons/material/seed-plus-outline.svg +1 -0
  9078. docsforge/themes/material/templates/.icons/material/seed-plus.svg +1 -0
  9079. docsforge/themes/material/templates/.icons/material/seed.svg +1 -0
  9080. docsforge/themes/material/templates/.icons/material/seesaw.svg +1 -0
  9081. docsforge/themes/material/templates/.icons/material/segment.svg +1 -0
  9082. docsforge/themes/material/templates/.icons/material/select-all.svg +1 -0
  9083. docsforge/themes/material/templates/.icons/material/select-arrow-down.svg +1 -0
  9084. docsforge/themes/material/templates/.icons/material/select-arrow-up.svg +1 -0
  9085. docsforge/themes/material/templates/.icons/material/select-color.svg +1 -0
  9086. docsforge/themes/material/templates/.icons/material/select-compare.svg +1 -0
  9087. docsforge/themes/material/templates/.icons/material/select-drag.svg +1 -0
  9088. docsforge/themes/material/templates/.icons/material/select-group.svg +1 -0
  9089. docsforge/themes/material/templates/.icons/material/select-inverse.svg +1 -0
  9090. docsforge/themes/material/templates/.icons/material/select-marker.svg +1 -0
  9091. docsforge/themes/material/templates/.icons/material/select-multiple-marker.svg +1 -0
  9092. docsforge/themes/material/templates/.icons/material/select-multiple.svg +1 -0
  9093. docsforge/themes/material/templates/.icons/material/select-off.svg +1 -0
  9094. docsforge/themes/material/templates/.icons/material/select-place.svg +1 -0
  9095. docsforge/themes/material/templates/.icons/material/select-remove.svg +1 -0
  9096. docsforge/themes/material/templates/.icons/material/select-search.svg +1 -0
  9097. docsforge/themes/material/templates/.icons/material/select.svg +1 -0
  9098. docsforge/themes/material/templates/.icons/material/selection-drag.svg +1 -0
  9099. docsforge/themes/material/templates/.icons/material/selection-ellipse-arrow-inside.svg +1 -0
  9100. docsforge/themes/material/templates/.icons/material/selection-ellipse-remove.svg +1 -0
  9101. docsforge/themes/material/templates/.icons/material/selection-ellipse.svg +1 -0
  9102. docsforge/themes/material/templates/.icons/material/selection-marker.svg +1 -0
  9103. docsforge/themes/material/templates/.icons/material/selection-multiple-marker.svg +1 -0
  9104. docsforge/themes/material/templates/.icons/material/selection-multiple.svg +1 -0
  9105. docsforge/themes/material/templates/.icons/material/selection-off.svg +1 -0
  9106. docsforge/themes/material/templates/.icons/material/selection-remove.svg +1 -0
  9107. docsforge/themes/material/templates/.icons/material/selection-search.svg +1 -0
  9108. docsforge/themes/material/templates/.icons/material/selection.svg +1 -0
  9109. docsforge/themes/material/templates/.icons/material/semantic-web.svg +1 -0
  9110. docsforge/themes/material/templates/.icons/material/send-check-outline.svg +1 -0
  9111. docsforge/themes/material/templates/.icons/material/send-check.svg +1 -0
  9112. docsforge/themes/material/templates/.icons/material/send-circle-outline.svg +1 -0
  9113. docsforge/themes/material/templates/.icons/material/send-circle.svg +1 -0
  9114. docsforge/themes/material/templates/.icons/material/send-clock-outline.svg +1 -0
  9115. docsforge/themes/material/templates/.icons/material/send-clock.svg +1 -0
  9116. docsforge/themes/material/templates/.icons/material/send-lock-outline.svg +1 -0
  9117. docsforge/themes/material/templates/.icons/material/send-lock.svg +1 -0
  9118. docsforge/themes/material/templates/.icons/material/send-outline.svg +1 -0
  9119. docsforge/themes/material/templates/.icons/material/send-variant-clock-outline.svg +1 -0
  9120. docsforge/themes/material/templates/.icons/material/send-variant-clock.svg +1 -0
  9121. docsforge/themes/material/templates/.icons/material/send-variant-outline.svg +1 -0
  9122. docsforge/themes/material/templates/.icons/material/send-variant.svg +1 -0
  9123. docsforge/themes/material/templates/.icons/material/send.svg +1 -0
  9124. docsforge/themes/material/templates/.icons/material/serial-port.svg +1 -0
  9125. docsforge/themes/material/templates/.icons/material/server-minus-outline.svg +1 -0
  9126. docsforge/themes/material/templates/.icons/material/server-minus.svg +1 -0
  9127. docsforge/themes/material/templates/.icons/material/server-network-off.svg +1 -0
  9128. docsforge/themes/material/templates/.icons/material/server-network-outline.svg +1 -0
  9129. docsforge/themes/material/templates/.icons/material/server-network.svg +1 -0
  9130. docsforge/themes/material/templates/.icons/material/server-off.svg +1 -0
  9131. docsforge/themes/material/templates/.icons/material/server-outline.svg +1 -0
  9132. docsforge/themes/material/templates/.icons/material/server-plus-outline.svg +1 -0
  9133. docsforge/themes/material/templates/.icons/material/server-plus.svg +1 -0
  9134. docsforge/themes/material/templates/.icons/material/server-remove.svg +1 -0
  9135. docsforge/themes/material/templates/.icons/material/server-security.svg +1 -0
  9136. docsforge/themes/material/templates/.icons/material/server.svg +1 -0
  9137. docsforge/themes/material/templates/.icons/material/set-all.svg +1 -0
  9138. docsforge/themes/material/templates/.icons/material/set-center-right.svg +1 -0
  9139. docsforge/themes/material/templates/.icons/material/set-center.svg +1 -0
  9140. docsforge/themes/material/templates/.icons/material/set-left-center.svg +1 -0
  9141. docsforge/themes/material/templates/.icons/material/set-left-right.svg +1 -0
  9142. docsforge/themes/material/templates/.icons/material/set-left.svg +1 -0
  9143. docsforge/themes/material/templates/.icons/material/set-merge.svg +1 -0
  9144. docsforge/themes/material/templates/.icons/material/set-none.svg +1 -0
  9145. docsforge/themes/material/templates/.icons/material/set-right.svg +1 -0
  9146. docsforge/themes/material/templates/.icons/material/set-split.svg +1 -0
  9147. docsforge/themes/material/templates/.icons/material/set-square.svg +1 -0
  9148. docsforge/themes/material/templates/.icons/material/set-top-box.svg +1 -0
  9149. docsforge/themes/material/templates/.icons/material/settings-helper.svg +1 -0
  9150. docsforge/themes/material/templates/.icons/material/shaker-outline.svg +1 -0
  9151. docsforge/themes/material/templates/.icons/material/shaker.svg +1 -0
  9152. docsforge/themes/material/templates/.icons/material/shape-circle-plus.svg +1 -0
  9153. docsforge/themes/material/templates/.icons/material/shape-outline.svg +1 -0
  9154. docsforge/themes/material/templates/.icons/material/shape-oval-plus.svg +1 -0
  9155. docsforge/themes/material/templates/.icons/material/shape-plus-outline.svg +1 -0
  9156. docsforge/themes/material/templates/.icons/material/shape-plus.svg +1 -0
  9157. docsforge/themes/material/templates/.icons/material/shape-polygon-plus.svg +1 -0
  9158. docsforge/themes/material/templates/.icons/material/shape-rectangle-plus.svg +1 -0
  9159. docsforge/themes/material/templates/.icons/material/shape-square-plus.svg +1 -0
  9160. docsforge/themes/material/templates/.icons/material/shape-square-rounded-plus.svg +1 -0
  9161. docsforge/themes/material/templates/.icons/material/shape.svg +1 -0
  9162. docsforge/themes/material/templates/.icons/material/share-all-outline.svg +1 -0
  9163. docsforge/themes/material/templates/.icons/material/share-all.svg +1 -0
  9164. docsforge/themes/material/templates/.icons/material/share-circle.svg +1 -0
  9165. docsforge/themes/material/templates/.icons/material/share-off-outline.svg +1 -0
  9166. docsforge/themes/material/templates/.icons/material/share-off.svg +1 -0
  9167. docsforge/themes/material/templates/.icons/material/share-outline.svg +1 -0
  9168. docsforge/themes/material/templates/.icons/material/share-variant-outline.svg +1 -0
  9169. docsforge/themes/material/templates/.icons/material/share-variant.svg +1 -0
  9170. docsforge/themes/material/templates/.icons/material/share.svg +1 -0
  9171. docsforge/themes/material/templates/.icons/material/shark-fin-outline.svg +1 -0
  9172. docsforge/themes/material/templates/.icons/material/shark-fin.svg +1 -0
  9173. docsforge/themes/material/templates/.icons/material/shark-off.svg +1 -0
  9174. docsforge/themes/material/templates/.icons/material/shark.svg +1 -0
  9175. docsforge/themes/material/templates/.icons/material/sheep.svg +1 -0
  9176. docsforge/themes/material/templates/.icons/material/shield-account-outline.svg +1 -0
  9177. docsforge/themes/material/templates/.icons/material/shield-account-variant-outline.svg +1 -0
  9178. docsforge/themes/material/templates/.icons/material/shield-account-variant.svg +1 -0
  9179. docsforge/themes/material/templates/.icons/material/shield-account.svg +1 -0
  9180. docsforge/themes/material/templates/.icons/material/shield-airplane-outline.svg +1 -0
  9181. docsforge/themes/material/templates/.icons/material/shield-airplane.svg +1 -0
  9182. docsforge/themes/material/templates/.icons/material/shield-alert-outline.svg +1 -0
  9183. docsforge/themes/material/templates/.icons/material/shield-alert.svg +1 -0
  9184. docsforge/themes/material/templates/.icons/material/shield-bug-outline.svg +1 -0
  9185. docsforge/themes/material/templates/.icons/material/shield-bug.svg +1 -0
  9186. docsforge/themes/material/templates/.icons/material/shield-car.svg +1 -0
  9187. docsforge/themes/material/templates/.icons/material/shield-check-outline.svg +1 -0
  9188. docsforge/themes/material/templates/.icons/material/shield-check.svg +1 -0
  9189. docsforge/themes/material/templates/.icons/material/shield-cross-outline.svg +1 -0
  9190. docsforge/themes/material/templates/.icons/material/shield-cross.svg +1 -0
  9191. docsforge/themes/material/templates/.icons/material/shield-crown-outline.svg +1 -0
  9192. docsforge/themes/material/templates/.icons/material/shield-crown.svg +1 -0
  9193. docsforge/themes/material/templates/.icons/material/shield-edit-outline.svg +1 -0
  9194. docsforge/themes/material/templates/.icons/material/shield-edit.svg +1 -0
  9195. docsforge/themes/material/templates/.icons/material/shield-half-full.svg +1 -0
  9196. docsforge/themes/material/templates/.icons/material/shield-half.svg +1 -0
  9197. docsforge/themes/material/templates/.icons/material/shield-home-outline.svg +1 -0
  9198. docsforge/themes/material/templates/.icons/material/shield-home.svg +1 -0
  9199. docsforge/themes/material/templates/.icons/material/shield-key-outline.svg +1 -0
  9200. docsforge/themes/material/templates/.icons/material/shield-key.svg +1 -0
  9201. docsforge/themes/material/templates/.icons/material/shield-link-variant-outline.svg +1 -0
  9202. docsforge/themes/material/templates/.icons/material/shield-link-variant.svg +1 -0
  9203. docsforge/themes/material/templates/.icons/material/shield-lock-open-outline.svg +1 -0
  9204. docsforge/themes/material/templates/.icons/material/shield-lock-open.svg +1 -0
  9205. docsforge/themes/material/templates/.icons/material/shield-lock-outline.svg +1 -0
  9206. docsforge/themes/material/templates/.icons/material/shield-lock.svg +1 -0
  9207. docsforge/themes/material/templates/.icons/material/shield-moon-outline.svg +1 -0
  9208. docsforge/themes/material/templates/.icons/material/shield-moon.svg +1 -0
  9209. docsforge/themes/material/templates/.icons/material/shield-off-outline.svg +1 -0
  9210. docsforge/themes/material/templates/.icons/material/shield-off.svg +1 -0
  9211. docsforge/themes/material/templates/.icons/material/shield-outline.svg +1 -0
  9212. docsforge/themes/material/templates/.icons/material/shield-plus-outline.svg +1 -0
  9213. docsforge/themes/material/templates/.icons/material/shield-plus.svg +1 -0
  9214. docsforge/themes/material/templates/.icons/material/shield-refresh-outline.svg +1 -0
  9215. docsforge/themes/material/templates/.icons/material/shield-refresh.svg +1 -0
  9216. docsforge/themes/material/templates/.icons/material/shield-remove-outline.svg +1 -0
  9217. docsforge/themes/material/templates/.icons/material/shield-remove.svg +1 -0
  9218. docsforge/themes/material/templates/.icons/material/shield-search.svg +1 -0
  9219. docsforge/themes/material/templates/.icons/material/shield-star-outline.svg +1 -0
  9220. docsforge/themes/material/templates/.icons/material/shield-star.svg +1 -0
  9221. docsforge/themes/material/templates/.icons/material/shield-sun-outline.svg +1 -0
  9222. docsforge/themes/material/templates/.icons/material/shield-sun.svg +1 -0
  9223. docsforge/themes/material/templates/.icons/material/shield-sword-outline.svg +1 -0
  9224. docsforge/themes/material/templates/.icons/material/shield-sword.svg +1 -0
  9225. docsforge/themes/material/templates/.icons/material/shield-sync-outline.svg +1 -0
  9226. docsforge/themes/material/templates/.icons/material/shield-sync.svg +1 -0
  9227. docsforge/themes/material/templates/.icons/material/shield.svg +1 -0
  9228. docsforge/themes/material/templates/.icons/material/shimmer.svg +1 -0
  9229. docsforge/themes/material/templates/.icons/material/ship-wheel.svg +1 -0
  9230. docsforge/themes/material/templates/.icons/material/shipping-pallet.svg +1 -0
  9231. docsforge/themes/material/templates/.icons/material/shoe-ballet.svg +1 -0
  9232. docsforge/themes/material/templates/.icons/material/shoe-cleat.svg +1 -0
  9233. docsforge/themes/material/templates/.icons/material/shoe-formal.svg +1 -0
  9234. docsforge/themes/material/templates/.icons/material/shoe-heel.svg +1 -0
  9235. docsforge/themes/material/templates/.icons/material/shoe-print.svg +1 -0
  9236. docsforge/themes/material/templates/.icons/material/shoe-sneaker.svg +1 -0
  9237. docsforge/themes/material/templates/.icons/material/shopping-music.svg +1 -0
  9238. docsforge/themes/material/templates/.icons/material/shopping-outline.svg +1 -0
  9239. docsforge/themes/material/templates/.icons/material/shopping-search-outline.svg +1 -0
  9240. docsforge/themes/material/templates/.icons/material/shopping-search.svg +1 -0
  9241. docsforge/themes/material/templates/.icons/material/shopping.svg +1 -0
  9242. docsforge/themes/material/templates/.icons/material/shore.svg +1 -0
  9243. docsforge/themes/material/templates/.icons/material/shovel-off.svg +1 -0
  9244. docsforge/themes/material/templates/.icons/material/shovel.svg +1 -0
  9245. docsforge/themes/material/templates/.icons/material/shower-head.svg +1 -0
  9246. docsforge/themes/material/templates/.icons/material/shower.svg +1 -0
  9247. docsforge/themes/material/templates/.icons/material/shredder.svg +1 -0
  9248. docsforge/themes/material/templates/.icons/material/shuffle-disabled.svg +1 -0
  9249. docsforge/themes/material/templates/.icons/material/shuffle-variant.svg +1 -0
  9250. docsforge/themes/material/templates/.icons/material/shuffle.svg +1 -0
  9251. docsforge/themes/material/templates/.icons/material/shuriken.svg +1 -0
  9252. docsforge/themes/material/templates/.icons/material/sickle.svg +1 -0
  9253. docsforge/themes/material/templates/.icons/material/sigma-lower.svg +1 -0
  9254. docsforge/themes/material/templates/.icons/material/sigma.svg +1 -0
  9255. docsforge/themes/material/templates/.icons/material/sign-caution.svg +1 -0
  9256. docsforge/themes/material/templates/.icons/material/sign-direction-minus.svg +1 -0
  9257. docsforge/themes/material/templates/.icons/material/sign-direction-plus.svg +1 -0
  9258. docsforge/themes/material/templates/.icons/material/sign-direction-remove.svg +1 -0
  9259. docsforge/themes/material/templates/.icons/material/sign-direction.svg +1 -0
  9260. docsforge/themes/material/templates/.icons/material/sign-language-outline.svg +1 -0
  9261. docsforge/themes/material/templates/.icons/material/sign-language.svg +1 -0
  9262. docsforge/themes/material/templates/.icons/material/sign-pole.svg +1 -0
  9263. docsforge/themes/material/templates/.icons/material/sign-real-estate.svg +1 -0
  9264. docsforge/themes/material/templates/.icons/material/sign-text.svg +1 -0
  9265. docsforge/themes/material/templates/.icons/material/sign-yield.svg +1 -0
  9266. docsforge/themes/material/templates/.icons/material/signal-2g.svg +1 -0
  9267. docsforge/themes/material/templates/.icons/material/signal-3g.svg +1 -0
  9268. docsforge/themes/material/templates/.icons/material/signal-4g.svg +1 -0
  9269. docsforge/themes/material/templates/.icons/material/signal-5g.svg +1 -0
  9270. docsforge/themes/material/templates/.icons/material/signal-cellular-1.svg +1 -0
  9271. docsforge/themes/material/templates/.icons/material/signal-cellular-2.svg +1 -0
  9272. docsforge/themes/material/templates/.icons/material/signal-cellular-3.svg +1 -0
  9273. docsforge/themes/material/templates/.icons/material/signal-cellular-outline.svg +1 -0
  9274. docsforge/themes/material/templates/.icons/material/signal-distance-variant.svg +1 -0
  9275. docsforge/themes/material/templates/.icons/material/signal-hspa-plus.svg +1 -0
  9276. docsforge/themes/material/templates/.icons/material/signal-hspa.svg +1 -0
  9277. docsforge/themes/material/templates/.icons/material/signal-off.svg +1 -0
  9278. docsforge/themes/material/templates/.icons/material/signal-variant.svg +1 -0
  9279. docsforge/themes/material/templates/.icons/material/signal.svg +1 -0
  9280. docsforge/themes/material/templates/.icons/material/signature-freehand.svg +1 -0
  9281. docsforge/themes/material/templates/.icons/material/signature-image.svg +1 -0
  9282. docsforge/themes/material/templates/.icons/material/signature-text.svg +1 -0
  9283. docsforge/themes/material/templates/.icons/material/signature.svg +1 -0
  9284. docsforge/themes/material/templates/.icons/material/silo-outline.svg +1 -0
  9285. docsforge/themes/material/templates/.icons/material/silo.svg +1 -0
  9286. docsforge/themes/material/templates/.icons/material/silverware-clean.svg +1 -0
  9287. docsforge/themes/material/templates/.icons/material/silverware-fork-knife.svg +1 -0
  9288. docsforge/themes/material/templates/.icons/material/silverware-fork.svg +1 -0
  9289. docsforge/themes/material/templates/.icons/material/silverware-spoon.svg +1 -0
  9290. docsforge/themes/material/templates/.icons/material/silverware-variant.svg +1 -0
  9291. docsforge/themes/material/templates/.icons/material/silverware.svg +1 -0
  9292. docsforge/themes/material/templates/.icons/material/sim-alert-outline.svg +1 -0
  9293. docsforge/themes/material/templates/.icons/material/sim-alert.svg +1 -0
  9294. docsforge/themes/material/templates/.icons/material/sim-off-outline.svg +1 -0
  9295. docsforge/themes/material/templates/.icons/material/sim-off.svg +1 -0
  9296. docsforge/themes/material/templates/.icons/material/sim-outline.svg +1 -0
  9297. docsforge/themes/material/templates/.icons/material/sim.svg +1 -0
  9298. docsforge/themes/material/templates/.icons/material/simple-icons.svg +1 -0
  9299. docsforge/themes/material/templates/.icons/material/sina-weibo.svg +1 -0
  9300. docsforge/themes/material/templates/.icons/material/sine-wave.svg +1 -0
  9301. docsforge/themes/material/templates/.icons/material/sitemap-outline.svg +1 -0
  9302. docsforge/themes/material/templates/.icons/material/sitemap.svg +1 -0
  9303. docsforge/themes/material/templates/.icons/material/size-l.svg +1 -0
  9304. docsforge/themes/material/templates/.icons/material/size-m.svg +1 -0
  9305. docsforge/themes/material/templates/.icons/material/size-s.svg +1 -0
  9306. docsforge/themes/material/templates/.icons/material/size-xl.svg +1 -0
  9307. docsforge/themes/material/templates/.icons/material/size-xs.svg +1 -0
  9308. docsforge/themes/material/templates/.icons/material/size-xxl.svg +1 -0
  9309. docsforge/themes/material/templates/.icons/material/size-xxs.svg +1 -0
  9310. docsforge/themes/material/templates/.icons/material/size-xxxl.svg +1 -0
  9311. docsforge/themes/material/templates/.icons/material/skate-off.svg +1 -0
  9312. docsforge/themes/material/templates/.icons/material/skate.svg +1 -0
  9313. docsforge/themes/material/templates/.icons/material/skateboard.svg +1 -0
  9314. docsforge/themes/material/templates/.icons/material/skateboarding.svg +1 -0
  9315. docsforge/themes/material/templates/.icons/material/skew-less.svg +1 -0
  9316. docsforge/themes/material/templates/.icons/material/skew-more.svg +1 -0
  9317. docsforge/themes/material/templates/.icons/material/ski-cross-country.svg +1 -0
  9318. docsforge/themes/material/templates/.icons/material/ski-water.svg +1 -0
  9319. docsforge/themes/material/templates/.icons/material/ski.svg +1 -0
  9320. docsforge/themes/material/templates/.icons/material/skip-backward-outline.svg +1 -0
  9321. docsforge/themes/material/templates/.icons/material/skip-backward.svg +1 -0
  9322. docsforge/themes/material/templates/.icons/material/skip-forward-outline.svg +1 -0
  9323. docsforge/themes/material/templates/.icons/material/skip-forward.svg +1 -0
  9324. docsforge/themes/material/templates/.icons/material/skip-next-circle-outline.svg +1 -0
  9325. docsforge/themes/material/templates/.icons/material/skip-next-circle.svg +1 -0
  9326. docsforge/themes/material/templates/.icons/material/skip-next-outline.svg +1 -0
  9327. docsforge/themes/material/templates/.icons/material/skip-next.svg +1 -0
  9328. docsforge/themes/material/templates/.icons/material/skip-previous-circle-outline.svg +1 -0
  9329. docsforge/themes/material/templates/.icons/material/skip-previous-circle.svg +1 -0
  9330. docsforge/themes/material/templates/.icons/material/skip-previous-outline.svg +1 -0
  9331. docsforge/themes/material/templates/.icons/material/skip-previous.svg +1 -0
  9332. docsforge/themes/material/templates/.icons/material/skull-crossbones-outline.svg +1 -0
  9333. docsforge/themes/material/templates/.icons/material/skull-crossbones.svg +1 -0
  9334. docsforge/themes/material/templates/.icons/material/skull-outline.svg +1 -0
  9335. docsforge/themes/material/templates/.icons/material/skull-scan-outline.svg +1 -0
  9336. docsforge/themes/material/templates/.icons/material/skull-scan.svg +1 -0
  9337. docsforge/themes/material/templates/.icons/material/skull.svg +1 -0
  9338. docsforge/themes/material/templates/.icons/material/skype-business.svg +1 -0
  9339. docsforge/themes/material/templates/.icons/material/skype.svg +1 -0
  9340. docsforge/themes/material/templates/.icons/material/slack.svg +1 -0
  9341. docsforge/themes/material/templates/.icons/material/slash-forward-box.svg +1 -0
  9342. docsforge/themes/material/templates/.icons/material/slash-forward.svg +1 -0
  9343. docsforge/themes/material/templates/.icons/material/sledding.svg +1 -0
  9344. docsforge/themes/material/templates/.icons/material/sleep-off.svg +1 -0
  9345. docsforge/themes/material/templates/.icons/material/sleep.svg +1 -0
  9346. docsforge/themes/material/templates/.icons/material/slide.svg +1 -0
  9347. docsforge/themes/material/templates/.icons/material/slope-downhill.svg +1 -0
  9348. docsforge/themes/material/templates/.icons/material/slope-uphill.svg +1 -0
  9349. docsforge/themes/material/templates/.icons/material/slot-machine-outline.svg +1 -0
  9350. docsforge/themes/material/templates/.icons/material/slot-machine.svg +1 -0
  9351. docsforge/themes/material/templates/.icons/material/smart-card-off-outline.svg +1 -0
  9352. docsforge/themes/material/templates/.icons/material/smart-card-off.svg +1 -0
  9353. docsforge/themes/material/templates/.icons/material/smart-card-outline.svg +1 -0
  9354. docsforge/themes/material/templates/.icons/material/smart-card-reader-outline.svg +1 -0
  9355. docsforge/themes/material/templates/.icons/material/smart-card-reader.svg +1 -0
  9356. docsforge/themes/material/templates/.icons/material/smart-card.svg +1 -0
  9357. docsforge/themes/material/templates/.icons/material/smog.svg +1 -0
  9358. docsforge/themes/material/templates/.icons/material/smoke-detector-alert-outline.svg +1 -0
  9359. docsforge/themes/material/templates/.icons/material/smoke-detector-alert.svg +1 -0
  9360. docsforge/themes/material/templates/.icons/material/smoke-detector-off-outline.svg +1 -0
  9361. docsforge/themes/material/templates/.icons/material/smoke-detector-off.svg +1 -0
  9362. docsforge/themes/material/templates/.icons/material/smoke-detector-outline.svg +1 -0
  9363. docsforge/themes/material/templates/.icons/material/smoke-detector-variant-alert.svg +1 -0
  9364. docsforge/themes/material/templates/.icons/material/smoke-detector-variant-off.svg +1 -0
  9365. docsforge/themes/material/templates/.icons/material/smoke-detector-variant.svg +1 -0
  9366. docsforge/themes/material/templates/.icons/material/smoke-detector.svg +1 -0
  9367. docsforge/themes/material/templates/.icons/material/smoke.svg +1 -0
  9368. docsforge/themes/material/templates/.icons/material/smoking-off.svg +1 -0
  9369. docsforge/themes/material/templates/.icons/material/smoking-pipe-off.svg +1 -0
  9370. docsforge/themes/material/templates/.icons/material/smoking-pipe.svg +1 -0
  9371. docsforge/themes/material/templates/.icons/material/smoking.svg +1 -0
  9372. docsforge/themes/material/templates/.icons/material/snail.svg +1 -0
  9373. docsforge/themes/material/templates/.icons/material/snake.svg +1 -0
  9374. docsforge/themes/material/templates/.icons/material/snapchat.svg +1 -0
  9375. docsforge/themes/material/templates/.icons/material/snowboard.svg +1 -0
  9376. docsforge/themes/material/templates/.icons/material/snowflake-alert.svg +1 -0
  9377. docsforge/themes/material/templates/.icons/material/snowflake-check.svg +1 -0
  9378. docsforge/themes/material/templates/.icons/material/snowflake-melt.svg +1 -0
  9379. docsforge/themes/material/templates/.icons/material/snowflake-off.svg +1 -0
  9380. docsforge/themes/material/templates/.icons/material/snowflake-thermometer.svg +1 -0
  9381. docsforge/themes/material/templates/.icons/material/snowflake-variant.svg +1 -0
  9382. docsforge/themes/material/templates/.icons/material/snowflake.svg +1 -0
  9383. docsforge/themes/material/templates/.icons/material/snowman.svg +1 -0
  9384. docsforge/themes/material/templates/.icons/material/snowmobile.svg +1 -0
  9385. docsforge/themes/material/templates/.icons/material/snowshoeing.svg +1 -0
  9386. docsforge/themes/material/templates/.icons/material/soccer-field.svg +1 -0
  9387. docsforge/themes/material/templates/.icons/material/soccer.svg +1 -0
  9388. docsforge/themes/material/templates/.icons/material/social-distance-2-meters.svg +1 -0
  9389. docsforge/themes/material/templates/.icons/material/social-distance-6-feet.svg +1 -0
  9390. docsforge/themes/material/templates/.icons/material/sofa-outline.svg +1 -0
  9391. docsforge/themes/material/templates/.icons/material/sofa-single-outline.svg +1 -0
  9392. docsforge/themes/material/templates/.icons/material/sofa-single.svg +1 -0
  9393. docsforge/themes/material/templates/.icons/material/sofa.svg +1 -0
  9394. docsforge/themes/material/templates/.icons/material/solar-panel-large.svg +1 -0
  9395. docsforge/themes/material/templates/.icons/material/solar-panel.svg +1 -0
  9396. docsforge/themes/material/templates/.icons/material/solar-power-variant-outline.svg +1 -0
  9397. docsforge/themes/material/templates/.icons/material/solar-power-variant.svg +1 -0
  9398. docsforge/themes/material/templates/.icons/material/solar-power.svg +1 -0
  9399. docsforge/themes/material/templates/.icons/material/soldering-iron.svg +1 -0
  9400. docsforge/themes/material/templates/.icons/material/solid.svg +1 -0
  9401. docsforge/themes/material/templates/.icons/material/sony-playstation.svg +1 -0
  9402. docsforge/themes/material/templates/.icons/material/sort-alphabetical-ascending-variant.svg +1 -0
  9403. docsforge/themes/material/templates/.icons/material/sort-alphabetical-ascending.svg +1 -0
  9404. docsforge/themes/material/templates/.icons/material/sort-alphabetical-descending-variant.svg +1 -0
  9405. docsforge/themes/material/templates/.icons/material/sort-alphabetical-descending.svg +1 -0
  9406. docsforge/themes/material/templates/.icons/material/sort-alphabetical-variant.svg +1 -0
  9407. docsforge/themes/material/templates/.icons/material/sort-ascending.svg +1 -0
  9408. docsforge/themes/material/templates/.icons/material/sort-bool-ascending-variant.svg +1 -0
  9409. docsforge/themes/material/templates/.icons/material/sort-bool-ascending.svg +1 -0
  9410. docsforge/themes/material/templates/.icons/material/sort-bool-descending-variant.svg +1 -0
  9411. docsforge/themes/material/templates/.icons/material/sort-bool-descending.svg +1 -0
  9412. docsforge/themes/material/templates/.icons/material/sort-calendar-ascending.svg +1 -0
  9413. docsforge/themes/material/templates/.icons/material/sort-calendar-descending.svg +1 -0
  9414. docsforge/themes/material/templates/.icons/material/sort-clock-ascending-outline.svg +1 -0
  9415. docsforge/themes/material/templates/.icons/material/sort-clock-ascending.svg +1 -0
  9416. docsforge/themes/material/templates/.icons/material/sort-clock-descending-outline.svg +1 -0
  9417. docsforge/themes/material/templates/.icons/material/sort-clock-descending.svg +1 -0
  9418. docsforge/themes/material/templates/.icons/material/sort-descending.svg +1 -0
  9419. docsforge/themes/material/templates/.icons/material/sort-numeric-ascending-variant.svg +1 -0
  9420. docsforge/themes/material/templates/.icons/material/sort-numeric-ascending.svg +1 -0
  9421. docsforge/themes/material/templates/.icons/material/sort-numeric-descending-variant.svg +1 -0
  9422. docsforge/themes/material/templates/.icons/material/sort-numeric-descending.svg +1 -0
  9423. docsforge/themes/material/templates/.icons/material/sort-numeric-variant.svg +1 -0
  9424. docsforge/themes/material/templates/.icons/material/sort-reverse-variant.svg +1 -0
  9425. docsforge/themes/material/templates/.icons/material/sort-variant-lock-open.svg +1 -0
  9426. docsforge/themes/material/templates/.icons/material/sort-variant-lock.svg +1 -0
  9427. docsforge/themes/material/templates/.icons/material/sort-variant-off.svg +1 -0
  9428. docsforge/themes/material/templates/.icons/material/sort-variant-remove.svg +1 -0
  9429. docsforge/themes/material/templates/.icons/material/sort-variant.svg +1 -0
  9430. docsforge/themes/material/templates/.icons/material/sort.svg +1 -0
  9431. docsforge/themes/material/templates/.icons/material/soundbar.svg +1 -0
  9432. docsforge/themes/material/templates/.icons/material/soundcloud.svg +1 -0
  9433. docsforge/themes/material/templates/.icons/material/source-branch-check.svg +1 -0
  9434. docsforge/themes/material/templates/.icons/material/source-branch-minus.svg +1 -0
  9435. docsforge/themes/material/templates/.icons/material/source-branch-plus.svg +1 -0
  9436. docsforge/themes/material/templates/.icons/material/source-branch-refresh.svg +1 -0
  9437. docsforge/themes/material/templates/.icons/material/source-branch-remove.svg +1 -0
  9438. docsforge/themes/material/templates/.icons/material/source-branch-sync.svg +1 -0
  9439. docsforge/themes/material/templates/.icons/material/source-branch.svg +1 -0
  9440. docsforge/themes/material/templates/.icons/material/source-commit-end-local.svg +1 -0
  9441. docsforge/themes/material/templates/.icons/material/source-commit-end.svg +1 -0
  9442. docsforge/themes/material/templates/.icons/material/source-commit-local.svg +1 -0
  9443. docsforge/themes/material/templates/.icons/material/source-commit-next-local.svg +1 -0
  9444. docsforge/themes/material/templates/.icons/material/source-commit-start-next-local.svg +1 -0
  9445. docsforge/themes/material/templates/.icons/material/source-commit-start.svg +1 -0
  9446. docsforge/themes/material/templates/.icons/material/source-commit.svg +1 -0
  9447. docsforge/themes/material/templates/.icons/material/source-fork.svg +1 -0
  9448. docsforge/themes/material/templates/.icons/material/source-merge.svg +1 -0
  9449. docsforge/themes/material/templates/.icons/material/source-pull.svg +1 -0
  9450. docsforge/themes/material/templates/.icons/material/source-repository-multiple.svg +1 -0
  9451. docsforge/themes/material/templates/.icons/material/source-repository.svg +1 -0
  9452. docsforge/themes/material/templates/.icons/material/soy-sauce-off.svg +1 -0
  9453. docsforge/themes/material/templates/.icons/material/soy-sauce.svg +1 -0
  9454. docsforge/themes/material/templates/.icons/material/spa-outline.svg +1 -0
  9455. docsforge/themes/material/templates/.icons/material/spa.svg +1 -0
  9456. docsforge/themes/material/templates/.icons/material/space-invaders.svg +1 -0
  9457. docsforge/themes/material/templates/.icons/material/space-station.svg +1 -0
  9458. docsforge/themes/material/templates/.icons/material/spade.svg +1 -0
  9459. docsforge/themes/material/templates/.icons/material/speaker-bluetooth.svg +1 -0
  9460. docsforge/themes/material/templates/.icons/material/speaker-message.svg +1 -0
  9461. docsforge/themes/material/templates/.icons/material/speaker-multiple.svg +1 -0
  9462. docsforge/themes/material/templates/.icons/material/speaker-off.svg +1 -0
  9463. docsforge/themes/material/templates/.icons/material/speaker-pause.svg +1 -0
  9464. docsforge/themes/material/templates/.icons/material/speaker-play.svg +1 -0
  9465. docsforge/themes/material/templates/.icons/material/speaker-stop.svg +1 -0
  9466. docsforge/themes/material/templates/.icons/material/speaker-wireless.svg +1 -0
  9467. docsforge/themes/material/templates/.icons/material/speaker.svg +1 -0
  9468. docsforge/themes/material/templates/.icons/material/spear.svg +1 -0
  9469. docsforge/themes/material/templates/.icons/material/speedometer-medium.svg +1 -0
  9470. docsforge/themes/material/templates/.icons/material/speedometer-slow.svg +1 -0
  9471. docsforge/themes/material/templates/.icons/material/speedometer.svg +1 -0
  9472. docsforge/themes/material/templates/.icons/material/spellcheck.svg +1 -0
  9473. docsforge/themes/material/templates/.icons/material/sphere-off.svg +1 -0
  9474. docsforge/themes/material/templates/.icons/material/sphere.svg +1 -0
  9475. docsforge/themes/material/templates/.icons/material/spider-outline.svg +1 -0
  9476. docsforge/themes/material/templates/.icons/material/spider-thread.svg +1 -0
  9477. docsforge/themes/material/templates/.icons/material/spider-web.svg +1 -0
  9478. docsforge/themes/material/templates/.icons/material/spider.svg +1 -0
  9479. docsforge/themes/material/templates/.icons/material/spirit-level.svg +1 -0
  9480. docsforge/themes/material/templates/.icons/material/spoon-sugar.svg +1 -0
  9481. docsforge/themes/material/templates/.icons/material/spotify.svg +1 -0
  9482. docsforge/themes/material/templates/.icons/material/spotlight-beam.svg +1 -0
  9483. docsforge/themes/material/templates/.icons/material/spotlight.svg +1 -0
  9484. docsforge/themes/material/templates/.icons/material/spray-bottle.svg +1 -0
  9485. docsforge/themes/material/templates/.icons/material/spray.svg +1 -0
  9486. docsforge/themes/material/templates/.icons/material/sprinkler-fire.svg +1 -0
  9487. docsforge/themes/material/templates/.icons/material/sprinkler-variant.svg +1 -0
  9488. docsforge/themes/material/templates/.icons/material/sprinkler.svg +1 -0
  9489. docsforge/themes/material/templates/.icons/material/sprout-outline.svg +1 -0
  9490. docsforge/themes/material/templates/.icons/material/sprout.svg +1 -0
  9491. docsforge/themes/material/templates/.icons/material/square-circle-outline.svg +1 -0
  9492. docsforge/themes/material/templates/.icons/material/square-circle.svg +1 -0
  9493. docsforge/themes/material/templates/.icons/material/square-edit-outline.svg +1 -0
  9494. docsforge/themes/material/templates/.icons/material/square-medium-outline.svg +1 -0
  9495. docsforge/themes/material/templates/.icons/material/square-medium.svg +1 -0
  9496. docsforge/themes/material/templates/.icons/material/square-off-outline.svg +1 -0
  9497. docsforge/themes/material/templates/.icons/material/square-off.svg +1 -0
  9498. docsforge/themes/material/templates/.icons/material/square-opacity.svg +1 -0
  9499. docsforge/themes/material/templates/.icons/material/square-outline.svg +1 -0
  9500. docsforge/themes/material/templates/.icons/material/square-root-box.svg +1 -0
  9501. docsforge/themes/material/templates/.icons/material/square-root.svg +1 -0
  9502. docsforge/themes/material/templates/.icons/material/square-rounded-badge-outline.svg +1 -0
  9503. docsforge/themes/material/templates/.icons/material/square-rounded-badge.svg +1 -0
  9504. docsforge/themes/material/templates/.icons/material/square-rounded-outline.svg +1 -0
  9505. docsforge/themes/material/templates/.icons/material/square-rounded.svg +1 -0
  9506. docsforge/themes/material/templates/.icons/material/square-small.svg +1 -0
  9507. docsforge/themes/material/templates/.icons/material/square-wave.svg +1 -0
  9508. docsforge/themes/material/templates/.icons/material/square.svg +1 -0
  9509. docsforge/themes/material/templates/.icons/material/squeegee.svg +1 -0
  9510. docsforge/themes/material/templates/.icons/material/ssh.svg +1 -0
  9511. docsforge/themes/material/templates/.icons/material/stack-exchange.svg +1 -0
  9512. docsforge/themes/material/templates/.icons/material/stack-overflow.svg +1 -0
  9513. docsforge/themes/material/templates/.icons/material/stackpath.svg +1 -0
  9514. docsforge/themes/material/templates/.icons/material/stadium-outline.svg +1 -0
  9515. docsforge/themes/material/templates/.icons/material/stadium-variant.svg +1 -0
  9516. docsforge/themes/material/templates/.icons/material/stadium.svg +1 -0
  9517. docsforge/themes/material/templates/.icons/material/stairs-box.svg +1 -0
  9518. docsforge/themes/material/templates/.icons/material/stairs-down.svg +1 -0
  9519. docsforge/themes/material/templates/.icons/material/stairs-up.svg +1 -0
  9520. docsforge/themes/material/templates/.icons/material/stairs.svg +1 -0
  9521. docsforge/themes/material/templates/.icons/material/stamper.svg +1 -0
  9522. docsforge/themes/material/templates/.icons/material/standard-definition.svg +1 -0
  9523. docsforge/themes/material/templates/.icons/material/star-box-multiple-outline.svg +1 -0
  9524. docsforge/themes/material/templates/.icons/material/star-box-multiple.svg +1 -0
  9525. docsforge/themes/material/templates/.icons/material/star-box-outline.svg +1 -0
  9526. docsforge/themes/material/templates/.icons/material/star-box.svg +1 -0
  9527. docsforge/themes/material/templates/.icons/material/star-check-outline.svg +1 -0
  9528. docsforge/themes/material/templates/.icons/material/star-check.svg +1 -0
  9529. docsforge/themes/material/templates/.icons/material/star-circle-outline.svg +1 -0
  9530. docsforge/themes/material/templates/.icons/material/star-circle.svg +1 -0
  9531. docsforge/themes/material/templates/.icons/material/star-cog-outline.svg +1 -0
  9532. docsforge/themes/material/templates/.icons/material/star-cog.svg +1 -0
  9533. docsforge/themes/material/templates/.icons/material/star-crescent.svg +1 -0
  9534. docsforge/themes/material/templates/.icons/material/star-david.svg +1 -0
  9535. docsforge/themes/material/templates/.icons/material/star-face.svg +1 -0
  9536. docsforge/themes/material/templates/.icons/material/star-four-points-box-outline.svg +1 -0
  9537. docsforge/themes/material/templates/.icons/material/star-four-points-box.svg +1 -0
  9538. docsforge/themes/material/templates/.icons/material/star-four-points-circle-outline.svg +1 -0
  9539. docsforge/themes/material/templates/.icons/material/star-four-points-circle.svg +1 -0
  9540. docsforge/themes/material/templates/.icons/material/star-four-points-outline.svg +1 -0
  9541. docsforge/themes/material/templates/.icons/material/star-four-points-small.svg +1 -0
  9542. docsforge/themes/material/templates/.icons/material/star-four-points.svg +1 -0
  9543. docsforge/themes/material/templates/.icons/material/star-half-full.svg +1 -0
  9544. docsforge/themes/material/templates/.icons/material/star-half.svg +1 -0
  9545. docsforge/themes/material/templates/.icons/material/star-minus-outline.svg +1 -0
  9546. docsforge/themes/material/templates/.icons/material/star-minus.svg +1 -0
  9547. docsforge/themes/material/templates/.icons/material/star-off-outline.svg +1 -0
  9548. docsforge/themes/material/templates/.icons/material/star-off.svg +1 -0
  9549. docsforge/themes/material/templates/.icons/material/star-outline.svg +1 -0
  9550. docsforge/themes/material/templates/.icons/material/star-plus-outline.svg +1 -0
  9551. docsforge/themes/material/templates/.icons/material/star-plus.svg +1 -0
  9552. docsforge/themes/material/templates/.icons/material/star-remove-outline.svg +1 -0
  9553. docsforge/themes/material/templates/.icons/material/star-remove.svg +1 -0
  9554. docsforge/themes/material/templates/.icons/material/star-settings-outline.svg +1 -0
  9555. docsforge/themes/material/templates/.icons/material/star-settings.svg +1 -0
  9556. docsforge/themes/material/templates/.icons/material/star-shooting-outline.svg +1 -0
  9557. docsforge/themes/material/templates/.icons/material/star-shooting.svg +1 -0
  9558. docsforge/themes/material/templates/.icons/material/star-three-points-outline.svg +1 -0
  9559. docsforge/themes/material/templates/.icons/material/star-three-points.svg +1 -0
  9560. docsforge/themes/material/templates/.icons/material/star.svg +1 -0
  9561. docsforge/themes/material/templates/.icons/material/state-machine.svg +1 -0
  9562. docsforge/themes/material/templates/.icons/material/steam.svg +1 -0
  9563. docsforge/themes/material/templates/.icons/material/steering-off.svg +1 -0
  9564. docsforge/themes/material/templates/.icons/material/steering.svg +1 -0
  9565. docsforge/themes/material/templates/.icons/material/step-backward-2.svg +1 -0
  9566. docsforge/themes/material/templates/.icons/material/step-backward.svg +1 -0
  9567. docsforge/themes/material/templates/.icons/material/step-forward-2.svg +1 -0
  9568. docsforge/themes/material/templates/.icons/material/step-forward.svg +1 -0
  9569. docsforge/themes/material/templates/.icons/material/stethoscope.svg +1 -0
  9570. docsforge/themes/material/templates/.icons/material/sticker-alert-outline.svg +1 -0
  9571. docsforge/themes/material/templates/.icons/material/sticker-alert.svg +1 -0
  9572. docsforge/themes/material/templates/.icons/material/sticker-check-outline.svg +1 -0
  9573. docsforge/themes/material/templates/.icons/material/sticker-check.svg +1 -0
  9574. docsforge/themes/material/templates/.icons/material/sticker-circle-outline.svg +1 -0
  9575. docsforge/themes/material/templates/.icons/material/sticker-emoji.svg +1 -0
  9576. docsforge/themes/material/templates/.icons/material/sticker-minus-outline.svg +1 -0
  9577. docsforge/themes/material/templates/.icons/material/sticker-minus.svg +1 -0
  9578. docsforge/themes/material/templates/.icons/material/sticker-outline.svg +1 -0
  9579. docsforge/themes/material/templates/.icons/material/sticker-plus-outline.svg +1 -0
  9580. docsforge/themes/material/templates/.icons/material/sticker-plus.svg +1 -0
  9581. docsforge/themes/material/templates/.icons/material/sticker-remove-outline.svg +1 -0
  9582. docsforge/themes/material/templates/.icons/material/sticker-remove.svg +1 -0
  9583. docsforge/themes/material/templates/.icons/material/sticker-text-outline.svg +1 -0
  9584. docsforge/themes/material/templates/.icons/material/sticker-text.svg +1 -0
  9585. docsforge/themes/material/templates/.icons/material/sticker.svg +1 -0
  9586. docsforge/themes/material/templates/.icons/material/stocking.svg +1 -0
  9587. docsforge/themes/material/templates/.icons/material/stomach.svg +1 -0
  9588. docsforge/themes/material/templates/.icons/material/stool-outline.svg +1 -0
  9589. docsforge/themes/material/templates/.icons/material/stool.svg +1 -0
  9590. docsforge/themes/material/templates/.icons/material/stop-circle-outline.svg +1 -0
  9591. docsforge/themes/material/templates/.icons/material/stop-circle.svg +1 -0
  9592. docsforge/themes/material/templates/.icons/material/stop.svg +1 -0
  9593. docsforge/themes/material/templates/.icons/material/storage-tank-outline.svg +1 -0
  9594. docsforge/themes/material/templates/.icons/material/storage-tank.svg +1 -0
  9595. docsforge/themes/material/templates/.icons/material/store-24-hour.svg +1 -0
  9596. docsforge/themes/material/templates/.icons/material/store-alert-outline.svg +1 -0
  9597. docsforge/themes/material/templates/.icons/material/store-alert.svg +1 -0
  9598. docsforge/themes/material/templates/.icons/material/store-check-outline.svg +1 -0
  9599. docsforge/themes/material/templates/.icons/material/store-check.svg +1 -0
  9600. docsforge/themes/material/templates/.icons/material/store-clock-outline.svg +1 -0
  9601. docsforge/themes/material/templates/.icons/material/store-clock.svg +1 -0
  9602. docsforge/themes/material/templates/.icons/material/store-cog-outline.svg +1 -0
  9603. docsforge/themes/material/templates/.icons/material/store-cog.svg +1 -0
  9604. docsforge/themes/material/templates/.icons/material/store-edit-outline.svg +1 -0
  9605. docsforge/themes/material/templates/.icons/material/store-edit.svg +1 -0
  9606. docsforge/themes/material/templates/.icons/material/store-marker-outline.svg +1 -0
  9607. docsforge/themes/material/templates/.icons/material/store-marker.svg +1 -0
  9608. docsforge/themes/material/templates/.icons/material/store-minus-outline.svg +1 -0
  9609. docsforge/themes/material/templates/.icons/material/store-minus.svg +1 -0
  9610. docsforge/themes/material/templates/.icons/material/store-off-outline.svg +1 -0
  9611. docsforge/themes/material/templates/.icons/material/store-off.svg +1 -0
  9612. docsforge/themes/material/templates/.icons/material/store-outline.svg +1 -0
  9613. docsforge/themes/material/templates/.icons/material/store-plus-outline.svg +1 -0
  9614. docsforge/themes/material/templates/.icons/material/store-plus.svg +1 -0
  9615. docsforge/themes/material/templates/.icons/material/store-remove-outline.svg +1 -0
  9616. docsforge/themes/material/templates/.icons/material/store-remove.svg +1 -0
  9617. docsforge/themes/material/templates/.icons/material/store-search-outline.svg +1 -0
  9618. docsforge/themes/material/templates/.icons/material/store-search.svg +1 -0
  9619. docsforge/themes/material/templates/.icons/material/store-settings-outline.svg +1 -0
  9620. docsforge/themes/material/templates/.icons/material/store-settings.svg +1 -0
  9621. docsforge/themes/material/templates/.icons/material/store.svg +1 -0
  9622. docsforge/themes/material/templates/.icons/material/storefront-check-outline.svg +1 -0
  9623. docsforge/themes/material/templates/.icons/material/storefront-check.svg +1 -0
  9624. docsforge/themes/material/templates/.icons/material/storefront-edit-outline.svg +1 -0
  9625. docsforge/themes/material/templates/.icons/material/storefront-edit.svg +1 -0
  9626. docsforge/themes/material/templates/.icons/material/storefront-minus-outline.svg +1 -0
  9627. docsforge/themes/material/templates/.icons/material/storefront-minus.svg +1 -0
  9628. docsforge/themes/material/templates/.icons/material/storefront-outline.svg +1 -0
  9629. docsforge/themes/material/templates/.icons/material/storefront-plus-outline.svg +1 -0
  9630. docsforge/themes/material/templates/.icons/material/storefront-plus.svg +1 -0
  9631. docsforge/themes/material/templates/.icons/material/storefront-remove-outline.svg +1 -0
  9632. docsforge/themes/material/templates/.icons/material/storefront-remove.svg +1 -0
  9633. docsforge/themes/material/templates/.icons/material/storefront.svg +1 -0
  9634. docsforge/themes/material/templates/.icons/material/stove.svg +1 -0
  9635. docsforge/themes/material/templates/.icons/material/strategy.svg +1 -0
  9636. docsforge/themes/material/templates/.icons/material/stretch-to-page-outline.svg +1 -0
  9637. docsforge/themes/material/templates/.icons/material/stretch-to-page.svg +1 -0
  9638. docsforge/themes/material/templates/.icons/material/string-lights-off.svg +1 -0
  9639. docsforge/themes/material/templates/.icons/material/string-lights.svg +1 -0
  9640. docsforge/themes/material/templates/.icons/material/subdirectory-arrow-left.svg +1 -0
  9641. docsforge/themes/material/templates/.icons/material/subdirectory-arrow-right.svg +1 -0
  9642. docsforge/themes/material/templates/.icons/material/submarine.svg +1 -0
  9643. docsforge/themes/material/templates/.icons/material/subtitles-outline.svg +1 -0
  9644. docsforge/themes/material/templates/.icons/material/subtitles.svg +1 -0
  9645. docsforge/themes/material/templates/.icons/material/subway-alert-variant.svg +1 -0
  9646. docsforge/themes/material/templates/.icons/material/subway-variant.svg +1 -0
  9647. docsforge/themes/material/templates/.icons/material/subway.svg +1 -0
  9648. docsforge/themes/material/templates/.icons/material/summit.svg +1 -0
  9649. docsforge/themes/material/templates/.icons/material/sun-angle-outline.svg +1 -0
  9650. docsforge/themes/material/templates/.icons/material/sun-angle.svg +1 -0
  9651. docsforge/themes/material/templates/.icons/material/sun-clock-outline.svg +1 -0
  9652. docsforge/themes/material/templates/.icons/material/sun-clock.svg +1 -0
  9653. docsforge/themes/material/templates/.icons/material/sun-compass.svg +1 -0
  9654. docsforge/themes/material/templates/.icons/material/sun-snowflake-variant.svg +1 -0
  9655. docsforge/themes/material/templates/.icons/material/sun-snowflake.svg +1 -0
  9656. docsforge/themes/material/templates/.icons/material/sun-thermometer-outline.svg +1 -0
  9657. docsforge/themes/material/templates/.icons/material/sun-thermometer.svg +1 -0
  9658. docsforge/themes/material/templates/.icons/material/sun-wireless-outline.svg +1 -0
  9659. docsforge/themes/material/templates/.icons/material/sun-wireless.svg +1 -0
  9660. docsforge/themes/material/templates/.icons/material/sunglasses.svg +1 -0
  9661. docsforge/themes/material/templates/.icons/material/surfing.svg +1 -0
  9662. docsforge/themes/material/templates/.icons/material/surround-sound-2-0.svg +1 -0
  9663. docsforge/themes/material/templates/.icons/material/surround-sound-2-1.svg +1 -0
  9664. docsforge/themes/material/templates/.icons/material/surround-sound-3-1.svg +1 -0
  9665. docsforge/themes/material/templates/.icons/material/surround-sound-5-1-2.svg +1 -0
  9666. docsforge/themes/material/templates/.icons/material/surround-sound-5-1.svg +1 -0
  9667. docsforge/themes/material/templates/.icons/material/surround-sound-7-1.svg +1 -0
  9668. docsforge/themes/material/templates/.icons/material/surround-sound.svg +1 -0
  9669. docsforge/themes/material/templates/.icons/material/svg.svg +1 -0
  9670. docsforge/themes/material/templates/.icons/material/swap-horizontal-bold.svg +1 -0
  9671. docsforge/themes/material/templates/.icons/material/swap-horizontal-circle-outline.svg +1 -0
  9672. docsforge/themes/material/templates/.icons/material/swap-horizontal-circle.svg +1 -0
  9673. docsforge/themes/material/templates/.icons/material/swap-horizontal-hidden.svg +1 -0
  9674. docsforge/themes/material/templates/.icons/material/swap-horizontal-variant.svg +1 -0
  9675. docsforge/themes/material/templates/.icons/material/swap-horizontal.svg +1 -0
  9676. docsforge/themes/material/templates/.icons/material/swap-vertical-bold.svg +1 -0
  9677. docsforge/themes/material/templates/.icons/material/swap-vertical-circle-outline.svg +1 -0
  9678. docsforge/themes/material/templates/.icons/material/swap-vertical-circle.svg +1 -0
  9679. docsforge/themes/material/templates/.icons/material/swap-vertical-variant.svg +1 -0
  9680. docsforge/themes/material/templates/.icons/material/swap-vertical.svg +1 -0
  9681. docsforge/themes/material/templates/.icons/material/swim.svg +1 -0
  9682. docsforge/themes/material/templates/.icons/material/switch.svg +1 -0
  9683. docsforge/themes/material/templates/.icons/material/sword-cross.svg +1 -0
  9684. docsforge/themes/material/templates/.icons/material/sword.svg +1 -0
  9685. docsforge/themes/material/templates/.icons/material/syllabary-hangul.svg +1 -0
  9686. docsforge/themes/material/templates/.icons/material/syllabary-hiragana.svg +1 -0
  9687. docsforge/themes/material/templates/.icons/material/syllabary-katakana-halfwidth.svg +1 -0
  9688. docsforge/themes/material/templates/.icons/material/syllabary-katakana.svg +1 -0
  9689. docsforge/themes/material/templates/.icons/material/symbol.svg +1 -0
  9690. docsforge/themes/material/templates/.icons/material/symfony.svg +1 -0
  9691. docsforge/themes/material/templates/.icons/material/synagogue-outline.svg +1 -0
  9692. docsforge/themes/material/templates/.icons/material/synagogue.svg +1 -0
  9693. docsforge/themes/material/templates/.icons/material/sync-alert.svg +1 -0
  9694. docsforge/themes/material/templates/.icons/material/sync-circle.svg +1 -0
  9695. docsforge/themes/material/templates/.icons/material/sync-off.svg +1 -0
  9696. docsforge/themes/material/templates/.icons/material/sync.svg +1 -0
  9697. docsforge/themes/material/templates/.icons/material/tab-minus.svg +1 -0
  9698. docsforge/themes/material/templates/.icons/material/tab-plus.svg +1 -0
  9699. docsforge/themes/material/templates/.icons/material/tab-remove.svg +1 -0
  9700. docsforge/themes/material/templates/.icons/material/tab-search.svg +1 -0
  9701. docsforge/themes/material/templates/.icons/material/tab-unselected.svg +1 -0
  9702. docsforge/themes/material/templates/.icons/material/tab.svg +1 -0
  9703. docsforge/themes/material/templates/.icons/material/table-account.svg +1 -0
  9704. docsforge/themes/material/templates/.icons/material/table-alert.svg +1 -0
  9705. docsforge/themes/material/templates/.icons/material/table-arrow-down.svg +1 -0
  9706. docsforge/themes/material/templates/.icons/material/table-arrow-left.svg +1 -0
  9707. docsforge/themes/material/templates/.icons/material/table-arrow-right.svg +1 -0
  9708. docsforge/themes/material/templates/.icons/material/table-arrow-up.svg +1 -0
  9709. docsforge/themes/material/templates/.icons/material/table-border.svg +1 -0
  9710. docsforge/themes/material/templates/.icons/material/table-cancel.svg +1 -0
  9711. docsforge/themes/material/templates/.icons/material/table-chair.svg +1 -0
  9712. docsforge/themes/material/templates/.icons/material/table-check.svg +1 -0
  9713. docsforge/themes/material/templates/.icons/material/table-clock.svg +1 -0
  9714. docsforge/themes/material/templates/.icons/material/table-cog.svg +1 -0
  9715. docsforge/themes/material/templates/.icons/material/table-column-plus-after.svg +1 -0
  9716. docsforge/themes/material/templates/.icons/material/table-column-plus-before.svg +1 -0
  9717. docsforge/themes/material/templates/.icons/material/table-column-remove.svg +1 -0
  9718. docsforge/themes/material/templates/.icons/material/table-column-width.svg +1 -0
  9719. docsforge/themes/material/templates/.icons/material/table-column.svg +1 -0
  9720. docsforge/themes/material/templates/.icons/material/table-edit.svg +1 -0
  9721. docsforge/themes/material/templates/.icons/material/table-eye-off.svg +1 -0
  9722. docsforge/themes/material/templates/.icons/material/table-eye.svg +1 -0
  9723. docsforge/themes/material/templates/.icons/material/table-filter.svg +1 -0
  9724. docsforge/themes/material/templates/.icons/material/table-furniture.svg +1 -0
  9725. docsforge/themes/material/templates/.icons/material/table-headers-eye-off.svg +1 -0
  9726. docsforge/themes/material/templates/.icons/material/table-headers-eye.svg +1 -0
  9727. docsforge/themes/material/templates/.icons/material/table-heart.svg +1 -0
  9728. docsforge/themes/material/templates/.icons/material/table-key.svg +1 -0
  9729. docsforge/themes/material/templates/.icons/material/table-large-plus.svg +1 -0
  9730. docsforge/themes/material/templates/.icons/material/table-large-remove.svg +1 -0
  9731. docsforge/themes/material/templates/.icons/material/table-large.svg +1 -0
  9732. docsforge/themes/material/templates/.icons/material/table-lock.svg +1 -0
  9733. docsforge/themes/material/templates/.icons/material/table-merge-cells.svg +1 -0
  9734. docsforge/themes/material/templates/.icons/material/table-minus.svg +1 -0
  9735. docsforge/themes/material/templates/.icons/material/table-multiple.svg +1 -0
  9736. docsforge/themes/material/templates/.icons/material/table-network.svg +1 -0
  9737. docsforge/themes/material/templates/.icons/material/table-of-contents.svg +1 -0
  9738. docsforge/themes/material/templates/.icons/material/table-off.svg +1 -0
  9739. docsforge/themes/material/templates/.icons/material/table-picnic.svg +1 -0
  9740. docsforge/themes/material/templates/.icons/material/table-pivot.svg +1 -0
  9741. docsforge/themes/material/templates/.icons/material/table-plus.svg +1 -0
  9742. docsforge/themes/material/templates/.icons/material/table-question.svg +1 -0
  9743. docsforge/themes/material/templates/.icons/material/table-refresh.svg +1 -0
  9744. docsforge/themes/material/templates/.icons/material/table-remove.svg +1 -0
  9745. docsforge/themes/material/templates/.icons/material/table-row-height.svg +1 -0
  9746. docsforge/themes/material/templates/.icons/material/table-row-plus-after.svg +1 -0
  9747. docsforge/themes/material/templates/.icons/material/table-row-plus-before.svg +1 -0
  9748. docsforge/themes/material/templates/.icons/material/table-row-remove.svg +1 -0
  9749. docsforge/themes/material/templates/.icons/material/table-row.svg +1 -0
  9750. docsforge/themes/material/templates/.icons/material/table-search.svg +1 -0
  9751. docsforge/themes/material/templates/.icons/material/table-settings.svg +1 -0
  9752. docsforge/themes/material/templates/.icons/material/table-split-cell.svg +1 -0
  9753. docsforge/themes/material/templates/.icons/material/table-star.svg +1 -0
  9754. docsforge/themes/material/templates/.icons/material/table-sync.svg +1 -0
  9755. docsforge/themes/material/templates/.icons/material/table-tennis.svg +1 -0
  9756. docsforge/themes/material/templates/.icons/material/table.svg +1 -0
  9757. docsforge/themes/material/templates/.icons/material/tablet-cellphone.svg +1 -0
  9758. docsforge/themes/material/templates/.icons/material/tablet-dashboard.svg +1 -0
  9759. docsforge/themes/material/templates/.icons/material/tablet.svg +1 -0
  9760. docsforge/themes/material/templates/.icons/material/taco.svg +1 -0
  9761. docsforge/themes/material/templates/.icons/material/tag-arrow-down-outline.svg +1 -0
  9762. docsforge/themes/material/templates/.icons/material/tag-arrow-down.svg +1 -0
  9763. docsforge/themes/material/templates/.icons/material/tag-arrow-left-outline.svg +1 -0
  9764. docsforge/themes/material/templates/.icons/material/tag-arrow-left.svg +1 -0
  9765. docsforge/themes/material/templates/.icons/material/tag-arrow-right-outline.svg +1 -0
  9766. docsforge/themes/material/templates/.icons/material/tag-arrow-right.svg +1 -0
  9767. docsforge/themes/material/templates/.icons/material/tag-arrow-up-outline.svg +1 -0
  9768. docsforge/themes/material/templates/.icons/material/tag-arrow-up.svg +1 -0
  9769. docsforge/themes/material/templates/.icons/material/tag-check-outline.svg +1 -0
  9770. docsforge/themes/material/templates/.icons/material/tag-check.svg +1 -0
  9771. docsforge/themes/material/templates/.icons/material/tag-edit-outline.svg +1 -0
  9772. docsforge/themes/material/templates/.icons/material/tag-edit.svg +1 -0
  9773. docsforge/themes/material/templates/.icons/material/tag-faces.svg +1 -0
  9774. docsforge/themes/material/templates/.icons/material/tag-heart-outline.svg +1 -0
  9775. docsforge/themes/material/templates/.icons/material/tag-heart.svg +1 -0
  9776. docsforge/themes/material/templates/.icons/material/tag-hidden.svg +1 -0
  9777. docsforge/themes/material/templates/.icons/material/tag-minus-outline.svg +1 -0
  9778. docsforge/themes/material/templates/.icons/material/tag-minus.svg +1 -0
  9779. docsforge/themes/material/templates/.icons/material/tag-multiple-outline.svg +1 -0
  9780. docsforge/themes/material/templates/.icons/material/tag-multiple.svg +1 -0
  9781. docsforge/themes/material/templates/.icons/material/tag-off-outline.svg +1 -0
  9782. docsforge/themes/material/templates/.icons/material/tag-off.svg +1 -0
  9783. docsforge/themes/material/templates/.icons/material/tag-outline.svg +1 -0
  9784. docsforge/themes/material/templates/.icons/material/tag-plus-outline.svg +1 -0
  9785. docsforge/themes/material/templates/.icons/material/tag-plus.svg +1 -0
  9786. docsforge/themes/material/templates/.icons/material/tag-remove-outline.svg +1 -0
  9787. docsforge/themes/material/templates/.icons/material/tag-remove.svg +1 -0
  9788. docsforge/themes/material/templates/.icons/material/tag-search-outline.svg +1 -0
  9789. docsforge/themes/material/templates/.icons/material/tag-search.svg +1 -0
  9790. docsforge/themes/material/templates/.icons/material/tag-text-outline.svg +1 -0
  9791. docsforge/themes/material/templates/.icons/material/tag-text.svg +1 -0
  9792. docsforge/themes/material/templates/.icons/material/tag.svg +1 -0
  9793. docsforge/themes/material/templates/.icons/material/tailwind.svg +1 -0
  9794. docsforge/themes/material/templates/.icons/material/tally-mark-1.svg +1 -0
  9795. docsforge/themes/material/templates/.icons/material/tally-mark-2.svg +1 -0
  9796. docsforge/themes/material/templates/.icons/material/tally-mark-3.svg +1 -0
  9797. docsforge/themes/material/templates/.icons/material/tally-mark-4.svg +1 -0
  9798. docsforge/themes/material/templates/.icons/material/tally-mark-5.svg +1 -0
  9799. docsforge/themes/material/templates/.icons/material/tangram.svg +1 -0
  9800. docsforge/themes/material/templates/.icons/material/tank.svg +1 -0
  9801. docsforge/themes/material/templates/.icons/material/tanker-truck.svg +1 -0
  9802. docsforge/themes/material/templates/.icons/material/tape-drive.svg +1 -0
  9803. docsforge/themes/material/templates/.icons/material/tape-measure.svg +1 -0
  9804. docsforge/themes/material/templates/.icons/material/target-account.svg +1 -0
  9805. docsforge/themes/material/templates/.icons/material/target-variant.svg +1 -0
  9806. docsforge/themes/material/templates/.icons/material/target.svg +1 -0
  9807. docsforge/themes/material/templates/.icons/material/taxi.svg +1 -0
  9808. docsforge/themes/material/templates/.icons/material/tea-outline.svg +1 -0
  9809. docsforge/themes/material/templates/.icons/material/tea.svg +1 -0
  9810. docsforge/themes/material/templates/.icons/material/teamviewer.svg +1 -0
  9811. docsforge/themes/material/templates/.icons/material/teddy-bear.svg +1 -0
  9812. docsforge/themes/material/templates/.icons/material/telescope.svg +1 -0
  9813. docsforge/themes/material/templates/.icons/material/television-ambient-light.svg +1 -0
  9814. docsforge/themes/material/templates/.icons/material/television-box.svg +1 -0
  9815. docsforge/themes/material/templates/.icons/material/television-classic-off.svg +1 -0
  9816. docsforge/themes/material/templates/.icons/material/television-classic.svg +1 -0
  9817. docsforge/themes/material/templates/.icons/material/television-guide.svg +1 -0
  9818. docsforge/themes/material/templates/.icons/material/television-off.svg +1 -0
  9819. docsforge/themes/material/templates/.icons/material/television-pause.svg +1 -0
  9820. docsforge/themes/material/templates/.icons/material/television-play.svg +1 -0
  9821. docsforge/themes/material/templates/.icons/material/television-shimmer.svg +1 -0
  9822. docsforge/themes/material/templates/.icons/material/television-speaker-off.svg +1 -0
  9823. docsforge/themes/material/templates/.icons/material/television-speaker.svg +1 -0
  9824. docsforge/themes/material/templates/.icons/material/television-stop.svg +1 -0
  9825. docsforge/themes/material/templates/.icons/material/television.svg +1 -0
  9826. docsforge/themes/material/templates/.icons/material/temperature-celsius.svg +1 -0
  9827. docsforge/themes/material/templates/.icons/material/temperature-fahrenheit.svg +1 -0
  9828. docsforge/themes/material/templates/.icons/material/temperature-kelvin.svg +1 -0
  9829. docsforge/themes/material/templates/.icons/material/temple-buddhist-outline.svg +1 -0
  9830. docsforge/themes/material/templates/.icons/material/temple-buddhist.svg +1 -0
  9831. docsforge/themes/material/templates/.icons/material/temple-hindu-outline.svg +1 -0
  9832. docsforge/themes/material/templates/.icons/material/temple-hindu.svg +1 -0
  9833. docsforge/themes/material/templates/.icons/material/tennis-ball-outline.svg +1 -0
  9834. docsforge/themes/material/templates/.icons/material/tennis-ball.svg +1 -0
  9835. docsforge/themes/material/templates/.icons/material/tennis.svg +1 -0
  9836. docsforge/themes/material/templates/.icons/material/tent.svg +1 -0
  9837. docsforge/themes/material/templates/.icons/material/terraform.svg +1 -0
  9838. docsforge/themes/material/templates/.icons/material/terrain.svg +1 -0
  9839. docsforge/themes/material/templates/.icons/material/test-tube-empty.svg +1 -0
  9840. docsforge/themes/material/templates/.icons/material/test-tube-off.svg +1 -0
  9841. docsforge/themes/material/templates/.icons/material/test-tube.svg +1 -0
  9842. docsforge/themes/material/templates/.icons/material/text-account.svg +1 -0
  9843. docsforge/themes/material/templates/.icons/material/text-box-check-outline.svg +1 -0
  9844. docsforge/themes/material/templates/.icons/material/text-box-check.svg +1 -0
  9845. docsforge/themes/material/templates/.icons/material/text-box-edit-outline.svg +1 -0
  9846. docsforge/themes/material/templates/.icons/material/text-box-edit.svg +1 -0
  9847. docsforge/themes/material/templates/.icons/material/text-box-minus-outline.svg +1 -0
  9848. docsforge/themes/material/templates/.icons/material/text-box-minus.svg +1 -0
  9849. docsforge/themes/material/templates/.icons/material/text-box-multiple-outline.svg +1 -0
  9850. docsforge/themes/material/templates/.icons/material/text-box-multiple.svg +1 -0
  9851. docsforge/themes/material/templates/.icons/material/text-box-outline.svg +1 -0
  9852. docsforge/themes/material/templates/.icons/material/text-box-plus-outline.svg +1 -0
  9853. docsforge/themes/material/templates/.icons/material/text-box-plus.svg +1 -0
  9854. docsforge/themes/material/templates/.icons/material/text-box-remove-outline.svg +1 -0
  9855. docsforge/themes/material/templates/.icons/material/text-box-remove.svg +1 -0
  9856. docsforge/themes/material/templates/.icons/material/text-box-search-outline.svg +1 -0
  9857. docsforge/themes/material/templates/.icons/material/text-box-search.svg +1 -0
  9858. docsforge/themes/material/templates/.icons/material/text-box.svg +1 -0
  9859. docsforge/themes/material/templates/.icons/material/text-long.svg +1 -0
  9860. docsforge/themes/material/templates/.icons/material/text-recognition.svg +1 -0
  9861. docsforge/themes/material/templates/.icons/material/text-search-variant.svg +1 -0
  9862. docsforge/themes/material/templates/.icons/material/text-search.svg +1 -0
  9863. docsforge/themes/material/templates/.icons/material/text-shadow.svg +1 -0
  9864. docsforge/themes/material/templates/.icons/material/text-short.svg +1 -0
  9865. docsforge/themes/material/templates/.icons/material/text.svg +1 -0
  9866. docsforge/themes/material/templates/.icons/material/texture-box.svg +1 -0
  9867. docsforge/themes/material/templates/.icons/material/texture.svg +1 -0
  9868. docsforge/themes/material/templates/.icons/material/theater.svg +1 -0
  9869. docsforge/themes/material/templates/.icons/material/theme-light-dark.svg +1 -0
  9870. docsforge/themes/material/templates/.icons/material/thermometer-alert.svg +1 -0
  9871. docsforge/themes/material/templates/.icons/material/thermometer-auto.svg +1 -0
  9872. docsforge/themes/material/templates/.icons/material/thermometer-bluetooth.svg +1 -0
  9873. docsforge/themes/material/templates/.icons/material/thermometer-check.svg +1 -0
  9874. docsforge/themes/material/templates/.icons/material/thermometer-chevron-down.svg +1 -0
  9875. docsforge/themes/material/templates/.icons/material/thermometer-chevron-up.svg +1 -0
  9876. docsforge/themes/material/templates/.icons/material/thermometer-high.svg +1 -0
  9877. docsforge/themes/material/templates/.icons/material/thermometer-lines.svg +1 -0
  9878. docsforge/themes/material/templates/.icons/material/thermometer-low.svg +1 -0
  9879. docsforge/themes/material/templates/.icons/material/thermometer-minus.svg +1 -0
  9880. docsforge/themes/material/templates/.icons/material/thermometer-off.svg +1 -0
  9881. docsforge/themes/material/templates/.icons/material/thermometer-plus.svg +1 -0
  9882. docsforge/themes/material/templates/.icons/material/thermometer-probe-off.svg +1 -0
  9883. docsforge/themes/material/templates/.icons/material/thermometer-probe.svg +1 -0
  9884. docsforge/themes/material/templates/.icons/material/thermometer-water.svg +1 -0
  9885. docsforge/themes/material/templates/.icons/material/thermometer.svg +1 -0
  9886. docsforge/themes/material/templates/.icons/material/thermostat-auto.svg +1 -0
  9887. docsforge/themes/material/templates/.icons/material/thermostat-box-auto.svg +1 -0
  9888. docsforge/themes/material/templates/.icons/material/thermostat-box.svg +1 -0
  9889. docsforge/themes/material/templates/.icons/material/thermostat-cog.svg +1 -0
  9890. docsforge/themes/material/templates/.icons/material/thermostat.svg +1 -0
  9891. docsforge/themes/material/templates/.icons/material/thought-bubble-outline.svg +1 -0
  9892. docsforge/themes/material/templates/.icons/material/thought-bubble.svg +1 -0
  9893. docsforge/themes/material/templates/.icons/material/thumb-down-outline.svg +1 -0
  9894. docsforge/themes/material/templates/.icons/material/thumb-down.svg +1 -0
  9895. docsforge/themes/material/templates/.icons/material/thumb-up-outline.svg +1 -0
  9896. docsforge/themes/material/templates/.icons/material/thumb-up.svg +1 -0
  9897. docsforge/themes/material/templates/.icons/material/thumbs-up-down-outline.svg +1 -0
  9898. docsforge/themes/material/templates/.icons/material/thumbs-up-down.svg +1 -0
  9899. docsforge/themes/material/templates/.icons/material/ticket-account.svg +1 -0
  9900. docsforge/themes/material/templates/.icons/material/ticket-confirmation-outline.svg +1 -0
  9901. docsforge/themes/material/templates/.icons/material/ticket-confirmation.svg +1 -0
  9902. docsforge/themes/material/templates/.icons/material/ticket-outline.svg +1 -0
  9903. docsforge/themes/material/templates/.icons/material/ticket-percent-outline.svg +1 -0
  9904. docsforge/themes/material/templates/.icons/material/ticket-percent.svg +1 -0
  9905. docsforge/themes/material/templates/.icons/material/ticket.svg +1 -0
  9906. docsforge/themes/material/templates/.icons/material/tie.svg +1 -0
  9907. docsforge/themes/material/templates/.icons/material/tilde-off.svg +1 -0
  9908. docsforge/themes/material/templates/.icons/material/tilde.svg +1 -0
  9909. docsforge/themes/material/templates/.icons/material/timelapse.svg +1 -0
  9910. docsforge/themes/material/templates/.icons/material/timeline-alert-outline.svg +1 -0
  9911. docsforge/themes/material/templates/.icons/material/timeline-alert.svg +1 -0
  9912. docsforge/themes/material/templates/.icons/material/timeline-check-outline.svg +1 -0
  9913. docsforge/themes/material/templates/.icons/material/timeline-check.svg +1 -0
  9914. docsforge/themes/material/templates/.icons/material/timeline-clock-outline.svg +1 -0
  9915. docsforge/themes/material/templates/.icons/material/timeline-clock.svg +1 -0
  9916. docsforge/themes/material/templates/.icons/material/timeline-minus-outline.svg +1 -0
  9917. docsforge/themes/material/templates/.icons/material/timeline-minus.svg +1 -0
  9918. docsforge/themes/material/templates/.icons/material/timeline-outline.svg +1 -0
  9919. docsforge/themes/material/templates/.icons/material/timeline-plus-outline.svg +1 -0
  9920. docsforge/themes/material/templates/.icons/material/timeline-plus.svg +1 -0
  9921. docsforge/themes/material/templates/.icons/material/timeline-question-outline.svg +1 -0
  9922. docsforge/themes/material/templates/.icons/material/timeline-question.svg +1 -0
  9923. docsforge/themes/material/templates/.icons/material/timeline-remove-outline.svg +1 -0
  9924. docsforge/themes/material/templates/.icons/material/timeline-remove.svg +1 -0
  9925. docsforge/themes/material/templates/.icons/material/timeline-text-outline.svg +1 -0
  9926. docsforge/themes/material/templates/.icons/material/timeline-text.svg +1 -0
  9927. docsforge/themes/material/templates/.icons/material/timeline.svg +1 -0
  9928. docsforge/themes/material/templates/.icons/material/timer-10.svg +1 -0
  9929. docsforge/themes/material/templates/.icons/material/timer-3.svg +1 -0
  9930. docsforge/themes/material/templates/.icons/material/timer-alert-outline.svg +1 -0
  9931. docsforge/themes/material/templates/.icons/material/timer-alert.svg +1 -0
  9932. docsforge/themes/material/templates/.icons/material/timer-cancel-outline.svg +1 -0
  9933. docsforge/themes/material/templates/.icons/material/timer-cancel.svg +1 -0
  9934. docsforge/themes/material/templates/.icons/material/timer-check-outline.svg +1 -0
  9935. docsforge/themes/material/templates/.icons/material/timer-check.svg +1 -0
  9936. docsforge/themes/material/templates/.icons/material/timer-cog-outline.svg +1 -0
  9937. docsforge/themes/material/templates/.icons/material/timer-cog.svg +1 -0
  9938. docsforge/themes/material/templates/.icons/material/timer-edit-outline.svg +1 -0
  9939. docsforge/themes/material/templates/.icons/material/timer-edit.svg +1 -0
  9940. docsforge/themes/material/templates/.icons/material/timer-lock-open-outline.svg +1 -0
  9941. docsforge/themes/material/templates/.icons/material/timer-lock-open.svg +1 -0
  9942. docsforge/themes/material/templates/.icons/material/timer-lock-outline.svg +1 -0
  9943. docsforge/themes/material/templates/.icons/material/timer-lock.svg +1 -0
  9944. docsforge/themes/material/templates/.icons/material/timer-marker-outline.svg +1 -0
  9945. docsforge/themes/material/templates/.icons/material/timer-marker.svg +1 -0
  9946. docsforge/themes/material/templates/.icons/material/timer-minus-outline.svg +1 -0
  9947. docsforge/themes/material/templates/.icons/material/timer-minus.svg +1 -0
  9948. docsforge/themes/material/templates/.icons/material/timer-music-outline.svg +1 -0
  9949. docsforge/themes/material/templates/.icons/material/timer-music.svg +1 -0
  9950. docsforge/themes/material/templates/.icons/material/timer-off-outline.svg +1 -0
  9951. docsforge/themes/material/templates/.icons/material/timer-off.svg +1 -0
  9952. docsforge/themes/material/templates/.icons/material/timer-outline.svg +1 -0
  9953. docsforge/themes/material/templates/.icons/material/timer-pause-outline.svg +1 -0
  9954. docsforge/themes/material/templates/.icons/material/timer-pause.svg +1 -0
  9955. docsforge/themes/material/templates/.icons/material/timer-play-outline.svg +1 -0
  9956. docsforge/themes/material/templates/.icons/material/timer-play.svg +1 -0
  9957. docsforge/themes/material/templates/.icons/material/timer-plus-outline.svg +1 -0
  9958. docsforge/themes/material/templates/.icons/material/timer-plus.svg +1 -0
  9959. docsforge/themes/material/templates/.icons/material/timer-refresh-outline.svg +1 -0
  9960. docsforge/themes/material/templates/.icons/material/timer-refresh.svg +1 -0
  9961. docsforge/themes/material/templates/.icons/material/timer-remove-outline.svg +1 -0
  9962. docsforge/themes/material/templates/.icons/material/timer-remove.svg +1 -0
  9963. docsforge/themes/material/templates/.icons/material/timer-sand-complete.svg +1 -0
  9964. docsforge/themes/material/templates/.icons/material/timer-sand-empty.svg +1 -0
  9965. docsforge/themes/material/templates/.icons/material/timer-sand-full.svg +1 -0
  9966. docsforge/themes/material/templates/.icons/material/timer-sand-paused.svg +1 -0
  9967. docsforge/themes/material/templates/.icons/material/timer-sand.svg +1 -0
  9968. docsforge/themes/material/templates/.icons/material/timer-settings-outline.svg +1 -0
  9969. docsforge/themes/material/templates/.icons/material/timer-settings.svg +1 -0
  9970. docsforge/themes/material/templates/.icons/material/timer-star-outline.svg +1 -0
  9971. docsforge/themes/material/templates/.icons/material/timer-star.svg +1 -0
  9972. docsforge/themes/material/templates/.icons/material/timer-stop-outline.svg +1 -0
  9973. docsforge/themes/material/templates/.icons/material/timer-stop.svg +1 -0
  9974. docsforge/themes/material/templates/.icons/material/timer-sync-outline.svg +1 -0
  9975. docsforge/themes/material/templates/.icons/material/timer-sync.svg +1 -0
  9976. docsforge/themes/material/templates/.icons/material/timer.svg +1 -0
  9977. docsforge/themes/material/templates/.icons/material/timetable.svg +1 -0
  9978. docsforge/themes/material/templates/.icons/material/tire.svg +1 -0
  9979. docsforge/themes/material/templates/.icons/material/toaster-off.svg +1 -0
  9980. docsforge/themes/material/templates/.icons/material/toaster-oven.svg +1 -0
  9981. docsforge/themes/material/templates/.icons/material/toaster.svg +1 -0
  9982. docsforge/themes/material/templates/.icons/material/toggle-switch-off-outline.svg +1 -0
  9983. docsforge/themes/material/templates/.icons/material/toggle-switch-off.svg +1 -0
  9984. docsforge/themes/material/templates/.icons/material/toggle-switch-outline.svg +1 -0
  9985. docsforge/themes/material/templates/.icons/material/toggle-switch-variant-off.svg +1 -0
  9986. docsforge/themes/material/templates/.icons/material/toggle-switch-variant.svg +1 -0
  9987. docsforge/themes/material/templates/.icons/material/toggle-switch.svg +1 -0
  9988. docsforge/themes/material/templates/.icons/material/toilet.svg +1 -0
  9989. docsforge/themes/material/templates/.icons/material/toolbox-outline.svg +1 -0
  9990. docsforge/themes/material/templates/.icons/material/toolbox.svg +1 -0
  9991. docsforge/themes/material/templates/.icons/material/tools.svg +1 -0
  9992. docsforge/themes/material/templates/.icons/material/tooltip-account.svg +1 -0
  9993. docsforge/themes/material/templates/.icons/material/tooltip-cellphone.svg +1 -0
  9994. docsforge/themes/material/templates/.icons/material/tooltip-check-outline.svg +1 -0
  9995. docsforge/themes/material/templates/.icons/material/tooltip-check.svg +1 -0
  9996. docsforge/themes/material/templates/.icons/material/tooltip-edit-outline.svg +1 -0
  9997. docsforge/themes/material/templates/.icons/material/tooltip-edit.svg +1 -0
  9998. docsforge/themes/material/templates/.icons/material/tooltip-image-outline.svg +1 -0
  9999. docsforge/themes/material/templates/.icons/material/tooltip-image.svg +1 -0
  10000. docsforge/themes/material/templates/.icons/material/tooltip-minus-outline.svg +1 -0
  10001. docsforge/themes/material/templates/.icons/material/tooltip-minus.svg +1 -0
  10002. docsforge/themes/material/templates/.icons/material/tooltip-outline.svg +1 -0
  10003. docsforge/themes/material/templates/.icons/material/tooltip-plus-outline.svg +1 -0
  10004. docsforge/themes/material/templates/.icons/material/tooltip-plus.svg +1 -0
  10005. docsforge/themes/material/templates/.icons/material/tooltip-question-outline.svg +1 -0
  10006. docsforge/themes/material/templates/.icons/material/tooltip-question.svg +1 -0
  10007. docsforge/themes/material/templates/.icons/material/tooltip-remove-outline.svg +1 -0
  10008. docsforge/themes/material/templates/.icons/material/tooltip-remove.svg +1 -0
  10009. docsforge/themes/material/templates/.icons/material/tooltip-text-outline.svg +1 -0
  10010. docsforge/themes/material/templates/.icons/material/tooltip-text.svg +1 -0
  10011. docsforge/themes/material/templates/.icons/material/tooltip.svg +1 -0
  10012. docsforge/themes/material/templates/.icons/material/tooth-outline.svg +1 -0
  10013. docsforge/themes/material/templates/.icons/material/tooth.svg +1 -0
  10014. docsforge/themes/material/templates/.icons/material/toothbrush-electric.svg +1 -0
  10015. docsforge/themes/material/templates/.icons/material/toothbrush-paste.svg +1 -0
  10016. docsforge/themes/material/templates/.icons/material/toothbrush.svg +1 -0
  10017. docsforge/themes/material/templates/.icons/material/torch.svg +1 -0
  10018. docsforge/themes/material/templates/.icons/material/tortoise.svg +1 -0
  10019. docsforge/themes/material/templates/.icons/material/toslink.svg +1 -0
  10020. docsforge/themes/material/templates/.icons/material/touch-text-outline.svg +1 -0
  10021. docsforge/themes/material/templates/.icons/material/tournament.svg +1 -0
  10022. docsforge/themes/material/templates/.icons/material/tow-truck.svg +1 -0
  10023. docsforge/themes/material/templates/.icons/material/tower-beach.svg +1 -0
  10024. docsforge/themes/material/templates/.icons/material/tower-fire.svg +1 -0
  10025. docsforge/themes/material/templates/.icons/material/town-hall.svg +1 -0
  10026. docsforge/themes/material/templates/.icons/material/toy-brick-marker-outline.svg +1 -0
  10027. docsforge/themes/material/templates/.icons/material/toy-brick-marker.svg +1 -0
  10028. docsforge/themes/material/templates/.icons/material/toy-brick-minus-outline.svg +1 -0
  10029. docsforge/themes/material/templates/.icons/material/toy-brick-minus.svg +1 -0
  10030. docsforge/themes/material/templates/.icons/material/toy-brick-outline.svg +1 -0
  10031. docsforge/themes/material/templates/.icons/material/toy-brick-plus-outline.svg +1 -0
  10032. docsforge/themes/material/templates/.icons/material/toy-brick-plus.svg +1 -0
  10033. docsforge/themes/material/templates/.icons/material/toy-brick-remove-outline.svg +1 -0
  10034. docsforge/themes/material/templates/.icons/material/toy-brick-remove.svg +1 -0
  10035. docsforge/themes/material/templates/.icons/material/toy-brick-search-outline.svg +1 -0
  10036. docsforge/themes/material/templates/.icons/material/toy-brick-search.svg +1 -0
  10037. docsforge/themes/material/templates/.icons/material/toy-brick.svg +1 -0
  10038. docsforge/themes/material/templates/.icons/material/track-light-off.svg +1 -0
  10039. docsforge/themes/material/templates/.icons/material/track-light.svg +1 -0
  10040. docsforge/themes/material/templates/.icons/material/trackpad-lock.svg +1 -0
  10041. docsforge/themes/material/templates/.icons/material/trackpad.svg +1 -0
  10042. docsforge/themes/material/templates/.icons/material/tractor-variant.svg +1 -0
  10043. docsforge/themes/material/templates/.icons/material/tractor.svg +1 -0
  10044. docsforge/themes/material/templates/.icons/material/trademark.svg +1 -0
  10045. docsforge/themes/material/templates/.icons/material/traffic-cone.svg +1 -0
  10046. docsforge/themes/material/templates/.icons/material/traffic-light-outline.svg +1 -0
  10047. docsforge/themes/material/templates/.icons/material/traffic-light.svg +1 -0
  10048. docsforge/themes/material/templates/.icons/material/train-bus.svg +1 -0
  10049. docsforge/themes/material/templates/.icons/material/train-car-autorack.svg +1 -0
  10050. docsforge/themes/material/templates/.icons/material/train-car-box-full.svg +1 -0
  10051. docsforge/themes/material/templates/.icons/material/train-car-box-open.svg +1 -0
  10052. docsforge/themes/material/templates/.icons/material/train-car-box.svg +1 -0
  10053. docsforge/themes/material/templates/.icons/material/train-car-caboose.svg +1 -0
  10054. docsforge/themes/material/templates/.icons/material/train-car-centerbeam-full.svg +1 -0
  10055. docsforge/themes/material/templates/.icons/material/train-car-centerbeam.svg +1 -0
  10056. docsforge/themes/material/templates/.icons/material/train-car-container.svg +1 -0
  10057. docsforge/themes/material/templates/.icons/material/train-car-flatbed-car.svg +1 -0
  10058. docsforge/themes/material/templates/.icons/material/train-car-flatbed-tank.svg +1 -0
  10059. docsforge/themes/material/templates/.icons/material/train-car-flatbed.svg +1 -0
  10060. docsforge/themes/material/templates/.icons/material/train-car-gondola-full.svg +1 -0
  10061. docsforge/themes/material/templates/.icons/material/train-car-gondola.svg +1 -0
  10062. docsforge/themes/material/templates/.icons/material/train-car-hopper-covered.svg +1 -0
  10063. docsforge/themes/material/templates/.icons/material/train-car-hopper-full.svg +1 -0
  10064. docsforge/themes/material/templates/.icons/material/train-car-hopper.svg +1 -0
  10065. docsforge/themes/material/templates/.icons/material/train-car-intermodal.svg +1 -0
  10066. docsforge/themes/material/templates/.icons/material/train-car-passenger-door-open.svg +1 -0
  10067. docsforge/themes/material/templates/.icons/material/train-car-passenger-door.svg +1 -0
  10068. docsforge/themes/material/templates/.icons/material/train-car-passenger-variant.svg +1 -0
  10069. docsforge/themes/material/templates/.icons/material/train-car-passenger.svg +1 -0
  10070. docsforge/themes/material/templates/.icons/material/train-car-tank.svg +1 -0
  10071. docsforge/themes/material/templates/.icons/material/train-car.svg +1 -0
  10072. docsforge/themes/material/templates/.icons/material/train-variant.svg +1 -0
  10073. docsforge/themes/material/templates/.icons/material/train.svg +1 -0
  10074. docsforge/themes/material/templates/.icons/material/tram-side.svg +1 -0
  10075. docsforge/themes/material/templates/.icons/material/tram.svg +1 -0
  10076. docsforge/themes/material/templates/.icons/material/transcribe-close.svg +1 -0
  10077. docsforge/themes/material/templates/.icons/material/transcribe.svg +1 -0
  10078. docsforge/themes/material/templates/.icons/material/transfer-down.svg +1 -0
  10079. docsforge/themes/material/templates/.icons/material/transfer-left.svg +1 -0
  10080. docsforge/themes/material/templates/.icons/material/transfer-right.svg +1 -0
  10081. docsforge/themes/material/templates/.icons/material/transfer-up.svg +1 -0
  10082. docsforge/themes/material/templates/.icons/material/transfer.svg +1 -0
  10083. docsforge/themes/material/templates/.icons/material/transit-connection-horizontal.svg +1 -0
  10084. docsforge/themes/material/templates/.icons/material/transit-connection-variant.svg +1 -0
  10085. docsforge/themes/material/templates/.icons/material/transit-connection.svg +1 -0
  10086. docsforge/themes/material/templates/.icons/material/transit-detour.svg +1 -0
  10087. docsforge/themes/material/templates/.icons/material/transit-skip.svg +1 -0
  10088. docsforge/themes/material/templates/.icons/material/transit-transfer.svg +1 -0
  10089. docsforge/themes/material/templates/.icons/material/transition-masked.svg +1 -0
  10090. docsforge/themes/material/templates/.icons/material/transition.svg +1 -0
  10091. docsforge/themes/material/templates/.icons/material/translate-off.svg +1 -0
  10092. docsforge/themes/material/templates/.icons/material/translate-variant.svg +1 -0
  10093. docsforge/themes/material/templates/.icons/material/translate.svg +1 -0
  10094. docsforge/themes/material/templates/.icons/material/transmission-tower-export.svg +1 -0
  10095. docsforge/themes/material/templates/.icons/material/transmission-tower-import.svg +1 -0
  10096. docsforge/themes/material/templates/.icons/material/transmission-tower-off.svg +1 -0
  10097. docsforge/themes/material/templates/.icons/material/transmission-tower.svg +1 -0
  10098. docsforge/themes/material/templates/.icons/material/trash-can-outline.svg +1 -0
  10099. docsforge/themes/material/templates/.icons/material/trash-can.svg +1 -0
  10100. docsforge/themes/material/templates/.icons/material/tray-alert.svg +1 -0
  10101. docsforge/themes/material/templates/.icons/material/tray-arrow-down.svg +1 -0
  10102. docsforge/themes/material/templates/.icons/material/tray-arrow-up.svg +1 -0
  10103. docsforge/themes/material/templates/.icons/material/tray-full.svg +1 -0
  10104. docsforge/themes/material/templates/.icons/material/tray-minus.svg +1 -0
  10105. docsforge/themes/material/templates/.icons/material/tray-plus.svg +1 -0
  10106. docsforge/themes/material/templates/.icons/material/tray-remove.svg +1 -0
  10107. docsforge/themes/material/templates/.icons/material/tray.svg +1 -0
  10108. docsforge/themes/material/templates/.icons/material/treasure-chest-outline.svg +1 -0
  10109. docsforge/themes/material/templates/.icons/material/treasure-chest.svg +1 -0
  10110. docsforge/themes/material/templates/.icons/material/tree-outline.svg +1 -0
  10111. docsforge/themes/material/templates/.icons/material/tree.svg +1 -0
  10112. docsforge/themes/material/templates/.icons/material/trello.svg +1 -0
  10113. docsforge/themes/material/templates/.icons/material/trending-down.svg +1 -0
  10114. docsforge/themes/material/templates/.icons/material/trending-neutral.svg +1 -0
  10115. docsforge/themes/material/templates/.icons/material/trending-up.svg +1 -0
  10116. docsforge/themes/material/templates/.icons/material/triangle-down-outline.svg +1 -0
  10117. docsforge/themes/material/templates/.icons/material/triangle-down.svg +1 -0
  10118. docsforge/themes/material/templates/.icons/material/triangle-outline.svg +1 -0
  10119. docsforge/themes/material/templates/.icons/material/triangle-small-down.svg +1 -0
  10120. docsforge/themes/material/templates/.icons/material/triangle-small-up.svg +1 -0
  10121. docsforge/themes/material/templates/.icons/material/triangle-wave.svg +1 -0
  10122. docsforge/themes/material/templates/.icons/material/triangle.svg +1 -0
  10123. docsforge/themes/material/templates/.icons/material/triforce.svg +1 -0
  10124. docsforge/themes/material/templates/.icons/material/trophy-award.svg +1 -0
  10125. docsforge/themes/material/templates/.icons/material/trophy-broken.svg +1 -0
  10126. docsforge/themes/material/templates/.icons/material/trophy-outline.svg +1 -0
  10127. docsforge/themes/material/templates/.icons/material/trophy-variant-outline.svg +1 -0
  10128. docsforge/themes/material/templates/.icons/material/trophy-variant.svg +1 -0
  10129. docsforge/themes/material/templates/.icons/material/trophy.svg +1 -0
  10130. docsforge/themes/material/templates/.icons/material/truck-alert-outline.svg +1 -0
  10131. docsforge/themes/material/templates/.icons/material/truck-alert.svg +1 -0
  10132. docsforge/themes/material/templates/.icons/material/truck-cargo-container.svg +1 -0
  10133. docsforge/themes/material/templates/.icons/material/truck-check-outline.svg +1 -0
  10134. docsforge/themes/material/templates/.icons/material/truck-check.svg +1 -0
  10135. docsforge/themes/material/templates/.icons/material/truck-delivery-outline.svg +1 -0
  10136. docsforge/themes/material/templates/.icons/material/truck-delivery.svg +1 -0
  10137. docsforge/themes/material/templates/.icons/material/truck-fast-outline.svg +1 -0
  10138. docsforge/themes/material/templates/.icons/material/truck-fast.svg +1 -0
  10139. docsforge/themes/material/templates/.icons/material/truck-flatbed.svg +1 -0
  10140. docsforge/themes/material/templates/.icons/material/truck-minus-outline.svg +1 -0
  10141. docsforge/themes/material/templates/.icons/material/truck-minus.svg +1 -0
  10142. docsforge/themes/material/templates/.icons/material/truck-off-road-off.svg +1 -0
  10143. docsforge/themes/material/templates/.icons/material/truck-off-road.svg +1 -0
  10144. docsforge/themes/material/templates/.icons/material/truck-outline.svg +1 -0
  10145. docsforge/themes/material/templates/.icons/material/truck-plus-outline.svg +1 -0
  10146. docsforge/themes/material/templates/.icons/material/truck-plus.svg +1 -0
  10147. docsforge/themes/material/templates/.icons/material/truck-remove-outline.svg +1 -0
  10148. docsforge/themes/material/templates/.icons/material/truck-remove.svg +1 -0
  10149. docsforge/themes/material/templates/.icons/material/truck-snowflake.svg +1 -0
  10150. docsforge/themes/material/templates/.icons/material/truck-trailer.svg +1 -0
  10151. docsforge/themes/material/templates/.icons/material/truck.svg +1 -0
  10152. docsforge/themes/material/templates/.icons/material/trumpet.svg +1 -0
  10153. docsforge/themes/material/templates/.icons/material/tshirt-crew-outline.svg +1 -0
  10154. docsforge/themes/material/templates/.icons/material/tshirt-crew.svg +1 -0
  10155. docsforge/themes/material/templates/.icons/material/tshirt-v-outline.svg +1 -0
  10156. docsforge/themes/material/templates/.icons/material/tshirt-v.svg +1 -0
  10157. docsforge/themes/material/templates/.icons/material/tsunami.svg +1 -0
  10158. docsforge/themes/material/templates/.icons/material/tumble-dryer-alert.svg +1 -0
  10159. docsforge/themes/material/templates/.icons/material/tumble-dryer-off.svg +1 -0
  10160. docsforge/themes/material/templates/.icons/material/tumble-dryer.svg +1 -0
  10161. docsforge/themes/material/templates/.icons/material/tune-variant.svg +1 -0
  10162. docsforge/themes/material/templates/.icons/material/tune-vertical-variant.svg +1 -0
  10163. docsforge/themes/material/templates/.icons/material/tune-vertical.svg +1 -0
  10164. docsforge/themes/material/templates/.icons/material/tune.svg +1 -0
  10165. docsforge/themes/material/templates/.icons/material/tunnel-outline.svg +1 -0
  10166. docsforge/themes/material/templates/.icons/material/tunnel.svg +1 -0
  10167. docsforge/themes/material/templates/.icons/material/turbine.svg +1 -0
  10168. docsforge/themes/material/templates/.icons/material/turkey.svg +1 -0
  10169. docsforge/themes/material/templates/.icons/material/turnstile-outline.svg +1 -0
  10170. docsforge/themes/material/templates/.icons/material/turnstile.svg +1 -0
  10171. docsforge/themes/material/templates/.icons/material/turtle.svg +1 -0
  10172. docsforge/themes/material/templates/.icons/material/twitch.svg +1 -0
  10173. docsforge/themes/material/templates/.icons/material/twitter.svg +1 -0
  10174. docsforge/themes/material/templates/.icons/material/two-factor-authentication.svg +1 -0
  10175. docsforge/themes/material/templates/.icons/material/typewriter.svg +1 -0
  10176. docsforge/themes/material/templates/.icons/material/ubisoft.svg +1 -0
  10177. docsforge/themes/material/templates/.icons/material/ubuntu.svg +1 -0
  10178. docsforge/themes/material/templates/.icons/material/ufo-outline.svg +1 -0
  10179. docsforge/themes/material/templates/.icons/material/ufo.svg +1 -0
  10180. docsforge/themes/material/templates/.icons/material/ultra-high-definition.svg +1 -0
  10181. docsforge/themes/material/templates/.icons/material/umbraco.svg +1 -0
  10182. docsforge/themes/material/templates/.icons/material/umbrella-beach-outline.svg +1 -0
  10183. docsforge/themes/material/templates/.icons/material/umbrella-beach.svg +1 -0
  10184. docsforge/themes/material/templates/.icons/material/umbrella-closed-outline.svg +1 -0
  10185. docsforge/themes/material/templates/.icons/material/umbrella-closed-variant.svg +1 -0
  10186. docsforge/themes/material/templates/.icons/material/umbrella-closed.svg +1 -0
  10187. docsforge/themes/material/templates/.icons/material/umbrella-outline.svg +1 -0
  10188. docsforge/themes/material/templates/.icons/material/umbrella.svg +1 -0
  10189. docsforge/themes/material/templates/.icons/material/underwear-outline.svg +1 -0
  10190. docsforge/themes/material/templates/.icons/material/undo-variant.svg +1 -0
  10191. docsforge/themes/material/templates/.icons/material/undo.svg +1 -0
  10192. docsforge/themes/material/templates/.icons/material/unfold-less-horizontal.svg +1 -0
  10193. docsforge/themes/material/templates/.icons/material/unfold-less-vertical.svg +1 -0
  10194. docsforge/themes/material/templates/.icons/material/unfold-more-horizontal.svg +1 -0
  10195. docsforge/themes/material/templates/.icons/material/unfold-more-vertical.svg +1 -0
  10196. docsforge/themes/material/templates/.icons/material/ungroup.svg +1 -0
  10197. docsforge/themes/material/templates/.icons/material/unicode.svg +1 -0
  10198. docsforge/themes/material/templates/.icons/material/unicorn-variant.svg +1 -0
  10199. docsforge/themes/material/templates/.icons/material/unicorn.svg +1 -0
  10200. docsforge/themes/material/templates/.icons/material/unicycle.svg +1 -0
  10201. docsforge/themes/material/templates/.icons/material/unity.svg +1 -0
  10202. docsforge/themes/material/templates/.icons/material/unreal.svg +1 -0
  10203. docsforge/themes/material/templates/.icons/material/update.svg +1 -0
  10204. docsforge/themes/material/templates/.icons/material/upload-box-outline.svg +1 -0
  10205. docsforge/themes/material/templates/.icons/material/upload-box.svg +1 -0
  10206. docsforge/themes/material/templates/.icons/material/upload-circle-outline.svg +1 -0
  10207. docsforge/themes/material/templates/.icons/material/upload-circle.svg +1 -0
  10208. docsforge/themes/material/templates/.icons/material/upload-lock-outline.svg +1 -0
  10209. docsforge/themes/material/templates/.icons/material/upload-lock.svg +1 -0
  10210. docsforge/themes/material/templates/.icons/material/upload-multiple-outline.svg +1 -0
  10211. docsforge/themes/material/templates/.icons/material/upload-multiple.svg +1 -0
  10212. docsforge/themes/material/templates/.icons/material/upload-network-outline.svg +1 -0
  10213. docsforge/themes/material/templates/.icons/material/upload-network.svg +1 -0
  10214. docsforge/themes/material/templates/.icons/material/upload-off-outline.svg +1 -0
  10215. docsforge/themes/material/templates/.icons/material/upload-off.svg +1 -0
  10216. docsforge/themes/material/templates/.icons/material/upload-outline.svg +1 -0
  10217. docsforge/themes/material/templates/.icons/material/upload.svg +1 -0
  10218. docsforge/themes/material/templates/.icons/material/usb-c-port.svg +1 -0
  10219. docsforge/themes/material/templates/.icons/material/usb-flash-drive-outline.svg +1 -0
  10220. docsforge/themes/material/templates/.icons/material/usb-flash-drive.svg +1 -0
  10221. docsforge/themes/material/templates/.icons/material/usb-port.svg +1 -0
  10222. docsforge/themes/material/templates/.icons/material/usb.svg +1 -0
  10223. docsforge/themes/material/templates/.icons/material/vacuum-outline.svg +1 -0
  10224. docsforge/themes/material/templates/.icons/material/vacuum.svg +1 -0
  10225. docsforge/themes/material/templates/.icons/material/valve-closed.svg +1 -0
  10226. docsforge/themes/material/templates/.icons/material/valve-open.svg +1 -0
  10227. docsforge/themes/material/templates/.icons/material/valve.svg +1 -0
  10228. docsforge/themes/material/templates/.icons/material/van-passenger.svg +1 -0
  10229. docsforge/themes/material/templates/.icons/material/van-utility.svg +1 -0
  10230. docsforge/themes/material/templates/.icons/material/vanish-quarter.svg +1 -0
  10231. docsforge/themes/material/templates/.icons/material/vanish.svg +1 -0
  10232. docsforge/themes/material/templates/.icons/material/vanity-light.svg +1 -0
  10233. docsforge/themes/material/templates/.icons/material/variable-box.svg +1 -0
  10234. docsforge/themes/material/templates/.icons/material/variable.svg +1 -0
  10235. docsforge/themes/material/templates/.icons/material/vector-arrange-above.svg +1 -0
  10236. docsforge/themes/material/templates/.icons/material/vector-arrange-below.svg +1 -0
  10237. docsforge/themes/material/templates/.icons/material/vector-bezier.svg +1 -0
  10238. docsforge/themes/material/templates/.icons/material/vector-circle-variant.svg +1 -0
  10239. docsforge/themes/material/templates/.icons/material/vector-circle.svg +1 -0
  10240. docsforge/themes/material/templates/.icons/material/vector-combine.svg +1 -0
  10241. docsforge/themes/material/templates/.icons/material/vector-curve.svg +1 -0
  10242. docsforge/themes/material/templates/.icons/material/vector-difference-ab.svg +1 -0
  10243. docsforge/themes/material/templates/.icons/material/vector-difference-ba.svg +1 -0
  10244. docsforge/themes/material/templates/.icons/material/vector-difference.svg +1 -0
  10245. docsforge/themes/material/templates/.icons/material/vector-ellipse.svg +1 -0
  10246. docsforge/themes/material/templates/.icons/material/vector-intersection.svg +1 -0
  10247. docsforge/themes/material/templates/.icons/material/vector-line.svg +1 -0
  10248. docsforge/themes/material/templates/.icons/material/vector-link.svg +1 -0
  10249. docsforge/themes/material/templates/.icons/material/vector-point-edit.svg +1 -0
  10250. docsforge/themes/material/templates/.icons/material/vector-point-minus.svg +1 -0
  10251. docsforge/themes/material/templates/.icons/material/vector-point-plus.svg +1 -0
  10252. docsforge/themes/material/templates/.icons/material/vector-point-select.svg +1 -0
  10253. docsforge/themes/material/templates/.icons/material/vector-point.svg +1 -0
  10254. docsforge/themes/material/templates/.icons/material/vector-polygon-variant.svg +1 -0
  10255. docsforge/themes/material/templates/.icons/material/vector-polygon.svg +1 -0
  10256. docsforge/themes/material/templates/.icons/material/vector-polyline-edit.svg +1 -0
  10257. docsforge/themes/material/templates/.icons/material/vector-polyline-minus.svg +1 -0
  10258. docsforge/themes/material/templates/.icons/material/vector-polyline-plus.svg +1 -0
  10259. docsforge/themes/material/templates/.icons/material/vector-polyline-remove.svg +1 -0
  10260. docsforge/themes/material/templates/.icons/material/vector-polyline.svg +1 -0
  10261. docsforge/themes/material/templates/.icons/material/vector-radius.svg +1 -0
  10262. docsforge/themes/material/templates/.icons/material/vector-rectangle.svg +1 -0
  10263. docsforge/themes/material/templates/.icons/material/vector-selection.svg +1 -0
  10264. docsforge/themes/material/templates/.icons/material/vector-square-close.svg +1 -0
  10265. docsforge/themes/material/templates/.icons/material/vector-square-edit.svg +1 -0
  10266. docsforge/themes/material/templates/.icons/material/vector-square-minus.svg +1 -0
  10267. docsforge/themes/material/templates/.icons/material/vector-square-open.svg +1 -0
  10268. docsforge/themes/material/templates/.icons/material/vector-square-plus.svg +1 -0
  10269. docsforge/themes/material/templates/.icons/material/vector-square-remove.svg +1 -0
  10270. docsforge/themes/material/templates/.icons/material/vector-square.svg +1 -0
  10271. docsforge/themes/material/templates/.icons/material/vector-triangle.svg +1 -0
  10272. docsforge/themes/material/templates/.icons/material/vector-union.svg +1 -0
  10273. docsforge/themes/material/templates/.icons/material/vhs.svg +1 -0
  10274. docsforge/themes/material/templates/.icons/material/vibrate-off.svg +1 -0
  10275. docsforge/themes/material/templates/.icons/material/vibrate.svg +1 -0
  10276. docsforge/themes/material/templates/.icons/material/video-2d.svg +1 -0
  10277. docsforge/themes/material/templates/.icons/material/video-3d-off.svg +1 -0
  10278. docsforge/themes/material/templates/.icons/material/video-3d-variant.svg +1 -0
  10279. docsforge/themes/material/templates/.icons/material/video-3d.svg +1 -0
  10280. docsforge/themes/material/templates/.icons/material/video-4k-box.svg +1 -0
  10281. docsforge/themes/material/templates/.icons/material/video-account.svg +1 -0
  10282. docsforge/themes/material/templates/.icons/material/video-box-off.svg +1 -0
  10283. docsforge/themes/material/templates/.icons/material/video-box.svg +1 -0
  10284. docsforge/themes/material/templates/.icons/material/video-check-outline.svg +1 -0
  10285. docsforge/themes/material/templates/.icons/material/video-check.svg +1 -0
  10286. docsforge/themes/material/templates/.icons/material/video-high-definition.svg +1 -0
  10287. docsforge/themes/material/templates/.icons/material/video-image.svg +1 -0
  10288. docsforge/themes/material/templates/.icons/material/video-input-antenna.svg +1 -0
  10289. docsforge/themes/material/templates/.icons/material/video-input-component.svg +1 -0
  10290. docsforge/themes/material/templates/.icons/material/video-input-hdmi.svg +1 -0
  10291. docsforge/themes/material/templates/.icons/material/video-input-scart.svg +1 -0
  10292. docsforge/themes/material/templates/.icons/material/video-input-svideo.svg +1 -0
  10293. docsforge/themes/material/templates/.icons/material/video-marker-outline.svg +1 -0
  10294. docsforge/themes/material/templates/.icons/material/video-marker.svg +1 -0
  10295. docsforge/themes/material/templates/.icons/material/video-minus-outline.svg +1 -0
  10296. docsforge/themes/material/templates/.icons/material/video-minus.svg +1 -0
  10297. docsforge/themes/material/templates/.icons/material/video-off-outline.svg +1 -0
  10298. docsforge/themes/material/templates/.icons/material/video-off.svg +1 -0
  10299. docsforge/themes/material/templates/.icons/material/video-outline.svg +1 -0
  10300. docsforge/themes/material/templates/.icons/material/video-plus-outline.svg +1 -0
  10301. docsforge/themes/material/templates/.icons/material/video-plus.svg +1 -0
  10302. docsforge/themes/material/templates/.icons/material/video-stabilization.svg +1 -0
  10303. docsforge/themes/material/templates/.icons/material/video-standard-definition.svg +1 -0
  10304. docsforge/themes/material/templates/.icons/material/video-switch-outline.svg +1 -0
  10305. docsforge/themes/material/templates/.icons/material/video-switch.svg +1 -0
  10306. docsforge/themes/material/templates/.icons/material/video-vintage.svg +1 -0
  10307. docsforge/themes/material/templates/.icons/material/video-wireless-outline.svg +1 -0
  10308. docsforge/themes/material/templates/.icons/material/video-wireless.svg +1 -0
  10309. docsforge/themes/material/templates/.icons/material/video.svg +1 -0
  10310. docsforge/themes/material/templates/.icons/material/view-agenda-outline.svg +1 -0
  10311. docsforge/themes/material/templates/.icons/material/view-agenda.svg +1 -0
  10312. docsforge/themes/material/templates/.icons/material/view-array-outline.svg +1 -0
  10313. docsforge/themes/material/templates/.icons/material/view-array.svg +1 -0
  10314. docsforge/themes/material/templates/.icons/material/view-carousel-outline.svg +1 -0
  10315. docsforge/themes/material/templates/.icons/material/view-carousel.svg +1 -0
  10316. docsforge/themes/material/templates/.icons/material/view-column-outline.svg +1 -0
  10317. docsforge/themes/material/templates/.icons/material/view-column.svg +1 -0
  10318. docsforge/themes/material/templates/.icons/material/view-comfy-outline.svg +1 -0
  10319. docsforge/themes/material/templates/.icons/material/view-comfy.svg +1 -0
  10320. docsforge/themes/material/templates/.icons/material/view-compact-outline.svg +1 -0
  10321. docsforge/themes/material/templates/.icons/material/view-compact.svg +1 -0
  10322. docsforge/themes/material/templates/.icons/material/view-dashboard-edit-outline.svg +1 -0
  10323. docsforge/themes/material/templates/.icons/material/view-dashboard-edit.svg +1 -0
  10324. docsforge/themes/material/templates/.icons/material/view-dashboard-outline.svg +1 -0
  10325. docsforge/themes/material/templates/.icons/material/view-dashboard-variant-outline.svg +1 -0
  10326. docsforge/themes/material/templates/.icons/material/view-dashboard-variant.svg +1 -0
  10327. docsforge/themes/material/templates/.icons/material/view-dashboard.svg +1 -0
  10328. docsforge/themes/material/templates/.icons/material/view-day-outline.svg +1 -0
  10329. docsforge/themes/material/templates/.icons/material/view-day.svg +1 -0
  10330. docsforge/themes/material/templates/.icons/material/view-gallery-outline.svg +1 -0
  10331. docsforge/themes/material/templates/.icons/material/view-gallery.svg +1 -0
  10332. docsforge/themes/material/templates/.icons/material/view-grid-compact.svg +1 -0
  10333. docsforge/themes/material/templates/.icons/material/view-grid-outline.svg +1 -0
  10334. docsforge/themes/material/templates/.icons/material/view-grid-plus-outline.svg +1 -0
  10335. docsforge/themes/material/templates/.icons/material/view-grid-plus.svg +1 -0
  10336. docsforge/themes/material/templates/.icons/material/view-grid.svg +1 -0
  10337. docsforge/themes/material/templates/.icons/material/view-headline.svg +1 -0
  10338. docsforge/themes/material/templates/.icons/material/view-list-outline.svg +1 -0
  10339. docsforge/themes/material/templates/.icons/material/view-list.svg +1 -0
  10340. docsforge/themes/material/templates/.icons/material/view-module-outline.svg +1 -0
  10341. docsforge/themes/material/templates/.icons/material/view-module.svg +1 -0
  10342. docsforge/themes/material/templates/.icons/material/view-parallel-outline.svg +1 -0
  10343. docsforge/themes/material/templates/.icons/material/view-parallel.svg +1 -0
  10344. docsforge/themes/material/templates/.icons/material/view-quilt-outline.svg +1 -0
  10345. docsforge/themes/material/templates/.icons/material/view-quilt.svg +1 -0
  10346. docsforge/themes/material/templates/.icons/material/view-sequential-outline.svg +1 -0
  10347. docsforge/themes/material/templates/.icons/material/view-sequential.svg +1 -0
  10348. docsforge/themes/material/templates/.icons/material/view-split-horizontal.svg +1 -0
  10349. docsforge/themes/material/templates/.icons/material/view-split-vertical.svg +1 -0
  10350. docsforge/themes/material/templates/.icons/material/view-stream-outline.svg +1 -0
  10351. docsforge/themes/material/templates/.icons/material/view-stream.svg +1 -0
  10352. docsforge/themes/material/templates/.icons/material/view-week-outline.svg +1 -0
  10353. docsforge/themes/material/templates/.icons/material/view-week.svg +1 -0
  10354. docsforge/themes/material/templates/.icons/material/vimeo.svg +1 -0
  10355. docsforge/themes/material/templates/.icons/material/violin.svg +1 -0
  10356. docsforge/themes/material/templates/.icons/material/virtual-reality.svg +1 -0
  10357. docsforge/themes/material/templates/.icons/material/virus-off-outline.svg +1 -0
  10358. docsforge/themes/material/templates/.icons/material/virus-off.svg +1 -0
  10359. docsforge/themes/material/templates/.icons/material/virus-outline.svg +1 -0
  10360. docsforge/themes/material/templates/.icons/material/virus.svg +1 -0
  10361. docsforge/themes/material/templates/.icons/material/vlc.svg +1 -0
  10362. docsforge/themes/material/templates/.icons/material/voicemail.svg +1 -0
  10363. docsforge/themes/material/templates/.icons/material/volcano-outline.svg +1 -0
  10364. docsforge/themes/material/templates/.icons/material/volcano.svg +1 -0
  10365. docsforge/themes/material/templates/.icons/material/volleyball.svg +1 -0
  10366. docsforge/themes/material/templates/.icons/material/volume-equal.svg +1 -0
  10367. docsforge/themes/material/templates/.icons/material/volume-high.svg +1 -0
  10368. docsforge/themes/material/templates/.icons/material/volume-low.svg +1 -0
  10369. docsforge/themes/material/templates/.icons/material/volume-medium.svg +1 -0
  10370. docsforge/themes/material/templates/.icons/material/volume-minus.svg +1 -0
  10371. docsforge/themes/material/templates/.icons/material/volume-mute.svg +1 -0
  10372. docsforge/themes/material/templates/.icons/material/volume-off.svg +1 -0
  10373. docsforge/themes/material/templates/.icons/material/volume-plus.svg +1 -0
  10374. docsforge/themes/material/templates/.icons/material/volume-source.svg +1 -0
  10375. docsforge/themes/material/templates/.icons/material/volume-variant-off.svg +1 -0
  10376. docsforge/themes/material/templates/.icons/material/volume-vibrate.svg +1 -0
  10377. docsforge/themes/material/templates/.icons/material/vote-outline.svg +1 -0
  10378. docsforge/themes/material/templates/.icons/material/vote.svg +1 -0
  10379. docsforge/themes/material/templates/.icons/material/vpn.svg +1 -0
  10380. docsforge/themes/material/templates/.icons/material/vuejs.svg +1 -0
  10381. docsforge/themes/material/templates/.icons/material/vuetify.svg +1 -0
  10382. docsforge/themes/material/templates/.icons/material/walk.svg +1 -0
  10383. docsforge/themes/material/templates/.icons/material/wall-fire.svg +1 -0
  10384. docsforge/themes/material/templates/.icons/material/wall-sconce-flat-outline.svg +1 -0
  10385. docsforge/themes/material/templates/.icons/material/wall-sconce-flat-variant-outline.svg +1 -0
  10386. docsforge/themes/material/templates/.icons/material/wall-sconce-flat-variant.svg +1 -0
  10387. docsforge/themes/material/templates/.icons/material/wall-sconce-flat.svg +1 -0
  10388. docsforge/themes/material/templates/.icons/material/wall-sconce-outline.svg +1 -0
  10389. docsforge/themes/material/templates/.icons/material/wall-sconce-round-outline.svg +1 -0
  10390. docsforge/themes/material/templates/.icons/material/wall-sconce-round-variant-outline.svg +1 -0
  10391. docsforge/themes/material/templates/.icons/material/wall-sconce-round-variant.svg +1 -0
  10392. docsforge/themes/material/templates/.icons/material/wall-sconce-round.svg +1 -0
  10393. docsforge/themes/material/templates/.icons/material/wall-sconce.svg +1 -0
  10394. docsforge/themes/material/templates/.icons/material/wall.svg +1 -0
  10395. docsforge/themes/material/templates/.icons/material/wallet-bifold-outline.svg +1 -0
  10396. docsforge/themes/material/templates/.icons/material/wallet-bifold.svg +1 -0
  10397. docsforge/themes/material/templates/.icons/material/wallet-giftcard.svg +1 -0
  10398. docsforge/themes/material/templates/.icons/material/wallet-membership.svg +1 -0
  10399. docsforge/themes/material/templates/.icons/material/wallet-outline.svg +1 -0
  10400. docsforge/themes/material/templates/.icons/material/wallet-plus-outline.svg +1 -0
  10401. docsforge/themes/material/templates/.icons/material/wallet-plus.svg +1 -0
  10402. docsforge/themes/material/templates/.icons/material/wallet-travel.svg +1 -0
  10403. docsforge/themes/material/templates/.icons/material/wallet.svg +1 -0
  10404. docsforge/themes/material/templates/.icons/material/wallpaper.svg +1 -0
  10405. docsforge/themes/material/templates/.icons/material/wan.svg +1 -0
  10406. docsforge/themes/material/templates/.icons/material/wardrobe-outline.svg +1 -0
  10407. docsforge/themes/material/templates/.icons/material/wardrobe.svg +1 -0
  10408. docsforge/themes/material/templates/.icons/material/warehouse.svg +1 -0
  10409. docsforge/themes/material/templates/.icons/material/washing-machine-alert.svg +1 -0
  10410. docsforge/themes/material/templates/.icons/material/washing-machine-off.svg +1 -0
  10411. docsforge/themes/material/templates/.icons/material/washing-machine.svg +1 -0
  10412. docsforge/themes/material/templates/.icons/material/watch-export-variant.svg +1 -0
  10413. docsforge/themes/material/templates/.icons/material/watch-export.svg +1 -0
  10414. docsforge/themes/material/templates/.icons/material/watch-import-variant.svg +1 -0
  10415. docsforge/themes/material/templates/.icons/material/watch-import.svg +1 -0
  10416. docsforge/themes/material/templates/.icons/material/watch-variant.svg +1 -0
  10417. docsforge/themes/material/templates/.icons/material/watch-vibrate-off.svg +1 -0
  10418. docsforge/themes/material/templates/.icons/material/watch-vibrate.svg +1 -0
  10419. docsforge/themes/material/templates/.icons/material/watch.svg +1 -0
  10420. docsforge/themes/material/templates/.icons/material/water-alert-outline.svg +1 -0
  10421. docsforge/themes/material/templates/.icons/material/water-alert.svg +1 -0
  10422. docsforge/themes/material/templates/.icons/material/water-boiler-alert.svg +1 -0
  10423. docsforge/themes/material/templates/.icons/material/water-boiler-auto.svg +1 -0
  10424. docsforge/themes/material/templates/.icons/material/water-boiler-off.svg +1 -0
  10425. docsforge/themes/material/templates/.icons/material/water-boiler.svg +1 -0
  10426. docsforge/themes/material/templates/.icons/material/water-check-outline.svg +1 -0
  10427. docsforge/themes/material/templates/.icons/material/water-check.svg +1 -0
  10428. docsforge/themes/material/templates/.icons/material/water-circle.svg +1 -0
  10429. docsforge/themes/material/templates/.icons/material/water-minus-outline.svg +1 -0
  10430. docsforge/themes/material/templates/.icons/material/water-minus.svg +1 -0
  10431. docsforge/themes/material/templates/.icons/material/water-off-outline.svg +1 -0
  10432. docsforge/themes/material/templates/.icons/material/water-off.svg +1 -0
  10433. docsforge/themes/material/templates/.icons/material/water-opacity.svg +1 -0
  10434. docsforge/themes/material/templates/.icons/material/water-outline.svg +1 -0
  10435. docsforge/themes/material/templates/.icons/material/water-percent-alert.svg +1 -0
  10436. docsforge/themes/material/templates/.icons/material/water-percent.svg +1 -0
  10437. docsforge/themes/material/templates/.icons/material/water-plus-outline.svg +1 -0
  10438. docsforge/themes/material/templates/.icons/material/water-plus.svg +1 -0
  10439. docsforge/themes/material/templates/.icons/material/water-polo.svg +1 -0
  10440. docsforge/themes/material/templates/.icons/material/water-pump-off.svg +1 -0
  10441. docsforge/themes/material/templates/.icons/material/water-pump.svg +1 -0
  10442. docsforge/themes/material/templates/.icons/material/water-remove-outline.svg +1 -0
  10443. docsforge/themes/material/templates/.icons/material/water-remove.svg +1 -0
  10444. docsforge/themes/material/templates/.icons/material/water-sync.svg +1 -0
  10445. docsforge/themes/material/templates/.icons/material/water-thermometer-outline.svg +1 -0
  10446. docsforge/themes/material/templates/.icons/material/water-thermometer.svg +1 -0
  10447. docsforge/themes/material/templates/.icons/material/water-well-outline.svg +1 -0
  10448. docsforge/themes/material/templates/.icons/material/water-well.svg +1 -0
  10449. docsforge/themes/material/templates/.icons/material/water.svg +1 -0
  10450. docsforge/themes/material/templates/.icons/material/waterfall.svg +1 -0
  10451. docsforge/themes/material/templates/.icons/material/watering-can-outline.svg +1 -0
  10452. docsforge/themes/material/templates/.icons/material/watering-can.svg +1 -0
  10453. docsforge/themes/material/templates/.icons/material/watermark.svg +1 -0
  10454. docsforge/themes/material/templates/.icons/material/wave-arrow-down.svg +1 -0
  10455. docsforge/themes/material/templates/.icons/material/wave-arrow-up.svg +1 -0
  10456. docsforge/themes/material/templates/.icons/material/wave-undercurrent.svg +1 -0
  10457. docsforge/themes/material/templates/.icons/material/wave.svg +1 -0
  10458. docsforge/themes/material/templates/.icons/material/waveform.svg +1 -0
  10459. docsforge/themes/material/templates/.icons/material/waves-arrow-left.svg +1 -0
  10460. docsforge/themes/material/templates/.icons/material/waves-arrow-right.svg +1 -0
  10461. docsforge/themes/material/templates/.icons/material/waves-arrow-up.svg +1 -0
  10462. docsforge/themes/material/templates/.icons/material/waves.svg +1 -0
  10463. docsforge/themes/material/templates/.icons/material/waze.svg +1 -0
  10464. docsforge/themes/material/templates/.icons/material/weather-cloudy-alert.svg +1 -0
  10465. docsforge/themes/material/templates/.icons/material/weather-cloudy-arrow-right.svg +1 -0
  10466. docsforge/themes/material/templates/.icons/material/weather-cloudy-clock.svg +1 -0
  10467. docsforge/themes/material/templates/.icons/material/weather-cloudy.svg +1 -0
  10468. docsforge/themes/material/templates/.icons/material/weather-dust.svg +1 -0
  10469. docsforge/themes/material/templates/.icons/material/weather-fog.svg +1 -0
  10470. docsforge/themes/material/templates/.icons/material/weather-hail.svg +1 -0
  10471. docsforge/themes/material/templates/.icons/material/weather-hazy.svg +1 -0
  10472. docsforge/themes/material/templates/.icons/material/weather-hurricane-outline.svg +1 -0
  10473. docsforge/themes/material/templates/.icons/material/weather-hurricane.svg +1 -0
  10474. docsforge/themes/material/templates/.icons/material/weather-lightning-rainy.svg +1 -0
  10475. docsforge/themes/material/templates/.icons/material/weather-lightning.svg +1 -0
  10476. docsforge/themes/material/templates/.icons/material/weather-moonset-down.svg +1 -0
  10477. docsforge/themes/material/templates/.icons/material/weather-moonset-up.svg +1 -0
  10478. docsforge/themes/material/templates/.icons/material/weather-moonset.svg +1 -0
  10479. docsforge/themes/material/templates/.icons/material/weather-night-partly-cloudy.svg +1 -0
  10480. docsforge/themes/material/templates/.icons/material/weather-night.svg +1 -0
  10481. docsforge/themes/material/templates/.icons/material/weather-partly-cloudy.svg +1 -0
  10482. docsforge/themes/material/templates/.icons/material/weather-partly-lightning.svg +1 -0
  10483. docsforge/themes/material/templates/.icons/material/weather-partly-rainy.svg +1 -0
  10484. docsforge/themes/material/templates/.icons/material/weather-partly-snowy-rainy.svg +1 -0
  10485. docsforge/themes/material/templates/.icons/material/weather-partly-snowy.svg +1 -0
  10486. docsforge/themes/material/templates/.icons/material/weather-pouring.svg +1 -0
  10487. docsforge/themes/material/templates/.icons/material/weather-rainy.svg +1 -0
  10488. docsforge/themes/material/templates/.icons/material/weather-snowy-heavy.svg +1 -0
  10489. docsforge/themes/material/templates/.icons/material/weather-snowy-rainy.svg +1 -0
  10490. docsforge/themes/material/templates/.icons/material/weather-snowy.svg +1 -0
  10491. docsforge/themes/material/templates/.icons/material/weather-sunny-alert.svg +1 -0
  10492. docsforge/themes/material/templates/.icons/material/weather-sunny-off.svg +1 -0
  10493. docsforge/themes/material/templates/.icons/material/weather-sunny.svg +1 -0
  10494. docsforge/themes/material/templates/.icons/material/weather-sunset-down.svg +1 -0
  10495. docsforge/themes/material/templates/.icons/material/weather-sunset-up.svg +1 -0
  10496. docsforge/themes/material/templates/.icons/material/weather-sunset.svg +1 -0
  10497. docsforge/themes/material/templates/.icons/material/weather-tornado.svg +1 -0
  10498. docsforge/themes/material/templates/.icons/material/weather-windy-variant.svg +1 -0
  10499. docsforge/themes/material/templates/.icons/material/weather-windy.svg +1 -0
  10500. docsforge/themes/material/templates/.icons/material/web-box.svg +1 -0
  10501. docsforge/themes/material/templates/.icons/material/web-cancel.svg +1 -0
  10502. docsforge/themes/material/templates/.icons/material/web-check.svg +1 -0
  10503. docsforge/themes/material/templates/.icons/material/web-clock.svg +1 -0
  10504. docsforge/themes/material/templates/.icons/material/web-minus.svg +1 -0
  10505. docsforge/themes/material/templates/.icons/material/web-off.svg +1 -0
  10506. docsforge/themes/material/templates/.icons/material/web-plus.svg +1 -0
  10507. docsforge/themes/material/templates/.icons/material/web-refresh.svg +1 -0
  10508. docsforge/themes/material/templates/.icons/material/web-remove.svg +1 -0
  10509. docsforge/themes/material/templates/.icons/material/web-sync.svg +1 -0
  10510. docsforge/themes/material/templates/.icons/material/web.svg +1 -0
  10511. docsforge/themes/material/templates/.icons/material/webcam-off.svg +1 -0
  10512. docsforge/themes/material/templates/.icons/material/webcam.svg +1 -0
  10513. docsforge/themes/material/templates/.icons/material/webhook.svg +1 -0
  10514. docsforge/themes/material/templates/.icons/material/webpack.svg +1 -0
  10515. docsforge/themes/material/templates/.icons/material/webrtc.svg +1 -0
  10516. docsforge/themes/material/templates/.icons/material/wechat.svg +1 -0
  10517. docsforge/themes/material/templates/.icons/material/weight-gram.svg +1 -0
  10518. docsforge/themes/material/templates/.icons/material/weight-kilogram.svg +1 -0
  10519. docsforge/themes/material/templates/.icons/material/weight-lifter.svg +1 -0
  10520. docsforge/themes/material/templates/.icons/material/weight-pound.svg +1 -0
  10521. docsforge/themes/material/templates/.icons/material/weight.svg +1 -0
  10522. docsforge/themes/material/templates/.icons/material/whatsapp.svg +1 -0
  10523. docsforge/themes/material/templates/.icons/material/wheel-barrow.svg +1 -0
  10524. docsforge/themes/material/templates/.icons/material/wheelchair-accessibility.svg +1 -0
  10525. docsforge/themes/material/templates/.icons/material/wheelchair.svg +1 -0
  10526. docsforge/themes/material/templates/.icons/material/whistle-outline.svg +1 -0
  10527. docsforge/themes/material/templates/.icons/material/whistle.svg +1 -0
  10528. docsforge/themes/material/templates/.icons/material/white-balance-auto.svg +1 -0
  10529. docsforge/themes/material/templates/.icons/material/white-balance-incandescent.svg +1 -0
  10530. docsforge/themes/material/templates/.icons/material/white-balance-iridescent.svg +1 -0
  10531. docsforge/themes/material/templates/.icons/material/white-balance-sunny.svg +1 -0
  10532. docsforge/themes/material/templates/.icons/material/widgets-outline.svg +1 -0
  10533. docsforge/themes/material/templates/.icons/material/widgets.svg +1 -0
  10534. docsforge/themes/material/templates/.icons/material/wifi-alert.svg +1 -0
  10535. docsforge/themes/material/templates/.icons/material/wifi-arrow-down.svg +1 -0
  10536. docsforge/themes/material/templates/.icons/material/wifi-arrow-left-right.svg +1 -0
  10537. docsforge/themes/material/templates/.icons/material/wifi-arrow-left.svg +1 -0
  10538. docsforge/themes/material/templates/.icons/material/wifi-arrow-right.svg +1 -0
  10539. docsforge/themes/material/templates/.icons/material/wifi-arrow-up-down.svg +1 -0
  10540. docsforge/themes/material/templates/.icons/material/wifi-arrow-up.svg +1 -0
  10541. docsforge/themes/material/templates/.icons/material/wifi-cancel.svg +1 -0
  10542. docsforge/themes/material/templates/.icons/material/wifi-check.svg +1 -0
  10543. docsforge/themes/material/templates/.icons/material/wifi-cog.svg +1 -0
  10544. docsforge/themes/material/templates/.icons/material/wifi-lock-open.svg +1 -0
  10545. docsforge/themes/material/templates/.icons/material/wifi-lock.svg +1 -0
  10546. docsforge/themes/material/templates/.icons/material/wifi-marker.svg +1 -0
  10547. docsforge/themes/material/templates/.icons/material/wifi-minus.svg +1 -0
  10548. docsforge/themes/material/templates/.icons/material/wifi-off.svg +1 -0
  10549. docsforge/themes/material/templates/.icons/material/wifi-plus.svg +1 -0
  10550. docsforge/themes/material/templates/.icons/material/wifi-refresh.svg +1 -0
  10551. docsforge/themes/material/templates/.icons/material/wifi-remove.svg +1 -0
  10552. docsforge/themes/material/templates/.icons/material/wifi-settings.svg +1 -0
  10553. docsforge/themes/material/templates/.icons/material/wifi-star.svg +1 -0
  10554. docsforge/themes/material/templates/.icons/material/wifi-strength-1-alert.svg +1 -0
  10555. docsforge/themes/material/templates/.icons/material/wifi-strength-1-lock-open.svg +1 -0
  10556. docsforge/themes/material/templates/.icons/material/wifi-strength-1-lock.svg +1 -0
  10557. docsforge/themes/material/templates/.icons/material/wifi-strength-1.svg +1 -0
  10558. docsforge/themes/material/templates/.icons/material/wifi-strength-2-alert.svg +1 -0
  10559. docsforge/themes/material/templates/.icons/material/wifi-strength-2-lock-open.svg +1 -0
  10560. docsforge/themes/material/templates/.icons/material/wifi-strength-2-lock.svg +1 -0
  10561. docsforge/themes/material/templates/.icons/material/wifi-strength-2.svg +1 -0
  10562. docsforge/themes/material/templates/.icons/material/wifi-strength-3-alert.svg +1 -0
  10563. docsforge/themes/material/templates/.icons/material/wifi-strength-3-lock-open.svg +1 -0
  10564. docsforge/themes/material/templates/.icons/material/wifi-strength-3-lock.svg +1 -0
  10565. docsforge/themes/material/templates/.icons/material/wifi-strength-3.svg +1 -0
  10566. docsforge/themes/material/templates/.icons/material/wifi-strength-4-alert.svg +1 -0
  10567. docsforge/themes/material/templates/.icons/material/wifi-strength-4-lock-open.svg +1 -0
  10568. docsforge/themes/material/templates/.icons/material/wifi-strength-4-lock.svg +1 -0
  10569. docsforge/themes/material/templates/.icons/material/wifi-strength-4.svg +1 -0
  10570. docsforge/themes/material/templates/.icons/material/wifi-strength-alert-outline.svg +1 -0
  10571. docsforge/themes/material/templates/.icons/material/wifi-strength-lock-open-outline.svg +1 -0
  10572. docsforge/themes/material/templates/.icons/material/wifi-strength-lock-outline.svg +1 -0
  10573. docsforge/themes/material/templates/.icons/material/wifi-strength-off-outline.svg +1 -0
  10574. docsforge/themes/material/templates/.icons/material/wifi-strength-off.svg +1 -0
  10575. docsforge/themes/material/templates/.icons/material/wifi-strength-outline.svg +1 -0
  10576. docsforge/themes/material/templates/.icons/material/wifi-sync.svg +1 -0
  10577. docsforge/themes/material/templates/.icons/material/wifi.svg +1 -0
  10578. docsforge/themes/material/templates/.icons/material/wikipedia.svg +1 -0
  10579. docsforge/themes/material/templates/.icons/material/wind-power-outline.svg +1 -0
  10580. docsforge/themes/material/templates/.icons/material/wind-power.svg +1 -0
  10581. docsforge/themes/material/templates/.icons/material/wind-turbine-alert.svg +1 -0
  10582. docsforge/themes/material/templates/.icons/material/wind-turbine-check.svg +1 -0
  10583. docsforge/themes/material/templates/.icons/material/wind-turbine.svg +1 -0
  10584. docsforge/themes/material/templates/.icons/material/window-close.svg +1 -0
  10585. docsforge/themes/material/templates/.icons/material/window-closed-variant.svg +1 -0
  10586. docsforge/themes/material/templates/.icons/material/window-closed.svg +1 -0
  10587. docsforge/themes/material/templates/.icons/material/window-maximize.svg +1 -0
  10588. docsforge/themes/material/templates/.icons/material/window-minimize.svg +1 -0
  10589. docsforge/themes/material/templates/.icons/material/window-open-variant.svg +1 -0
  10590. docsforge/themes/material/templates/.icons/material/window-open.svg +1 -0
  10591. docsforge/themes/material/templates/.icons/material/window-restore.svg +1 -0
  10592. docsforge/themes/material/templates/.icons/material/window-shutter-alert.svg +1 -0
  10593. docsforge/themes/material/templates/.icons/material/window-shutter-auto.svg +1 -0
  10594. docsforge/themes/material/templates/.icons/material/window-shutter-cog.svg +1 -0
  10595. docsforge/themes/material/templates/.icons/material/window-shutter-open.svg +1 -0
  10596. docsforge/themes/material/templates/.icons/material/window-shutter-settings.svg +1 -0
  10597. docsforge/themes/material/templates/.icons/material/window-shutter.svg +1 -0
  10598. docsforge/themes/material/templates/.icons/material/windsock.svg +1 -0
  10599. docsforge/themes/material/templates/.icons/material/wiper-wash-alert.svg +1 -0
  10600. docsforge/themes/material/templates/.icons/material/wiper-wash.svg +1 -0
  10601. docsforge/themes/material/templates/.icons/material/wiper.svg +1 -0
  10602. docsforge/themes/material/templates/.icons/material/wizard-hat.svg +1 -0
  10603. docsforge/themes/material/templates/.icons/material/wordpress.svg +1 -0
  10604. docsforge/themes/material/templates/.icons/material/wrap-disabled.svg +1 -0
  10605. docsforge/themes/material/templates/.icons/material/wrap.svg +1 -0
  10606. docsforge/themes/material/templates/.icons/material/wrench-check-outline.svg +1 -0
  10607. docsforge/themes/material/templates/.icons/material/wrench-check.svg +1 -0
  10608. docsforge/themes/material/templates/.icons/material/wrench-clock-outline.svg +1 -0
  10609. docsforge/themes/material/templates/.icons/material/wrench-clock.svg +1 -0
  10610. docsforge/themes/material/templates/.icons/material/wrench-cog-outline.svg +1 -0
  10611. docsforge/themes/material/templates/.icons/material/wrench-cog.svg +1 -0
  10612. docsforge/themes/material/templates/.icons/material/wrench-outline.svg +1 -0
  10613. docsforge/themes/material/templates/.icons/material/wrench.svg +1 -0
  10614. docsforge/themes/material/templates/.icons/material/xamarin.svg +1 -0
  10615. docsforge/themes/material/templates/.icons/material/xml.svg +1 -0
  10616. docsforge/themes/material/templates/.icons/material/xmpp.svg +1 -0
  10617. docsforge/themes/material/templates/.icons/material/yahoo.svg +1 -0
  10618. docsforge/themes/material/templates/.icons/material/yeast.svg +1 -0
  10619. docsforge/themes/material/templates/.icons/material/yin-yang.svg +1 -0
  10620. docsforge/themes/material/templates/.icons/material/yoga.svg +1 -0
  10621. docsforge/themes/material/templates/.icons/material/youtube-gaming.svg +1 -0
  10622. docsforge/themes/material/templates/.icons/material/youtube-studio.svg +1 -0
  10623. docsforge/themes/material/templates/.icons/material/youtube-subscription.svg +1 -0
  10624. docsforge/themes/material/templates/.icons/material/youtube-tv.svg +1 -0
  10625. docsforge/themes/material/templates/.icons/material/youtube.svg +1 -0
  10626. docsforge/themes/material/templates/.icons/material/yurt.svg +1 -0
  10627. docsforge/themes/material/templates/.icons/material/z-wave.svg +1 -0
  10628. docsforge/themes/material/templates/.icons/material/zend.svg +1 -0
  10629. docsforge/themes/material/templates/.icons/material/zigbee.svg +1 -0
  10630. docsforge/themes/material/templates/.icons/material/zip-box-outline.svg +1 -0
  10631. docsforge/themes/material/templates/.icons/material/zip-box.svg +1 -0
  10632. docsforge/themes/material/templates/.icons/material/zip-disk.svg +1 -0
  10633. docsforge/themes/material/templates/.icons/material/zodiac-aquarius.svg +1 -0
  10634. docsforge/themes/material/templates/.icons/material/zodiac-aries.svg +1 -0
  10635. docsforge/themes/material/templates/.icons/material/zodiac-cancer.svg +1 -0
  10636. docsforge/themes/material/templates/.icons/material/zodiac-capricorn.svg +1 -0
  10637. docsforge/themes/material/templates/.icons/material/zodiac-gemini.svg +1 -0
  10638. docsforge/themes/material/templates/.icons/material/zodiac-leo.svg +1 -0
  10639. docsforge/themes/material/templates/.icons/material/zodiac-libra.svg +1 -0
  10640. docsforge/themes/material/templates/.icons/material/zodiac-pisces.svg +1 -0
  10641. docsforge/themes/material/templates/.icons/material/zodiac-sagittarius.svg +1 -0
  10642. docsforge/themes/material/templates/.icons/material/zodiac-scorpio.svg +1 -0
  10643. docsforge/themes/material/templates/.icons/material/zodiac-taurus.svg +1 -0
  10644. docsforge/themes/material/templates/.icons/material/zodiac-virgo.svg +1 -0
  10645. docsforge/themes/material/templates/.icons/octicons/LICENSE +21 -0
  10646. docsforge/themes/material/templates/.icons/octicons/accessibility-16.svg +1 -0
  10647. docsforge/themes/material/templates/.icons/octicons/accessibility-24.svg +1 -0
  10648. docsforge/themes/material/templates/.icons/octicons/accessibility-inset-16.svg +1 -0
  10649. docsforge/themes/material/templates/.icons/octicons/accessibility-inset-24.svg +1 -0
  10650. docsforge/themes/material/templates/.icons/octicons/agent-16.svg +1 -0
  10651. docsforge/themes/material/templates/.icons/octicons/agent-24.svg +1 -0
  10652. docsforge/themes/material/templates/.icons/octicons/ai-model-16.svg +1 -0
  10653. docsforge/themes/material/templates/.icons/octicons/ai-model-24.svg +1 -0
  10654. docsforge/themes/material/templates/.icons/octicons/alert-16.svg +1 -0
  10655. docsforge/themes/material/templates/.icons/octicons/alert-24.svg +1 -0
  10656. docsforge/themes/material/templates/.icons/octicons/alert-fill-12.svg +1 -0
  10657. docsforge/themes/material/templates/.icons/octicons/alert-fill-16.svg +1 -0
  10658. docsforge/themes/material/templates/.icons/octicons/alert-fill-24.svg +1 -0
  10659. docsforge/themes/material/templates/.icons/octicons/apps-16.svg +1 -0
  10660. docsforge/themes/material/templates/.icons/octicons/apps-24.svg +1 -0
  10661. docsforge/themes/material/templates/.icons/octicons/archive-16.svg +1 -0
  10662. docsforge/themes/material/templates/.icons/octicons/archive-24.svg +1 -0
  10663. docsforge/themes/material/templates/.icons/octicons/arrow-both-16.svg +1 -0
  10664. docsforge/themes/material/templates/.icons/octicons/arrow-both-24.svg +1 -0
  10665. docsforge/themes/material/templates/.icons/octicons/arrow-down-16.svg +1 -0
  10666. docsforge/themes/material/templates/.icons/octicons/arrow-down-24.svg +1 -0
  10667. docsforge/themes/material/templates/.icons/octicons/arrow-down-left-16.svg +1 -0
  10668. docsforge/themes/material/templates/.icons/octicons/arrow-down-left-24.svg +1 -0
  10669. docsforge/themes/material/templates/.icons/octicons/arrow-down-right-16.svg +1 -0
  10670. docsforge/themes/material/templates/.icons/octicons/arrow-down-right-24.svg +1 -0
  10671. docsforge/themes/material/templates/.icons/octicons/arrow-left-16.svg +1 -0
  10672. docsforge/themes/material/templates/.icons/octicons/arrow-left-24.svg +1 -0
  10673. docsforge/themes/material/templates/.icons/octicons/arrow-right-16.svg +1 -0
  10674. docsforge/themes/material/templates/.icons/octicons/arrow-right-24.svg +1 -0
  10675. docsforge/themes/material/templates/.icons/octicons/arrow-switch-16.svg +1 -0
  10676. docsforge/themes/material/templates/.icons/octicons/arrow-switch-24.svg +1 -0
  10677. docsforge/themes/material/templates/.icons/octicons/arrow-up-16.svg +1 -0
  10678. docsforge/themes/material/templates/.icons/octicons/arrow-up-24.svg +1 -0
  10679. docsforge/themes/material/templates/.icons/octicons/arrow-up-left-16.svg +1 -0
  10680. docsforge/themes/material/templates/.icons/octicons/arrow-up-left-24.svg +1 -0
  10681. docsforge/themes/material/templates/.icons/octicons/arrow-up-right-16.svg +1 -0
  10682. docsforge/themes/material/templates/.icons/octicons/arrow-up-right-24.svg +1 -0
  10683. docsforge/themes/material/templates/.icons/octicons/beaker-16.svg +1 -0
  10684. docsforge/themes/material/templates/.icons/octicons/beaker-24.svg +1 -0
  10685. docsforge/themes/material/templates/.icons/octicons/bell-16.svg +1 -0
  10686. docsforge/themes/material/templates/.icons/octicons/bell-24.svg +1 -0
  10687. docsforge/themes/material/templates/.icons/octicons/bell-fill-16.svg +1 -0
  10688. docsforge/themes/material/templates/.icons/octicons/bell-fill-24.svg +1 -0
  10689. docsforge/themes/material/templates/.icons/octicons/bell-slash-16.svg +1 -0
  10690. docsforge/themes/material/templates/.icons/octicons/bell-slash-24.svg +1 -0
  10691. docsforge/themes/material/templates/.icons/octicons/blocked-16.svg +1 -0
  10692. docsforge/themes/material/templates/.icons/octicons/blocked-24.svg +1 -0
  10693. docsforge/themes/material/templates/.icons/octicons/bold-16.svg +1 -0
  10694. docsforge/themes/material/templates/.icons/octicons/bold-24.svg +1 -0
  10695. docsforge/themes/material/templates/.icons/octicons/book-16.svg +1 -0
  10696. docsforge/themes/material/templates/.icons/octicons/book-24.svg +1 -0
  10697. docsforge/themes/material/templates/.icons/octicons/bookmark-16.svg +1 -0
  10698. docsforge/themes/material/templates/.icons/octicons/bookmark-24.svg +1 -0
  10699. docsforge/themes/material/templates/.icons/octicons/bookmark-fill-24.svg +1 -0
  10700. docsforge/themes/material/templates/.icons/octicons/bookmark-filled-16.svg +1 -0
  10701. docsforge/themes/material/templates/.icons/octicons/bookmark-slash-16.svg +1 -0
  10702. docsforge/themes/material/templates/.icons/octicons/bookmark-slash-24.svg +1 -0
  10703. docsforge/themes/material/templates/.icons/octicons/bookmark-slash-fill-16.svg +1 -0
  10704. docsforge/themes/material/templates/.icons/octicons/bookmark-slash-fill-24.svg +1 -0
  10705. docsforge/themes/material/templates/.icons/octicons/boolean-off-16.svg +1 -0
  10706. docsforge/themes/material/templates/.icons/octicons/boolean-off-24.svg +1 -0
  10707. docsforge/themes/material/templates/.icons/octicons/boolean-on-16.svg +1 -0
  10708. docsforge/themes/material/templates/.icons/octicons/boolean-on-24.svg +1 -0
  10709. docsforge/themes/material/templates/.icons/octicons/briefcase-16.svg +1 -0
  10710. docsforge/themes/material/templates/.icons/octicons/briefcase-24.svg +1 -0
  10711. docsforge/themes/material/templates/.icons/octicons/broadcast-16.svg +1 -0
  10712. docsforge/themes/material/templates/.icons/octicons/broadcast-24.svg +1 -0
  10713. docsforge/themes/material/templates/.icons/octicons/browser-16.svg +1 -0
  10714. docsforge/themes/material/templates/.icons/octicons/browser-24.svg +1 -0
  10715. docsforge/themes/material/templates/.icons/octicons/bug-16.svg +1 -0
  10716. docsforge/themes/material/templates/.icons/octicons/bug-24.svg +1 -0
  10717. docsforge/themes/material/templates/.icons/octicons/cache-16.svg +1 -0
  10718. docsforge/themes/material/templates/.icons/octicons/cache-24.svg +1 -0
  10719. docsforge/themes/material/templates/.icons/octicons/calendar-16.svg +1 -0
  10720. docsforge/themes/material/templates/.icons/octicons/calendar-24.svg +1 -0
  10721. docsforge/themes/material/templates/.icons/octicons/check-16.svg +1 -0
  10722. docsforge/themes/material/templates/.icons/octicons/check-24.svg +1 -0
  10723. docsforge/themes/material/templates/.icons/octicons/check-circle-16.svg +1 -0
  10724. docsforge/themes/material/templates/.icons/octicons/check-circle-24.svg +1 -0
  10725. docsforge/themes/material/templates/.icons/octicons/check-circle-fill-12.svg +1 -0
  10726. docsforge/themes/material/templates/.icons/octicons/check-circle-fill-16.svg +1 -0
  10727. docsforge/themes/material/templates/.icons/octicons/check-circle-fill-24.svg +1 -0
  10728. docsforge/themes/material/templates/.icons/octicons/checkbox-16.svg +1 -0
  10729. docsforge/themes/material/templates/.icons/octicons/checkbox-24.svg +1 -0
  10730. docsforge/themes/material/templates/.icons/octicons/checkbox-fill-16.svg +1 -0
  10731. docsforge/themes/material/templates/.icons/octicons/checkbox-fill-24.svg +1 -0
  10732. docsforge/themes/material/templates/.icons/octicons/checklist-16.svg +1 -0
  10733. docsforge/themes/material/templates/.icons/octicons/checklist-24.svg +1 -0
  10734. docsforge/themes/material/templates/.icons/octicons/chevron-down-12.svg +1 -0
  10735. docsforge/themes/material/templates/.icons/octicons/chevron-down-16.svg +1 -0
  10736. docsforge/themes/material/templates/.icons/octicons/chevron-down-24.svg +1 -0
  10737. docsforge/themes/material/templates/.icons/octicons/chevron-left-12.svg +1 -0
  10738. docsforge/themes/material/templates/.icons/octicons/chevron-left-16.svg +1 -0
  10739. docsforge/themes/material/templates/.icons/octicons/chevron-left-24.svg +1 -0
  10740. docsforge/themes/material/templates/.icons/octicons/chevron-right-12.svg +1 -0
  10741. docsforge/themes/material/templates/.icons/octicons/chevron-right-16.svg +1 -0
  10742. docsforge/themes/material/templates/.icons/octicons/chevron-right-24.svg +1 -0
  10743. docsforge/themes/material/templates/.icons/octicons/chevron-up-12.svg +1 -0
  10744. docsforge/themes/material/templates/.icons/octicons/chevron-up-16.svg +1 -0
  10745. docsforge/themes/material/templates/.icons/octicons/chevron-up-24.svg +1 -0
  10746. docsforge/themes/material/templates/.icons/octicons/circle-16.svg +1 -0
  10747. docsforge/themes/material/templates/.icons/octicons/circle-24.svg +1 -0
  10748. docsforge/themes/material/templates/.icons/octicons/circle-slash-16.svg +1 -0
  10749. docsforge/themes/material/templates/.icons/octicons/circle-slash-24.svg +1 -0
  10750. docsforge/themes/material/templates/.icons/octicons/clock-16.svg +1 -0
  10751. docsforge/themes/material/templates/.icons/octicons/clock-24.svg +1 -0
  10752. docsforge/themes/material/templates/.icons/octicons/clock-fill-16.svg +1 -0
  10753. docsforge/themes/material/templates/.icons/octicons/clock-fill-24.svg +1 -0
  10754. docsforge/themes/material/templates/.icons/octicons/cloud-16.svg +1 -0
  10755. docsforge/themes/material/templates/.icons/octicons/cloud-24.svg +1 -0
  10756. docsforge/themes/material/templates/.icons/octicons/cloud-offline-16.svg +1 -0
  10757. docsforge/themes/material/templates/.icons/octicons/cloud-offline-24.svg +1 -0
  10758. docsforge/themes/material/templates/.icons/octicons/code-16.svg +1 -0
  10759. docsforge/themes/material/templates/.icons/octicons/code-24.svg +1 -0
  10760. docsforge/themes/material/templates/.icons/octicons/code-of-conduct-16.svg +1 -0
  10761. docsforge/themes/material/templates/.icons/octicons/code-of-conduct-24.svg +1 -0
  10762. docsforge/themes/material/templates/.icons/octicons/code-review-16.svg +1 -0
  10763. docsforge/themes/material/templates/.icons/octicons/code-review-24.svg +1 -0
  10764. docsforge/themes/material/templates/.icons/octicons/code-square-16.svg +1 -0
  10765. docsforge/themes/material/templates/.icons/octicons/code-square-24.svg +1 -0
  10766. docsforge/themes/material/templates/.icons/octicons/codescan-16.svg +1 -0
  10767. docsforge/themes/material/templates/.icons/octicons/codescan-24.svg +1 -0
  10768. docsforge/themes/material/templates/.icons/octicons/codescan-checkmark-16.svg +1 -0
  10769. docsforge/themes/material/templates/.icons/octicons/codescan-checkmark-24.svg +1 -0
  10770. docsforge/themes/material/templates/.icons/octicons/codespaces-16.svg +1 -0
  10771. docsforge/themes/material/templates/.icons/octicons/codespaces-24.svg +1 -0
  10772. docsforge/themes/material/templates/.icons/octicons/columns-16.svg +1 -0
  10773. docsforge/themes/material/templates/.icons/octicons/columns-24.svg +1 -0
  10774. docsforge/themes/material/templates/.icons/octicons/command-palette-16.svg +1 -0
  10775. docsforge/themes/material/templates/.icons/octicons/command-palette-24.svg +1 -0
  10776. docsforge/themes/material/templates/.icons/octicons/comment-16.svg +1 -0
  10777. docsforge/themes/material/templates/.icons/octicons/comment-24.svg +1 -0
  10778. docsforge/themes/material/templates/.icons/octicons/comment-ai-16.svg +1 -0
  10779. docsforge/themes/material/templates/.icons/octicons/comment-ai-24.svg +1 -0
  10780. docsforge/themes/material/templates/.icons/octicons/comment-discussion-16.svg +1 -0
  10781. docsforge/themes/material/templates/.icons/octicons/comment-discussion-24.svg +1 -0
  10782. docsforge/themes/material/templates/.icons/octicons/compose-16.svg +1 -0
  10783. docsforge/themes/material/templates/.icons/octicons/compose-24.svg +1 -0
  10784. docsforge/themes/material/templates/.icons/octicons/container-16.svg +1 -0
  10785. docsforge/themes/material/templates/.icons/octicons/container-24.svg +1 -0
  10786. docsforge/themes/material/templates/.icons/octicons/copilot-16.svg +1 -0
  10787. docsforge/themes/material/templates/.icons/octicons/copilot-24.svg +1 -0
  10788. docsforge/themes/material/templates/.icons/octicons/copilot-48.svg +1 -0
  10789. docsforge/themes/material/templates/.icons/octicons/copilot-96.svg +1 -0
  10790. docsforge/themes/material/templates/.icons/octicons/copilot-error-16.svg +1 -0
  10791. docsforge/themes/material/templates/.icons/octicons/copilot-warning-16.svg +1 -0
  10792. docsforge/themes/material/templates/.icons/octicons/copy-16.svg +1 -0
  10793. docsforge/themes/material/templates/.icons/octicons/copy-24.svg +1 -0
  10794. docsforge/themes/material/templates/.icons/octicons/cpu-16.svg +1 -0
  10795. docsforge/themes/material/templates/.icons/octicons/cpu-24.svg +1 -0
  10796. docsforge/themes/material/templates/.icons/octicons/credit-card-16.svg +1 -0
  10797. docsforge/themes/material/templates/.icons/octicons/credit-card-24.svg +1 -0
  10798. docsforge/themes/material/templates/.icons/octicons/cross-reference-16.svg +1 -0
  10799. docsforge/themes/material/templates/.icons/octicons/cross-reference-24.svg +1 -0
  10800. docsforge/themes/material/templates/.icons/octicons/crosshairs-16.svg +1 -0
  10801. docsforge/themes/material/templates/.icons/octicons/crosshairs-24.svg +1 -0
  10802. docsforge/themes/material/templates/.icons/octicons/dash-16.svg +1 -0
  10803. docsforge/themes/material/templates/.icons/octicons/dash-24.svg +1 -0
  10804. docsforge/themes/material/templates/.icons/octicons/database-16.svg +1 -0
  10805. docsforge/themes/material/templates/.icons/octicons/database-24.svg +1 -0
  10806. docsforge/themes/material/templates/.icons/octicons/dependabot-16.svg +1 -0
  10807. docsforge/themes/material/templates/.icons/octicons/dependabot-24.svg +1 -0
  10808. docsforge/themes/material/templates/.icons/octicons/desktop-download-16.svg +1 -0
  10809. docsforge/themes/material/templates/.icons/octicons/desktop-download-24.svg +1 -0
  10810. docsforge/themes/material/templates/.icons/octicons/device-camera-16.svg +1 -0
  10811. docsforge/themes/material/templates/.icons/octicons/device-camera-24.svg +1 -0
  10812. docsforge/themes/material/templates/.icons/octicons/device-camera-video-16.svg +1 -0
  10813. docsforge/themes/material/templates/.icons/octicons/device-camera-video-24.svg +1 -0
  10814. docsforge/themes/material/templates/.icons/octicons/device-desktop-16.svg +1 -0
  10815. docsforge/themes/material/templates/.icons/octicons/device-desktop-24.svg +1 -0
  10816. docsforge/themes/material/templates/.icons/octicons/device-mobile-16.svg +1 -0
  10817. docsforge/themes/material/templates/.icons/octicons/device-mobile-24.svg +1 -0
  10818. docsforge/themes/material/templates/.icons/octicons/devices-16.svg +1 -0
  10819. docsforge/themes/material/templates/.icons/octicons/devices-24.svg +1 -0
  10820. docsforge/themes/material/templates/.icons/octicons/diamond-16.svg +1 -0
  10821. docsforge/themes/material/templates/.icons/octicons/diamond-24.svg +1 -0
  10822. docsforge/themes/material/templates/.icons/octicons/dice-16.svg +1 -0
  10823. docsforge/themes/material/templates/.icons/octicons/dice-24.svg +1 -0
  10824. docsforge/themes/material/templates/.icons/octicons/diff-16.svg +1 -0
  10825. docsforge/themes/material/templates/.icons/octicons/diff-24.svg +1 -0
  10826. docsforge/themes/material/templates/.icons/octicons/diff-added-16.svg +1 -0
  10827. docsforge/themes/material/templates/.icons/octicons/diff-added-24.svg +1 -0
  10828. docsforge/themes/material/templates/.icons/octicons/diff-ignored-16.svg +1 -0
  10829. docsforge/themes/material/templates/.icons/octicons/diff-ignored-24.svg +1 -0
  10830. docsforge/themes/material/templates/.icons/octicons/diff-modified-16.svg +1 -0
  10831. docsforge/themes/material/templates/.icons/octicons/diff-modified-24.svg +1 -0
  10832. docsforge/themes/material/templates/.icons/octicons/diff-removed-16.svg +1 -0
  10833. docsforge/themes/material/templates/.icons/octicons/diff-removed-24.svg +1 -0
  10834. docsforge/themes/material/templates/.icons/octicons/diff-renamed-16.svg +1 -0
  10835. docsforge/themes/material/templates/.icons/octicons/diff-renamed-24.svg +1 -0
  10836. docsforge/themes/material/templates/.icons/octicons/discussion-closed-16.svg +1 -0
  10837. docsforge/themes/material/templates/.icons/octicons/discussion-closed-24.svg +1 -0
  10838. docsforge/themes/material/templates/.icons/octicons/discussion-duplicate-16.svg +1 -0
  10839. docsforge/themes/material/templates/.icons/octicons/discussion-duplicate-24.svg +1 -0
  10840. docsforge/themes/material/templates/.icons/octicons/discussion-outdated-16.svg +1 -0
  10841. docsforge/themes/material/templates/.icons/octicons/discussion-outdated-24.svg +1 -0
  10842. docsforge/themes/material/templates/.icons/octicons/dot-16.svg +1 -0
  10843. docsforge/themes/material/templates/.icons/octicons/dot-24.svg +1 -0
  10844. docsforge/themes/material/templates/.icons/octicons/dot-fill-16.svg +1 -0
  10845. docsforge/themes/material/templates/.icons/octicons/dot-fill-24.svg +1 -0
  10846. docsforge/themes/material/templates/.icons/octicons/download-16.svg +1 -0
  10847. docsforge/themes/material/templates/.icons/octicons/download-24.svg +1 -0
  10848. docsforge/themes/material/templates/.icons/octicons/duplicate-16.svg +1 -0
  10849. docsforge/themes/material/templates/.icons/octicons/duplicate-24.svg +1 -0
  10850. docsforge/themes/material/templates/.icons/octicons/ellipsis-16.svg +1 -0
  10851. docsforge/themes/material/templates/.icons/octicons/ellipsis-24.svg +1 -0
  10852. docsforge/themes/material/templates/.icons/octicons/exclamation-16.svg +1 -0
  10853. docsforge/themes/material/templates/.icons/octicons/exclamation-24.svg +1 -0
  10854. docsforge/themes/material/templates/.icons/octicons/eye-16.svg +1 -0
  10855. docsforge/themes/material/templates/.icons/octicons/eye-24.svg +1 -0
  10856. docsforge/themes/material/templates/.icons/octicons/eye-closed-16.svg +1 -0
  10857. docsforge/themes/material/templates/.icons/octicons/eye-closed-24.svg +1 -0
  10858. docsforge/themes/material/templates/.icons/octicons/feed-discussion-16.svg +1 -0
  10859. docsforge/themes/material/templates/.icons/octicons/feed-forked-16.svg +1 -0
  10860. docsforge/themes/material/templates/.icons/octicons/feed-heart-16.svg +1 -0
  10861. docsforge/themes/material/templates/.icons/octicons/feed-issue-closed-16.svg +1 -0
  10862. docsforge/themes/material/templates/.icons/octicons/feed-issue-draft-16.svg +1 -0
  10863. docsforge/themes/material/templates/.icons/octicons/feed-issue-open-16.svg +1 -0
  10864. docsforge/themes/material/templates/.icons/octicons/feed-issue-reopen-16.svg +1 -0
  10865. docsforge/themes/material/templates/.icons/octicons/feed-merged-16.svg +1 -0
  10866. docsforge/themes/material/templates/.icons/octicons/feed-person-16.svg +1 -0
  10867. docsforge/themes/material/templates/.icons/octicons/feed-plus-16.svg +1 -0
  10868. docsforge/themes/material/templates/.icons/octicons/feed-public-16.svg +1 -0
  10869. docsforge/themes/material/templates/.icons/octicons/feed-pull-request-closed-16.svg +1 -0
  10870. docsforge/themes/material/templates/.icons/octicons/feed-pull-request-draft-16.svg +1 -0
  10871. docsforge/themes/material/templates/.icons/octicons/feed-pull-request-open-16.svg +1 -0
  10872. docsforge/themes/material/templates/.icons/octicons/feed-repo-16.svg +1 -0
  10873. docsforge/themes/material/templates/.icons/octicons/feed-rocket-16.svg +1 -0
  10874. docsforge/themes/material/templates/.icons/octicons/feed-star-16.svg +1 -0
  10875. docsforge/themes/material/templates/.icons/octicons/feed-tag-16.svg +1 -0
  10876. docsforge/themes/material/templates/.icons/octicons/feed-trophy-16.svg +1 -0
  10877. docsforge/themes/material/templates/.icons/octicons/file-16.svg +1 -0
  10878. docsforge/themes/material/templates/.icons/octicons/file-24.svg +1 -0
  10879. docsforge/themes/material/templates/.icons/octicons/file-added-16.svg +1 -0
  10880. docsforge/themes/material/templates/.icons/octicons/file-added-24.svg +1 -0
  10881. docsforge/themes/material/templates/.icons/octicons/file-badge-16.svg +1 -0
  10882. docsforge/themes/material/templates/.icons/octicons/file-badge-24.svg +1 -0
  10883. docsforge/themes/material/templates/.icons/octicons/file-binary-16.svg +1 -0
  10884. docsforge/themes/material/templates/.icons/octicons/file-binary-24.svg +1 -0
  10885. docsforge/themes/material/templates/.icons/octicons/file-check-16.svg +1 -0
  10886. docsforge/themes/material/templates/.icons/octicons/file-check-24.svg +1 -0
  10887. docsforge/themes/material/templates/.icons/octicons/file-code-16.svg +1 -0
  10888. docsforge/themes/material/templates/.icons/octicons/file-code-24.svg +1 -0
  10889. docsforge/themes/material/templates/.icons/octicons/file-diff-16.svg +1 -0
  10890. docsforge/themes/material/templates/.icons/octicons/file-diff-24.svg +1 -0
  10891. docsforge/themes/material/templates/.icons/octicons/file-directory-16.svg +1 -0
  10892. docsforge/themes/material/templates/.icons/octicons/file-directory-24.svg +1 -0
  10893. docsforge/themes/material/templates/.icons/octicons/file-directory-fill-16.svg +1 -0
  10894. docsforge/themes/material/templates/.icons/octicons/file-directory-fill-24.svg +1 -0
  10895. docsforge/themes/material/templates/.icons/octicons/file-directory-open-fill-16.svg +1 -0
  10896. docsforge/themes/material/templates/.icons/octicons/file-directory-open-fill-24.svg +1 -0
  10897. docsforge/themes/material/templates/.icons/octicons/file-directory-symlink-16.svg +1 -0
  10898. docsforge/themes/material/templates/.icons/octicons/file-directory-symlink-24.svg +1 -0
  10899. docsforge/themes/material/templates/.icons/octicons/file-media-16.svg +1 -0
  10900. docsforge/themes/material/templates/.icons/octicons/file-media-24.svg +1 -0
  10901. docsforge/themes/material/templates/.icons/octicons/file-moved-16.svg +1 -0
  10902. docsforge/themes/material/templates/.icons/octicons/file-moved-24.svg +1 -0
  10903. docsforge/themes/material/templates/.icons/octicons/file-removed-16.svg +1 -0
  10904. docsforge/themes/material/templates/.icons/octicons/file-removed-24.svg +1 -0
  10905. docsforge/themes/material/templates/.icons/octicons/file-submodule-16.svg +1 -0
  10906. docsforge/themes/material/templates/.icons/octicons/file-submodule-24.svg +1 -0
  10907. docsforge/themes/material/templates/.icons/octicons/file-symlink-file-16.svg +1 -0
  10908. docsforge/themes/material/templates/.icons/octicons/file-symlink-file-24.svg +1 -0
  10909. docsforge/themes/material/templates/.icons/octicons/file-zip-16.svg +1 -0
  10910. docsforge/themes/material/templates/.icons/octicons/file-zip-24.svg +1 -0
  10911. docsforge/themes/material/templates/.icons/octicons/filter-16.svg +1 -0
  10912. docsforge/themes/material/templates/.icons/octicons/filter-24.svg +1 -0
  10913. docsforge/themes/material/templates/.icons/octicons/filter-remove-16.svg +1 -0
  10914. docsforge/themes/material/templates/.icons/octicons/filter-remove-24.svg +1 -0
  10915. docsforge/themes/material/templates/.icons/octicons/fiscal-host-16.svg +1 -0
  10916. docsforge/themes/material/templates/.icons/octicons/fiscal-host-24.svg +1 -0
  10917. docsforge/themes/material/templates/.icons/octicons/flame-16.svg +1 -0
  10918. docsforge/themes/material/templates/.icons/octicons/flame-24.svg +1 -0
  10919. docsforge/themes/material/templates/.icons/octicons/flowchart-16.svg +1 -0
  10920. docsforge/themes/material/templates/.icons/octicons/flowchart-24.svg +1 -0
  10921. docsforge/themes/material/templates/.icons/octicons/focus-center-16.svg +1 -0
  10922. docsforge/themes/material/templates/.icons/octicons/focus-center-24.svg +1 -0
  10923. docsforge/themes/material/templates/.icons/octicons/fold-16.svg +1 -0
  10924. docsforge/themes/material/templates/.icons/octicons/fold-24.svg +1 -0
  10925. docsforge/themes/material/templates/.icons/octicons/fold-down-16.svg +1 -0
  10926. docsforge/themes/material/templates/.icons/octicons/fold-down-24.svg +1 -0
  10927. docsforge/themes/material/templates/.icons/octicons/fold-up-16.svg +1 -0
  10928. docsforge/themes/material/templates/.icons/octicons/fold-up-24.svg +1 -0
  10929. docsforge/themes/material/templates/.icons/octicons/gear-16.svg +1 -0
  10930. docsforge/themes/material/templates/.icons/octicons/gear-24.svg +1 -0
  10931. docsforge/themes/material/templates/.icons/octicons/gift-16.svg +1 -0
  10932. docsforge/themes/material/templates/.icons/octicons/gift-24.svg +1 -0
  10933. docsforge/themes/material/templates/.icons/octicons/git-branch-16.svg +1 -0
  10934. docsforge/themes/material/templates/.icons/octicons/git-branch-24.svg +1 -0
  10935. docsforge/themes/material/templates/.icons/octicons/git-branch-check-16.svg +1 -0
  10936. docsforge/themes/material/templates/.icons/octicons/git-branch-check-24.svg +1 -0
  10937. docsforge/themes/material/templates/.icons/octicons/git-commit-16.svg +1 -0
  10938. docsforge/themes/material/templates/.icons/octicons/git-commit-24.svg +1 -0
  10939. docsforge/themes/material/templates/.icons/octicons/git-compare-16.svg +1 -0
  10940. docsforge/themes/material/templates/.icons/octicons/git-compare-24.svg +1 -0
  10941. docsforge/themes/material/templates/.icons/octicons/git-merge-16.svg +1 -0
  10942. docsforge/themes/material/templates/.icons/octicons/git-merge-24.svg +1 -0
  10943. docsforge/themes/material/templates/.icons/octicons/git-merge-queue-16.svg +1 -0
  10944. docsforge/themes/material/templates/.icons/octicons/git-merge-queue-24.svg +1 -0
  10945. docsforge/themes/material/templates/.icons/octicons/git-pull-request-16.svg +1 -0
  10946. docsforge/themes/material/templates/.icons/octicons/git-pull-request-24.svg +1 -0
  10947. docsforge/themes/material/templates/.icons/octicons/git-pull-request-closed-16.svg +1 -0
  10948. docsforge/themes/material/templates/.icons/octicons/git-pull-request-closed-24.svg +1 -0
  10949. docsforge/themes/material/templates/.icons/octicons/git-pull-request-draft-16.svg +1 -0
  10950. docsforge/themes/material/templates/.icons/octicons/git-pull-request-draft-24.svg +1 -0
  10951. docsforge/themes/material/templates/.icons/octicons/globe-16.svg +1 -0
  10952. docsforge/themes/material/templates/.icons/octicons/globe-24.svg +1 -0
  10953. docsforge/themes/material/templates/.icons/octicons/goal-16.svg +1 -0
  10954. docsforge/themes/material/templates/.icons/octicons/goal-24.svg +1 -0
  10955. docsforge/themes/material/templates/.icons/octicons/grabber-16.svg +1 -0
  10956. docsforge/themes/material/templates/.icons/octicons/grabber-24.svg +1 -0
  10957. docsforge/themes/material/templates/.icons/octicons/graph-16.svg +1 -0
  10958. docsforge/themes/material/templates/.icons/octicons/graph-24.svg +1 -0
  10959. docsforge/themes/material/templates/.icons/octicons/graph-bar-horizontal-16.svg +1 -0
  10960. docsforge/themes/material/templates/.icons/octicons/graph-bar-horizontal-24.svg +1 -0
  10961. docsforge/themes/material/templates/.icons/octicons/graph-bar-vertical-16.svg +1 -0
  10962. docsforge/themes/material/templates/.icons/octicons/graph-bar-vertical-24.svg +1 -0
  10963. docsforge/themes/material/templates/.icons/octicons/hash-16.svg +1 -0
  10964. docsforge/themes/material/templates/.icons/octicons/hash-24.svg +1 -0
  10965. docsforge/themes/material/templates/.icons/octicons/heading-16.svg +1 -0
  10966. docsforge/themes/material/templates/.icons/octicons/heading-24.svg +1 -0
  10967. docsforge/themes/material/templates/.icons/octicons/heart-16.svg +1 -0
  10968. docsforge/themes/material/templates/.icons/octicons/heart-24.svg +1 -0
  10969. docsforge/themes/material/templates/.icons/octicons/heart-fill-16.svg +1 -0
  10970. docsforge/themes/material/templates/.icons/octicons/heart-fill-24.svg +1 -0
  10971. docsforge/themes/material/templates/.icons/octicons/history-16.svg +1 -0
  10972. docsforge/themes/material/templates/.icons/octicons/history-24.svg +1 -0
  10973. docsforge/themes/material/templates/.icons/octicons/home-16.svg +1 -0
  10974. docsforge/themes/material/templates/.icons/octicons/home-24.svg +1 -0
  10975. docsforge/themes/material/templates/.icons/octicons/home-fill-16.svg +1 -0
  10976. docsforge/themes/material/templates/.icons/octicons/home-fill-24.svg +1 -0
  10977. docsforge/themes/material/templates/.icons/octicons/horizontal-rule-16.svg +1 -0
  10978. docsforge/themes/material/templates/.icons/octicons/horizontal-rule-24.svg +1 -0
  10979. docsforge/themes/material/templates/.icons/octicons/hourglass-16.svg +1 -0
  10980. docsforge/themes/material/templates/.icons/octicons/hourglass-24.svg +1 -0
  10981. docsforge/themes/material/templates/.icons/octicons/hubot-16.svg +1 -0
  10982. docsforge/themes/material/templates/.icons/octicons/hubot-24.svg +1 -0
  10983. docsforge/themes/material/templates/.icons/octicons/id-badge-16.svg +1 -0
  10984. docsforge/themes/material/templates/.icons/octicons/id-badge-24.svg +1 -0
  10985. docsforge/themes/material/templates/.icons/octicons/image-16.svg +1 -0
  10986. docsforge/themes/material/templates/.icons/octicons/image-24.svg +1 -0
  10987. docsforge/themes/material/templates/.icons/octicons/inbox-16.svg +1 -0
  10988. docsforge/themes/material/templates/.icons/octicons/inbox-24.svg +1 -0
  10989. docsforge/themes/material/templates/.icons/octicons/inbox-fill-16.svg +1 -0
  10990. docsforge/themes/material/templates/.icons/octicons/inbox-fill-24.svg +1 -0
  10991. docsforge/themes/material/templates/.icons/octicons/infinity-16.svg +1 -0
  10992. docsforge/themes/material/templates/.icons/octicons/infinity-24.svg +1 -0
  10993. docsforge/themes/material/templates/.icons/octicons/info-16.svg +1 -0
  10994. docsforge/themes/material/templates/.icons/octicons/info-24.svg +1 -0
  10995. docsforge/themes/material/templates/.icons/octicons/issue-closed-16.svg +1 -0
  10996. docsforge/themes/material/templates/.icons/octicons/issue-closed-24.svg +1 -0
  10997. docsforge/themes/material/templates/.icons/octicons/issue-draft-16.svg +1 -0
  10998. docsforge/themes/material/templates/.icons/octicons/issue-draft-24.svg +1 -0
  10999. docsforge/themes/material/templates/.icons/octicons/issue-opened-16.svg +1 -0
  11000. docsforge/themes/material/templates/.icons/octicons/issue-opened-24.svg +1 -0
  11001. docsforge/themes/material/templates/.icons/octicons/issue-reopened-16.svg +1 -0
  11002. docsforge/themes/material/templates/.icons/octicons/issue-reopened-24.svg +1 -0
  11003. docsforge/themes/material/templates/.icons/octicons/issue-tracked-by-16.svg +1 -0
  11004. docsforge/themes/material/templates/.icons/octicons/issue-tracked-by-24.svg +1 -0
  11005. docsforge/themes/material/templates/.icons/octicons/issue-tracks-16.svg +1 -0
  11006. docsforge/themes/material/templates/.icons/octicons/issue-tracks-24.svg +1 -0
  11007. docsforge/themes/material/templates/.icons/octicons/italic-16.svg +1 -0
  11008. docsforge/themes/material/templates/.icons/octicons/italic-24.svg +1 -0
  11009. docsforge/themes/material/templates/.icons/octicons/iterations-16.svg +1 -0
  11010. docsforge/themes/material/templates/.icons/octicons/iterations-24.svg +1 -0
  11011. docsforge/themes/material/templates/.icons/octicons/kebab-horizontal-16.svg +1 -0
  11012. docsforge/themes/material/templates/.icons/octicons/kebab-horizontal-24.svg +1 -0
  11013. docsforge/themes/material/templates/.icons/octicons/key-16.svg +1 -0
  11014. docsforge/themes/material/templates/.icons/octicons/key-24.svg +1 -0
  11015. docsforge/themes/material/templates/.icons/octicons/key-asterisk-16.svg +1 -0
  11016. docsforge/themes/material/templates/.icons/octicons/key-asterisk-24.svg +1 -0
  11017. docsforge/themes/material/templates/.icons/octicons/law-16.svg +1 -0
  11018. docsforge/themes/material/templates/.icons/octicons/law-24.svg +1 -0
  11019. docsforge/themes/material/templates/.icons/octicons/light-bulb-16.svg +1 -0
  11020. docsforge/themes/material/templates/.icons/octicons/light-bulb-24.svg +1 -0
  11021. docsforge/themes/material/templates/.icons/octicons/link-16.svg +1 -0
  11022. docsforge/themes/material/templates/.icons/octicons/link-24.svg +1 -0
  11023. docsforge/themes/material/templates/.icons/octicons/link-external-16.svg +1 -0
  11024. docsforge/themes/material/templates/.icons/octicons/link-external-24.svg +1 -0
  11025. docsforge/themes/material/templates/.icons/octicons/list-ordered-16.svg +1 -0
  11026. docsforge/themes/material/templates/.icons/octicons/list-ordered-24.svg +1 -0
  11027. docsforge/themes/material/templates/.icons/octicons/list-unordered-16.svg +1 -0
  11028. docsforge/themes/material/templates/.icons/octicons/list-unordered-24.svg +1 -0
  11029. docsforge/themes/material/templates/.icons/octicons/location-16.svg +1 -0
  11030. docsforge/themes/material/templates/.icons/octicons/location-24.svg +1 -0
  11031. docsforge/themes/material/templates/.icons/octicons/lock-16.svg +1 -0
  11032. docsforge/themes/material/templates/.icons/octicons/lock-24.svg +1 -0
  11033. docsforge/themes/material/templates/.icons/octicons/log-16.svg +1 -0
  11034. docsforge/themes/material/templates/.icons/octicons/log-24.svg +1 -0
  11035. docsforge/themes/material/templates/.icons/octicons/logo-gist-16.svg +1 -0
  11036. docsforge/themes/material/templates/.icons/octicons/logo-gist-24.svg +1 -0
  11037. docsforge/themes/material/templates/.icons/octicons/logo-github-16.svg +1 -0
  11038. docsforge/themes/material/templates/.icons/octicons/logo-github-24.svg +1 -0
  11039. docsforge/themes/material/templates/.icons/octicons/loop-16.svg +1 -0
  11040. docsforge/themes/material/templates/.icons/octicons/loop-24.svg +1 -0
  11041. docsforge/themes/material/templates/.icons/octicons/mail-16.svg +1 -0
  11042. docsforge/themes/material/templates/.icons/octicons/mail-24.svg +1 -0
  11043. docsforge/themes/material/templates/.icons/octicons/mark-github-16.svg +1 -0
  11044. docsforge/themes/material/templates/.icons/octicons/mark-github-24.svg +1 -0
  11045. docsforge/themes/material/templates/.icons/octicons/markdown-16.svg +1 -0
  11046. docsforge/themes/material/templates/.icons/octicons/markdown-24.svg +1 -0
  11047. docsforge/themes/material/templates/.icons/octicons/maximize-16.svg +1 -0
  11048. docsforge/themes/material/templates/.icons/octicons/maximize-24.svg +1 -0
  11049. docsforge/themes/material/templates/.icons/octicons/mcp-16.svg +1 -0
  11050. docsforge/themes/material/templates/.icons/octicons/mcp-24.svg +1 -0
  11051. docsforge/themes/material/templates/.icons/octicons/megaphone-16.svg +1 -0
  11052. docsforge/themes/material/templates/.icons/octicons/megaphone-24.svg +1 -0
  11053. docsforge/themes/material/templates/.icons/octicons/mention-16.svg +1 -0
  11054. docsforge/themes/material/templates/.icons/octicons/mention-24.svg +1 -0
  11055. docsforge/themes/material/templates/.icons/octicons/meter-16.svg +1 -0
  11056. docsforge/themes/material/templates/.icons/octicons/meter-24.svg +1 -0
  11057. docsforge/themes/material/templates/.icons/octicons/milestone-16.svg +1 -0
  11058. docsforge/themes/material/templates/.icons/octicons/milestone-24.svg +1 -0
  11059. docsforge/themes/material/templates/.icons/octicons/minimize-16.svg +1 -0
  11060. docsforge/themes/material/templates/.icons/octicons/minimize-24.svg +1 -0
  11061. docsforge/themes/material/templates/.icons/octicons/mirror-16.svg +1 -0
  11062. docsforge/themes/material/templates/.icons/octicons/mirror-24.svg +1 -0
  11063. docsforge/themes/material/templates/.icons/octicons/moon-16.svg +1 -0
  11064. docsforge/themes/material/templates/.icons/octicons/moon-24.svg +1 -0
  11065. docsforge/themes/material/templates/.icons/octicons/mortar-board-16.svg +1 -0
  11066. docsforge/themes/material/templates/.icons/octicons/mortar-board-24.svg +1 -0
  11067. docsforge/themes/material/templates/.icons/octicons/move-to-bottom-16.svg +1 -0
  11068. docsforge/themes/material/templates/.icons/octicons/move-to-bottom-24.svg +1 -0
  11069. docsforge/themes/material/templates/.icons/octicons/move-to-end-16.svg +1 -0
  11070. docsforge/themes/material/templates/.icons/octicons/move-to-end-24.svg +1 -0
  11071. docsforge/themes/material/templates/.icons/octicons/move-to-start-16.svg +1 -0
  11072. docsforge/themes/material/templates/.icons/octicons/move-to-start-24.svg +1 -0
  11073. docsforge/themes/material/templates/.icons/octicons/move-to-top-16.svg +1 -0
  11074. docsforge/themes/material/templates/.icons/octicons/move-to-top-24.svg +1 -0
  11075. docsforge/themes/material/templates/.icons/octicons/multi-select-16.svg +1 -0
  11076. docsforge/themes/material/templates/.icons/octicons/multi-select-24.svg +1 -0
  11077. docsforge/themes/material/templates/.icons/octicons/mute-16.svg +1 -0
  11078. docsforge/themes/material/templates/.icons/octicons/mute-24.svg +1 -0
  11079. docsforge/themes/material/templates/.icons/octicons/no-entry-16.svg +1 -0
  11080. docsforge/themes/material/templates/.icons/octicons/no-entry-24.svg +1 -0
  11081. docsforge/themes/material/templates/.icons/octicons/no-entry-fill-12.svg +1 -0
  11082. docsforge/themes/material/templates/.icons/octicons/node-16.svg +1 -0
  11083. docsforge/themes/material/templates/.icons/octicons/node-24.svg +1 -0
  11084. docsforge/themes/material/templates/.icons/octicons/north-star-16.svg +1 -0
  11085. docsforge/themes/material/templates/.icons/octicons/north-star-24.svg +1 -0
  11086. docsforge/themes/material/templates/.icons/octicons/note-16.svg +1 -0
  11087. docsforge/themes/material/templates/.icons/octicons/note-24.svg +1 -0
  11088. docsforge/themes/material/templates/.icons/octicons/number-16.svg +1 -0
  11089. docsforge/themes/material/templates/.icons/octicons/number-24.svg +1 -0
  11090. docsforge/themes/material/templates/.icons/octicons/organization-16.svg +1 -0
  11091. docsforge/themes/material/templates/.icons/octicons/organization-24.svg +1 -0
  11092. docsforge/themes/material/templates/.icons/octicons/package-16.svg +1 -0
  11093. docsforge/themes/material/templates/.icons/octicons/package-24.svg +1 -0
  11094. docsforge/themes/material/templates/.icons/octicons/package-dependencies-16.svg +1 -0
  11095. docsforge/themes/material/templates/.icons/octicons/package-dependencies-24.svg +1 -0
  11096. docsforge/themes/material/templates/.icons/octicons/package-dependents-16.svg +1 -0
  11097. docsforge/themes/material/templates/.icons/octicons/package-dependents-24.svg +1 -0
  11098. docsforge/themes/material/templates/.icons/octicons/paintbrush-16.svg +1 -0
  11099. docsforge/themes/material/templates/.icons/octicons/paintbrush-24.svg +1 -0
  11100. docsforge/themes/material/templates/.icons/octicons/paper-airplane-16.svg +1 -0
  11101. docsforge/themes/material/templates/.icons/octicons/paper-airplane-24.svg +1 -0
  11102. docsforge/themes/material/templates/.icons/octicons/paperclip-16.svg +1 -0
  11103. docsforge/themes/material/templates/.icons/octicons/paperclip-24.svg +1 -0
  11104. docsforge/themes/material/templates/.icons/octicons/passkey-fill-16.svg +1 -0
  11105. docsforge/themes/material/templates/.icons/octicons/passkey-fill-24.svg +1 -0
  11106. docsforge/themes/material/templates/.icons/octicons/paste-16.svg +1 -0
  11107. docsforge/themes/material/templates/.icons/octicons/paste-24.svg +1 -0
  11108. docsforge/themes/material/templates/.icons/octicons/pause-16.svg +1 -0
  11109. docsforge/themes/material/templates/.icons/octicons/pause-24.svg +1 -0
  11110. docsforge/themes/material/templates/.icons/octicons/pencil-16.svg +1 -0
  11111. docsforge/themes/material/templates/.icons/octicons/pencil-24.svg +1 -0
  11112. docsforge/themes/material/templates/.icons/octicons/pencil-ai-16.svg +1 -0
  11113. docsforge/themes/material/templates/.icons/octicons/pencil-ai-24.svg +1 -0
  11114. docsforge/themes/material/templates/.icons/octicons/people-16.svg +1 -0
  11115. docsforge/themes/material/templates/.icons/octicons/people-24.svg +1 -0
  11116. docsforge/themes/material/templates/.icons/octicons/person-16.svg +1 -0
  11117. docsforge/themes/material/templates/.icons/octicons/person-24.svg +1 -0
  11118. docsforge/themes/material/templates/.icons/octicons/person-add-16.svg +1 -0
  11119. docsforge/themes/material/templates/.icons/octicons/person-add-24.svg +1 -0
  11120. docsforge/themes/material/templates/.icons/octicons/person-fill-16.svg +1 -0
  11121. docsforge/themes/material/templates/.icons/octicons/person-fill-24.svg +1 -0
  11122. docsforge/themes/material/templates/.icons/octicons/pin-16.svg +1 -0
  11123. docsforge/themes/material/templates/.icons/octicons/pin-24.svg +1 -0
  11124. docsforge/themes/material/templates/.icons/octicons/pin-slash-16.svg +1 -0
  11125. docsforge/themes/material/templates/.icons/octicons/pin-slash-24.svg +1 -0
  11126. docsforge/themes/material/templates/.icons/octicons/pivot-column-16.svg +1 -0
  11127. docsforge/themes/material/templates/.icons/octicons/pivot-column-24.svg +1 -0
  11128. docsforge/themes/material/templates/.icons/octicons/play-16.svg +1 -0
  11129. docsforge/themes/material/templates/.icons/octicons/play-24.svg +1 -0
  11130. docsforge/themes/material/templates/.icons/octicons/plug-16.svg +1 -0
  11131. docsforge/themes/material/templates/.icons/octicons/plug-24.svg +1 -0
  11132. docsforge/themes/material/templates/.icons/octicons/plus-16.svg +1 -0
  11133. docsforge/themes/material/templates/.icons/octicons/plus-24.svg +1 -0
  11134. docsforge/themes/material/templates/.icons/octicons/plus-circle-16.svg +1 -0
  11135. docsforge/themes/material/templates/.icons/octicons/plus-circle-24.svg +1 -0
  11136. docsforge/themes/material/templates/.icons/octicons/project-16.svg +1 -0
  11137. docsforge/themes/material/templates/.icons/octicons/project-24.svg +1 -0
  11138. docsforge/themes/material/templates/.icons/octicons/project-roadmap-16.svg +1 -0
  11139. docsforge/themes/material/templates/.icons/octicons/project-roadmap-24.svg +1 -0
  11140. docsforge/themes/material/templates/.icons/octicons/project-symlink-16.svg +1 -0
  11141. docsforge/themes/material/templates/.icons/octicons/project-symlink-24.svg +1 -0
  11142. docsforge/themes/material/templates/.icons/octicons/project-template-16.svg +1 -0
  11143. docsforge/themes/material/templates/.icons/octicons/project-template-24.svg +1 -0
  11144. docsforge/themes/material/templates/.icons/octicons/pulse-16.svg +1 -0
  11145. docsforge/themes/material/templates/.icons/octicons/pulse-24.svg +1 -0
  11146. docsforge/themes/material/templates/.icons/octicons/question-16.svg +1 -0
  11147. docsforge/themes/material/templates/.icons/octicons/question-24.svg +1 -0
  11148. docsforge/themes/material/templates/.icons/octicons/quote-16.svg +1 -0
  11149. docsforge/themes/material/templates/.icons/octicons/quote-24.svg +1 -0
  11150. docsforge/themes/material/templates/.icons/octicons/read-16.svg +1 -0
  11151. docsforge/themes/material/templates/.icons/octicons/read-24.svg +1 -0
  11152. docsforge/themes/material/templates/.icons/octicons/redo-16.svg +1 -0
  11153. docsforge/themes/material/templates/.icons/octicons/redo-24.svg +1 -0
  11154. docsforge/themes/material/templates/.icons/octicons/rel-file-path-16.svg +1 -0
  11155. docsforge/themes/material/templates/.icons/octicons/rel-file-path-24.svg +1 -0
  11156. docsforge/themes/material/templates/.icons/octicons/reply-16.svg +1 -0
  11157. docsforge/themes/material/templates/.icons/octicons/reply-24.svg +1 -0
  11158. docsforge/themes/material/templates/.icons/octicons/repo-16.svg +1 -0
  11159. docsforge/themes/material/templates/.icons/octicons/repo-24.svg +1 -0
  11160. docsforge/themes/material/templates/.icons/octicons/repo-clone-16.svg +1 -0
  11161. docsforge/themes/material/templates/.icons/octicons/repo-clone-24.svg +1 -0
  11162. docsforge/themes/material/templates/.icons/octicons/repo-delete-24.svg +1 -0
  11163. docsforge/themes/material/templates/.icons/octicons/repo-deleted-16.svg +1 -0
  11164. docsforge/themes/material/templates/.icons/octicons/repo-forked-16.svg +1 -0
  11165. docsforge/themes/material/templates/.icons/octicons/repo-forked-24.svg +1 -0
  11166. docsforge/themes/material/templates/.icons/octicons/repo-locked-16.svg +1 -0
  11167. docsforge/themes/material/templates/.icons/octicons/repo-locked-24.svg +1 -0
  11168. docsforge/themes/material/templates/.icons/octicons/repo-pull-16.svg +1 -0
  11169. docsforge/themes/material/templates/.icons/octicons/repo-pull-24.svg +1 -0
  11170. docsforge/themes/material/templates/.icons/octicons/repo-push-16.svg +1 -0
  11171. docsforge/themes/material/templates/.icons/octicons/repo-push-24.svg +1 -0
  11172. docsforge/themes/material/templates/.icons/octicons/repo-template-16.svg +1 -0
  11173. docsforge/themes/material/templates/.icons/octicons/repo-template-24.svg +1 -0
  11174. docsforge/themes/material/templates/.icons/octicons/report-16.svg +1 -0
  11175. docsforge/themes/material/templates/.icons/octicons/report-24.svg +1 -0
  11176. docsforge/themes/material/templates/.icons/octicons/rocket-16.svg +1 -0
  11177. docsforge/themes/material/templates/.icons/octicons/rocket-24.svg +1 -0
  11178. docsforge/themes/material/templates/.icons/octicons/rows-16.svg +1 -0
  11179. docsforge/themes/material/templates/.icons/octicons/rows-24.svg +1 -0
  11180. docsforge/themes/material/templates/.icons/octicons/rss-16.svg +1 -0
  11181. docsforge/themes/material/templates/.icons/octicons/rss-24.svg +1 -0
  11182. docsforge/themes/material/templates/.icons/octicons/ruby-16.svg +1 -0
  11183. docsforge/themes/material/templates/.icons/octicons/ruby-24.svg +1 -0
  11184. docsforge/themes/material/templates/.icons/octicons/screen-full-16.svg +1 -0
  11185. docsforge/themes/material/templates/.icons/octicons/screen-full-24.svg +1 -0
  11186. docsforge/themes/material/templates/.icons/octicons/screen-normal-16.svg +1 -0
  11187. docsforge/themes/material/templates/.icons/octicons/screen-normal-24.svg +1 -0
  11188. docsforge/themes/material/templates/.icons/octicons/search-16.svg +1 -0
  11189. docsforge/themes/material/templates/.icons/octicons/search-24.svg +1 -0
  11190. docsforge/themes/material/templates/.icons/octicons/server-16.svg +1 -0
  11191. docsforge/themes/material/templates/.icons/octicons/server-24.svg +1 -0
  11192. docsforge/themes/material/templates/.icons/octicons/share-16.svg +1 -0
  11193. docsforge/themes/material/templates/.icons/octicons/share-24.svg +1 -0
  11194. docsforge/themes/material/templates/.icons/octicons/share-android-16.svg +1 -0
  11195. docsforge/themes/material/templates/.icons/octicons/share-android-24.svg +1 -0
  11196. docsforge/themes/material/templates/.icons/octicons/shield-16.svg +1 -0
  11197. docsforge/themes/material/templates/.icons/octicons/shield-24.svg +1 -0
  11198. docsforge/themes/material/templates/.icons/octicons/shield-check-16.svg +1 -0
  11199. docsforge/themes/material/templates/.icons/octicons/shield-check-24.svg +1 -0
  11200. docsforge/themes/material/templates/.icons/octicons/shield-lock-16.svg +1 -0
  11201. docsforge/themes/material/templates/.icons/octicons/shield-lock-24.svg +1 -0
  11202. docsforge/themes/material/templates/.icons/octicons/shield-slash-16.svg +1 -0
  11203. docsforge/themes/material/templates/.icons/octicons/shield-slash-24.svg +1 -0
  11204. docsforge/themes/material/templates/.icons/octicons/shield-x-16.svg +1 -0
  11205. docsforge/themes/material/templates/.icons/octicons/shield-x-24.svg +1 -0
  11206. docsforge/themes/material/templates/.icons/octicons/sidebar-collapse-16.svg +1 -0
  11207. docsforge/themes/material/templates/.icons/octicons/sidebar-collapse-24.svg +1 -0
  11208. docsforge/themes/material/templates/.icons/octicons/sidebar-expand-16.svg +1 -0
  11209. docsforge/themes/material/templates/.icons/octicons/sidebar-expand-24.svg +1 -0
  11210. docsforge/themes/material/templates/.icons/octicons/sign-in-16.svg +1 -0
  11211. docsforge/themes/material/templates/.icons/octicons/sign-in-24.svg +1 -0
  11212. docsforge/themes/material/templates/.icons/octicons/sign-out-16.svg +1 -0
  11213. docsforge/themes/material/templates/.icons/octicons/sign-out-24.svg +1 -0
  11214. docsforge/themes/material/templates/.icons/octicons/single-select-16.svg +1 -0
  11215. docsforge/themes/material/templates/.icons/octicons/single-select-24.svg +1 -0
  11216. docsforge/themes/material/templates/.icons/octicons/skip-16.svg +1 -0
  11217. docsforge/themes/material/templates/.icons/octicons/skip-24.svg +1 -0
  11218. docsforge/themes/material/templates/.icons/octicons/skip-fill-16.svg +1 -0
  11219. docsforge/themes/material/templates/.icons/octicons/skip-fill-24.svg +1 -0
  11220. docsforge/themes/material/templates/.icons/octicons/sliders-16.svg +1 -0
  11221. docsforge/themes/material/templates/.icons/octicons/sliders-24.svg +1 -0
  11222. docsforge/themes/material/templates/.icons/octicons/smiley-16.svg +1 -0
  11223. docsforge/themes/material/templates/.icons/octicons/smiley-24.svg +1 -0
  11224. docsforge/themes/material/templates/.icons/octicons/smiley-frown-16.svg +1 -0
  11225. docsforge/themes/material/templates/.icons/octicons/smiley-frown-24.svg +1 -0
  11226. docsforge/themes/material/templates/.icons/octicons/smiley-frustrated-16.svg +1 -0
  11227. docsforge/themes/material/templates/.icons/octicons/smiley-frustrated-24.svg +1 -0
  11228. docsforge/themes/material/templates/.icons/octicons/smiley-grin-16.svg +1 -0
  11229. docsforge/themes/material/templates/.icons/octicons/smiley-grin-24.svg +1 -0
  11230. docsforge/themes/material/templates/.icons/octicons/smiley-neutral-16.svg +1 -0
  11231. docsforge/themes/material/templates/.icons/octicons/smiley-neutral-24.svg +1 -0
  11232. docsforge/themes/material/templates/.icons/octicons/sort-asc-16.svg +1 -0
  11233. docsforge/themes/material/templates/.icons/octicons/sort-asc-24.svg +1 -0
  11234. docsforge/themes/material/templates/.icons/octicons/sort-desc-16.svg +1 -0
  11235. docsforge/themes/material/templates/.icons/octicons/sort-desc-24.svg +1 -0
  11236. docsforge/themes/material/templates/.icons/octicons/space-16.svg +1 -0
  11237. docsforge/themes/material/templates/.icons/octicons/space-24.svg +1 -0
  11238. docsforge/themes/material/templates/.icons/octicons/spacing-large-16.svg +1 -0
  11239. docsforge/themes/material/templates/.icons/octicons/spacing-large-24.svg +1 -0
  11240. docsforge/themes/material/templates/.icons/octicons/spacing-medium-16.svg +1 -0
  11241. docsforge/themes/material/templates/.icons/octicons/spacing-medium-24.svg +1 -0
  11242. docsforge/themes/material/templates/.icons/octicons/spacing-small-16.svg +1 -0
  11243. docsforge/themes/material/templates/.icons/octicons/spacing-small-24.svg +1 -0
  11244. docsforge/themes/material/templates/.icons/octicons/sparkle-16.svg +1 -0
  11245. docsforge/themes/material/templates/.icons/octicons/sparkle-24.svg +1 -0
  11246. docsforge/themes/material/templates/.icons/octicons/sparkle-fill-16.svg +1 -0
  11247. docsforge/themes/material/templates/.icons/octicons/sparkle-fill-24.svg +1 -0
  11248. docsforge/themes/material/templates/.icons/octicons/sparkles-fill-16.svg +1 -0
  11249. docsforge/themes/material/templates/.icons/octicons/sparkles-fill-24.svg +1 -0
  11250. docsforge/themes/material/templates/.icons/octicons/split-view-16.svg +1 -0
  11251. docsforge/themes/material/templates/.icons/octicons/split-view-24.svg +1 -0
  11252. docsforge/themes/material/templates/.icons/octicons/sponsor-tiers-16.svg +1 -0
  11253. docsforge/themes/material/templates/.icons/octicons/sponsor-tiers-24.svg +1 -0
  11254. docsforge/themes/material/templates/.icons/octicons/square-16.svg +1 -0
  11255. docsforge/themes/material/templates/.icons/octicons/square-24.svg +1 -0
  11256. docsforge/themes/material/templates/.icons/octicons/square-circle-16.svg +1 -0
  11257. docsforge/themes/material/templates/.icons/octicons/square-circle-24.svg +1 -0
  11258. docsforge/themes/material/templates/.icons/octicons/square-fill-16.svg +1 -0
  11259. docsforge/themes/material/templates/.icons/octicons/square-fill-24.svg +1 -0
  11260. docsforge/themes/material/templates/.icons/octicons/squirrel-16.svg +1 -0
  11261. docsforge/themes/material/templates/.icons/octicons/squirrel-24.svg +1 -0
  11262. docsforge/themes/material/templates/.icons/octicons/stack-16.svg +1 -0
  11263. docsforge/themes/material/templates/.icons/octicons/stack-24.svg +1 -0
  11264. docsforge/themes/material/templates/.icons/octicons/star-16.svg +1 -0
  11265. docsforge/themes/material/templates/.icons/octicons/star-24.svg +1 -0
  11266. docsforge/themes/material/templates/.icons/octicons/star-fill-16.svg +1 -0
  11267. docsforge/themes/material/templates/.icons/octicons/star-fill-24.svg +1 -0
  11268. docsforge/themes/material/templates/.icons/octicons/stop-16.svg +1 -0
  11269. docsforge/themes/material/templates/.icons/octicons/stop-24.svg +1 -0
  11270. docsforge/themes/material/templates/.icons/octicons/stopwatch-16.svg +1 -0
  11271. docsforge/themes/material/templates/.icons/octicons/stopwatch-24.svg +1 -0
  11272. docsforge/themes/material/templates/.icons/octicons/strikethrough-16.svg +1 -0
  11273. docsforge/themes/material/templates/.icons/octicons/strikethrough-24.svg +1 -0
  11274. docsforge/themes/material/templates/.icons/octicons/sun-16.svg +1 -0
  11275. docsforge/themes/material/templates/.icons/octicons/sun-24.svg +1 -0
  11276. docsforge/themes/material/templates/.icons/octicons/sync-16.svg +1 -0
  11277. docsforge/themes/material/templates/.icons/octicons/sync-24.svg +1 -0
  11278. docsforge/themes/material/templates/.icons/octicons/tab-16.svg +1 -0
  11279. docsforge/themes/material/templates/.icons/octicons/tab-24.svg +1 -0
  11280. docsforge/themes/material/templates/.icons/octicons/tab-external-16.svg +1 -0
  11281. docsforge/themes/material/templates/.icons/octicons/tab-external-24.svg +1 -0
  11282. docsforge/themes/material/templates/.icons/octicons/table-16.svg +1 -0
  11283. docsforge/themes/material/templates/.icons/octicons/table-24.svg +1 -0
  11284. docsforge/themes/material/templates/.icons/octicons/tag-16.svg +1 -0
  11285. docsforge/themes/material/templates/.icons/octicons/tag-24.svg +1 -0
  11286. docsforge/themes/material/templates/.icons/octicons/tasklist-16.svg +1 -0
  11287. docsforge/themes/material/templates/.icons/octicons/tasklist-24.svg +1 -0
  11288. docsforge/themes/material/templates/.icons/octicons/telescope-16.svg +1 -0
  11289. docsforge/themes/material/templates/.icons/octicons/telescope-24.svg +1 -0
  11290. docsforge/themes/material/templates/.icons/octicons/telescope-fill-16.svg +1 -0
  11291. docsforge/themes/material/templates/.icons/octicons/telescope-fill-24.svg +1 -0
  11292. docsforge/themes/material/templates/.icons/octicons/terminal-16.svg +1 -0
  11293. docsforge/themes/material/templates/.icons/octicons/terminal-24.svg +1 -0
  11294. docsforge/themes/material/templates/.icons/octicons/three-bars-16.svg +1 -0
  11295. docsforge/themes/material/templates/.icons/octicons/three-bars-24.svg +1 -0
  11296. docsforge/themes/material/templates/.icons/octicons/thumbsdown-16.svg +1 -0
  11297. docsforge/themes/material/templates/.icons/octicons/thumbsdown-24.svg +1 -0
  11298. docsforge/themes/material/templates/.icons/octicons/thumbsup-16.svg +1 -0
  11299. docsforge/themes/material/templates/.icons/octicons/thumbsup-24.svg +1 -0
  11300. docsforge/themes/material/templates/.icons/octicons/tools-16.svg +1 -0
  11301. docsforge/themes/material/templates/.icons/octicons/tools-24.svg +1 -0
  11302. docsforge/themes/material/templates/.icons/octicons/tracked-by-closed-completed-16.svg +1 -0
  11303. docsforge/themes/material/templates/.icons/octicons/tracked-by-closed-completed-24.svg +1 -0
  11304. docsforge/themes/material/templates/.icons/octicons/tracked-by-closed-not-planned-16.svg +1 -0
  11305. docsforge/themes/material/templates/.icons/octicons/tracked-by-closed-not-planned-24.svg +1 -0
  11306. docsforge/themes/material/templates/.icons/octicons/trash-16.svg +1 -0
  11307. docsforge/themes/material/templates/.icons/octicons/trash-24.svg +1 -0
  11308. docsforge/themes/material/templates/.icons/octicons/triangle-down-16.svg +1 -0
  11309. docsforge/themes/material/templates/.icons/octicons/triangle-down-24.svg +1 -0
  11310. docsforge/themes/material/templates/.icons/octicons/triangle-left-16.svg +1 -0
  11311. docsforge/themes/material/templates/.icons/octicons/triangle-left-24.svg +1 -0
  11312. docsforge/themes/material/templates/.icons/octicons/triangle-right-16.svg +1 -0
  11313. docsforge/themes/material/templates/.icons/octicons/triangle-right-24.svg +1 -0
  11314. docsforge/themes/material/templates/.icons/octicons/triangle-up-16.svg +1 -0
  11315. docsforge/themes/material/templates/.icons/octicons/triangle-up-24.svg +1 -0
  11316. docsforge/themes/material/templates/.icons/octicons/trophy-16.svg +1 -0
  11317. docsforge/themes/material/templates/.icons/octicons/trophy-24.svg +1 -0
  11318. docsforge/themes/material/templates/.icons/octicons/typography-16.svg +1 -0
  11319. docsforge/themes/material/templates/.icons/octicons/typography-24.svg +1 -0
  11320. docsforge/themes/material/templates/.icons/octicons/undo-16.svg +1 -0
  11321. docsforge/themes/material/templates/.icons/octicons/undo-24.svg +1 -0
  11322. docsforge/themes/material/templates/.icons/octicons/unfold-16.svg +1 -0
  11323. docsforge/themes/material/templates/.icons/octicons/unfold-24.svg +1 -0
  11324. docsforge/themes/material/templates/.icons/octicons/unlink-16.svg +1 -0
  11325. docsforge/themes/material/templates/.icons/octicons/unlink-24.svg +1 -0
  11326. docsforge/themes/material/templates/.icons/octicons/unlock-16.svg +1 -0
  11327. docsforge/themes/material/templates/.icons/octicons/unlock-24.svg +1 -0
  11328. docsforge/themes/material/templates/.icons/octicons/unmute-16.svg +1 -0
  11329. docsforge/themes/material/templates/.icons/octicons/unmute-24.svg +1 -0
  11330. docsforge/themes/material/templates/.icons/octicons/unread-16.svg +1 -0
  11331. docsforge/themes/material/templates/.icons/octicons/unread-24.svg +1 -0
  11332. docsforge/themes/material/templates/.icons/octicons/unverified-16.svg +1 -0
  11333. docsforge/themes/material/templates/.icons/octicons/unverified-24.svg +1 -0
  11334. docsforge/themes/material/templates/.icons/octicons/unwrap-16.svg +1 -0
  11335. docsforge/themes/material/templates/.icons/octicons/unwrap-24.svg +1 -0
  11336. docsforge/themes/material/templates/.icons/octicons/upload-16.svg +1 -0
  11337. docsforge/themes/material/templates/.icons/octicons/upload-24.svg +1 -0
  11338. docsforge/themes/material/templates/.icons/octicons/verified-16.svg +1 -0
  11339. docsforge/themes/material/templates/.icons/octicons/verified-24.svg +1 -0
  11340. docsforge/themes/material/templates/.icons/octicons/versions-16.svg +1 -0
  11341. docsforge/themes/material/templates/.icons/octicons/versions-24.svg +1 -0
  11342. docsforge/themes/material/templates/.icons/octicons/video-16.svg +1 -0
  11343. docsforge/themes/material/templates/.icons/octicons/video-24.svg +1 -0
  11344. docsforge/themes/material/templates/.icons/octicons/vscode-16.svg +1 -0
  11345. docsforge/themes/material/templates/.icons/octicons/vscode-32.svg +1 -0
  11346. docsforge/themes/material/templates/.icons/octicons/vscode-48.svg +1 -0
  11347. docsforge/themes/material/templates/.icons/octicons/webhook-16.svg +1 -0
  11348. docsforge/themes/material/templates/.icons/octicons/workflow-16.svg +1 -0
  11349. docsforge/themes/material/templates/.icons/octicons/workflow-24.svg +1 -0
  11350. docsforge/themes/material/templates/.icons/octicons/wrap-16.svg +1 -0
  11351. docsforge/themes/material/templates/.icons/octicons/wrap-24.svg +1 -0
  11352. docsforge/themes/material/templates/.icons/octicons/x-12.svg +1 -0
  11353. docsforge/themes/material/templates/.icons/octicons/x-16.svg +1 -0
  11354. docsforge/themes/material/templates/.icons/octicons/x-24.svg +1 -0
  11355. docsforge/themes/material/templates/.icons/octicons/x-circle-16.svg +1 -0
  11356. docsforge/themes/material/templates/.icons/octicons/x-circle-24.svg +1 -0
  11357. docsforge/themes/material/templates/.icons/octicons/x-circle-fill-12.svg +1 -0
  11358. docsforge/themes/material/templates/.icons/octicons/x-circle-fill-16.svg +1 -0
  11359. docsforge/themes/material/templates/.icons/octicons/x-circle-fill-24.svg +1 -0
  11360. docsforge/themes/material/templates/.icons/octicons/zap-16.svg +1 -0
  11361. docsforge/themes/material/templates/.icons/octicons/zap-24.svg +1 -0
  11362. docsforge/themes/material/templates/.icons/octicons/zoom-in-16.svg +1 -0
  11363. docsforge/themes/material/templates/.icons/octicons/zoom-in-24.svg +1 -0
  11364. docsforge/themes/material/templates/.icons/octicons/zoom-out-16.svg +1 -0
  11365. docsforge/themes/material/templates/.icons/octicons/zoom-out-24.svg +1 -0
  11366. docsforge/themes/material/templates/.icons/simple/1001tracklists.svg +1 -0
  11367. docsforge/themes/material/templates/.icons/simple/1and1.svg +1 -0
  11368. docsforge/themes/material/templates/.icons/simple/1dot1dot1dot1.svg +1 -0
  11369. docsforge/themes/material/templates/.icons/simple/1panel.svg +1 -0
  11370. docsforge/themes/material/templates/.icons/simple/1password.svg +1 -0
  11371. docsforge/themes/material/templates/.icons/simple/2fas.svg +1 -0
  11372. docsforge/themes/material/templates/.icons/simple/2k.svg +1 -0
  11373. docsforge/themes/material/templates/.icons/simple/30secondsofcode.svg +1 -0
  11374. docsforge/themes/material/templates/.icons/simple/365datascience.svg +1 -0
  11375. docsforge/themes/material/templates/.icons/simple/3m.svg +1 -0
  11376. docsforge/themes/material/templates/.icons/simple/42.svg +1 -0
  11377. docsforge/themes/material/templates/.icons/simple/4chan.svg +1 -0
  11378. docsforge/themes/material/templates/.icons/simple/4d.svg +1 -0
  11379. docsforge/themes/material/templates/.icons/simple/500px.svg +1 -0
  11380. docsforge/themes/material/templates/.icons/simple/7zip.svg +1 -0
  11381. docsforge/themes/material/templates/.icons/simple/99designs.svg +1 -0
  11382. docsforge/themes/material/templates/.icons/simple/9gag.svg +1 -0
  11383. docsforge/themes/material/templates/.icons/simple/LICENSE.md +30 -0
  11384. docsforge/themes/material/templates/.icons/simple/abb.svg +1 -0
  11385. docsforge/themes/material/templates/.icons/simple/abbott.svg +1 -0
  11386. docsforge/themes/material/templates/.icons/simple/abbvie.svg +1 -0
  11387. docsforge/themes/material/templates/.icons/simple/abdownloadmanager.svg +1 -0
  11388. docsforge/themes/material/templates/.icons/simple/aboutdotme.svg +1 -0
  11389. docsforge/themes/material/templates/.icons/simple/abstract.svg +1 -0
  11390. docsforge/themes/material/templates/.icons/simple/abusedotch.svg +1 -0
  11391. docsforge/themes/material/templates/.icons/simple/academia.svg +1 -0
  11392. docsforge/themes/material/templates/.icons/simple/accenture.svg +1 -0
  11393. docsforge/themes/material/templates/.icons/simple/accusoft.svg +1 -0
  11394. docsforge/themes/material/templates/.icons/simple/accuweather.svg +1 -0
  11395. docsforge/themes/material/templates/.icons/simple/acer.svg +1 -0
  11396. docsforge/themes/material/templates/.icons/simple/acm.svg +1 -0
  11397. docsforge/themes/material/templates/.icons/simple/acode.svg +1 -0
  11398. docsforge/themes/material/templates/.icons/simple/actigraph.svg +1 -0
  11399. docsforge/themes/material/templates/.icons/simple/activeloop.svg +1 -0
  11400. docsforge/themes/material/templates/.icons/simple/activision.svg +1 -0
  11401. docsforge/themes/material/templates/.icons/simple/activitypub.svg +1 -0
  11402. docsforge/themes/material/templates/.icons/simple/actix.svg +1 -0
  11403. docsforge/themes/material/templates/.icons/simple/actualbudget.svg +1 -0
  11404. docsforge/themes/material/templates/.icons/simple/acura.svg +1 -0
  11405. docsforge/themes/material/templates/.icons/simple/ada.svg +1 -0
  11406. docsforge/themes/material/templates/.icons/simple/adafruit.svg +1 -0
  11407. docsforge/themes/material/templates/.icons/simple/adaway.svg +1 -0
  11408. docsforge/themes/material/templates/.icons/simple/adblock.svg +1 -0
  11409. docsforge/themes/material/templates/.icons/simple/adblockplus.svg +1 -0
  11410. docsforge/themes/material/templates/.icons/simple/addydotio.svg +1 -0
  11411. docsforge/themes/material/templates/.icons/simple/adguard.svg +1 -0
  11412. docsforge/themes/material/templates/.icons/simple/adidas.svg +1 -0
  11413. docsforge/themes/material/templates/.icons/simple/adminer.svg +1 -0
  11414. docsforge/themes/material/templates/.icons/simple/adonisjs.svg +1 -0
  11415. docsforge/themes/material/templates/.icons/simple/adp.svg +1 -0
  11416. docsforge/themes/material/templates/.icons/simple/adroll.svg +1 -0
  11417. docsforge/themes/material/templates/.icons/simple/adventofcode.svg +1 -0
  11418. docsforge/themes/material/templates/.icons/simple/adyen.svg +1 -0
  11419. docsforge/themes/material/templates/.icons/simple/aegisauthenticator.svg +1 -0
  11420. docsforge/themes/material/templates/.icons/simple/aeroflot.svg +1 -0
  11421. docsforge/themes/material/templates/.icons/simple/aeromexico.svg +1 -0
  11422. docsforge/themes/material/templates/.icons/simple/afdian.svg +1 -0
  11423. docsforge/themes/material/templates/.icons/simple/affine.svg +1 -0
  11424. docsforge/themes/material/templates/.icons/simple/aframe.svg +1 -0
  11425. docsforge/themes/material/templates/.icons/simple/afterpay.svg +1 -0
  11426. docsforge/themes/material/templates/.icons/simple/aftership.svg +1 -0
  11427. docsforge/themes/material/templates/.icons/simple/agora.svg +1 -0
  11428. docsforge/themes/material/templates/.icons/simple/aib.svg +1 -0
  11429. docsforge/themes/material/templates/.icons/simple/aidungeon.svg +1 -0
  11430. docsforge/themes/material/templates/.icons/simple/aiohttp.svg +1 -0
  11431. docsforge/themes/material/templates/.icons/simple/aiqfome.svg +1 -0
  11432. docsforge/themes/material/templates/.icons/simple/airasia.svg +1 -0
  11433. docsforge/themes/material/templates/.icons/simple/airbnb.svg +1 -0
  11434. docsforge/themes/material/templates/.icons/simple/airbrake.svg +1 -0
  11435. docsforge/themes/material/templates/.icons/simple/airbus.svg +1 -0
  11436. docsforge/themes/material/templates/.icons/simple/airbyte.svg +1 -0
  11437. docsforge/themes/material/templates/.icons/simple/aircall.svg +1 -0
  11438. docsforge/themes/material/templates/.icons/simple/aircanada.svg +1 -0
  11439. docsforge/themes/material/templates/.icons/simple/airchina.svg +1 -0
  11440. docsforge/themes/material/templates/.icons/simple/airfrance.svg +1 -0
  11441. docsforge/themes/material/templates/.icons/simple/airindia.svg +1 -0
  11442. docsforge/themes/material/templates/.icons/simple/airplayaudio.svg +1 -0
  11443. docsforge/themes/material/templates/.icons/simple/airplayvideo.svg +1 -0
  11444. docsforge/themes/material/templates/.icons/simple/airserbia.svg +1 -0
  11445. docsforge/themes/material/templates/.icons/simple/airtable.svg +1 -0
  11446. docsforge/themes/material/templates/.icons/simple/airtel.svg +1 -0
  11447. docsforge/themes/material/templates/.icons/simple/airtransat.svg +1 -0
  11448. docsforge/themes/material/templates/.icons/simple/ajv.svg +1 -0
  11449. docsforge/themes/material/templates/.icons/simple/akamai.svg +1 -0
  11450. docsforge/themes/material/templates/.icons/simple/akasaair.svg +1 -0
  11451. docsforge/themes/material/templates/.icons/simple/akaunting.svg +1 -0
  11452. docsforge/themes/material/templates/.icons/simple/akiflow.svg +1 -0
  11453. docsforge/themes/material/templates/.icons/simple/alacritty.svg +1 -0
  11454. docsforge/themes/material/templates/.icons/simple/alamy.svg +1 -0
  11455. docsforge/themes/material/templates/.icons/simple/albertheijn.svg +1 -0
  11456. docsforge/themes/material/templates/.icons/simple/alby.svg +1 -0
  11457. docsforge/themes/material/templates/.icons/simple/alchemy.svg +1 -0
  11458. docsforge/themes/material/templates/.icons/simple/aldinord.svg +1 -0
  11459. docsforge/themes/material/templates/.icons/simple/aldisud.svg +1 -0
  11460. docsforge/themes/material/templates/.icons/simple/alfred.svg +1 -0
  11461. docsforge/themes/material/templates/.icons/simple/algolia.svg +1 -0
  11462. docsforge/themes/material/templates/.icons/simple/algorand.svg +1 -0
  11463. docsforge/themes/material/templates/.icons/simple/alibabacloud.svg +1 -0
  11464. docsforge/themes/material/templates/.icons/simple/alibabadotcom.svg +1 -0
  11465. docsforge/themes/material/templates/.icons/simple/alienware.svg +1 -0
  11466. docsforge/themes/material/templates/.icons/simple/aliexpress.svg +1 -0
  11467. docsforge/themes/material/templates/.icons/simple/alipay.svg +1 -0
  11468. docsforge/themes/material/templates/.icons/simple/alist.svg +1 -0
  11469. docsforge/themes/material/templates/.icons/simple/allegro.svg +1 -0
  11470. docsforge/themes/material/templates/.icons/simple/alliedmodders.svg +1 -0
  11471. docsforge/themes/material/templates/.icons/simple/alltrails.svg +1 -0
  11472. docsforge/themes/material/templates/.icons/simple/almalinux.svg +1 -0
  11473. docsforge/themes/material/templates/.icons/simple/alpinedotjs.svg +1 -0
  11474. docsforge/themes/material/templates/.icons/simple/alpinelinux.svg +1 -0
  11475. docsforge/themes/material/templates/.icons/simple/alternativeto.svg +1 -0
  11476. docsforge/themes/material/templates/.icons/simple/alwaysdata.svg +1 -0
  11477. docsforge/themes/material/templates/.icons/simple/amd.svg +1 -0
  11478. docsforge/themes/material/templates/.icons/simple/ameba.svg +1 -0
  11479. docsforge/themes/material/templates/.icons/simple/americanairlines.svg +1 -0
  11480. docsforge/themes/material/templates/.icons/simple/americanexpress.svg +1 -0
  11481. docsforge/themes/material/templates/.icons/simple/amg.svg +1 -0
  11482. docsforge/themes/material/templates/.icons/simple/amp.svg +1 -0
  11483. docsforge/themes/material/templates/.icons/simple/amul.svg +1 -0
  11484. docsforge/themes/material/templates/.icons/simple/ana.svg +1 -0
  11485. docsforge/themes/material/templates/.icons/simple/anaconda.svg +1 -0
  11486. docsforge/themes/material/templates/.icons/simple/analogue.svg +1 -0
  11487. docsforge/themes/material/templates/.icons/simple/andela.svg +1 -0
  11488. docsforge/themes/material/templates/.icons/simple/android.svg +1 -0
  11489. docsforge/themes/material/templates/.icons/simple/androidauto.svg +1 -0
  11490. docsforge/themes/material/templates/.icons/simple/androidstudio.svg +1 -0
  11491. docsforge/themes/material/templates/.icons/simple/angular.svg +1 -0
  11492. docsforge/themes/material/templates/.icons/simple/anilist.svg +1 -0
  11493. docsforge/themes/material/templates/.icons/simple/animalplanet.svg +1 -0
  11494. docsforge/themes/material/templates/.icons/simple/animedotjs.svg +1 -0
  11495. docsforge/themes/material/templates/.icons/simple/ankermake.svg +1 -0
  11496. docsforge/themes/material/templates/.icons/simple/anki.svg +1 -0
  11497. docsforge/themes/material/templates/.icons/simple/ansible.svg +1 -0
  11498. docsforge/themes/material/templates/.icons/simple/answer.svg +1 -0
  11499. docsforge/themes/material/templates/.icons/simple/ansys.svg +1 -0
  11500. docsforge/themes/material/templates/.icons/simple/anta.svg +1 -0
  11501. docsforge/themes/material/templates/.icons/simple/antdesign.svg +1 -0
  11502. docsforge/themes/material/templates/.icons/simple/antena3.svg +1 -0
  11503. docsforge/themes/material/templates/.icons/simple/antennapod.svg +1 -0
  11504. docsforge/themes/material/templates/.icons/simple/anthropic.svg +1 -0
  11505. docsforge/themes/material/templates/.icons/simple/antv.svg +1 -0
  11506. docsforge/themes/material/templates/.icons/simple/anycubic.svg +1 -0
  11507. docsforge/themes/material/templates/.icons/simple/anydesk.svg +1 -0
  11508. docsforge/themes/material/templates/.icons/simple/anytype.svg +1 -0
  11509. docsforge/themes/material/templates/.icons/simple/apache.svg +1 -0
  11510. docsforge/themes/material/templates/.icons/simple/apacheairflow.svg +1 -0
  11511. docsforge/themes/material/templates/.icons/simple/apacheant.svg +1 -0
  11512. docsforge/themes/material/templates/.icons/simple/apacheavro.svg +1 -0
  11513. docsforge/themes/material/templates/.icons/simple/apachecassandra.svg +1 -0
  11514. docsforge/themes/material/templates/.icons/simple/apachecloudstack.svg +1 -0
  11515. docsforge/themes/material/templates/.icons/simple/apachecordova.svg +1 -0
  11516. docsforge/themes/material/templates/.icons/simple/apachecouchdb.svg +1 -0
  11517. docsforge/themes/material/templates/.icons/simple/apachedolphinscheduler.svg +1 -0
  11518. docsforge/themes/material/templates/.icons/simple/apachedoris.svg +1 -0
  11519. docsforge/themes/material/templates/.icons/simple/apachedruid.svg +1 -0
  11520. docsforge/themes/material/templates/.icons/simple/apacheecharts.svg +1 -0
  11521. docsforge/themes/material/templates/.icons/simple/apacheflink.svg +1 -0
  11522. docsforge/themes/material/templates/.icons/simple/apachefreemarker.svg +1 -0
  11523. docsforge/themes/material/templates/.icons/simple/apachegroovy.svg +1 -0
  11524. docsforge/themes/material/templates/.icons/simple/apacheguacamole.svg +1 -0
  11525. docsforge/themes/material/templates/.icons/simple/apachehadoop.svg +1 -0
  11526. docsforge/themes/material/templates/.icons/simple/apachehbase.svg +1 -0
  11527. docsforge/themes/material/templates/.icons/simple/apachehive.svg +1 -0
  11528. docsforge/themes/material/templates/.icons/simple/apachejmeter.svg +1 -0
  11529. docsforge/themes/material/templates/.icons/simple/apachekafka.svg +1 -0
  11530. docsforge/themes/material/templates/.icons/simple/apachekylin.svg +1 -0
  11531. docsforge/themes/material/templates/.icons/simple/apachelucene.svg +1 -0
  11532. docsforge/themes/material/templates/.icons/simple/apachemaven.svg +1 -0
  11533. docsforge/themes/material/templates/.icons/simple/apachenetbeanside.svg +1 -0
  11534. docsforge/themes/material/templates/.icons/simple/apachenifi.svg +1 -0
  11535. docsforge/themes/material/templates/.icons/simple/apacheopenoffice.svg +1 -0
  11536. docsforge/themes/material/templates/.icons/simple/apacheparquet.svg +1 -0
  11537. docsforge/themes/material/templates/.icons/simple/apachepulsar.svg +1 -0
  11538. docsforge/themes/material/templates/.icons/simple/apacherocketmq.svg +1 -0
  11539. docsforge/themes/material/templates/.icons/simple/apachesolr.svg +1 -0
  11540. docsforge/themes/material/templates/.icons/simple/apachespark.svg +1 -0
  11541. docsforge/themes/material/templates/.icons/simple/apachestorm.svg +1 -0
  11542. docsforge/themes/material/templates/.icons/simple/apachesuperset.svg +1 -0
  11543. docsforge/themes/material/templates/.icons/simple/apachetomcat.svg +1 -0
  11544. docsforge/themes/material/templates/.icons/simple/aparat.svg +1 -0
  11545. docsforge/themes/material/templates/.icons/simple/apifox.svg +1 -0
  11546. docsforge/themes/material/templates/.icons/simple/apmterminals.svg +1 -0
  11547. docsforge/themes/material/templates/.icons/simple/apollographql.svg +1 -0
  11548. docsforge/themes/material/templates/.icons/simple/apostrophe.svg +1 -0
  11549. docsforge/themes/material/templates/.icons/simple/appgallery.svg +1 -0
  11550. docsforge/themes/material/templates/.icons/simple/appian.svg +1 -0
  11551. docsforge/themes/material/templates/.icons/simple/appimage.svg +1 -0
  11552. docsforge/themes/material/templates/.icons/simple/appium.svg +1 -0
  11553. docsforge/themes/material/templates/.icons/simple/apple.svg +1 -0
  11554. docsforge/themes/material/templates/.icons/simple/applearcade.svg +1 -0
  11555. docsforge/themes/material/templates/.icons/simple/applemusic.svg +1 -0
  11556. docsforge/themes/material/templates/.icons/simple/applenews.svg +1 -0
  11557. docsforge/themes/material/templates/.icons/simple/applepay.svg +1 -0
  11558. docsforge/themes/material/templates/.icons/simple/applepodcasts.svg +1 -0
  11559. docsforge/themes/material/templates/.icons/simple/appletv.svg +1 -0
  11560. docsforge/themes/material/templates/.icons/simple/appmanager.svg +1 -0
  11561. docsforge/themes/material/templates/.icons/simple/appsignal.svg +1 -0
  11562. docsforge/themes/material/templates/.icons/simple/appsmith.svg +1 -0
  11563. docsforge/themes/material/templates/.icons/simple/appstore.svg +1 -0
  11564. docsforge/themes/material/templates/.icons/simple/appveyor.svg +1 -0
  11565. docsforge/themes/material/templates/.icons/simple/appwrite.svg +1 -0
  11566. docsforge/themes/material/templates/.icons/simple/aqua.svg +1 -0
  11567. docsforge/themes/material/templates/.icons/simple/aral.svg +1 -0
  11568. docsforge/themes/material/templates/.icons/simple/arangodb.svg +1 -0
  11569. docsforge/themes/material/templates/.icons/simple/arc.svg +1 -0
  11570. docsforge/themes/material/templates/.icons/simple/arcgis.svg +1 -0
  11571. docsforge/themes/material/templates/.icons/simple/archicad.svg +1 -0
  11572. docsforge/themes/material/templates/.icons/simple/archiveofourown.svg +1 -0
  11573. docsforge/themes/material/templates/.icons/simple/archlinux.svg +1 -0
  11574. docsforge/themes/material/templates/.icons/simple/ardour.svg +1 -0
  11575. docsforge/themes/material/templates/.icons/simple/arduino.svg +1 -0
  11576. docsforge/themes/material/templates/.icons/simple/argo.svg +1 -0
  11577. docsforge/themes/material/templates/.icons/simple/argos.svg +1 -0
  11578. docsforge/themes/material/templates/.icons/simple/ariakit.svg +1 -0
  11579. docsforge/themes/material/templates/.icons/simple/arkecosystem.svg +1 -0
  11580. docsforge/themes/material/templates/.icons/simple/arlo.svg +1 -0
  11581. docsforge/themes/material/templates/.icons/simple/arm.svg +1 -0
  11582. docsforge/themes/material/templates/.icons/simple/armkeil.svg +1 -0
  11583. docsforge/themes/material/templates/.icons/simple/arstechnica.svg +1 -0
  11584. docsforge/themes/material/templates/.icons/simple/artifacthub.svg +1 -0
  11585. docsforge/themes/material/templates/.icons/simple/artixlinux.svg +1 -0
  11586. docsforge/themes/material/templates/.icons/simple/artstation.svg +1 -0
  11587. docsforge/themes/material/templates/.icons/simple/arxiv.svg +1 -0
  11588. docsforge/themes/material/templates/.icons/simple/asahilinux.svg +1 -0
  11589. docsforge/themes/material/templates/.icons/simple/asana.svg +1 -0
  11590. docsforge/themes/material/templates/.icons/simple/asciidoctor.svg +1 -0
  11591. docsforge/themes/material/templates/.icons/simple/asciinema.svg +1 -0
  11592. docsforge/themes/material/templates/.icons/simple/asda.svg +1 -0
  11593. docsforge/themes/material/templates/.icons/simple/aseprite.svg +1 -0
  11594. docsforge/themes/material/templates/.icons/simple/assemblyscript.svg +1 -0
  11595. docsforge/themes/material/templates/.icons/simple/asterisk.svg +1 -0
  11596. docsforge/themes/material/templates/.icons/simple/astonmartin.svg +1 -0
  11597. docsforge/themes/material/templates/.icons/simple/astra.svg +1 -0
  11598. docsforge/themes/material/templates/.icons/simple/astral.svg +1 -0
  11599. docsforge/themes/material/templates/.icons/simple/astro.svg +1 -0
  11600. docsforge/themes/material/templates/.icons/simple/asus.svg +1 -0
  11601. docsforge/themes/material/templates/.icons/simple/atandt.svg +1 -0
  11602. docsforge/themes/material/templates/.icons/simple/atari.svg +1 -0
  11603. docsforge/themes/material/templates/.icons/simple/atlasos.svg +1 -0
  11604. docsforge/themes/material/templates/.icons/simple/atlassian.svg +1 -0
  11605. docsforge/themes/material/templates/.icons/simple/auchan.svg +1 -0
  11606. docsforge/themes/material/templates/.icons/simple/audacity.svg +1 -0
  11607. docsforge/themes/material/templates/.icons/simple/audi.svg +1 -0
  11608. docsforge/themes/material/templates/.icons/simple/audible.svg +1 -0
  11609. docsforge/themes/material/templates/.icons/simple/audiobookshelf.svg +1 -0
  11610. docsforge/themes/material/templates/.icons/simple/audioboom.svg +1 -0
  11611. docsforge/themes/material/templates/.icons/simple/audiomack.svg +1 -0
  11612. docsforge/themes/material/templates/.icons/simple/audiotechnica.svg +1 -0
  11613. docsforge/themes/material/templates/.icons/simple/aurelia.svg +1 -0
  11614. docsforge/themes/material/templates/.icons/simple/autentique.svg +1 -0
  11615. docsforge/themes/material/templates/.icons/simple/auth0.svg +1 -0
  11616. docsforge/themes/material/templates/.icons/simple/authelia.svg +1 -0
  11617. docsforge/themes/material/templates/.icons/simple/authentik.svg +1 -0
  11618. docsforge/themes/material/templates/.icons/simple/autocad.svg +1 -0
  11619. docsforge/themes/material/templates/.icons/simple/autocannon.svg +1 -0
  11620. docsforge/themes/material/templates/.icons/simple/autodesk.svg +1 -0
  11621. docsforge/themes/material/templates/.icons/simple/autodeskmaya.svg +1 -0
  11622. docsforge/themes/material/templates/.icons/simple/autodeskrevit.svg +1 -0
  11623. docsforge/themes/material/templates/.icons/simple/autohotkey.svg +1 -0
  11624. docsforge/themes/material/templates/.icons/simple/autoit.svg +1 -0
  11625. docsforge/themes/material/templates/.icons/simple/automattic.svg +1 -0
  11626. docsforge/themes/material/templates/.icons/simple/autoprefixer.svg +1 -0
  11627. docsforge/themes/material/templates/.icons/simple/autozone.svg +1 -0
  11628. docsforge/themes/material/templates/.icons/simple/avajs.svg +1 -0
  11629. docsforge/themes/material/templates/.icons/simple/avaloniaui.svg +1 -0
  11630. docsforge/themes/material/templates/.icons/simple/avast.svg +1 -0
  11631. docsforge/themes/material/templates/.icons/simple/avianca.svg +1 -0
  11632. docsforge/themes/material/templates/.icons/simple/avira.svg +1 -0
  11633. docsforge/themes/material/templates/.icons/simple/avm.svg +1 -0
  11634. docsforge/themes/material/templates/.icons/simple/awesomelists.svg +1 -0
  11635. docsforge/themes/material/templates/.icons/simple/awesomewm.svg +1 -0
  11636. docsforge/themes/material/templates/.icons/simple/awwwards.svg +1 -0
  11637. docsforge/themes/material/templates/.icons/simple/axios.svg +1 -0
  11638. docsforge/themes/material/templates/.icons/simple/axisbank.svg +1 -0
  11639. docsforge/themes/material/templates/.icons/simple/b4x.svg +1 -0
  11640. docsforge/themes/material/templates/.icons/simple/babel.svg +1 -0
  11641. docsforge/themes/material/templates/.icons/simple/babelio.svg +1 -0
  11642. docsforge/themes/material/templates/.icons/simple/babylondotjs.svg +1 -0
  11643. docsforge/themes/material/templates/.icons/simple/backblaze.svg +1 -0
  11644. docsforge/themes/material/templates/.icons/simple/backbone.svg +1 -0
  11645. docsforge/themes/material/templates/.icons/simple/backbonedotjs.svg +1 -0
  11646. docsforge/themes/material/templates/.icons/simple/backendless.svg +1 -0
  11647. docsforge/themes/material/templates/.icons/simple/backstage.svg +1 -0
  11648. docsforge/themes/material/templates/.icons/simple/backstage_casting.svg +1 -0
  11649. docsforge/themes/material/templates/.icons/simple/badoo.svg +1 -0
  11650. docsforge/themes/material/templates/.icons/simple/baidu.svg +1 -0
  11651. docsforge/themes/material/templates/.icons/simple/bakalari.svg +1 -0
  11652. docsforge/themes/material/templates/.icons/simple/bamboo.svg +1 -0
  11653. docsforge/themes/material/templates/.icons/simple/bambulab.svg +1 -0
  11654. docsforge/themes/material/templates/.icons/simple/bandcamp.svg +1 -0
  11655. docsforge/themes/material/templates/.icons/simple/bandlab.svg +1 -0
  11656. docsforge/themes/material/templates/.icons/simple/bandrautomation.svg +1 -0
  11657. docsforge/themes/material/templates/.icons/simple/bandsintown.svg +1 -0
  11658. docsforge/themes/material/templates/.icons/simple/bankofamerica.svg +1 -0
  11659. docsforge/themes/material/templates/.icons/simple/barclays.svg +1 -0
  11660. docsforge/themes/material/templates/.icons/simple/baremetrics.svg +1 -0
  11661. docsforge/themes/material/templates/.icons/simple/barmenia.svg +1 -0
  11662. docsforge/themes/material/templates/.icons/simple/basecamp.svg +1 -0
  11663. docsforge/themes/material/templates/.icons/simple/baserow.svg +1 -0
  11664. docsforge/themes/material/templates/.icons/simple/basicattentiontoken.svg +1 -0
  11665. docsforge/themes/material/templates/.icons/simple/bastyon.svg +1 -0
  11666. docsforge/themes/material/templates/.icons/simple/bat.svg +1 -0
  11667. docsforge/themes/material/templates/.icons/simple/bata.svg +1 -0
  11668. docsforge/themes/material/templates/.icons/simple/battledotnet.svg +1 -0
  11669. docsforge/themes/material/templates/.icons/simple/bazel.svg +1 -0
  11670. docsforge/themes/material/templates/.icons/simple/beatport.svg +1 -0
  11671. docsforge/themes/material/templates/.icons/simple/beats.svg +1 -0
  11672. docsforge/themes/material/templates/.icons/simple/beatsbydre.svg +1 -0
  11673. docsforge/themes/material/templates/.icons/simple/beatstars.svg +1 -0
  11674. docsforge/themes/material/templates/.icons/simple/beekeeperstudio.svg +1 -0
  11675. docsforge/themes/material/templates/.icons/simple/behance.svg +1 -0
  11676. docsforge/themes/material/templates/.icons/simple/beijingsubway.svg +1 -0
  11677. docsforge/themes/material/templates/.icons/simple/bem.svg +1 -0
  11678. docsforge/themes/material/templates/.icons/simple/bentley.svg +1 -0
  11679. docsforge/themes/material/templates/.icons/simple/bento.svg +1 -0
  11680. docsforge/themes/material/templates/.icons/simple/bentobox.svg +1 -0
  11681. docsforge/themes/material/templates/.icons/simple/bentoml.svg +1 -0
  11682. docsforge/themes/material/templates/.icons/simple/bereal.svg +1 -0
  11683. docsforge/themes/material/templates/.icons/simple/betfair.svg +1 -0
  11684. docsforge/themes/material/templates/.icons/simple/betterauth.svg +1 -0
  11685. docsforge/themes/material/templates/.icons/simple/betterdiscord.svg +1 -0
  11686. docsforge/themes/material/templates/.icons/simple/betterstack.svg +1 -0
  11687. docsforge/themes/material/templates/.icons/simple/bevy.svg +1 -0
  11688. docsforge/themes/material/templates/.icons/simple/bigbasket.svg +1 -0
  11689. docsforge/themes/material/templates/.icons/simple/bigbluebutton.svg +1 -0
  11690. docsforge/themes/material/templates/.icons/simple/bigcartel.svg +1 -0
  11691. docsforge/themes/material/templates/.icons/simple/bigcommerce.svg +1 -0
  11692. docsforge/themes/material/templates/.icons/simple/bilibili.svg +1 -0
  11693. docsforge/themes/material/templates/.icons/simple/billboard.svg +1 -0
  11694. docsforge/themes/material/templates/.icons/simple/bim.svg +1 -0
  11695. docsforge/themes/material/templates/.icons/simple/binance.svg +1 -0
  11696. docsforge/themes/material/templates/.icons/simple/bioconductor.svg +1 -0
  11697. docsforge/themes/material/templates/.icons/simple/biolink.svg +1 -0
  11698. docsforge/themes/material/templates/.icons/simple/biome.svg +1 -0
  11699. docsforge/themes/material/templates/.icons/simple/bisecthosting.svg +1 -0
  11700. docsforge/themes/material/templates/.icons/simple/bit.svg +1 -0
  11701. docsforge/themes/material/templates/.icons/simple/bitbucket.svg +1 -0
  11702. docsforge/themes/material/templates/.icons/simple/bitcoin.svg +1 -0
  11703. docsforge/themes/material/templates/.icons/simple/bitcoincash.svg +1 -0
  11704. docsforge/themes/material/templates/.icons/simple/bitcoinsv.svg +1 -0
  11705. docsforge/themes/material/templates/.icons/simple/bitcomet.svg +1 -0
  11706. docsforge/themes/material/templates/.icons/simple/bitdefender.svg +1 -0
  11707. docsforge/themes/material/templates/.icons/simple/bitly.svg +1 -0
  11708. docsforge/themes/material/templates/.icons/simple/bitrise.svg +1 -0
  11709. docsforge/themes/material/templates/.icons/simple/bitsy.svg +1 -0
  11710. docsforge/themes/material/templates/.icons/simple/bittorrent.svg +1 -0
  11711. docsforge/themes/material/templates/.icons/simple/bitwarden.svg +1 -0
  11712. docsforge/themes/material/templates/.icons/simple/bitwig.svg +1 -0
  11713. docsforge/themes/material/templates/.icons/simple/black.svg +1 -0
  11714. docsforge/themes/material/templates/.icons/simple/blackberry.svg +1 -0
  11715. docsforge/themes/material/templates/.icons/simple/blackmagicdesign.svg +1 -0
  11716. docsforge/themes/material/templates/.icons/simple/blazemeter.svg +1 -0
  11717. docsforge/themes/material/templates/.icons/simple/blazor.svg +1 -0
  11718. docsforge/themes/material/templates/.icons/simple/blender.svg +1 -0
  11719. docsforge/themes/material/templates/.icons/simple/blibli.svg +1 -0
  11720. docsforge/themes/material/templates/.icons/simple/blockbench.svg +1 -0
  11721. docsforge/themes/material/templates/.icons/simple/blockchaindotcom.svg +1 -0
  11722. docsforge/themes/material/templates/.icons/simple/blogger.svg +1 -0
  11723. docsforge/themes/material/templates/.icons/simple/bloglovin.svg +1 -0
  11724. docsforge/themes/material/templates/.icons/simple/blueprint.svg +1 -0
  11725. docsforge/themes/material/templates/.icons/simple/bluesky.svg +1 -0
  11726. docsforge/themes/material/templates/.icons/simple/bluesound.svg +1 -0
  11727. docsforge/themes/material/templates/.icons/simple/bluetooth.svg +1 -0
  11728. docsforge/themes/material/templates/.icons/simple/bmcsoftware.svg +1 -0
  11729. docsforge/themes/material/templates/.icons/simple/bmw.svg +1 -0
  11730. docsforge/themes/material/templates/.icons/simple/bnbchain.svg +1 -0
  11731. docsforge/themes/material/templates/.icons/simple/boardgamegeek.svg +1 -0
  11732. docsforge/themes/material/templates/.icons/simple/boat.svg +1 -0
  11733. docsforge/themes/material/templates/.icons/simple/boehringeringelheim.svg +1 -0
  11734. docsforge/themes/material/templates/.icons/simple/boeing.svg +1 -0
  11735. docsforge/themes/material/templates/.icons/simple/bohemiainteractive.svg +1 -0
  11736. docsforge/themes/material/templates/.icons/simple/bombardier.svg +1 -0
  11737. docsforge/themes/material/templates/.icons/simple/bookalope.svg +1 -0
  11738. docsforge/themes/material/templates/.icons/simple/bookbub.svg +1 -0
  11739. docsforge/themes/material/templates/.icons/simple/bookingdotcom.svg +1 -0
  11740. docsforge/themes/material/templates/.icons/simple/bookmeter.svg +1 -0
  11741. docsforge/themes/material/templates/.icons/simple/bookmyshow.svg +1 -0
  11742. docsforge/themes/material/templates/.icons/simple/bookstack.svg +1 -0
  11743. docsforge/themes/material/templates/.icons/simple/boost.svg +1 -0
  11744. docsforge/themes/material/templates/.icons/simple/boosty.svg +1 -0
  11745. docsforge/themes/material/templates/.icons/simple/boots.svg +1 -0
  11746. docsforge/themes/material/templates/.icons/simple/bootstrap.svg +1 -0
  11747. docsforge/themes/material/templates/.icons/simple/borgbackup.svg +1 -0
  11748. docsforge/themes/material/templates/.icons/simple/bosch.svg +1 -0
  11749. docsforge/themes/material/templates/.icons/simple/bose.svg +1 -0
  11750. docsforge/themes/material/templates/.icons/simple/botblecms.svg +1 -0
  11751. docsforge/themes/material/templates/.icons/simple/boulanger.svg +1 -0
  11752. docsforge/themes/material/templates/.icons/simple/bower.svg +1 -0
  11753. docsforge/themes/material/templates/.icons/simple/box.svg +1 -0
  11754. docsforge/themes/material/templates/.icons/simple/boxysvg.svg +1 -0
  11755. docsforge/themes/material/templates/.icons/simple/braintree.svg +1 -0
  11756. docsforge/themes/material/templates/.icons/simple/braintrust.svg +1 -0
  11757. docsforge/themes/material/templates/.icons/simple/brandfetch.svg +1 -0
  11758. docsforge/themes/material/templates/.icons/simple/brandfolder.svg +1 -0
  11759. docsforge/themes/material/templates/.icons/simple/brave.svg +1 -0
  11760. docsforge/themes/material/templates/.icons/simple/breaker.svg +1 -0
  11761. docsforge/themes/material/templates/.icons/simple/brenntag.svg +1 -0
  11762. docsforge/themes/material/templates/.icons/simple/brevo.svg +1 -0
  11763. docsforge/themes/material/templates/.icons/simple/brex.svg +1 -0
  11764. docsforge/themes/material/templates/.icons/simple/bricks.svg +1 -0
  11765. docsforge/themes/material/templates/.icons/simple/britishairways.svg +1 -0
  11766. docsforge/themes/material/templates/.icons/simple/broadcom.svg +1 -0
  11767. docsforge/themes/material/templates/.icons/simple/bruno.svg +1 -0
  11768. docsforge/themes/material/templates/.icons/simple/bsd.svg +1 -0
  11769. docsforge/themes/material/templates/.icons/simple/bspwm.svg +1 -0
  11770. docsforge/themes/material/templates/.icons/simple/bt.svg +1 -0
  11771. docsforge/themes/material/templates/.icons/simple/buddy.svg +1 -0
  11772. docsforge/themes/material/templates/.icons/simple/budibase.svg +1 -0
  11773. docsforge/themes/material/templates/.icons/simple/buefy.svg +1 -0
  11774. docsforge/themes/material/templates/.icons/simple/buffer.svg +1 -0
  11775. docsforge/themes/material/templates/.icons/simple/bugatti.svg +1 -0
  11776. docsforge/themes/material/templates/.icons/simple/bugcrowd.svg +1 -0
  11777. docsforge/themes/material/templates/.icons/simple/buhl.svg +1 -0
  11778. docsforge/themes/material/templates/.icons/simple/buildkite.svg +1 -0
  11779. docsforge/themes/material/templates/.icons/simple/builtbybit.svg +1 -0
  11780. docsforge/themes/material/templates/.icons/simple/bukalapak.svg +1 -0
  11781. docsforge/themes/material/templates/.icons/simple/bulma.svg +1 -0
  11782. docsforge/themes/material/templates/.icons/simple/bun.svg +1 -0
  11783. docsforge/themes/material/templates/.icons/simple/bungie.svg +1 -0
  11784. docsforge/themes/material/templates/.icons/simple/bunnydotnet.svg +1 -0
  11785. docsforge/themes/material/templates/.icons/simple/bunq.svg +1 -0
  11786. docsforge/themes/material/templates/.icons/simple/burgerking.svg +1 -0
  11787. docsforge/themes/material/templates/.icons/simple/burpsuite.svg +1 -0
  11788. docsforge/themes/material/templates/.icons/simple/burton.svg +1 -0
  11789. docsforge/themes/material/templates/.icons/simple/buymeacoffee.svg +1 -0
  11790. docsforge/themes/material/templates/.icons/simple/buysellads.svg +1 -0
  11791. docsforge/themes/material/templates/.icons/simple/buzzfeed.svg +1 -0
  11792. docsforge/themes/material/templates/.icons/simple/bvg.svg +1 -0
  11793. docsforge/themes/material/templates/.icons/simple/byjus.svg +1 -0
  11794. docsforge/themes/material/templates/.icons/simple/bytedance.svg +1 -0
  11795. docsforge/themes/material/templates/.icons/simple/c.svg +1 -0
  11796. docsforge/themes/material/templates/.icons/simple/cachet.svg +1 -0
  11797. docsforge/themes/material/templates/.icons/simple/caddy.svg +1 -0
  11798. docsforge/themes/material/templates/.icons/simple/cadillac.svg +1 -0
  11799. docsforge/themes/material/templates/.icons/simple/cafepress.svg +1 -0
  11800. docsforge/themes/material/templates/.icons/simple/cairographics.svg +1 -0
  11801. docsforge/themes/material/templates/.icons/simple/cairometro.svg +1 -0
  11802. docsforge/themes/material/templates/.icons/simple/caixabank.svg +1 -0
  11803. docsforge/themes/material/templates/.icons/simple/cakephp.svg +1 -0
  11804. docsforge/themes/material/templates/.icons/simple/caldotcom.svg +1 -0
  11805. docsforge/themes/material/templates/.icons/simple/calendly.svg +1 -0
  11806. docsforge/themes/material/templates/.icons/simple/calibreweb.svg +1 -0
  11807. docsforge/themes/material/templates/.icons/simple/campaignmonitor.svg +1 -0
  11808. docsforge/themes/material/templates/.icons/simple/camunda.svg +1 -0
  11809. docsforge/themes/material/templates/.icons/simple/canonical.svg +1 -0
  11810. docsforge/themes/material/templates/.icons/simple/canvas.svg +1 -0
  11811. docsforge/themes/material/templates/.icons/simple/capacitor.svg +1 -0
  11812. docsforge/themes/material/templates/.icons/simple/caprover.svg +1 -0
  11813. docsforge/themes/material/templates/.icons/simple/cardano.svg +1 -0
  11814. docsforge/themes/material/templates/.icons/simple/cardmarket.svg +1 -0
  11815. docsforge/themes/material/templates/.icons/simple/carlsberggroup.svg +1 -0
  11816. docsforge/themes/material/templates/.icons/simple/carrd.svg +1 -0
  11817. docsforge/themes/material/templates/.icons/simple/carrefour.svg +1 -0
  11818. docsforge/themes/material/templates/.icons/simple/carthrottle.svg +1 -0
  11819. docsforge/themes/material/templates/.icons/simple/carto.svg +1 -0
  11820. docsforge/themes/material/templates/.icons/simple/cashapp.svg +1 -0
  11821. docsforge/themes/material/templates/.icons/simple/castbox.svg +1 -0
  11822. docsforge/themes/material/templates/.icons/simple/castorama.svg +1 -0
  11823. docsforge/themes/material/templates/.icons/simple/castro.svg +1 -0
  11824. docsforge/themes/material/templates/.icons/simple/caterpillar.svg +1 -0
  11825. docsforge/themes/material/templates/.icons/simple/cbc.svg +1 -0
  11826. docsforge/themes/material/templates/.icons/simple/cbs.svg +1 -0
  11827. docsforge/themes/material/templates/.icons/simple/ccc.svg +1 -0
  11828. docsforge/themes/material/templates/.icons/simple/ccleaner.svg +1 -0
  11829. docsforge/themes/material/templates/.icons/simple/cdprojekt.svg +1 -0
  11830. docsforge/themes/material/templates/.icons/simple/ce.svg +1 -0
  11831. docsforge/themes/material/templates/.icons/simple/celery.svg +1 -0
  11832. docsforge/themes/material/templates/.icons/simple/celestron.svg +1 -0
  11833. docsforge/themes/material/templates/.icons/simple/centos.svg +1 -0
  11834. docsforge/themes/material/templates/.icons/simple/ceph.svg +1 -0
  11835. docsforge/themes/material/templates/.icons/simple/cesium.svg +1 -0
  11836. docsforge/themes/material/templates/.icons/simple/chai.svg +1 -0
  11837. docsforge/themes/material/templates/.icons/simple/chainguard.svg +1 -0
  11838. docsforge/themes/material/templates/.icons/simple/chainlink.svg +1 -0
  11839. docsforge/themes/material/templates/.icons/simple/chakraui.svg +1 -0
  11840. docsforge/themes/material/templates/.icons/simple/changedetection.svg +1 -0
  11841. docsforge/themes/material/templates/.icons/simple/channel4.svg +1 -0
  11842. docsforge/themes/material/templates/.icons/simple/charles.svg +1 -0
  11843. docsforge/themes/material/templates/.icons/simple/chartdotjs.svg +1 -0
  11844. docsforge/themes/material/templates/.icons/simple/chartmogul.svg +1 -0
  11845. docsforge/themes/material/templates/.icons/simple/chase.svg +1 -0
  11846. docsforge/themes/material/templates/.icons/simple/chatbot.svg +1 -0
  11847. docsforge/themes/material/templates/.icons/simple/chatwoot.svg +1 -0
  11848. docsforge/themes/material/templates/.icons/simple/checkio.svg +1 -0
  11849. docsforge/themes/material/templates/.icons/simple/checkmarx.svg +1 -0
  11850. docsforge/themes/material/templates/.icons/simple/checkmk.svg +1 -0
  11851. docsforge/themes/material/templates/.icons/simple/chedraui.svg +1 -0
  11852. docsforge/themes/material/templates/.icons/simple/cheerio.svg +1 -0
  11853. docsforge/themes/material/templates/.icons/simple/chef.svg +1 -0
  11854. docsforge/themes/material/templates/.icons/simple/chemex.svg +1 -0
  11855. docsforge/themes/material/templates/.icons/simple/chessdotcom.svg +1 -0
  11856. docsforge/themes/material/templates/.icons/simple/chevrolet.svg +1 -0
  11857. docsforge/themes/material/templates/.icons/simple/chianetwork.svg +1 -0
  11858. docsforge/themes/material/templates/.icons/simple/chinaeasternairlines.svg +1 -0
  11859. docsforge/themes/material/templates/.icons/simple/chinasouthernairlines.svg +1 -0
  11860. docsforge/themes/material/templates/.icons/simple/chocolatey.svg +1 -0
  11861. docsforge/themes/material/templates/.icons/simple/chromatic.svg +1 -0
  11862. docsforge/themes/material/templates/.icons/simple/chromewebstore.svg +1 -0
  11863. docsforge/themes/material/templates/.icons/simple/chrysler.svg +1 -0
  11864. docsforge/themes/material/templates/.icons/simple/chupachups.svg +1 -0
  11865. docsforge/themes/material/templates/.icons/simple/cilium.svg +1 -0
  11866. docsforge/themes/material/templates/.icons/simple/cinema4d.svg +1 -0
  11867. docsforge/themes/material/templates/.icons/simple/cinnamon.svg +1 -0
  11868. docsforge/themes/material/templates/.icons/simple/circle.svg +1 -0
  11869. docsforge/themes/material/templates/.icons/simple/circleci.svg +1 -0
  11870. docsforge/themes/material/templates/.icons/simple/circuitverse.svg +1 -0
  11871. docsforge/themes/material/templates/.icons/simple/cirrusci.svg +1 -0
  11872. docsforge/themes/material/templates/.icons/simple/cisco.svg +1 -0
  11873. docsforge/themes/material/templates/.icons/simple/citrix.svg +1 -0
  11874. docsforge/themes/material/templates/.icons/simple/citroen.svg +1 -0
  11875. docsforge/themes/material/templates/.icons/simple/civicrm.svg +1 -0
  11876. docsforge/themes/material/templates/.icons/simple/civo.svg +1 -0
  11877. docsforge/themes/material/templates/.icons/simple/clarifai.svg +1 -0
  11878. docsforge/themes/material/templates/.icons/simple/claris.svg +1 -0
  11879. docsforge/themes/material/templates/.icons/simple/clarivate.svg +1 -0
  11880. docsforge/themes/material/templates/.icons/simple/claude.svg +1 -0
  11881. docsforge/themes/material/templates/.icons/simple/clerk.svg +1 -0
  11882. docsforge/themes/material/templates/.icons/simple/clevercloud.svg +1 -0
  11883. docsforge/themes/material/templates/.icons/simple/clickhouse.svg +1 -0
  11884. docsforge/themes/material/templates/.icons/simple/clickup.svg +1 -0
  11885. docsforge/themes/material/templates/.icons/simple/clion.svg +1 -0
  11886. docsforge/themes/material/templates/.icons/simple/clockify.svg +1 -0
  11887. docsforge/themes/material/templates/.icons/simple/clojure.svg +1 -0
  11888. docsforge/themes/material/templates/.icons/simple/cloud66.svg +1 -0
  11889. docsforge/themes/material/templates/.icons/simple/cloudbees.svg +1 -0
  11890. docsforge/themes/material/templates/.icons/simple/cloudcannon.svg +1 -0
  11891. docsforge/themes/material/templates/.icons/simple/cloudera.svg +1 -0
  11892. docsforge/themes/material/templates/.icons/simple/cloudflare.svg +1 -0
  11893. docsforge/themes/material/templates/.icons/simple/cloudflarepages.svg +1 -0
  11894. docsforge/themes/material/templates/.icons/simple/cloudflareworkers.svg +1 -0
  11895. docsforge/themes/material/templates/.icons/simple/cloudfoundry.svg +1 -0
  11896. docsforge/themes/material/templates/.icons/simple/cloudinary.svg +1 -0
  11897. docsforge/themes/material/templates/.icons/simple/cloudnativebuild.svg +1 -0
  11898. docsforge/themes/material/templates/.icons/simple/cloudron.svg +1 -0
  11899. docsforge/themes/material/templates/.icons/simple/cloudsmith.svg +1 -0
  11900. docsforge/themes/material/templates/.icons/simple/cloudways.svg +1 -0
  11901. docsforge/themes/material/templates/.icons/simple/clubforce.svg +1 -0
  11902. docsforge/themes/material/templates/.icons/simple/clubhouse.svg +1 -0
  11903. docsforge/themes/material/templates/.icons/simple/clyp.svg +1 -0
  11904. docsforge/themes/material/templates/.icons/simple/cmake.svg +1 -0
  11905. docsforge/themes/material/templates/.icons/simple/cncf.svg +1 -0
  11906. docsforge/themes/material/templates/.icons/simple/cnes.svg +1 -0
  11907. docsforge/themes/material/templates/.icons/simple/cnet.svg +1 -0
  11908. docsforge/themes/material/templates/.icons/simple/cnn.svg +1 -0
  11909. docsforge/themes/material/templates/.icons/simple/cobalt.svg +1 -0
  11910. docsforge/themes/material/templates/.icons/simple/cocacola.svg +1 -0
  11911. docsforge/themes/material/templates/.icons/simple/cockpit.svg +1 -0
  11912. docsforge/themes/material/templates/.icons/simple/cockroachlabs.svg +1 -0
  11913. docsforge/themes/material/templates/.icons/simple/cocoapods.svg +1 -0
  11914. docsforge/themes/material/templates/.icons/simple/cocos.svg +1 -0
  11915. docsforge/themes/material/templates/.icons/simple/coda.svg +1 -0
  11916. docsforge/themes/material/templates/.icons/simple/codacy.svg +1 -0
  11917. docsforge/themes/material/templates/.icons/simple/codeberg.svg +1 -0
  11918. docsforge/themes/material/templates/.icons/simple/codeblocks.svg +1 -0
  11919. docsforge/themes/material/templates/.icons/simple/codecademy.svg +1 -0
  11920. docsforge/themes/material/templates/.icons/simple/codeceptjs.svg +1 -0
  11921. docsforge/themes/material/templates/.icons/simple/codechef.svg +1 -0
  11922. docsforge/themes/material/templates/.icons/simple/codeclimate.svg +1 -0
  11923. docsforge/themes/material/templates/.icons/simple/codecov.svg +1 -0
  11924. docsforge/themes/material/templates/.icons/simple/codecrafters.svg +1 -0
  11925. docsforge/themes/material/templates/.icons/simple/codefactor.svg +1 -0
  11926. docsforge/themes/material/templates/.icons/simple/codeforces.svg +1 -0
  11927. docsforge/themes/material/templates/.icons/simple/codefresh.svg +1 -0
  11928. docsforge/themes/material/templates/.icons/simple/codeigniter.svg +1 -0
  11929. docsforge/themes/material/templates/.icons/simple/codemagic.svg +1 -0
  11930. docsforge/themes/material/templates/.icons/simple/codementor.svg +1 -0
  11931. docsforge/themes/material/templates/.icons/simple/codemirror.svg +1 -0
  11932. docsforge/themes/material/templates/.icons/simple/codenewbie.svg +1 -0
  11933. docsforge/themes/material/templates/.icons/simple/codeproject.svg +1 -0
  11934. docsforge/themes/material/templates/.icons/simple/coder.svg +1 -0
  11935. docsforge/themes/material/templates/.icons/simple/coderabbit.svg +1 -0
  11936. docsforge/themes/material/templates/.icons/simple/codersrank.svg +1 -0
  11937. docsforge/themes/material/templates/.icons/simple/coderwall.svg +1 -0
  11938. docsforge/themes/material/templates/.icons/simple/codesandbox.svg +1 -0
  11939. docsforge/themes/material/templates/.icons/simple/codeship.svg +1 -0
  11940. docsforge/themes/material/templates/.icons/simple/codesignal.svg +1 -0
  11941. docsforge/themes/material/templates/.icons/simple/codestream.svg +1 -0
  11942. docsforge/themes/material/templates/.icons/simple/codewars.svg +1 -0
  11943. docsforge/themes/material/templates/.icons/simple/codingame.svg +1 -0
  11944. docsforge/themes/material/templates/.icons/simple/codingninjas.svg +1 -0
  11945. docsforge/themes/material/templates/.icons/simple/codio.svg +1 -0
  11946. docsforge/themes/material/templates/.icons/simple/coffeescript.svg +1 -0
  11947. docsforge/themes/material/templates/.icons/simple/coggle.svg +1 -0
  11948. docsforge/themes/material/templates/.icons/simple/coinbase.svg +1 -0
  11949. docsforge/themes/material/templates/.icons/simple/coinmarketcap.svg +1 -0
  11950. docsforge/themes/material/templates/.icons/simple/collaboraonline.svg +1 -0
  11951. docsforge/themes/material/templates/.icons/simple/comicfury.svg +1 -0
  11952. docsforge/themes/material/templates/.icons/simple/comma.svg +1 -0
  11953. docsforge/themes/material/templates/.icons/simple/commerzbank.svg +1 -0
  11954. docsforge/themes/material/templates/.icons/simple/commitlint.svg +1 -0
  11955. docsforge/themes/material/templates/.icons/simple/commodore.svg +1 -0
  11956. docsforge/themes/material/templates/.icons/simple/commonlisp.svg +1 -0
  11957. docsforge/themes/material/templates/.icons/simple/commonworkflowlanguage.svg +1 -0
  11958. docsforge/themes/material/templates/.icons/simple/compilerexplorer.svg +1 -0
  11959. docsforge/themes/material/templates/.icons/simple/composer.svg +1 -0
  11960. docsforge/themes/material/templates/.icons/simple/comptia.svg +1 -0
  11961. docsforge/themes/material/templates/.icons/simple/comsol.svg +1 -0
  11962. docsforge/themes/material/templates/.icons/simple/conan.svg +1 -0
  11963. docsforge/themes/material/templates/.icons/simple/concourse.svg +1 -0
  11964. docsforge/themes/material/templates/.icons/simple/condaforge.svg +1 -0
  11965. docsforge/themes/material/templates/.icons/simple/conekta.svg +1 -0
  11966. docsforge/themes/material/templates/.icons/simple/confluence.svg +1 -0
  11967. docsforge/themes/material/templates/.icons/simple/construct3.svg +1 -0
  11968. docsforge/themes/material/templates/.icons/simple/consul.svg +1 -0
  11969. docsforge/themes/material/templates/.icons/simple/contabo.svg +1 -0
  11970. docsforge/themes/material/templates/.icons/simple/contactlesspayment.svg +1 -0
  11971. docsforge/themes/material/templates/.icons/simple/containerd.svg +1 -0
  11972. docsforge/themes/material/templates/.icons/simple/contao.svg +1 -0
  11973. docsforge/themes/material/templates/.icons/simple/contentful.svg +1 -0
  11974. docsforge/themes/material/templates/.icons/simple/contentstack.svg +1 -0
  11975. docsforge/themes/material/templates/.icons/simple/continente.svg +1 -0
  11976. docsforge/themes/material/templates/.icons/simple/contributorcovenant.svg +1 -0
  11977. docsforge/themes/material/templates/.icons/simple/conventionalcommits.svg +1 -0
  11978. docsforge/themes/material/templates/.icons/simple/convertio.svg +1 -0
  11979. docsforge/themes/material/templates/.icons/simple/cookiecutter.svg +1 -0
  11980. docsforge/themes/material/templates/.icons/simple/coolermaster.svg +1 -0
  11981. docsforge/themes/material/templates/.icons/simple/coolify.svg +1 -0
  11982. docsforge/themes/material/templates/.icons/simple/coop.svg +1 -0
  11983. docsforge/themes/material/templates/.icons/simple/copaairlines.svg +1 -0
  11984. docsforge/themes/material/templates/.icons/simple/coppel.svg +1 -0
  11985. docsforge/themes/material/templates/.icons/simple/cora.svg +1 -0
  11986. docsforge/themes/material/templates/.icons/simple/coreldraw.svg +1 -0
  11987. docsforge/themes/material/templates/.icons/simple/coronaengine.svg +1 -0
  11988. docsforge/themes/material/templates/.icons/simple/coronarenderer.svg +1 -0
  11989. docsforge/themes/material/templates/.icons/simple/corsair.svg +1 -0
  11990. docsforge/themes/material/templates/.icons/simple/couchbase.svg +1 -0
  11991. docsforge/themes/material/templates/.icons/simple/counterstrike.svg +1 -0
  11992. docsforge/themes/material/templates/.icons/simple/countingworkspro.svg +1 -0
  11993. docsforge/themes/material/templates/.icons/simple/coursera.svg +1 -0
  11994. docsforge/themes/material/templates/.icons/simple/coveralls.svg +1 -0
  11995. docsforge/themes/material/templates/.icons/simple/coze.svg +1 -0
  11996. docsforge/themes/material/templates/.icons/simple/cpanel.svg +1 -0
  11997. docsforge/themes/material/templates/.icons/simple/cplusplus.svg +1 -0
  11998. docsforge/themes/material/templates/.icons/simple/cplusplusbuilder.svg +1 -0
  11999. docsforge/themes/material/templates/.icons/simple/craftcms.svg +1 -0
  12000. docsforge/themes/material/templates/.icons/simple/craftsman.svg +1 -0
  12001. docsforge/themes/material/templates/.icons/simple/cratedb.svg +1 -0
  12002. docsforge/themes/material/templates/.icons/simple/crayon.svg +1 -0
  12003. docsforge/themes/material/templates/.icons/simple/creality.svg +1 -0
  12004. docsforge/themes/material/templates/.icons/simple/createreactapp.svg +1 -0
  12005. docsforge/themes/material/templates/.icons/simple/creativecommons.svg +1 -0
  12006. docsforge/themes/material/templates/.icons/simple/creativetechnology.svg +1 -0
  12007. docsforge/themes/material/templates/.icons/simple/credly.svg +1 -0
  12008. docsforge/themes/material/templates/.icons/simple/crehana.svg +1 -0
  12009. docsforge/themes/material/templates/.icons/simple/crewai.svg +1 -0
  12010. docsforge/themes/material/templates/.icons/simple/crewunited.svg +1 -0
  12011. docsforge/themes/material/templates/.icons/simple/criticalrole.svg +1 -0
  12012. docsforge/themes/material/templates/.icons/simple/crowdin.svg +1 -0
  12013. docsforge/themes/material/templates/.icons/simple/crowdsource.svg +1 -0
  12014. docsforge/themes/material/templates/.icons/simple/crunchbase.svg +1 -0
  12015. docsforge/themes/material/templates/.icons/simple/crunchyroll.svg +1 -0
  12016. docsforge/themes/material/templates/.icons/simple/cryengine.svg +1 -0
  12017. docsforge/themes/material/templates/.icons/simple/cryptomator.svg +1 -0
  12018. docsforge/themes/material/templates/.icons/simple/cryptpad.svg +1 -0
  12019. docsforge/themes/material/templates/.icons/simple/crystal.svg +1 -0
  12020. docsforge/themes/material/templates/.icons/simple/csdn.svg +1 -0
  12021. docsforge/themes/material/templates/.icons/simple/css.svg +1 -0
  12022. docsforge/themes/material/templates/.icons/simple/cssdesignawards.svg +1 -0
  12023. docsforge/themes/material/templates/.icons/simple/cssmodules.svg +1 -0
  12024. docsforge/themes/material/templates/.icons/simple/csswizardry.svg +1 -0
  12025. docsforge/themes/material/templates/.icons/simple/cts.svg +1 -0
  12026. docsforge/themes/material/templates/.icons/simple/cucumber.svg +1 -0
  12027. docsforge/themes/material/templates/.icons/simple/cultura.svg +1 -0
  12028. docsforge/themes/material/templates/.icons/simple/curl.svg +1 -0
  12029. docsforge/themes/material/templates/.icons/simple/curseforge.svg +1 -0
  12030. docsforge/themes/material/templates/.icons/simple/cursor.svg +1 -0
  12031. docsforge/themes/material/templates/.icons/simple/customink.svg +1 -0
  12032. docsforge/themes/material/templates/.icons/simple/cyberdefenders.svg +1 -0
  12033. docsforge/themes/material/templates/.icons/simple/cycling74.svg +1 -0
  12034. docsforge/themes/material/templates/.icons/simple/cypress.svg +1 -0
  12035. docsforge/themes/material/templates/.icons/simple/cytoscapedotjs.svg +1 -0
  12036. docsforge/themes/material/templates/.icons/simple/d.svg +1 -0
  12037. docsforge/themes/material/templates/.icons/simple/d3.svg +1 -0
  12038. docsforge/themes/material/templates/.icons/simple/dacia.svg +1 -0
  12039. docsforge/themes/material/templates/.icons/simple/daf.svg +1 -0
  12040. docsforge/themes/material/templates/.icons/simple/dailydotdev.svg +1 -0
  12041. docsforge/themes/material/templates/.icons/simple/dailymotion.svg +1 -0
  12042. docsforge/themes/material/templates/.icons/simple/daisyui.svg +1 -0
  12043. docsforge/themes/material/templates/.icons/simple/dapr.svg +1 -0
  12044. docsforge/themes/material/templates/.icons/simple/darkreader.svg +1 -0
  12045. docsforge/themes/material/templates/.icons/simple/dart.svg +1 -0
  12046. docsforge/themes/material/templates/.icons/simple/darty.svg +1 -0
  12047. docsforge/themes/material/templates/.icons/simple/daserste.svg +1 -0
  12048. docsforge/themes/material/templates/.icons/simple/dash.svg +1 -0
  12049. docsforge/themes/material/templates/.icons/simple/dash0.svg +1 -0
  12050. docsforge/themes/material/templates/.icons/simple/dashlane.svg +1 -0
  12051. docsforge/themes/material/templates/.icons/simple/dask.svg +1 -0
  12052. docsforge/themes/material/templates/.icons/simple/dassaultsystemes.svg +1 -0
  12053. docsforge/themes/material/templates/.icons/simple/databricks.svg +1 -0
  12054. docsforge/themes/material/templates/.icons/simple/datacamp.svg +1 -0
  12055. docsforge/themes/material/templates/.icons/simple/datadog.svg +1 -0
  12056. docsforge/themes/material/templates/.icons/simple/datadotai.svg +1 -0
  12057. docsforge/themes/material/templates/.icons/simple/datagrip.svg +1 -0
  12058. docsforge/themes/material/templates/.icons/simple/dataiku.svg +1 -0
  12059. docsforge/themes/material/templates/.icons/simple/datastax.svg +1 -0
  12060. docsforge/themes/material/templates/.icons/simple/datefns.svg +1 -0
  12061. docsforge/themes/material/templates/.icons/simple/datev.svg +1 -0
  12062. docsforge/themes/material/templates/.icons/simple/datocms.svg +1 -0
  12063. docsforge/themes/material/templates/.icons/simple/datto.svg +1 -0
  12064. docsforge/themes/material/templates/.icons/simple/davinciresolve.svg +1 -0
  12065. docsforge/themes/material/templates/.icons/simple/dazhongdianping.svg +1 -0
  12066. docsforge/themes/material/templates/.icons/simple/dazn.svg +1 -0
  12067. docsforge/themes/material/templates/.icons/simple/dbeaver.svg +1 -0
  12068. docsforge/themes/material/templates/.icons/simple/dblp.svg +1 -0
  12069. docsforge/themes/material/templates/.icons/simple/dcentertainment.svg +1 -0
  12070. docsforge/themes/material/templates/.icons/simple/debian.svg +1 -0
  12071. docsforge/themes/material/templates/.icons/simple/debridlink.svg +1 -0
  12072. docsforge/themes/material/templates/.icons/simple/decapcms.svg +1 -0
  12073. docsforge/themes/material/templates/.icons/simple/decentraland.svg +1 -0
  12074. docsforge/themes/material/templates/.icons/simple/dedge.svg +1 -0
  12075. docsforge/themes/material/templates/.icons/simple/deepcool.svg +1 -0
  12076. docsforge/themes/material/templates/.icons/simple/deepgram.svg +1 -0
  12077. docsforge/themes/material/templates/.icons/simple/deepin.svg +1 -0
  12078. docsforge/themes/material/templates/.icons/simple/deepl.svg +1 -0
  12079. docsforge/themes/material/templates/.icons/simple/deepmind.svg +1 -0
  12080. docsforge/themes/material/templates/.icons/simple/deepnote.svg +1 -0
  12081. docsforge/themes/material/templates/.icons/simple/deliveroo.svg +1 -0
  12082. docsforge/themes/material/templates/.icons/simple/dell.svg +1 -0
  12083. docsforge/themes/material/templates/.icons/simple/delonghi.svg +1 -0
  12084. docsforge/themes/material/templates/.icons/simple/delphi.svg +1 -0
  12085. docsforge/themes/material/templates/.icons/simple/delta.svg +1 -0
  12086. docsforge/themes/material/templates/.icons/simple/deluge.svg +1 -0
  12087. docsforge/themes/material/templates/.icons/simple/deno.svg +1 -0
  12088. docsforge/themes/material/templates/.icons/simple/denon.svg +1 -0
  12089. docsforge/themes/material/templates/.icons/simple/dependabot.svg +1 -0
  12090. docsforge/themes/material/templates/.icons/simple/dependencycheck.svg +1 -0
  12091. docsforge/themes/material/templates/.icons/simple/depositphotos.svg +1 -0
  12092. docsforge/themes/material/templates/.icons/simple/derspiegel.svg +1 -0
  12093. docsforge/themes/material/templates/.icons/simple/deutschebahn.svg +1 -0
  12094. docsforge/themes/material/templates/.icons/simple/deutschebank.svg +1 -0
  12095. docsforge/themes/material/templates/.icons/simple/deutschepost.svg +1 -0
  12096. docsforge/themes/material/templates/.icons/simple/deutschetelekom.svg +1 -0
  12097. docsforge/themes/material/templates/.icons/simple/deutschewelle.svg +1 -0
  12098. docsforge/themes/material/templates/.icons/simple/devbox.svg +1 -0
  12099. docsforge/themes/material/templates/.icons/simple/devdotto.svg +1 -0
  12100. docsforge/themes/material/templates/.icons/simple/devexpress.svg +1 -0
  12101. docsforge/themes/material/templates/.icons/simple/deviantart.svg +1 -0
  12102. docsforge/themes/material/templates/.icons/simple/devpost.svg +1 -0
  12103. docsforge/themes/material/templates/.icons/simple/devrant.svg +1 -0
  12104. docsforge/themes/material/templates/.icons/simple/dgraph.svg +1 -0
  12105. docsforge/themes/material/templates/.icons/simple/dhl.svg +1 -0
  12106. docsforge/themes/material/templates/.icons/simple/diagramsdotnet.svg +1 -0
  12107. docsforge/themes/material/templates/.icons/simple/dialogflow.svg +1 -0
  12108. docsforge/themes/material/templates/.icons/simple/diaspora.svg +1 -0
  12109. docsforge/themes/material/templates/.icons/simple/dictionarydotcom.svg +1 -0
  12110. docsforge/themes/material/templates/.icons/simple/digg.svg +1 -0
  12111. docsforge/themes/material/templates/.icons/simple/digikeyelectronics.svg +1 -0
  12112. docsforge/themes/material/templates/.icons/simple/digitalocean.svg +1 -0
  12113. docsforge/themes/material/templates/.icons/simple/dinersclub.svg +1 -0
  12114. docsforge/themes/material/templates/.icons/simple/dior.svg +1 -0
  12115. docsforge/themes/material/templates/.icons/simple/directus.svg +1 -0
  12116. docsforge/themes/material/templates/.icons/simple/discogs.svg +1 -0
  12117. docsforge/themes/material/templates/.icons/simple/discord.svg +1 -0
  12118. docsforge/themes/material/templates/.icons/simple/discorddotjs.svg +1 -0
  12119. docsforge/themes/material/templates/.icons/simple/discourse.svg +1 -0
  12120. docsforge/themes/material/templates/.icons/simple/discover.svg +1 -0
  12121. docsforge/themes/material/templates/.icons/simple/disqus.svg +1 -0
  12122. docsforge/themes/material/templates/.icons/simple/disroot.svg +1 -0
  12123. docsforge/themes/material/templates/.icons/simple/distrobox.svg +1 -0
  12124. docsforge/themes/material/templates/.icons/simple/distrokid.svg +1 -0
  12125. docsforge/themes/material/templates/.icons/simple/django.svg +1 -0
  12126. docsforge/themes/material/templates/.icons/simple/dji.svg +1 -0
  12127. docsforge/themes/material/templates/.icons/simple/dlib.svg +1 -0
  12128. docsforge/themes/material/templates/.icons/simple/dlna.svg +1 -0
  12129. docsforge/themes/material/templates/.icons/simple/dm.svg +1 -0
  12130. docsforge/themes/material/templates/.icons/simple/dmm.svg +1 -0
  12131. docsforge/themes/material/templates/.icons/simple/docker.svg +1 -0
  12132. docsforge/themes/material/templates/.icons/simple/docsdotrs.svg +1 -0
  12133. docsforge/themes/material/templates/.icons/simple/docsify.svg +1 -0
  12134. docsforge/themes/material/templates/.icons/simple/doctrine.svg +1 -0
  12135. docsforge/themes/material/templates/.icons/simple/docusaurus.svg +1 -0
  12136. docsforge/themes/material/templates/.icons/simple/dodopayments.svg +1 -0
  12137. docsforge/themes/material/templates/.icons/simple/dogecoin.svg +1 -0
  12138. docsforge/themes/material/templates/.icons/simple/doi.svg +1 -0
  12139. docsforge/themes/material/templates/.icons/simple/dolby.svg +1 -0
  12140. docsforge/themes/material/templates/.icons/simple/dolibarr.svg +1 -0
  12141. docsforge/themes/material/templates/.icons/simple/dolphin.svg +1 -0
  12142. docsforge/themes/material/templates/.icons/simple/doordash.svg +1 -0
  12143. docsforge/themes/material/templates/.icons/simple/dota2.svg +1 -0
  12144. docsforge/themes/material/templates/.icons/simple/dotenv.svg +1 -0
  12145. docsforge/themes/material/templates/.icons/simple/dotnet.svg +1 -0
  12146. docsforge/themes/material/templates/.icons/simple/douban.svg +1 -0
  12147. docsforge/themes/material/templates/.icons/simple/doubanread.svg +1 -0
  12148. docsforge/themes/material/templates/.icons/simple/dovecot.svg +1 -0
  12149. docsforge/themes/material/templates/.icons/simple/dovetail.svg +1 -0
  12150. docsforge/themes/material/templates/.icons/simple/downdetector.svg +1 -0
  12151. docsforge/themes/material/templates/.icons/simple/doxygen.svg +1 -0
  12152. docsforge/themes/material/templates/.icons/simple/dpd.svg +1 -0
  12153. docsforge/themes/material/templates/.icons/simple/dragonframe.svg +1 -0
  12154. docsforge/themes/material/templates/.icons/simple/draugiemdotlv.svg +1 -0
  12155. docsforge/themes/material/templates/.icons/simple/dreamstime.svg +1 -0
  12156. docsforge/themes/material/templates/.icons/simple/dribbble.svg +1 -0
  12157. docsforge/themes/material/templates/.icons/simple/drizzle.svg +1 -0
  12158. docsforge/themes/material/templates/.icons/simple/drone.svg +1 -0
  12159. docsforge/themes/material/templates/.icons/simple/drooble.svg +1 -0
  12160. docsforge/themes/material/templates/.icons/simple/dropbox.svg +1 -0
  12161. docsforge/themes/material/templates/.icons/simple/drupal.svg +1 -0
  12162. docsforge/themes/material/templates/.icons/simple/dsautomobiles.svg +1 -0
  12163. docsforge/themes/material/templates/.icons/simple/dts.svg +1 -0
  12164. docsforge/themes/material/templates/.icons/simple/dtube.svg +1 -0
  12165. docsforge/themes/material/templates/.icons/simple/ducati.svg +1 -0
  12166. docsforge/themes/material/templates/.icons/simple/duckdb.svg +1 -0
  12167. docsforge/themes/material/templates/.icons/simple/duckduckgo.svg +1 -0
  12168. docsforge/themes/material/templates/.icons/simple/dungeonsanddragons.svg +1 -0
  12169. docsforge/themes/material/templates/.icons/simple/dunked.svg +1 -0
  12170. docsforge/themes/material/templates/.icons/simple/dunzo.svg +1 -0
  12171. docsforge/themes/material/templates/.icons/simple/duolingo.svg +1 -0
  12172. docsforge/themes/material/templates/.icons/simple/duplicati.svg +1 -0
  12173. docsforge/themes/material/templates/.icons/simple/dvc.svg +1 -0
  12174. docsforge/themes/material/templates/.icons/simple/dwavesystems.svg +1 -0
  12175. docsforge/themes/material/templates/.icons/simple/dwm.svg +1 -0
  12176. docsforge/themes/material/templates/.icons/simple/dynatrace.svg +1 -0
  12177. docsforge/themes/material/templates/.icons/simple/e.svg +1 -0
  12178. docsforge/themes/material/templates/.icons/simple/e3.svg +1 -0
  12179. docsforge/themes/material/templates/.icons/simple/ea.svg +1 -0
  12180. docsforge/themes/material/templates/.icons/simple/eac.svg +1 -0
  12181. docsforge/themes/material/templates/.icons/simple/eagle.svg +1 -0
  12182. docsforge/themes/material/templates/.icons/simple/easyeda.svg +1 -0
  12183. docsforge/themes/material/templates/.icons/simple/easyjet.svg +1 -0
  12184. docsforge/themes/material/templates/.icons/simple/ebay.svg +1 -0
  12185. docsforge/themes/material/templates/.icons/simple/ebox.svg +1 -0
  12186. docsforge/themes/material/templates/.icons/simple/eclipseadoptium.svg +1 -0
  12187. docsforge/themes/material/templates/.icons/simple/eclipseche.svg +1 -0
  12188. docsforge/themes/material/templates/.icons/simple/eclipseide.svg +1 -0
  12189. docsforge/themes/material/templates/.icons/simple/eclipsejetty.svg +1 -0
  12190. docsforge/themes/material/templates/.icons/simple/eclipsemosquitto.svg +1 -0
  12191. docsforge/themes/material/templates/.icons/simple/eclipsevertdotx.svg +1 -0
  12192. docsforge/themes/material/templates/.icons/simple/ecosia.svg +1 -0
  12193. docsforge/themes/material/templates/.icons/simple/ecovacs.svg +1 -0
  12194. docsforge/themes/material/templates/.icons/simple/edeka.svg +1 -0
  12195. docsforge/themes/material/templates/.icons/simple/edgeimpulse.svg +1 -0
  12196. docsforge/themes/material/templates/.icons/simple/editorconfig.svg +1 -0
  12197. docsforge/themes/material/templates/.icons/simple/edotleclerc.svg +1 -0
  12198. docsforge/themes/material/templates/.icons/simple/educative.svg +1 -0
  12199. docsforge/themes/material/templates/.icons/simple/edx.svg +1 -0
  12200. docsforge/themes/material/templates/.icons/simple/egghead.svg +1 -0
  12201. docsforge/themes/material/templates/.icons/simple/egnyte.svg +1 -0
  12202. docsforge/themes/material/templates/.icons/simple/eight.svg +1 -0
  12203. docsforge/themes/material/templates/.icons/simple/eightsleep.svg +1 -0
  12204. docsforge/themes/material/templates/.icons/simple/ejs.svg +1 -0
  12205. docsforge/themes/material/templates/.icons/simple/elastic.svg +1 -0
  12206. docsforge/themes/material/templates/.icons/simple/elasticcloud.svg +1 -0
  12207. docsforge/themes/material/templates/.icons/simple/elasticsearch.svg +1 -0
  12208. docsforge/themes/material/templates/.icons/simple/elasticstack.svg +1 -0
  12209. docsforge/themes/material/templates/.icons/simple/elavon.svg +1 -0
  12210. docsforge/themes/material/templates/.icons/simple/electron.svg +1 -0
  12211. docsforge/themes/material/templates/.icons/simple/electronbuilder.svg +1 -0
  12212. docsforge/themes/material/templates/.icons/simple/electronfiddle.svg +1 -0
  12213. docsforge/themes/material/templates/.icons/simple/elegoo.svg +1 -0
  12214. docsforge/themes/material/templates/.icons/simple/element.svg +1 -0
  12215. docsforge/themes/material/templates/.icons/simple/elementary.svg +1 -0
  12216. docsforge/themes/material/templates/.icons/simple/elementor.svg +1 -0
  12217. docsforge/themes/material/templates/.icons/simple/elevenlabs.svg +1 -0
  12218. docsforge/themes/material/templates/.icons/simple/eleventy.svg +1 -0
  12219. docsforge/themes/material/templates/.icons/simple/elgato.svg +1 -0
  12220. docsforge/themes/material/templates/.icons/simple/elixir.svg +1 -0
  12221. docsforge/themes/material/templates/.icons/simple/elk.svg +1 -0
  12222. docsforge/themes/material/templates/.icons/simple/elm.svg +1 -0
  12223. docsforge/themes/material/templates/.icons/simple/elsevier.svg +1 -0
  12224. docsforge/themes/material/templates/.icons/simple/embarcadero.svg +1 -0
  12225. docsforge/themes/material/templates/.icons/simple/embark.svg +1 -0
  12226. docsforge/themes/material/templates/.icons/simple/emberdotjs.svg +1 -0
  12227. docsforge/themes/material/templates/.icons/simple/emby.svg +1 -0
  12228. docsforge/themes/material/templates/.icons/simple/emirates.svg +1 -0
  12229. docsforge/themes/material/templates/.icons/simple/emlakjet.svg +1 -0
  12230. docsforge/themes/material/templates/.icons/simple/endeavouros.svg +1 -0
  12231. docsforge/themes/material/templates/.icons/simple/enpass.svg +1 -0
  12232. docsforge/themes/material/templates/.icons/simple/ens.svg +1 -0
  12233. docsforge/themes/material/templates/.icons/simple/ente.svg +1 -0
  12234. docsforge/themes/material/templates/.icons/simple/enterprisedb.svg +1 -0
  12235. docsforge/themes/material/templates/.icons/simple/envato.svg +1 -0
  12236. docsforge/themes/material/templates/.icons/simple/envoyproxy.svg +1 -0
  12237. docsforge/themes/material/templates/.icons/simple/epel.svg +1 -0
  12238. docsforge/themes/material/templates/.icons/simple/epicgames.svg +1 -0
  12239. docsforge/themes/material/templates/.icons/simple/epson.svg +1 -0
  12240. docsforge/themes/material/templates/.icons/simple/equinixmetal.svg +1 -0
  12241. docsforge/themes/material/templates/.icons/simple/eraser.svg +1 -0
  12242. docsforge/themes/material/templates/.icons/simple/ericsson.svg +1 -0
  12243. docsforge/themes/material/templates/.icons/simple/erlang.svg +1 -0
  12244. docsforge/themes/material/templates/.icons/simple/erpnext.svg +1 -0
  12245. docsforge/themes/material/templates/.icons/simple/esbuild.svg +1 -0
  12246. docsforge/themes/material/templates/.icons/simple/esea.svg +1 -0
  12247. docsforge/themes/material/templates/.icons/simple/eslgaming.svg +1 -0
  12248. docsforge/themes/material/templates/.icons/simple/eslint.svg +1 -0
  12249. docsforge/themes/material/templates/.icons/simple/esotericsoftware.svg +1 -0
  12250. docsforge/themes/material/templates/.icons/simple/esphome.svg +1 -0
  12251. docsforge/themes/material/templates/.icons/simple/espressif.svg +1 -0
  12252. docsforge/themes/material/templates/.icons/simple/esri.svg +1 -0
  12253. docsforge/themes/material/templates/.icons/simple/etcd.svg +1 -0
  12254. docsforge/themes/material/templates/.icons/simple/ethereum.svg +1 -0
  12255. docsforge/themes/material/templates/.icons/simple/ethers.svg +1 -0
  12256. docsforge/themes/material/templates/.icons/simple/ethiopianairlines.svg +1 -0
  12257. docsforge/themes/material/templates/.icons/simple/etihadairways.svg +1 -0
  12258. docsforge/themes/material/templates/.icons/simple/etsy.svg +1 -0
  12259. docsforge/themes/material/templates/.icons/simple/europeanunion.svg +1 -0
  12260. docsforge/themes/material/templates/.icons/simple/eventstore.svg +1 -0
  12261. docsforge/themes/material/templates/.icons/simple/evernote.svg +1 -0
  12262. docsforge/themes/material/templates/.icons/simple/everydotorg.svg +1 -0
  12263. docsforge/themes/material/templates/.icons/simple/excalidraw.svg +1 -0
  12264. docsforge/themes/material/templates/.icons/simple/exercism.svg +1 -0
  12265. docsforge/themes/material/templates/.icons/simple/exordo.svg +1 -0
  12266. docsforge/themes/material/templates/.icons/simple/exoscale.svg +1 -0
  12267. docsforge/themes/material/templates/.icons/simple/expedia.svg +1 -0
  12268. docsforge/themes/material/templates/.icons/simple/expensify.svg +1 -0
  12269. docsforge/themes/material/templates/.icons/simple/expertsexchange.svg +1 -0
  12270. docsforge/themes/material/templates/.icons/simple/expo.svg +1 -0
  12271. docsforge/themes/material/templates/.icons/simple/express.svg +1 -0
  12272. docsforge/themes/material/templates/.icons/simple/expressdotcom.svg +1 -0
  12273. docsforge/themes/material/templates/.icons/simple/expressvpn.svg +1 -0
  12274. docsforge/themes/material/templates/.icons/simple/eyeem.svg +1 -0
  12275. docsforge/themes/material/templates/.icons/simple/f1.svg +1 -0
  12276. docsforge/themes/material/templates/.icons/simple/f5.svg +1 -0
  12277. docsforge/themes/material/templates/.icons/simple/facebook.svg +1 -0
  12278. docsforge/themes/material/templates/.icons/simple/facebookgaming.svg +1 -0
  12279. docsforge/themes/material/templates/.icons/simple/facebooklive.svg +1 -0
  12280. docsforge/themes/material/templates/.icons/simple/faceit.svg +1 -0
  12281. docsforge/themes/material/templates/.icons/simple/facepunch.svg +1 -0
  12282. docsforge/themes/material/templates/.icons/simple/fairphone.svg +1 -0
  12283. docsforge/themes/material/templates/.icons/simple/falco.svg +1 -0
  12284. docsforge/themes/material/templates/.icons/simple/falcon.svg +1 -0
  12285. docsforge/themes/material/templates/.icons/simple/fampay.svg +1 -0
  12286. docsforge/themes/material/templates/.icons/simple/fandango.svg +1 -0
  12287. docsforge/themes/material/templates/.icons/simple/fandom.svg +1 -0
  12288. docsforge/themes/material/templates/.icons/simple/fanfou.svg +1 -0
  12289. docsforge/themes/material/templates/.icons/simple/fantom.svg +1 -0
  12290. docsforge/themes/material/templates/.icons/simple/farcaster.svg +1 -0
  12291. docsforge/themes/material/templates/.icons/simple/fareharbor.svg +1 -0
  12292. docsforge/themes/material/templates/.icons/simple/farfetch.svg +1 -0
  12293. docsforge/themes/material/templates/.icons/simple/fastapi.svg +1 -0
  12294. docsforge/themes/material/templates/.icons/simple/fastify.svg +1 -0
  12295. docsforge/themes/material/templates/.icons/simple/fastlane.svg +1 -0
  12296. docsforge/themes/material/templates/.icons/simple/fastly.svg +1 -0
  12297. docsforge/themes/material/templates/.icons/simple/fathom.svg +1 -0
  12298. docsforge/themes/material/templates/.icons/simple/fauna.svg +1 -0
  12299. docsforge/themes/material/templates/.icons/simple/favro.svg +1 -0
  12300. docsforge/themes/material/templates/.icons/simple/fcc.svg +1 -0
  12301. docsforge/themes/material/templates/.icons/simple/fdroid.svg +1 -0
  12302. docsforge/themes/material/templates/.icons/simple/fedex.svg +1 -0
  12303. docsforge/themes/material/templates/.icons/simple/fedora.svg +1 -0
  12304. docsforge/themes/material/templates/.icons/simple/feedly.svg +1 -0
  12305. docsforge/themes/material/templates/.icons/simple/ferrari.svg +1 -0
  12306. docsforge/themes/material/templates/.icons/simple/ferrarinv.svg +1 -0
  12307. docsforge/themes/material/templates/.icons/simple/ferretdb.svg +1 -0
  12308. docsforge/themes/material/templates/.icons/simple/ffmpeg.svg +1 -0
  12309. docsforge/themes/material/templates/.icons/simple/fi.svg +1 -0
  12310. docsforge/themes/material/templates/.icons/simple/fiat.svg +1 -0
  12311. docsforge/themes/material/templates/.icons/simple/fidoalliance.svg +1 -0
  12312. docsforge/themes/material/templates/.icons/simple/fifa.svg +1 -0
  12313. docsforge/themes/material/templates/.icons/simple/fig.svg +1 -0
  12314. docsforge/themes/material/templates/.icons/simple/figma.svg +1 -0
  12315. docsforge/themes/material/templates/.icons/simple/figshare.svg +1 -0
  12316. docsforge/themes/material/templates/.icons/simple/fila.svg +1 -0
  12317. docsforge/themes/material/templates/.icons/simple/filament.svg +1 -0
  12318. docsforge/themes/material/templates/.icons/simple/filedotio.svg +1 -0
  12319. docsforge/themes/material/templates/.icons/simple/filen.svg +1 -0
  12320. docsforge/themes/material/templates/.icons/simple/files.svg +1 -0
  12321. docsforge/themes/material/templates/.icons/simple/filezilla.svg +1 -0
  12322. docsforge/themes/material/templates/.icons/simple/fillout.svg +1 -0
  12323. docsforge/themes/material/templates/.icons/simple/fineco.svg +1 -0
  12324. docsforge/themes/material/templates/.icons/simple/fing.svg +1 -0
  12325. docsforge/themes/material/templates/.icons/simple/firebase.svg +1 -0
  12326. docsforge/themes/material/templates/.icons/simple/firefish.svg +1 -0
  12327. docsforge/themes/material/templates/.icons/simple/fireflyiii.svg +1 -0
  12328. docsforge/themes/material/templates/.icons/simple/firefox.svg +1 -0
  12329. docsforge/themes/material/templates/.icons/simple/firefoxbrowser.svg +1 -0
  12330. docsforge/themes/material/templates/.icons/simple/fireship.svg +1 -0
  12331. docsforge/themes/material/templates/.icons/simple/firewalla.svg +1 -0
  12332. docsforge/themes/material/templates/.icons/simple/first.svg +1 -0
  12333. docsforge/themes/material/templates/.icons/simple/fishaudio.svg +1 -0
  12334. docsforge/themes/material/templates/.icons/simple/fishshell.svg +1 -0
  12335. docsforge/themes/material/templates/.icons/simple/fitbit.svg +1 -0
  12336. docsforge/themes/material/templates/.icons/simple/fivem.svg +1 -0
  12337. docsforge/themes/material/templates/.icons/simple/fiverr.svg +1 -0
  12338. docsforge/themes/material/templates/.icons/simple/fizz.svg +1 -0
  12339. docsforge/themes/material/templates/.icons/simple/flashforge.svg +1 -0
  12340. docsforge/themes/material/templates/.icons/simple/flask.svg +1 -0
  12341. docsforge/themes/material/templates/.icons/simple/flat.svg +1 -0
  12342. docsforge/themes/material/templates/.icons/simple/flathub.svg +1 -0
  12343. docsforge/themes/material/templates/.icons/simple/flatpak.svg +1 -0
  12344. docsforge/themes/material/templates/.icons/simple/flickr.svg +1 -0
  12345. docsforge/themes/material/templates/.icons/simple/flightaware.svg +1 -0
  12346. docsforge/themes/material/templates/.icons/simple/flipboard.svg +1 -0
  12347. docsforge/themes/material/templates/.icons/simple/floatplane.svg +1 -0
  12348. docsforge/themes/material/templates/.icons/simple/flood.svg +1 -0
  12349. docsforge/themes/material/templates/.icons/simple/floorp.svg +1 -0
  12350. docsforge/themes/material/templates/.icons/simple/fluentbit.svg +1 -0
  12351. docsforge/themes/material/templates/.icons/simple/fluentd.svg +1 -0
  12352. docsforge/themes/material/templates/.icons/simple/fluke.svg +1 -0
  12353. docsforge/themes/material/templates/.icons/simple/flutter.svg +1 -0
  12354. docsforge/themes/material/templates/.icons/simple/flux.svg +1 -0
  12355. docsforge/themes/material/templates/.icons/simple/flydotio.svg +1 -0
  12356. docsforge/themes/material/templates/.icons/simple/flyway.svg +1 -0
  12357. docsforge/themes/material/templates/.icons/simple/fmod.svg +1 -0
  12358. docsforge/themes/material/templates/.icons/simple/fnac.svg +1 -0
  12359. docsforge/themes/material/templates/.icons/simple/folium.svg +1 -0
  12360. docsforge/themes/material/templates/.icons/simple/folo.svg +1 -0
  12361. docsforge/themes/material/templates/.icons/simple/fonoma.svg +1 -0
  12362. docsforge/themes/material/templates/.icons/simple/fontawesome.svg +1 -0
  12363. docsforge/themes/material/templates/.icons/simple/fontbase.svg +1 -0
  12364. docsforge/themes/material/templates/.icons/simple/fontforge.svg +1 -0
  12365. docsforge/themes/material/templates/.icons/simple/foobar2000.svg +1 -0
  12366. docsforge/themes/material/templates/.icons/simple/foodpanda.svg +1 -0
  12367. docsforge/themes/material/templates/.icons/simple/ford.svg +1 -0
  12368. docsforge/themes/material/templates/.icons/simple/forgejo.svg +1 -0
  12369. docsforge/themes/material/templates/.icons/simple/formbricks.svg +1 -0
  12370. docsforge/themes/material/templates/.icons/simple/formik.svg +1 -0
  12371. docsforge/themes/material/templates/.icons/simple/formspree.svg +1 -0
  12372. docsforge/themes/material/templates/.icons/simple/formstack.svg +1 -0
  12373. docsforge/themes/material/templates/.icons/simple/fortinet.svg +1 -0
  12374. docsforge/themes/material/templates/.icons/simple/fortnite.svg +1 -0
  12375. docsforge/themes/material/templates/.icons/simple/fortran.svg +1 -0
  12376. docsforge/themes/material/templates/.icons/simple/fossa.svg +1 -0
  12377. docsforge/themes/material/templates/.icons/simple/fossilscm.svg +1 -0
  12378. docsforge/themes/material/templates/.icons/simple/foundryvirtualtabletop.svg +1 -0
  12379. docsforge/themes/material/templates/.icons/simple/foursquare.svg +1 -0
  12380. docsforge/themes/material/templates/.icons/simple/fox.svg +1 -0
  12381. docsforge/themes/material/templates/.icons/simple/foxtel.svg +1 -0
  12382. docsforge/themes/material/templates/.icons/simple/fozzy.svg +1 -0
  12383. docsforge/themes/material/templates/.icons/simple/framer.svg +1 -0
  12384. docsforge/themes/material/templates/.icons/simple/framework.svg +1 -0
  12385. docsforge/themes/material/templates/.icons/simple/framework7.svg +1 -0
  12386. docsforge/themes/material/templates/.icons/simple/franprix.svg +1 -0
  12387. docsforge/themes/material/templates/.icons/simple/frappe.svg +1 -0
  12388. docsforge/themes/material/templates/.icons/simple/fraunhofergesellschaft.svg +1 -0
  12389. docsforge/themes/material/templates/.icons/simple/freebsd.svg +1 -0
  12390. docsforge/themes/material/templates/.icons/simple/freecad.svg +1 -0
  12391. docsforge/themes/material/templates/.icons/simple/freecodecamp.svg +1 -0
  12392. docsforge/themes/material/templates/.icons/simple/freedesktopdotorg.svg +1 -0
  12393. docsforge/themes/material/templates/.icons/simple/freelancer.svg +1 -0
  12394. docsforge/themes/material/templates/.icons/simple/freelancermap.svg +1 -0
  12395. docsforge/themes/material/templates/.icons/simple/freenas.svg +1 -0
  12396. docsforge/themes/material/templates/.icons/simple/freenet.svg +1 -0
  12397. docsforge/themes/material/templates/.icons/simple/freepik.svg +1 -0
  12398. docsforge/themes/material/templates/.icons/simple/freetube.svg +1 -0
  12399. docsforge/themes/material/templates/.icons/simple/fresh.svg +1 -0
  12400. docsforge/themes/material/templates/.icons/simple/freshrss.svg +1 -0
  12401. docsforge/themes/material/templates/.icons/simple/frigate.svg +1 -0
  12402. docsforge/themes/material/templates/.icons/simple/fritz.svg +1 -0
  12403. docsforge/themes/material/templates/.icons/simple/frontendmentor.svg +1 -0
  12404. docsforge/themes/material/templates/.icons/simple/frontify.svg +1 -0
  12405. docsforge/themes/material/templates/.icons/simple/fsharp.svg +1 -0
  12406. docsforge/themes/material/templates/.icons/simple/fubo.svg +1 -0
  12407. docsforge/themes/material/templates/.icons/simple/fueler.svg +1 -0
  12408. docsforge/themes/material/templates/.icons/simple/fugacloud.svg +1 -0
  12409. docsforge/themes/material/templates/.icons/simple/fujifilm.svg +1 -0
  12410. docsforge/themes/material/templates/.icons/simple/fujitsu.svg +1 -0
  12411. docsforge/themes/material/templates/.icons/simple/furaffinity.svg +1 -0
  12412. docsforge/themes/material/templates/.icons/simple/furrynetwork.svg +1 -0
  12413. docsforge/themes/material/templates/.icons/simple/fusionauth.svg +1 -0
  12414. docsforge/themes/material/templates/.icons/simple/futurelearn.svg +1 -0
  12415. docsforge/themes/material/templates/.icons/simple/fyle.svg +1 -0
  12416. docsforge/themes/material/templates/.icons/simple/g2.svg +1 -0
  12417. docsforge/themes/material/templates/.icons/simple/g2a.svg +1 -0
  12418. docsforge/themes/material/templates/.icons/simple/g2g.svg +1 -0
  12419. docsforge/themes/material/templates/.icons/simple/galaxus.svg +1 -0
  12420. docsforge/themes/material/templates/.icons/simple/gamebanana.svg +1 -0
  12421. docsforge/themes/material/templates/.icons/simple/gamedeveloper.svg +1 -0
  12422. docsforge/themes/material/templates/.icons/simple/gamejolt.svg +1 -0
  12423. docsforge/themes/material/templates/.icons/simple/gameloft.svg +1 -0
  12424. docsforge/themes/material/templates/.icons/simple/gamemaker.svg +1 -0
  12425. docsforge/themes/material/templates/.icons/simple/gamescience.svg +1 -0
  12426. docsforge/themes/material/templates/.icons/simple/gandi.svg +1 -0
  12427. docsforge/themes/material/templates/.icons/simple/garmin.svg +1 -0
  12428. docsforge/themes/material/templates/.icons/simple/garudalinux.svg +1 -0
  12429. docsforge/themes/material/templates/.icons/simple/gatling.svg +1 -0
  12430. docsforge/themes/material/templates/.icons/simple/gatsby.svg +1 -0
  12431. docsforge/themes/material/templates/.icons/simple/gcore.svg +1 -0
  12432. docsforge/themes/material/templates/.icons/simple/gdal.svg +1 -0
  12433. docsforge/themes/material/templates/.icons/simple/geeksforgeeks.svg +1 -0
  12434. docsforge/themes/material/templates/.icons/simple/generalelectric.svg +1 -0
  12435. docsforge/themes/material/templates/.icons/simple/generalmotors.svg +1 -0
  12436. docsforge/themes/material/templates/.icons/simple/genius.svg +1 -0
  12437. docsforge/themes/material/templates/.icons/simple/gentoo.svg +1 -0
  12438. docsforge/themes/material/templates/.icons/simple/geocaching.svg +1 -0
  12439. docsforge/themes/material/templates/.icons/simple/geode.svg +1 -0
  12440. docsforge/themes/material/templates/.icons/simple/geopandas.svg +1 -0
  12441. docsforge/themes/material/templates/.icons/simple/gerrit.svg +1 -0
  12442. docsforge/themes/material/templates/.icons/simple/getx.svg +1 -0
  12443. docsforge/themes/material/templates/.icons/simple/ghost.svg +1 -0
  12444. docsforge/themes/material/templates/.icons/simple/ghostery.svg +1 -0
  12445. docsforge/themes/material/templates/.icons/simple/ghostty.svg +1 -0
  12446. docsforge/themes/material/templates/.icons/simple/gimp.svg +1 -0
  12447. docsforge/themes/material/templates/.icons/simple/gin.svg +1 -0
  12448. docsforge/themes/material/templates/.icons/simple/giphy.svg +1 -0
  12449. docsforge/themes/material/templates/.icons/simple/git.svg +1 -0
  12450. docsforge/themes/material/templates/.icons/simple/gitbook.svg +1 -0
  12451. docsforge/themes/material/templates/.icons/simple/gitcode.svg +1 -0
  12452. docsforge/themes/material/templates/.icons/simple/gitconnected.svg +1 -0
  12453. docsforge/themes/material/templates/.icons/simple/gitea.svg +1 -0
  12454. docsforge/themes/material/templates/.icons/simple/gitee.svg +1 -0
  12455. docsforge/themes/material/templates/.icons/simple/gitextensions.svg +1 -0
  12456. docsforge/themes/material/templates/.icons/simple/gitforwindows.svg +1 -0
  12457. docsforge/themes/material/templates/.icons/simple/github.svg +1 -0
  12458. docsforge/themes/material/templates/.icons/simple/githubactions.svg +1 -0
  12459. docsforge/themes/material/templates/.icons/simple/githubcopilot.svg +1 -0
  12460. docsforge/themes/material/templates/.icons/simple/githubpages.svg +1 -0
  12461. docsforge/themes/material/templates/.icons/simple/githubsponsors.svg +1 -0
  12462. docsforge/themes/material/templates/.icons/simple/gitignoredotio.svg +1 -0
  12463. docsforge/themes/material/templates/.icons/simple/gitkraken.svg +1 -0
  12464. docsforge/themes/material/templates/.icons/simple/gitlab.svg +1 -0
  12465. docsforge/themes/material/templates/.icons/simple/gitlfs.svg +1 -0
  12466. docsforge/themes/material/templates/.icons/simple/gitpod.svg +1 -0
  12467. docsforge/themes/material/templates/.icons/simple/gitter.svg +1 -0
  12468. docsforge/themes/material/templates/.icons/simple/glance.svg +1 -0
  12469. docsforge/themes/material/templates/.icons/simple/glassdoor.svg +1 -0
  12470. docsforge/themes/material/templates/.icons/simple/gldotinet.svg +1 -0
  12471. docsforge/themes/material/templates/.icons/simple/gleam.svg +1 -0
  12472. docsforge/themes/material/templates/.icons/simple/glide.svg +1 -0
  12473. docsforge/themes/material/templates/.icons/simple/glitch.svg +1 -0
  12474. docsforge/themes/material/templates/.icons/simple/globus.svg +1 -0
  12475. docsforge/themes/material/templates/.icons/simple/glovo.svg +1 -0
  12476. docsforge/themes/material/templates/.icons/simple/gltf.svg +1 -0
  12477. docsforge/themes/material/templates/.icons/simple/gmail.svg +1 -0
  12478. docsforge/themes/material/templates/.icons/simple/gmx.svg +1 -0
  12479. docsforge/themes/material/templates/.icons/simple/gnome.svg +1 -0
  12480. docsforge/themes/material/templates/.icons/simple/gnometerminal.svg +1 -0
  12481. docsforge/themes/material/templates/.icons/simple/gnu.svg +1 -0
  12482. docsforge/themes/material/templates/.icons/simple/gnubash.svg +1 -0
  12483. docsforge/themes/material/templates/.icons/simple/gnuemacs.svg +1 -0
  12484. docsforge/themes/material/templates/.icons/simple/gnuicecat.svg +1 -0
  12485. docsforge/themes/material/templates/.icons/simple/gnuprivacyguard.svg +1 -0
  12486. docsforge/themes/material/templates/.icons/simple/gnusocial.svg +1 -0
  12487. docsforge/themes/material/templates/.icons/simple/go.svg +1 -0
  12488. docsforge/themes/material/templates/.icons/simple/gocd.svg +1 -0
  12489. docsforge/themes/material/templates/.icons/simple/godaddy.svg +1 -0
  12490. docsforge/themes/material/templates/.icons/simple/godotengine.svg +1 -0
  12491. docsforge/themes/material/templates/.icons/simple/gofundme.svg +1 -0
  12492. docsforge/themes/material/templates/.icons/simple/gogdotcom.svg +1 -0
  12493. docsforge/themes/material/templates/.icons/simple/gojek.svg +1 -0
  12494. docsforge/themes/material/templates/.icons/simple/goland.svg +1 -0
  12495. docsforge/themes/material/templates/.icons/simple/goldmansachs.svg +1 -0
  12496. docsforge/themes/material/templates/.icons/simple/goodreads.svg +1 -0
  12497. docsforge/themes/material/templates/.icons/simple/google.svg +1 -0
  12498. docsforge/themes/material/templates/.icons/simple/googleadmob.svg +1 -0
  12499. docsforge/themes/material/templates/.icons/simple/googleads.svg +1 -0
  12500. docsforge/themes/material/templates/.icons/simple/googleadsense.svg +1 -0
  12501. docsforge/themes/material/templates/.icons/simple/googleanalytics.svg +1 -0
  12502. docsforge/themes/material/templates/.icons/simple/googleappsscript.svg +1 -0
  12503. docsforge/themes/material/templates/.icons/simple/googleassistant.svg +1 -0
  12504. docsforge/themes/material/templates/.icons/simple/googleauthenticator.svg +1 -0
  12505. docsforge/themes/material/templates/.icons/simple/googlebigquery.svg +1 -0
  12506. docsforge/themes/material/templates/.icons/simple/googlebigtable.svg +1 -0
  12507. docsforge/themes/material/templates/.icons/simple/googlecalendar.svg +1 -0
  12508. docsforge/themes/material/templates/.icons/simple/googlecampaignmanager360.svg +1 -0
  12509. docsforge/themes/material/templates/.icons/simple/googlecardboard.svg +1 -0
  12510. docsforge/themes/material/templates/.icons/simple/googlecast.svg +1 -0
  12511. docsforge/themes/material/templates/.icons/simple/googlechat.svg +1 -0
  12512. docsforge/themes/material/templates/.icons/simple/googlechrome.svg +1 -0
  12513. docsforge/themes/material/templates/.icons/simple/googlechronicle.svg +1 -0
  12514. docsforge/themes/material/templates/.icons/simple/googleclassroom.svg +1 -0
  12515. docsforge/themes/material/templates/.icons/simple/googlecloud.svg +1 -0
  12516. docsforge/themes/material/templates/.icons/simple/googlecloudcomposer.svg +1 -0
  12517. docsforge/themes/material/templates/.icons/simple/googlecloudspanner.svg +1 -0
  12518. docsforge/themes/material/templates/.icons/simple/googlecloudstorage.svg +1 -0
  12519. docsforge/themes/material/templates/.icons/simple/googlecolab.svg +1 -0
  12520. docsforge/themes/material/templates/.icons/simple/googlecontaineroptimizedos.svg +1 -0
  12521. docsforge/themes/material/templates/.icons/simple/googledataflow.svg +1 -0
  12522. docsforge/themes/material/templates/.icons/simple/googledataproc.svg +1 -0
  12523. docsforge/themes/material/templates/.icons/simple/googledisplayandvideo360.svg +1 -0
  12524. docsforge/themes/material/templates/.icons/simple/googledocs.svg +1 -0
  12525. docsforge/themes/material/templates/.icons/simple/googledrive.svg +1 -0
  12526. docsforge/themes/material/templates/.icons/simple/googleearth.svg +1 -0
  12527. docsforge/themes/material/templates/.icons/simple/googleearthengine.svg +1 -0
  12528. docsforge/themes/material/templates/.icons/simple/googlefonts.svg +1 -0
  12529. docsforge/themes/material/templates/.icons/simple/googleforms.svg +1 -0
  12530. docsforge/themes/material/templates/.icons/simple/googlegemini.svg +1 -0
  12531. docsforge/themes/material/templates/.icons/simple/googlehome.svg +1 -0
  12532. docsforge/themes/material/templates/.icons/simple/googlejules.svg +1 -0
  12533. docsforge/themes/material/templates/.icons/simple/googlekeep.svg +1 -0
  12534. docsforge/themes/material/templates/.icons/simple/googlelens.svg +1 -0
  12535. docsforge/themes/material/templates/.icons/simple/googlemaps.svg +1 -0
  12536. docsforge/themes/material/templates/.icons/simple/googlemarketingplatform.svg +1 -0
  12537. docsforge/themes/material/templates/.icons/simple/googlemeet.svg +1 -0
  12538. docsforge/themes/material/templates/.icons/simple/googlemessages.svg +1 -0
  12539. docsforge/themes/material/templates/.icons/simple/googlenearby.svg +1 -0
  12540. docsforge/themes/material/templates/.icons/simple/googlenews.svg +1 -0
  12541. docsforge/themes/material/templates/.icons/simple/googlepay.svg +1 -0
  12542. docsforge/themes/material/templates/.icons/simple/googlephotos.svg +1 -0
  12543. docsforge/themes/material/templates/.icons/simple/googleplay.svg +1 -0
  12544. docsforge/themes/material/templates/.icons/simple/googlepubsub.svg +1 -0
  12545. docsforge/themes/material/templates/.icons/simple/googlescholar.svg +1 -0
  12546. docsforge/themes/material/templates/.icons/simple/googlesearchconsole.svg +1 -0
  12547. docsforge/themes/material/templates/.icons/simple/googlesheets.svg +1 -0
  12548. docsforge/themes/material/templates/.icons/simple/googleslides.svg +1 -0
  12549. docsforge/themes/material/templates/.icons/simple/googlestreetview.svg +1 -0
  12550. docsforge/themes/material/templates/.icons/simple/googlesummerofcode.svg +1 -0
  12551. docsforge/themes/material/templates/.icons/simple/googletagmanager.svg +1 -0
  12552. docsforge/themes/material/templates/.icons/simple/googletasks.svg +1 -0
  12553. docsforge/themes/material/templates/.icons/simple/googletranslate.svg +1 -0
  12554. docsforge/themes/material/templates/.icons/simple/googletv.svg +1 -0
  12555. docsforge/themes/material/templates/.icons/simple/gotomeeting.svg +1 -0
  12556. docsforge/themes/material/templates/.icons/simple/gplv3.svg +1 -0
  12557. docsforge/themes/material/templates/.icons/simple/grab.svg +1 -0
  12558. docsforge/themes/material/templates/.icons/simple/gradio.svg +1 -0
  12559. docsforge/themes/material/templates/.icons/simple/gradle.svg +1 -0
  12560. docsforge/themes/material/templates/.icons/simple/gradleplaypublisher.svg +1 -0
  12561. docsforge/themes/material/templates/.icons/simple/grafana.svg +1 -0
  12562. docsforge/themes/material/templates/.icons/simple/grammarly.svg +1 -0
  12563. docsforge/themes/material/templates/.icons/simple/grandfrais.svg +1 -0
  12564. docsforge/themes/material/templates/.icons/simple/grapheneos.svg +1 -0
  12565. docsforge/themes/material/templates/.icons/simple/graphite.svg +1 -0
  12566. docsforge/themes/material/templates/.icons/simple/graphite_editor.svg +1 -0
  12567. docsforge/themes/material/templates/.icons/simple/graphql.svg +1 -0
  12568. docsforge/themes/material/templates/.icons/simple/grav.svg +1 -0
  12569. docsforge/themes/material/templates/.icons/simple/gravatar.svg +1 -0
  12570. docsforge/themes/material/templates/.icons/simple/graylog.svg +1 -0
  12571. docsforge/themes/material/templates/.icons/simple/greasyfork.svg +1 -0
  12572. docsforge/themes/material/templates/.icons/simple/greatlearning.svg +1 -0
  12573. docsforge/themes/material/templates/.icons/simple/greenhouse.svg +1 -0
  12574. docsforge/themes/material/templates/.icons/simple/greensock.svg +1 -0
  12575. docsforge/themes/material/templates/.icons/simple/greptimedb.svg +1 -0
  12576. docsforge/themes/material/templates/.icons/simple/griddotai.svg +1 -0
  12577. docsforge/themes/material/templates/.icons/simple/gridsome.svg +1 -0
  12578. docsforge/themes/material/templates/.icons/simple/grocy.svg +1 -0
  12579. docsforge/themes/material/templates/.icons/simple/groupme.svg +1 -0
  12580. docsforge/themes/material/templates/.icons/simple/groupon.svg +1 -0
  12581. docsforge/themes/material/templates/.icons/simple/grunt.svg +1 -0
  12582. docsforge/themes/material/templates/.icons/simple/gsap.svg +1 -0
  12583. docsforge/themes/material/templates/.icons/simple/gsk.svg +1 -0
  12584. docsforge/themes/material/templates/.icons/simple/gsma.svg +1 -0
  12585. docsforge/themes/material/templates/.icons/simple/gsmarenadotcom.svg +1 -0
  12586. docsforge/themes/material/templates/.icons/simple/gstreamer.svg +1 -0
  12587. docsforge/themes/material/templates/.icons/simple/gtk.svg +1 -0
  12588. docsforge/themes/material/templates/.icons/simple/guangzhoumetro.svg +1 -0
  12589. docsforge/themes/material/templates/.icons/simple/guilded.svg +1 -0
  12590. docsforge/themes/material/templates/.icons/simple/guitarpro.svg +1 -0
  12591. docsforge/themes/material/templates/.icons/simple/gulp.svg +1 -0
  12592. docsforge/themes/material/templates/.icons/simple/gumroad.svg +1 -0
  12593. docsforge/themes/material/templates/.icons/simple/gumtree.svg +1 -0
  12594. docsforge/themes/material/templates/.icons/simple/gunicorn.svg +1 -0
  12595. docsforge/themes/material/templates/.icons/simple/gurobi.svg +1 -0
  12596. docsforge/themes/material/templates/.icons/simple/gusto.svg +1 -0
  12597. docsforge/themes/material/templates/.icons/simple/gutenberg.svg +1 -0
  12598. docsforge/themes/material/templates/.icons/simple/h2database.svg +1 -0
  12599. docsforge/themes/material/templates/.icons/simple/h3.svg +1 -0
  12600. docsforge/themes/material/templates/.icons/simple/habr.svg +1 -0
  12601. docsforge/themes/material/templates/.icons/simple/hackaday.svg +1 -0
  12602. docsforge/themes/material/templates/.icons/simple/hackclub.svg +1 -0
  12603. docsforge/themes/material/templates/.icons/simple/hackerearth.svg +1 -0
  12604. docsforge/themes/material/templates/.icons/simple/hackernoon.svg +1 -0
  12605. docsforge/themes/material/templates/.icons/simple/hackerone.svg +1 -0
  12606. docsforge/themes/material/templates/.icons/simple/hackerrank.svg +1 -0
  12607. docsforge/themes/material/templates/.icons/simple/hackmd.svg +1 -0
  12608. docsforge/themes/material/templates/.icons/simple/hackster.svg +1 -0
  12609. docsforge/themes/material/templates/.icons/simple/hackthebox.svg +1 -0
  12610. docsforge/themes/material/templates/.icons/simple/hal.svg +1 -0
  12611. docsforge/themes/material/templates/.icons/simple/handlebarsdotjs.svg +1 -0
  12612. docsforge/themes/material/templates/.icons/simple/handm.svg +1 -0
  12613. docsforge/themes/material/templates/.icons/simple/handshake.svg +1 -0
  12614. docsforge/themes/material/templates/.icons/simple/handshake_protocol.svg +1 -0
  12615. docsforge/themes/material/templates/.icons/simple/happycow.svg +1 -0
  12616. docsforge/themes/material/templates/.icons/simple/harbor.svg +1 -0
  12617. docsforge/themes/material/templates/.icons/simple/harmonyos.svg +1 -0
  12618. docsforge/themes/material/templates/.icons/simple/hashcat.svg +1 -0
  12619. docsforge/themes/material/templates/.icons/simple/hashicorp.svg +1 -0
  12620. docsforge/themes/material/templates/.icons/simple/hashnode.svg +1 -0
  12621. docsforge/themes/material/templates/.icons/simple/haskell.svg +1 -0
  12622. docsforge/themes/material/templates/.icons/simple/hasura.svg +1 -0
  12623. docsforge/themes/material/templates/.icons/simple/hatenabookmark.svg +1 -0
  12624. docsforge/themes/material/templates/.icons/simple/haveibeenpwned.svg +1 -0
  12625. docsforge/themes/material/templates/.icons/simple/havells.svg +1 -0
  12626. docsforge/themes/material/templates/.icons/simple/haxe.svg +1 -0
  12627. docsforge/themes/material/templates/.icons/simple/haystack.svg +1 -0
  12628. docsforge/themes/material/templates/.icons/simple/hbo.svg +1 -0
  12629. docsforge/themes/material/templates/.icons/simple/hbomax.svg +1 -0
  12630. docsforge/themes/material/templates/.icons/simple/hcl.svg +1 -0
  12631. docsforge/themes/material/templates/.icons/simple/hdfcbank.svg +1 -0
  12632. docsforge/themes/material/templates/.icons/simple/headlessui.svg +1 -0
  12633. docsforge/themes/material/templates/.icons/simple/headphonezone.svg +1 -0
  12634. docsforge/themes/material/templates/.icons/simple/headspace.svg +1 -0
  12635. docsforge/themes/material/templates/.icons/simple/hearth.svg +1 -0
  12636. docsforge/themes/material/templates/.icons/simple/hearthisdotat.svg +1 -0
  12637. docsforge/themes/material/templates/.icons/simple/hedera.svg +1 -0
  12638. docsforge/themes/material/templates/.icons/simple/hedgedoc.svg +1 -0
  12639. docsforge/themes/material/templates/.icons/simple/helium.svg +1 -0
  12640. docsforge/themes/material/templates/.icons/simple/helix.svg +1 -0
  12641. docsforge/themes/material/templates/.icons/simple/hellofresh.svg +1 -0
  12642. docsforge/themes/material/templates/.icons/simple/hellyhansen.svg +1 -0
  12643. docsforge/themes/material/templates/.icons/simple/helm.svg +1 -0
  12644. docsforge/themes/material/templates/.icons/simple/helpdesk.svg +1 -0
  12645. docsforge/themes/material/templates/.icons/simple/helpscout.svg +1 -0
  12646. docsforge/themes/material/templates/.icons/simple/hepsiemlak.svg +1 -0
  12647. docsforge/themes/material/templates/.icons/simple/here.svg +1 -0
  12648. docsforge/themes/material/templates/.icons/simple/hermes.svg +1 -0
  12649. docsforge/themes/material/templates/.icons/simple/heroicgameslauncher.svg +1 -0
  12650. docsforge/themes/material/templates/.icons/simple/heroui.svg +1 -0
  12651. docsforge/themes/material/templates/.icons/simple/hetzner.svg +1 -0
  12652. docsforge/themes/material/templates/.icons/simple/hevy.svg +1 -0
  12653. docsforge/themes/material/templates/.icons/simple/hexlet.svg +1 -0
  12654. docsforge/themes/material/templates/.icons/simple/hexo.svg +1 -0
  12655. docsforge/themes/material/templates/.icons/simple/hey.svg +1 -0
  12656. docsforge/themes/material/templates/.icons/simple/hibernate.svg +1 -0
  12657. docsforge/themes/material/templates/.icons/simple/hibob.svg +1 -0
  12658. docsforge/themes/material/templates/.icons/simple/hilton.svg +1 -0
  12659. docsforge/themes/material/templates/.icons/simple/hiltonhotelsandresorts.svg +1 -0
  12660. docsforge/themes/material/templates/.icons/simple/hitachi.svg +1 -0
  12661. docsforge/themes/material/templates/.icons/simple/hive.svg +1 -0
  12662. docsforge/themes/material/templates/.icons/simple/hive_blockchain.svg +1 -0
  12663. docsforge/themes/material/templates/.icons/simple/hivemq.svg +1 -0
  12664. docsforge/themes/material/templates/.icons/simple/homarr.svg +1 -0
  12665. docsforge/themes/material/templates/.icons/simple/homeadvisor.svg +1 -0
  12666. docsforge/themes/material/templates/.icons/simple/homeassistant.svg +1 -0
  12667. docsforge/themes/material/templates/.icons/simple/homeassistantcommunitystore.svg +1 -0
  12668. docsforge/themes/material/templates/.icons/simple/homebrew.svg +1 -0
  12669. docsforge/themes/material/templates/.icons/simple/homebridge.svg +1 -0
  12670. docsforge/themes/material/templates/.icons/simple/homepage.svg +1 -0
  12671. docsforge/themes/material/templates/.icons/simple/homify.svg +1 -0
  12672. docsforge/themes/material/templates/.icons/simple/honda.svg +1 -0
  12673. docsforge/themes/material/templates/.icons/simple/honey.svg +1 -0
  12674. docsforge/themes/material/templates/.icons/simple/honeybadger.svg +1 -0
  12675. docsforge/themes/material/templates/.icons/simple/honeygain.svg +1 -0
  12676. docsforge/themes/material/templates/.icons/simple/hono.svg +1 -0
  12677. docsforge/themes/material/templates/.icons/simple/honor.svg +1 -0
  12678. docsforge/themes/material/templates/.icons/simple/hootsuite.svg +1 -0
  12679. docsforge/themes/material/templates/.icons/simple/hoppscotch.svg +1 -0
  12680. docsforge/themes/material/templates/.icons/simple/hostinger.svg +1 -0
  12681. docsforge/themes/material/templates/.icons/simple/hotelsdotcom.svg +1 -0
  12682. docsforge/themes/material/templates/.icons/simple/hotjar.svg +1 -0
  12683. docsforge/themes/material/templates/.icons/simple/hotwire.svg +1 -0
  12684. docsforge/themes/material/templates/.icons/simple/houdini.svg +1 -0
  12685. docsforge/themes/material/templates/.icons/simple/houzz.svg +1 -0
  12686. docsforge/themes/material/templates/.icons/simple/hp.svg +1 -0
  12687. docsforge/themes/material/templates/.icons/simple/hsbc.svg +1 -0
  12688. docsforge/themes/material/templates/.icons/simple/htc.svg +1 -0
  12689. docsforge/themes/material/templates/.icons/simple/htcvive.svg +1 -0
  12690. docsforge/themes/material/templates/.icons/simple/html5.svg +1 -0
  12691. docsforge/themes/material/templates/.icons/simple/htmlacademy.svg +1 -0
  12692. docsforge/themes/material/templates/.icons/simple/htmx.svg +1 -0
  12693. docsforge/themes/material/templates/.icons/simple/htop.svg +1 -0
  12694. docsforge/themes/material/templates/.icons/simple/httpie.svg +1 -0
  12695. docsforge/themes/material/templates/.icons/simple/huawei.svg +1 -0
  12696. docsforge/themes/material/templates/.icons/simple/hubspot.svg +1 -0
  12697. docsforge/themes/material/templates/.icons/simple/huggingface.svg +1 -0
  12698. docsforge/themes/material/templates/.icons/simple/hugo.svg +1 -0
  12699. docsforge/themes/material/templates/.icons/simple/humblebundle.svg +1 -0
  12700. docsforge/themes/material/templates/.icons/simple/humhub.svg +1 -0
  12701. docsforge/themes/material/templates/.icons/simple/hungryjacks.svg +1 -0
  12702. docsforge/themes/material/templates/.icons/simple/husqvarna.svg +1 -0
  12703. docsforge/themes/material/templates/.icons/simple/hyper.svg +1 -0
  12704. docsforge/themes/material/templates/.icons/simple/hyperskill.svg +1 -0
  12705. docsforge/themes/material/templates/.icons/simple/hyperx.svg +1 -0
  12706. docsforge/themes/material/templates/.icons/simple/hypothesis.svg +1 -0
  12707. docsforge/themes/material/templates/.icons/simple/hyprland.svg +1 -0
  12708. docsforge/themes/material/templates/.icons/simple/hyundai.svg +1 -0
  12709. docsforge/themes/material/templates/.icons/simple/i18next.svg +1 -0
  12710. docsforge/themes/material/templates/.icons/simple/i3.svg +1 -0
  12711. docsforge/themes/material/templates/.icons/simple/iata.svg +1 -0
  12712. docsforge/themes/material/templates/.icons/simple/ibeacon.svg +1 -0
  12713. docsforge/themes/material/templates/.icons/simple/iberia.svg +1 -0
  12714. docsforge/themes/material/templates/.icons/simple/iced.svg +1 -0
  12715. docsforge/themes/material/templates/.icons/simple/iceland.svg +1 -0
  12716. docsforge/themes/material/templates/.icons/simple/icicibank.svg +1 -0
  12717. docsforge/themes/material/templates/.icons/simple/icinga.svg +1 -0
  12718. docsforge/themes/material/templates/.icons/simple/icloud.svg +1 -0
  12719. docsforge/themes/material/templates/.icons/simple/icomoon.svg +1 -0
  12720. docsforge/themes/material/templates/.icons/simple/icon.svg +1 -0
  12721. docsforge/themes/material/templates/.icons/simple/iconfinder.svg +1 -0
  12722. docsforge/themes/material/templates/.icons/simple/iconify.svg +1 -0
  12723. docsforge/themes/material/templates/.icons/simple/iconjar.svg +1 -0
  12724. docsforge/themes/material/templates/.icons/simple/icons8.svg +1 -0
  12725. docsforge/themes/material/templates/.icons/simple/icq.svg +1 -0
  12726. docsforge/themes/material/templates/.icons/simple/ieee.svg +1 -0
  12727. docsforge/themes/material/templates/.icons/simple/ifixit.svg +1 -0
  12728. docsforge/themes/material/templates/.icons/simple/ifood.svg +1 -0
  12729. docsforge/themes/material/templates/.icons/simple/ifttt.svg +1 -0
  12730. docsforge/themes/material/templates/.icons/simple/igdb.svg +1 -0
  12731. docsforge/themes/material/templates/.icons/simple/ign.svg +1 -0
  12732. docsforge/themes/material/templates/.icons/simple/iheartradio.svg +1 -0
  12733. docsforge/themes/material/templates/.icons/simple/ikea.svg +1 -0
  12734. docsforge/themes/material/templates/.icons/simple/iledefrancemobilites.svg +1 -0
  12735. docsforge/themes/material/templates/.icons/simple/ilovepdf.svg +1 -0
  12736. docsforge/themes/material/templates/.icons/simple/imagedotsc.svg +1 -0
  12737. docsforge/themes/material/templates/.icons/simple/imagej.svg +1 -0
  12738. docsforge/themes/material/templates/.icons/simple/imagetoolbox.svg +1 -0
  12739. docsforge/themes/material/templates/.icons/simple/imdb.svg +1 -0
  12740. docsforge/themes/material/templates/.icons/simple/imessage.svg +1 -0
  12741. docsforge/themes/material/templates/.icons/simple/imgur.svg +1 -0
  12742. docsforge/themes/material/templates/.icons/simple/immer.svg +1 -0
  12743. docsforge/themes/material/templates/.icons/simple/immersivetranslate.svg +1 -0
  12744. docsforge/themes/material/templates/.icons/simple/immich.svg +1 -0
  12745. docsforge/themes/material/templates/.icons/simple/imou.svg +1 -0
  12746. docsforge/themes/material/templates/.icons/simple/improvmx.svg +1 -0
  12747. docsforge/themes/material/templates/.icons/simple/indeed.svg +1 -0
  12748. docsforge/themes/material/templates/.icons/simple/indiansuperleague.svg +1 -0
  12749. docsforge/themes/material/templates/.icons/simple/indiehackers.svg +1 -0
  12750. docsforge/themes/material/templates/.icons/simple/indigo.svg +1 -0
  12751. docsforge/themes/material/templates/.icons/simple/inductiveautomation.svg +1 -0
  12752. docsforge/themes/material/templates/.icons/simple/inertia.svg +1 -0
  12753. docsforge/themes/material/templates/.icons/simple/infiniti.svg +1 -0
  12754. docsforge/themes/material/templates/.icons/simple/infinityfree.svg +1 -0
  12755. docsforge/themes/material/templates/.icons/simple/influxdb.svg +1 -0
  12756. docsforge/themes/material/templates/.icons/simple/infomaniak.svg +1 -0
  12757. docsforge/themes/material/templates/.icons/simple/infoq.svg +1 -0
  12758. docsforge/themes/material/templates/.icons/simple/infosys.svg +1 -0
  12759. docsforge/themes/material/templates/.icons/simple/infracost.svg +1 -0
  12760. docsforge/themes/material/templates/.icons/simple/ingress.svg +1 -0
  12761. docsforge/themes/material/templates/.icons/simple/inkdrop.svg +1 -0
  12762. docsforge/themes/material/templates/.icons/simple/inkscape.svg +1 -0
  12763. docsforge/themes/material/templates/.icons/simple/inoreader.svg +1 -0
  12764. docsforge/themes/material/templates/.icons/simple/inquirer.svg +1 -0
  12765. docsforge/themes/material/templates/.icons/simple/insomnia.svg +1 -0
  12766. docsforge/themes/material/templates/.icons/simple/inspire.svg +1 -0
  12767. docsforge/themes/material/templates/.icons/simple/insta360.svg +1 -0
  12768. docsforge/themes/material/templates/.icons/simple/instacart.svg +1 -0
  12769. docsforge/themes/material/templates/.icons/simple/instagram.svg +1 -0
  12770. docsforge/themes/material/templates/.icons/simple/instapaper.svg +1 -0
  12771. docsforge/themes/material/templates/.icons/simple/instatus.svg +1 -0
  12772. docsforge/themes/material/templates/.icons/simple/instructables.svg +1 -0
  12773. docsforge/themes/material/templates/.icons/simple/instructure.svg +1 -0
  12774. docsforge/themes/material/templates/.icons/simple/intel.svg +1 -0
  12775. docsforge/themes/material/templates/.icons/simple/intellijidea.svg +1 -0
  12776. docsforge/themes/material/templates/.icons/simple/interactiondesignfoundation.svg +1 -0
  12777. docsforge/themes/material/templates/.icons/simple/interactjs.svg +1 -0
  12778. docsforge/themes/material/templates/.icons/simple/interbase.svg +1 -0
  12779. docsforge/themes/material/templates/.icons/simple/intercom.svg +1 -0
  12780. docsforge/themes/material/templates/.icons/simple/intermarche.svg +1 -0
  12781. docsforge/themes/material/templates/.icons/simple/internetarchive.svg +1 -0
  12782. docsforge/themes/material/templates/.icons/simple/internetcomputer.svg +1 -0
  12783. docsforge/themes/material/templates/.icons/simple/intigriti.svg +1 -0
  12784. docsforge/themes/material/templates/.icons/simple/intuit.svg +1 -0
  12785. docsforge/themes/material/templates/.icons/simple/invidious.svg +1 -0
  12786. docsforge/themes/material/templates/.icons/simple/invoiceninja.svg +1 -0
  12787. docsforge/themes/material/templates/.icons/simple/iobroker.svg +1 -0
  12788. docsforge/themes/material/templates/.icons/simple/ionic.svg +1 -0
  12789. docsforge/themes/material/templates/.icons/simple/ionos.svg +1 -0
  12790. docsforge/themes/material/templates/.icons/simple/ios.svg +1 -0
  12791. docsforge/themes/material/templates/.icons/simple/iota.svg +1 -0
  12792. docsforge/themes/material/templates/.icons/simple/ipfs.svg +1 -0
  12793. docsforge/themes/material/templates/.icons/simple/iris.svg +1 -0
  12794. docsforge/themes/material/templates/.icons/simple/irobot.svg +1 -0
  12795. docsforge/themes/material/templates/.icons/simple/isc2.svg +1 -0
  12796. docsforge/themes/material/templates/.icons/simple/isro.svg +1 -0
  12797. docsforge/themes/material/templates/.icons/simple/issuu.svg +1 -0
  12798. docsforge/themes/material/templates/.icons/simple/istio.svg +1 -0
  12799. docsforge/themes/material/templates/.icons/simple/itchdotio.svg +1 -0
  12800. docsforge/themes/material/templates/.icons/simple/iterm2.svg +1 -0
  12801. docsforge/themes/material/templates/.icons/simple/itunes.svg +1 -0
  12802. docsforge/themes/material/templates/.icons/simple/itvx.svg +1 -0
  12803. docsforge/themes/material/templates/.icons/simple/iveco.svg +1 -0
  12804. docsforge/themes/material/templates/.icons/simple/jabber.svg +1 -0
  12805. docsforge/themes/material/templates/.icons/simple/jaeger.svg +1 -0
  12806. docsforge/themes/material/templates/.icons/simple/jameson.svg +1 -0
  12807. docsforge/themes/material/templates/.icons/simple/jamstack.svg +1 -0
  12808. docsforge/themes/material/templates/.icons/simple/japanairlines.svg +1 -0
  12809. docsforge/themes/material/templates/.icons/simple/jasmine.svg +1 -0
  12810. docsforge/themes/material/templates/.icons/simple/javascript.svg +1 -0
  12811. docsforge/themes/material/templates/.icons/simple/jbl.svg +1 -0
  12812. docsforge/themes/material/templates/.icons/simple/jcb.svg +1 -0
  12813. docsforge/themes/material/templates/.icons/simple/jdoodle.svg +1 -0
  12814. docsforge/themes/material/templates/.icons/simple/jeep.svg +1 -0
  12815. docsforge/themes/material/templates/.icons/simple/jekyll.svg +1 -0
  12816. docsforge/themes/material/templates/.icons/simple/jellyfin.svg +1 -0
  12817. docsforge/themes/material/templates/.icons/simple/jenkins.svg +1 -0
  12818. docsforge/themes/material/templates/.icons/simple/jest.svg +1 -0
  12819. docsforge/themes/material/templates/.icons/simple/jet.svg +1 -0
  12820. docsforge/themes/material/templates/.icons/simple/jetblue.svg +1 -0
  12821. docsforge/themes/material/templates/.icons/simple/jetbrains.svg +1 -0
  12822. docsforge/themes/material/templates/.icons/simple/jetpackcompose.svg +1 -0
  12823. docsforge/themes/material/templates/.icons/simple/jfrog.svg +1 -0
  12824. docsforge/themes/material/templates/.icons/simple/jfrogpipelines.svg +1 -0
  12825. docsforge/themes/material/templates/.icons/simple/jhipster.svg +1 -0
  12826. docsforge/themes/material/templates/.icons/simple/jinja.svg +1 -0
  12827. docsforge/themes/material/templates/.icons/simple/jio.svg +1 -0
  12828. docsforge/themes/material/templates/.icons/simple/jira.svg +1 -0
  12829. docsforge/themes/material/templates/.icons/simple/jirasoftware.svg +1 -0
  12830. docsforge/themes/material/templates/.icons/simple/jitpack.svg +1 -0
  12831. docsforge/themes/material/templates/.icons/simple/jitsi.svg +1 -0
  12832. docsforge/themes/material/templates/.icons/simple/johndeere.svg +1 -0
  12833. docsforge/themes/material/templates/.icons/simple/joomla.svg +1 -0
  12834. docsforge/themes/material/templates/.icons/simple/joplin.svg +1 -0
  12835. docsforge/themes/material/templates/.icons/simple/jordan.svg +1 -0
  12836. docsforge/themes/material/templates/.icons/simple/jouav.svg +1 -0
  12837. docsforge/themes/material/templates/.icons/simple/jovian.svg +1 -0
  12838. docsforge/themes/material/templates/.icons/simple/jpeg.svg +1 -0
  12839. docsforge/themes/material/templates/.icons/simple/jquery.svg +1 -0
  12840. docsforge/themes/material/templates/.icons/simple/jrgroup.svg +1 -0
  12841. docsforge/themes/material/templates/.icons/simple/jsdelivr.svg +1 -0
  12842. docsforge/themes/material/templates/.icons/simple/jsfiddle.svg +1 -0
  12843. docsforge/themes/material/templates/.icons/simple/json.svg +1 -0
  12844. docsforge/themes/material/templates/.icons/simple/jsonwebtokens.svg +1 -0
  12845. docsforge/themes/material/templates/.icons/simple/jsr.svg +1 -0
  12846. docsforge/themes/material/templates/.icons/simple/jss.svg +1 -0
  12847. docsforge/themes/material/templates/.icons/simple/juce.svg +1 -0
  12848. docsforge/themes/material/templates/.icons/simple/juejin.svg +1 -0
  12849. docsforge/themes/material/templates/.icons/simple/juke.svg +1 -0
  12850. docsforge/themes/material/templates/.icons/simple/julia.svg +1 -0
  12851. docsforge/themes/material/templates/.icons/simple/junipernetworks.svg +1 -0
  12852. docsforge/themes/material/templates/.icons/simple/junit5.svg +1 -0
  12853. docsforge/themes/material/templates/.icons/simple/jupyter.svg +1 -0
  12854. docsforge/themes/material/templates/.icons/simple/just.svg +1 -0
  12855. docsforge/themes/material/templates/.icons/simple/justeat.svg +1 -0
  12856. docsforge/themes/material/templates/.icons/simple/justgiving.svg +1 -0
  12857. docsforge/themes/material/templates/.icons/simple/k3s.svg +1 -0
  12858. docsforge/themes/material/templates/.icons/simple/k6.svg +1 -0
  12859. docsforge/themes/material/templates/.icons/simple/kaggle.svg +1 -0
  12860. docsforge/themes/material/templates/.icons/simple/kagi.svg +1 -0
  12861. docsforge/themes/material/templates/.icons/simple/kahoot.svg +1 -0
  12862. docsforge/themes/material/templates/.icons/simple/kaios.svg +1 -0
  12863. docsforge/themes/material/templates/.icons/simple/kakao.svg +1 -0
  12864. docsforge/themes/material/templates/.icons/simple/kakaotalk.svg +1 -0
  12865. docsforge/themes/material/templates/.icons/simple/kalilinux.svg +1 -0
  12866. docsforge/themes/material/templates/.icons/simple/kamailio.svg +1 -0
  12867. docsforge/themes/material/templates/.icons/simple/kando.svg +1 -0
  12868. docsforge/themes/material/templates/.icons/simple/kaniko.svg +1 -0
  12869. docsforge/themes/material/templates/.icons/simple/karlsruherverkehrsverbund.svg +1 -0
  12870. docsforge/themes/material/templates/.icons/simple/kasasmart.svg +1 -0
  12871. docsforge/themes/material/templates/.icons/simple/kashflow.svg +1 -0
  12872. docsforge/themes/material/templates/.icons/simple/kaspersky.svg +1 -0
  12873. docsforge/themes/material/templates/.icons/simple/katana.svg +1 -0
  12874. docsforge/themes/material/templates/.icons/simple/kaufland.svg +1 -0
  12875. docsforge/themes/material/templates/.icons/simple/kde.svg +1 -0
  12876. docsforge/themes/material/templates/.icons/simple/kdeneon.svg +1 -0
  12877. docsforge/themes/material/templates/.icons/simple/kdenlive.svg +1 -0
  12878. docsforge/themes/material/templates/.icons/simple/kdeplasma.svg +1 -0
  12879. docsforge/themes/material/templates/.icons/simple/kedro.svg +1 -0
  12880. docsforge/themes/material/templates/.icons/simple/keenetic.svg +1 -0
  12881. docsforge/themes/material/templates/.icons/simple/keepachangelog.svg +1 -0
  12882. docsforge/themes/material/templates/.icons/simple/keepassxc.svg +1 -0
  12883. docsforge/themes/material/templates/.icons/simple/keeper.svg +1 -0
  12884. docsforge/themes/material/templates/.icons/simple/keeweb.svg +1 -0
  12885. docsforge/themes/material/templates/.icons/simple/kenmei.svg +1 -0
  12886. docsforge/themes/material/templates/.icons/simple/kentico.svg +1 -0
  12887. docsforge/themes/material/templates/.icons/simple/keploy.svg +1 -0
  12888. docsforge/themes/material/templates/.icons/simple/keras.svg +1 -0
  12889. docsforge/themes/material/templates/.icons/simple/keybase.svg +1 -0
  12890. docsforge/themes/material/templates/.icons/simple/keycdn.svg +1 -0
  12891. docsforge/themes/material/templates/.icons/simple/keycloak.svg +1 -0
  12892. docsforge/themes/material/templates/.icons/simple/keystone.svg +1 -0
  12893. docsforge/themes/material/templates/.icons/simple/kfc.svg +1 -0
  12894. docsforge/themes/material/templates/.icons/simple/khanacademy.svg +1 -0
  12895. docsforge/themes/material/templates/.icons/simple/khronosgroup.svg +1 -0
  12896. docsforge/themes/material/templates/.icons/simple/kia.svg +1 -0
  12897. docsforge/themes/material/templates/.icons/simple/kibana.svg +1 -0
  12898. docsforge/themes/material/templates/.icons/simple/kicad.svg +1 -0
  12899. docsforge/themes/material/templates/.icons/simple/kick.svg +1 -0
  12900. docsforge/themes/material/templates/.icons/simple/kickstarter.svg +1 -0
  12901. docsforge/themes/material/templates/.icons/simple/kik.svg +1 -0
  12902. docsforge/themes/material/templates/.icons/simple/kingstontechnology.svg +1 -0
  12903. docsforge/themes/material/templates/.icons/simple/kinopoisk.svg +1 -0
  12904. docsforge/themes/material/templates/.icons/simple/kinsta.svg +1 -0
  12905. docsforge/themes/material/templates/.icons/simple/kirby.svg +1 -0
  12906. docsforge/themes/material/templates/.icons/simple/kit.svg +1 -0
  12907. docsforge/themes/material/templates/.icons/simple/kitsu.svg +1 -0
  12908. docsforge/themes/material/templates/.icons/simple/kiwix.svg +1 -0
  12909. docsforge/themes/material/templates/.icons/simple/klarna.svg +1 -0
  12910. docsforge/themes/material/templates/.icons/simple/kleinanzeigen.svg +1 -0
  12911. docsforge/themes/material/templates/.icons/simple/klm.svg +1 -0
  12912. docsforge/themes/material/templates/.icons/simple/klook.svg +1 -0
  12913. docsforge/themes/material/templates/.icons/simple/knative.svg +1 -0
  12914. docsforge/themes/material/templates/.icons/simple/knexdotjs.svg +1 -0
  12915. docsforge/themes/material/templates/.icons/simple/knime.svg +1 -0
  12916. docsforge/themes/material/templates/.icons/simple/knip.svg +1 -0
  12917. docsforge/themes/material/templates/.icons/simple/knowledgebase.svg +1 -0
  12918. docsforge/themes/material/templates/.icons/simple/known.svg +1 -0
  12919. docsforge/themes/material/templates/.icons/simple/koa.svg +1 -0
  12920. docsforge/themes/material/templates/.icons/simple/koc.svg +1 -0
  12921. docsforge/themes/material/templates/.icons/simple/kodak.svg +1 -0
  12922. docsforge/themes/material/templates/.icons/simple/kodi.svg +1 -0
  12923. docsforge/themes/material/templates/.icons/simple/koenigsegg.svg +1 -0
  12924. docsforge/themes/material/templates/.icons/simple/kofax.svg +1 -0
  12925. docsforge/themes/material/templates/.icons/simple/kofi.svg +1 -0
  12926. docsforge/themes/material/templates/.icons/simple/komoot.svg +1 -0
  12927. docsforge/themes/material/templates/.icons/simple/konami.svg +1 -0
  12928. docsforge/themes/material/templates/.icons/simple/kong.svg +1 -0
  12929. docsforge/themes/material/templates/.icons/simple/kongregate.svg +1 -0
  12930. docsforge/themes/material/templates/.icons/simple/konva.svg +1 -0
  12931. docsforge/themes/material/templates/.icons/simple/koreader.svg +1 -0
  12932. docsforge/themes/material/templates/.icons/simple/kotlin.svg +1 -0
  12933. docsforge/themes/material/templates/.icons/simple/koyeb.svg +1 -0
  12934. docsforge/themes/material/templates/.icons/simple/kred.svg +1 -0
  12935. docsforge/themes/material/templates/.icons/simple/krita.svg +1 -0
  12936. docsforge/themes/material/templates/.icons/simple/ktm.svg +1 -0
  12937. docsforge/themes/material/templates/.icons/simple/ktor.svg +1 -0
  12938. docsforge/themes/material/templates/.icons/simple/kuaishou.svg +1 -0
  12939. docsforge/themes/material/templates/.icons/simple/kubernetes.svg +1 -0
  12940. docsforge/themes/material/templates/.icons/simple/kubespray.svg +1 -0
  12941. docsforge/themes/material/templates/.icons/simple/kubuntu.svg +1 -0
  12942. docsforge/themes/material/templates/.icons/simple/kucoin.svg +1 -0
  12943. docsforge/themes/material/templates/.icons/simple/kueski.svg +1 -0
  12944. docsforge/themes/material/templates/.icons/simple/kuma.svg +1 -0
  12945. docsforge/themes/material/templates/.icons/simple/kununu.svg +1 -0
  12946. docsforge/themes/material/templates/.icons/simple/kuula.svg +1 -0
  12947. docsforge/themes/material/templates/.icons/simple/kx.svg +1 -0
  12948. docsforge/themes/material/templates/.icons/simple/kyocera.svg +1 -0
  12949. docsforge/themes/material/templates/.icons/simple/labex.svg +1 -0
  12950. docsforge/themes/material/templates/.icons/simple/labview.svg +1 -0
  12951. docsforge/themes/material/templates/.icons/simple/lada.svg +1 -0
  12952. docsforge/themes/material/templates/.icons/simple/lamborghini.svg +1 -0
  12953. docsforge/themes/material/templates/.icons/simple/langchain.svg +1 -0
  12954. docsforge/themes/material/templates/.icons/simple/langflow.svg +1 -0
  12955. docsforge/themes/material/templates/.icons/simple/langgraph.svg +1 -0
  12956. docsforge/themes/material/templates/.icons/simple/languagetool.svg +1 -0
  12957. docsforge/themes/material/templates/.icons/simple/lapce.svg +1 -0
  12958. docsforge/themes/material/templates/.icons/simple/laragon.svg +1 -0
  12959. docsforge/themes/material/templates/.icons/simple/laravel.svg +1 -0
  12960. docsforge/themes/material/templates/.icons/simple/laravelhorizon.svg +1 -0
  12961. docsforge/themes/material/templates/.icons/simple/laravelnova.svg +1 -0
  12962. docsforge/themes/material/templates/.icons/simple/lastdotfm.svg +1 -0
  12963. docsforge/themes/material/templates/.icons/simple/lastpass.svg +1 -0
  12964. docsforge/themes/material/templates/.icons/simple/latex.svg +1 -0
  12965. docsforge/themes/material/templates/.icons/simple/launchpad.svg +1 -0
  12966. docsforge/themes/material/templates/.icons/simple/lazarus.svg +1 -0
  12967. docsforge/themes/material/templates/.icons/simple/lazyvim.svg +1 -0
  12968. docsforge/themes/material/templates/.icons/simple/lbry.svg +1 -0
  12969. docsforge/themes/material/templates/.icons/simple/leaderprice.svg +1 -0
  12970. docsforge/themes/material/templates/.icons/simple/leaflet.svg +1 -0
  12971. docsforge/themes/material/templates/.icons/simple/leagueoflegends.svg +1 -0
  12972. docsforge/themes/material/templates/.icons/simple/leanpub.svg +1 -0
  12973. docsforge/themes/material/templates/.icons/simple/leetcode.svg +1 -0
  12974. docsforge/themes/material/templates/.icons/simple/lefthook.svg +1 -0
  12975. docsforge/themes/material/templates/.icons/simple/legacygames.svg +1 -0
  12976. docsforge/themes/material/templates/.icons/simple/leica.svg +1 -0
  12977. docsforge/themes/material/templates/.icons/simple/lemmy.svg +1 -0
  12978. docsforge/themes/material/templates/.icons/simple/lemonsqueezy.svg +1 -0
  12979. docsforge/themes/material/templates/.icons/simple/lenovo.svg +1 -0
  12980. docsforge/themes/material/templates/.icons/simple/lens.svg +1 -0
  12981. docsforge/themes/material/templates/.icons/simple/leptos.svg +1 -0
  12982. docsforge/themes/material/templates/.icons/simple/lequipe.svg +1 -0
  12983. docsforge/themes/material/templates/.icons/simple/lerna.svg +1 -0
  12984. docsforge/themes/material/templates/.icons/simple/leroymerlin.svg +1 -0
  12985. docsforge/themes/material/templates/.icons/simple/leslibraires.svg +1 -0
  12986. docsforge/themes/material/templates/.icons/simple/less.svg +1 -0
  12987. docsforge/themes/material/templates/.icons/simple/letsencrypt.svg +1 -0
  12988. docsforge/themes/material/templates/.icons/simple/letterboxd.svg +1 -0
  12989. docsforge/themes/material/templates/.icons/simple/levelsdotfyi.svg +1 -0
  12990. docsforge/themes/material/templates/.icons/simple/lg.svg +1 -0
  12991. docsforge/themes/material/templates/.icons/simple/liberadotchat.svg +1 -0
  12992. docsforge/themes/material/templates/.icons/simple/liberapay.svg +1 -0
  12993. docsforge/themes/material/templates/.icons/simple/librariesdotio.svg +1 -0
  12994. docsforge/themes/material/templates/.icons/simple/librarything.svg +1 -0
  12995. docsforge/themes/material/templates/.icons/simple/libreoffice.svg +1 -0
  12996. docsforge/themes/material/templates/.icons/simple/libreofficebase.svg +1 -0
  12997. docsforge/themes/material/templates/.icons/simple/libreofficecalc.svg +1 -0
  12998. docsforge/themes/material/templates/.icons/simple/libreofficedraw.svg +1 -0
  12999. docsforge/themes/material/templates/.icons/simple/libreofficeimpress.svg +1 -0
  13000. docsforge/themes/material/templates/.icons/simple/libreofficemath.svg +1 -0
  13001. docsforge/themes/material/templates/.icons/simple/libreofficewriter.svg +1 -0
  13002. docsforge/themes/material/templates/.icons/simple/libretranslate.svg +1 -0
  13003. docsforge/themes/material/templates/.icons/simple/libretube.svg +1 -0
  13004. docsforge/themes/material/templates/.icons/simple/librewolf.svg +1 -0
  13005. docsforge/themes/material/templates/.icons/simple/libuv.svg +1 -0
  13006. docsforge/themes/material/templates/.icons/simple/lichess.svg +1 -0
  13007. docsforge/themes/material/templates/.icons/simple/lidl.svg +1 -0
  13008. docsforge/themes/material/templates/.icons/simple/lifx.svg +1 -0
  13009. docsforge/themes/material/templates/.icons/simple/lightburn.svg +1 -0
  13010. docsforge/themes/material/templates/.icons/simple/lighthouse.svg +1 -0
  13011. docsforge/themes/material/templates/.icons/simple/lightning.svg +1 -0
  13012. docsforge/themes/material/templates/.icons/simple/limesurvey.svg +1 -0
  13013. docsforge/themes/material/templates/.icons/simple/line.svg +1 -0
  13014. docsforge/themes/material/templates/.icons/simple/lineageos.svg +1 -0
  13015. docsforge/themes/material/templates/.icons/simple/linear.svg +1 -0
  13016. docsforge/themes/material/templates/.icons/simple/lining.svg +1 -0
  13017. docsforge/themes/material/templates/.icons/simple/linkerd.svg +1 -0
  13018. docsforge/themes/material/templates/.icons/simple/linkfire.svg +1 -0
  13019. docsforge/themes/material/templates/.icons/simple/linksys.svg +1 -0
  13020. docsforge/themes/material/templates/.icons/simple/linktree.svg +1 -0
  13021. docsforge/themes/material/templates/.icons/simple/linphone.svg +1 -0
  13022. docsforge/themes/material/templates/.icons/simple/lintcode.svg +1 -0
  13023. docsforge/themes/material/templates/.icons/simple/linux.svg +1 -0
  13024. docsforge/themes/material/templates/.icons/simple/linuxcontainers.svg +1 -0
  13025. docsforge/themes/material/templates/.icons/simple/linuxfoundation.svg +1 -0
  13026. docsforge/themes/material/templates/.icons/simple/linuxmint.svg +1 -0
  13027. docsforge/themes/material/templates/.icons/simple/linuxprofessionalinstitute.svg +1 -0
  13028. docsforge/themes/material/templates/.icons/simple/linuxserver.svg +1 -0
  13029. docsforge/themes/material/templates/.icons/simple/lionair.svg +1 -0
  13030. docsforge/themes/material/templates/.icons/simple/liquibase.svg +1 -0
  13031. docsforge/themes/material/templates/.icons/simple/listenhub.svg +1 -0
  13032. docsforge/themes/material/templates/.icons/simple/listmonk.svg +1 -0
  13033. docsforge/themes/material/templates/.icons/simple/lit.svg +1 -0
  13034. docsforge/themes/material/templates/.icons/simple/litecoin.svg +1 -0
  13035. docsforge/themes/material/templates/.icons/simple/literal.svg +1 -0
  13036. docsforge/themes/material/templates/.icons/simple/litiengine.svg +1 -0
  13037. docsforge/themes/material/templates/.icons/simple/livechat.svg +1 -0
  13038. docsforge/themes/material/templates/.icons/simple/livejournal.svg +1 -0
  13039. docsforge/themes/material/templates/.icons/simple/livekit.svg +1 -0
  13040. docsforge/themes/material/templates/.icons/simple/livewire.svg +1 -0
  13041. docsforge/themes/material/templates/.icons/simple/llvm.svg +1 -0
  13042. docsforge/themes/material/templates/.icons/simple/lmms.svg +1 -0
  13043. docsforge/themes/material/templates/.icons/simple/lobsters.svg +1 -0
  13044. docsforge/themes/material/templates/.icons/simple/local.svg +1 -0
  13045. docsforge/themes/material/templates/.icons/simple/localsend.svg +1 -0
  13046. docsforge/themes/material/templates/.icons/simple/localxpose.svg +1 -0
  13047. docsforge/themes/material/templates/.icons/simple/lodash.svg +1 -0
  13048. docsforge/themes/material/templates/.icons/simple/logmein.svg +1 -0
  13049. docsforge/themes/material/templates/.icons/simple/logseq.svg +1 -0
  13050. docsforge/themes/material/templates/.icons/simple/logstash.svg +1 -0
  13051. docsforge/themes/material/templates/.icons/simple/looker.svg +1 -0
  13052. docsforge/themes/material/templates/.icons/simple/loom.svg +1 -0
  13053. docsforge/themes/material/templates/.icons/simple/loop.svg +1 -0
  13054. docsforge/themes/material/templates/.icons/simple/loopback.svg +1 -0
  13055. docsforge/themes/material/templates/.icons/simple/lootcrate.svg +1 -0
  13056. docsforge/themes/material/templates/.icons/simple/lospec.svg +1 -0
  13057. docsforge/themes/material/templates/.icons/simple/lotpolishairlines.svg +1 -0
  13058. docsforge/themes/material/templates/.icons/simple/lottiefiles.svg +1 -0
  13059. docsforge/themes/material/templates/.icons/simple/ltspice.svg +1 -0
  13060. docsforge/themes/material/templates/.icons/simple/lua.svg +1 -0
  13061. docsforge/themes/material/templates/.icons/simple/luanti.svg +1 -0
  13062. docsforge/themes/material/templates/.icons/simple/luau.svg +1 -0
  13063. docsforge/themes/material/templates/.icons/simple/lubuntu.svg +1 -0
  13064. docsforge/themes/material/templates/.icons/simple/lucia.svg +1 -0
  13065. docsforge/themes/material/templates/.icons/simple/lucid.svg +1 -0
  13066. docsforge/themes/material/templates/.icons/simple/lucide.svg +1 -0
  13067. docsforge/themes/material/templates/.icons/simple/ludwig.svg +1 -0
  13068. docsforge/themes/material/templates/.icons/simple/lufthansa.svg +1 -0
  13069. docsforge/themes/material/templates/.icons/simple/lumen.svg +1 -0
  13070. docsforge/themes/material/templates/.icons/simple/lunacy.svg +1 -0
  13071. docsforge/themes/material/templates/.icons/simple/luogu.svg +1 -0
  13072. docsforge/themes/material/templates/.icons/simple/lutris.svg +1 -0
  13073. docsforge/themes/material/templates/.icons/simple/lvgl.svg +1 -0
  13074. docsforge/themes/material/templates/.icons/simple/lydia.svg +1 -0
  13075. docsforge/themes/material/templates/.icons/simple/lyft.svg +1 -0
  13076. docsforge/themes/material/templates/.icons/simple/maas.svg +1 -0
  13077. docsforge/themes/material/templates/.icons/simple/macos.svg +1 -0
  13078. docsforge/themes/material/templates/.icons/simple/macpaw.svg +1 -0
  13079. docsforge/themes/material/templates/.icons/simple/macports.svg +1 -0
  13080. docsforge/themes/material/templates/.icons/simple/macys.svg +1 -0
  13081. docsforge/themes/material/templates/.icons/simple/magasinsu.svg +1 -0
  13082. docsforge/themes/material/templates/.icons/simple/magic.svg +1 -0
  13083. docsforge/themes/material/templates/.icons/simple/magisk.svg +1 -0
  13084. docsforge/themes/material/templates/.icons/simple/mahindra.svg +1 -0
  13085. docsforge/themes/material/templates/.icons/simple/mailbox.svg +1 -0
  13086. docsforge/themes/material/templates/.icons/simple/mailchimp.svg +1 -0
  13087. docsforge/themes/material/templates/.icons/simple/maildotcom.svg +1 -0
  13088. docsforge/themes/material/templates/.icons/simple/maildotru.svg +1 -0
  13089. docsforge/themes/material/templates/.icons/simple/mailgun.svg +1 -0
  13090. docsforge/themes/material/templates/.icons/simple/mailtrap.svg +1 -0
  13091. docsforge/themes/material/templates/.icons/simple/mainwp.svg +1 -0
  13092. docsforge/themes/material/templates/.icons/simple/majorleaguehacking.svg +1 -0
  13093. docsforge/themes/material/templates/.icons/simple/make.svg +1 -0
  13094. docsforge/themes/material/templates/.icons/simple/makerbot.svg +1 -0
  13095. docsforge/themes/material/templates/.icons/simple/malt.svg +1 -0
  13096. docsforge/themes/material/templates/.icons/simple/malwarebytes.svg +1 -0
  13097. docsforge/themes/material/templates/.icons/simple/mambaui.svg +1 -0
  13098. docsforge/themes/material/templates/.icons/simple/mamp.svg +1 -0
  13099. docsforge/themes/material/templates/.icons/simple/man.svg +1 -0
  13100. docsforge/themes/material/templates/.icons/simple/manageiq.svg +1 -0
  13101. docsforge/themes/material/templates/.icons/simple/mangacollec.svg +1 -0
  13102. docsforge/themes/material/templates/.icons/simple/mangaupdates.svg +1 -0
  13103. docsforge/themes/material/templates/.icons/simple/manjaro.svg +1 -0
  13104. docsforge/themes/material/templates/.icons/simple/mantine.svg +1 -0
  13105. docsforge/themes/material/templates/.icons/simple/mapbox.svg +1 -0
  13106. docsforge/themes/material/templates/.icons/simple/mapillary.svg +1 -0
  13107. docsforge/themes/material/templates/.icons/simple/maplibre.svg +1 -0
  13108. docsforge/themes/material/templates/.icons/simple/maptiler.svg +1 -0
  13109. docsforge/themes/material/templates/.icons/simple/mariadb.svg +1 -0
  13110. docsforge/themes/material/templates/.icons/simple/mariadbfoundation.svg +1 -0
  13111. docsforge/themes/material/templates/.icons/simple/markdown.svg +1 -0
  13112. docsforge/themes/material/templates/.icons/simple/marko.svg +1 -0
  13113. docsforge/themes/material/templates/.icons/simple/marriott.svg +1 -0
  13114. docsforge/themes/material/templates/.icons/simple/marvelapp.svg +1 -0
  13115. docsforge/themes/material/templates/.icons/simple/maserati.svg +1 -0
  13116. docsforge/themes/material/templates/.icons/simple/mastercard.svg +1 -0
  13117. docsforge/themes/material/templates/.icons/simple/mastercomfig.svg +1 -0
  13118. docsforge/themes/material/templates/.icons/simple/mastodon.svg +1 -0
  13119. docsforge/themes/material/templates/.icons/simple/materialdesign.svg +1 -0
  13120. docsforge/themes/material/templates/.icons/simple/materialdesignicons.svg +1 -0
  13121. docsforge/themes/material/templates/.icons/simple/materialformkdocs.svg +1 -0
  13122. docsforge/themes/material/templates/.icons/simple/matillion.svg +1 -0
  13123. docsforge/themes/material/templates/.icons/simple/matomo.svg +1 -0
  13124. docsforge/themes/material/templates/.icons/simple/matrix.svg +1 -0
  13125. docsforge/themes/material/templates/.icons/simple/matterdotjs.svg +1 -0
  13126. docsforge/themes/material/templates/.icons/simple/mattermost.svg +1 -0
  13127. docsforge/themes/material/templates/.icons/simple/matternet.svg +1 -0
  13128. docsforge/themes/material/templates/.icons/simple/mautic.svg +1 -0
  13129. docsforge/themes/material/templates/.icons/simple/max.svg +1 -0
  13130. docsforge/themes/material/templates/.icons/simple/maxplanckgesellschaft.svg +1 -0
  13131. docsforge/themes/material/templates/.icons/simple/maytag.svg +1 -0
  13132. docsforge/themes/material/templates/.icons/simple/mazda.svg +1 -0
  13133. docsforge/themes/material/templates/.icons/simple/maze.svg +1 -0
  13134. docsforge/themes/material/templates/.icons/simple/mcafee.svg +1 -0
  13135. docsforge/themes/material/templates/.icons/simple/mcdonalds.svg +1 -0
  13136. docsforge/themes/material/templates/.icons/simple/mclaren.svg +1 -0
  13137. docsforge/themes/material/templates/.icons/simple/mdblist.svg +1 -0
  13138. docsforge/themes/material/templates/.icons/simple/mdbook.svg +1 -0
  13139. docsforge/themes/material/templates/.icons/simple/mdnwebdocs.svg +1 -0
  13140. docsforge/themes/material/templates/.icons/simple/mdx.svg +1 -0
  13141. docsforge/themes/material/templates/.icons/simple/mealie.svg +1 -0
  13142. docsforge/themes/material/templates/.icons/simple/mediafire.svg +1 -0
  13143. docsforge/themes/material/templates/.icons/simple/mediamarkt.svg +1 -0
  13144. docsforge/themes/material/templates/.icons/simple/mediapipe.svg +1 -0
  13145. docsforge/themes/material/templates/.icons/simple/mediatek.svg +1 -0
  13146. docsforge/themes/material/templates/.icons/simple/medibangpaint.svg +1 -0
  13147. docsforge/themes/material/templates/.icons/simple/medium.svg +1 -0
  13148. docsforge/themes/material/templates/.icons/simple/medusa.svg +1 -0
  13149. docsforge/themes/material/templates/.icons/simple/meetup.svg +1 -0
  13150. docsforge/themes/material/templates/.icons/simple/mega.svg +1 -0
  13151. docsforge/themes/material/templates/.icons/simple/meilisearch.svg +1 -0
  13152. docsforge/themes/material/templates/.icons/simple/meituan.svg +1 -0
  13153. docsforge/themes/material/templates/.icons/simple/meizu.svg +1 -0
  13154. docsforge/themes/material/templates/.icons/simple/mendeley.svg +1 -0
  13155. docsforge/themes/material/templates/.icons/simple/mentorcruise.svg +1 -0
  13156. docsforge/themes/material/templates/.icons/simple/mercadopago.svg +1 -0
  13157. docsforge/themes/material/templates/.icons/simple/merck.svg +1 -0
  13158. docsforge/themes/material/templates/.icons/simple/mercurial.svg +1 -0
  13159. docsforge/themes/material/templates/.icons/simple/mermaid.svg +1 -0
  13160. docsforge/themes/material/templates/.icons/simple/messenger.svg +1 -0
  13161. docsforge/themes/material/templates/.icons/simple/meta.svg +1 -0
  13162. docsforge/themes/material/templates/.icons/simple/metabase.svg +1 -0
  13163. docsforge/themes/material/templates/.icons/simple/metacritic.svg +1 -0
  13164. docsforge/themes/material/templates/.icons/simple/metafilter.svg +1 -0
  13165. docsforge/themes/material/templates/.icons/simple/metager.svg +1 -0
  13166. docsforge/themes/material/templates/.icons/simple/metasploit.svg +1 -0
  13167. docsforge/themes/material/templates/.icons/simple/meteor.svg +1 -0
  13168. docsforge/themes/material/templates/.icons/simple/metro.svg +1 -0
  13169. docsforge/themes/material/templates/.icons/simple/metrodelaciudaddemexico.svg +1 -0
  13170. docsforge/themes/material/templates/.icons/simple/metrodemadrid.svg +1 -0
  13171. docsforge/themes/material/templates/.icons/simple/metrodeparis.svg +1 -0
  13172. docsforge/themes/material/templates/.icons/simple/mewe.svg +1 -0
  13173. docsforge/themes/material/templates/.icons/simple/mezmo.svg +1 -0
  13174. docsforge/themes/material/templates/.icons/simple/mg.svg +1 -0
  13175. docsforge/themes/material/templates/.icons/simple/microbit.svg +1 -0
  13176. docsforge/themes/material/templates/.icons/simple/microdotblog.svg +1 -0
  13177. docsforge/themes/material/templates/.icons/simple/microeditor.svg +1 -0
  13178. docsforge/themes/material/templates/.icons/simple/micropython.svg +1 -0
  13179. docsforge/themes/material/templates/.icons/simple/microstation.svg +1 -0
  13180. docsforge/themes/material/templates/.icons/simple/microstrategy.svg +1 -0
  13181. docsforge/themes/material/templates/.icons/simple/midi.svg +1 -0
  13182. docsforge/themes/material/templates/.icons/simple/migadu.svg +1 -0
  13183. docsforge/themes/material/templates/.icons/simple/mihon.svg +1 -0
  13184. docsforge/themes/material/templates/.icons/simple/mihoyo.svg +1 -0
  13185. docsforge/themes/material/templates/.icons/simple/mikrotik.svg +1 -0
  13186. docsforge/themes/material/templates/.icons/simple/milanote.svg +1 -0
  13187. docsforge/themes/material/templates/.icons/simple/milvus.svg +1 -0
  13188. docsforge/themes/material/templates/.icons/simple/minds.svg +1 -0
  13189. docsforge/themes/material/templates/.icons/simple/mingww64.svg +1 -0
  13190. docsforge/themes/material/templates/.icons/simple/mini.svg +1 -0
  13191. docsforge/themes/material/templates/.icons/simple/minimax.svg +1 -0
  13192. docsforge/themes/material/templates/.icons/simple/minio.svg +1 -0
  13193. docsforge/themes/material/templates/.icons/simple/mintlify.svg +1 -0
  13194. docsforge/themes/material/templates/.icons/simple/minutemailer.svg +1 -0
  13195. docsforge/themes/material/templates/.icons/simple/miraheze.svg +1 -0
  13196. docsforge/themes/material/templates/.icons/simple/miro.svg +1 -0
  13197. docsforge/themes/material/templates/.icons/simple/misskey.svg +1 -0
  13198. docsforge/themes/material/templates/.icons/simple/mistralai.svg +1 -0
  13199. docsforge/themes/material/templates/.icons/simple/mitsubishi.svg +1 -0
  13200. docsforge/themes/material/templates/.icons/simple/mix.svg +1 -0
  13201. docsforge/themes/material/templates/.icons/simple/mixcloud.svg +1 -0
  13202. docsforge/themes/material/templates/.icons/simple/mixpanel.svg +1 -0
  13203. docsforge/themes/material/templates/.icons/simple/mlb.svg +1 -0
  13204. docsforge/themes/material/templates/.icons/simple/mlflow.svg +1 -0
  13205. docsforge/themes/material/templates/.icons/simple/mobx.svg +1 -0
  13206. docsforge/themes/material/templates/.icons/simple/mobxstatetree.svg +1 -0
  13207. docsforge/themes/material/templates/.icons/simple/mocha.svg +1 -0
  13208. docsforge/themes/material/templates/.icons/simple/mockserviceworker.svg +1 -0
  13209. docsforge/themes/material/templates/.icons/simple/modal.svg +1 -0
  13210. docsforge/themes/material/templates/.icons/simple/modelcontextprotocol.svg +1 -0
  13211. docsforge/themes/material/templates/.icons/simple/modelscope.svg +1 -0
  13212. docsforge/themes/material/templates/.icons/simple/modin.svg +1 -0
  13213. docsforge/themes/material/templates/.icons/simple/modrinth.svg +1 -0
  13214. docsforge/themes/material/templates/.icons/simple/modx.svg +1 -0
  13215. docsforge/themes/material/templates/.icons/simple/mojeek.svg +1 -0
  13216. docsforge/themes/material/templates/.icons/simple/moleculer.svg +1 -0
  13217. docsforge/themes/material/templates/.icons/simple/momenteo.svg +1 -0
  13218. docsforge/themes/material/templates/.icons/simple/monero.svg +1 -0
  13219. docsforge/themes/material/templates/.icons/simple/moneygram.svg +1 -0
  13220. docsforge/themes/material/templates/.icons/simple/mongodb.svg +1 -0
  13221. docsforge/themes/material/templates/.icons/simple/mongoose.svg +1 -0
  13222. docsforge/themes/material/templates/.icons/simple/mongoosedotws.svg +1 -0
  13223. docsforge/themes/material/templates/.icons/simple/monica.svg +1 -0
  13224. docsforge/themes/material/templates/.icons/simple/monkeytie.svg +1 -0
  13225. docsforge/themes/material/templates/.icons/simple/monkeytype.svg +1 -0
  13226. docsforge/themes/material/templates/.icons/simple/monogame.svg +1 -0
  13227. docsforge/themes/material/templates/.icons/simple/monoprix.svg +1 -0
  13228. docsforge/themes/material/templates/.icons/simple/monster.svg +1 -0
  13229. docsforge/themes/material/templates/.icons/simple/monzo.svg +1 -0
  13230. docsforge/themes/material/templates/.icons/simple/moo.svg +1 -0
  13231. docsforge/themes/material/templates/.icons/simple/moodle.svg +1 -0
  13232. docsforge/themes/material/templates/.icons/simple/moonrepo.svg +1 -0
  13233. docsforge/themes/material/templates/.icons/simple/moq.svg +1 -0
  13234. docsforge/themes/material/templates/.icons/simple/moqups.svg +1 -0
  13235. docsforge/themes/material/templates/.icons/simple/morrisons.svg +1 -0
  13236. docsforge/themes/material/templates/.icons/simple/moscowmetro.svg +1 -0
  13237. docsforge/themes/material/templates/.icons/simple/motorola.svg +1 -0
  13238. docsforge/themes/material/templates/.icons/simple/movistar.svg +1 -0
  13239. docsforge/themes/material/templates/.icons/simple/mozilla.svg +1 -0
  13240. docsforge/themes/material/templates/.icons/simple/mpv.svg +1 -0
  13241. docsforge/themes/material/templates/.icons/simple/mqtt.svg +1 -0
  13242. docsforge/themes/material/templates/.icons/simple/msi.svg +1 -0
  13243. docsforge/themes/material/templates/.icons/simple/msibusiness.svg +1 -0
  13244. docsforge/themes/material/templates/.icons/simple/mta.svg +1 -0
  13245. docsforge/themes/material/templates/.icons/simple/mtr.svg +1 -0
  13246. docsforge/themes/material/templates/.icons/simple/mubi.svg +1 -0
  13247. docsforge/themes/material/templates/.icons/simple/mui.svg +1 -0
  13248. docsforge/themes/material/templates/.icons/simple/muller.svg +1 -0
  13249. docsforge/themes/material/templates/.icons/simple/mullvad.svg +1 -0
  13250. docsforge/themes/material/templates/.icons/simple/multisim.svg +1 -0
  13251. docsforge/themes/material/templates/.icons/simple/mumble.svg +1 -0
  13252. docsforge/themes/material/templates/.icons/simple/muo.svg +1 -0
  13253. docsforge/themes/material/templates/.icons/simple/mural.svg +1 -0
  13254. docsforge/themes/material/templates/.icons/simple/musicbrainz.svg +1 -0
  13255. docsforge/themes/material/templates/.icons/simple/mxlinux.svg +1 -0
  13256. docsforge/themes/material/templates/.icons/simple/myanimelist.svg +1 -0
  13257. docsforge/themes/material/templates/.icons/simple/myget.svg +1 -0
  13258. docsforge/themes/material/templates/.icons/simple/myob.svg +1 -0
  13259. docsforge/themes/material/templates/.icons/simple/myshows.svg +1 -0
  13260. docsforge/themes/material/templates/.icons/simple/myspace.svg +1 -0
  13261. docsforge/themes/material/templates/.icons/simple/mysql.svg +1 -0
  13262. docsforge/themes/material/templates/.icons/simple/n26.svg +1 -0
  13263. docsforge/themes/material/templates/.icons/simple/n8n.svg +1 -0
  13264. docsforge/themes/material/templates/.icons/simple/namebase.svg +1 -0
  13265. docsforge/themes/material/templates/.icons/simple/namecheap.svg +1 -0
  13266. docsforge/themes/material/templates/.icons/simple/namemc.svg +1 -0
  13267. docsforge/themes/material/templates/.icons/simple/namesilo.svg +1 -0
  13268. docsforge/themes/material/templates/.icons/simple/namuwiki.svg +1 -0
  13269. docsforge/themes/material/templates/.icons/simple/nano.svg +1 -0
  13270. docsforge/themes/material/templates/.icons/simple/nanostores.svg +1 -0
  13271. docsforge/themes/material/templates/.icons/simple/napster.svg +1 -0
  13272. docsforge/themes/material/templates/.icons/simple/nasa.svg +1 -0
  13273. docsforge/themes/material/templates/.icons/simple/nationalgrid.svg +1 -0
  13274. docsforge/themes/material/templates/.icons/simple/nationalrail.svg +1 -0
  13275. docsforge/themes/material/templates/.icons/simple/nativescript.svg +1 -0
  13276. docsforge/themes/material/templates/.icons/simple/natsdotio.svg +1 -0
  13277. docsforge/themes/material/templates/.icons/simple/naver.svg +1 -0
  13278. docsforge/themes/material/templates/.icons/simple/nba.svg +1 -0
  13279. docsforge/themes/material/templates/.icons/simple/nbb.svg +1 -0
  13280. docsforge/themes/material/templates/.icons/simple/nbc.svg +1 -0
  13281. docsforge/themes/material/templates/.icons/simple/ndr.svg +1 -0
  13282. docsforge/themes/material/templates/.icons/simple/near.svg +1 -0
  13283. docsforge/themes/material/templates/.icons/simple/nebula.svg +1 -0
  13284. docsforge/themes/material/templates/.icons/simple/nec.svg +1 -0
  13285. docsforge/themes/material/templates/.icons/simple/nederlandsespoorwegen.svg +1 -0
  13286. docsforge/themes/material/templates/.icons/simple/neo4j.svg +1 -0
  13287. docsforge/themes/material/templates/.icons/simple/neovim.svg +1 -0
  13288. docsforge/themes/material/templates/.icons/simple/neptune.svg +1 -0
  13289. docsforge/themes/material/templates/.icons/simple/nestjs.svg +1 -0
  13290. docsforge/themes/material/templates/.icons/simple/netapp.svg +1 -0
  13291. docsforge/themes/material/templates/.icons/simple/netbsd.svg +1 -0
  13292. docsforge/themes/material/templates/.icons/simple/netcup.svg +1 -0
  13293. docsforge/themes/material/templates/.icons/simple/netdata.svg +1 -0
  13294. docsforge/themes/material/templates/.icons/simple/neteasecloudmusic.svg +1 -0
  13295. docsforge/themes/material/templates/.icons/simple/netflix.svg +1 -0
  13296. docsforge/themes/material/templates/.icons/simple/netgear.svg +1 -0
  13297. docsforge/themes/material/templates/.icons/simple/netim.svg +1 -0
  13298. docsforge/themes/material/templates/.icons/simple/netlify.svg +1 -0
  13299. docsforge/themes/material/templates/.icons/simple/nette.svg +1 -0
  13300. docsforge/themes/material/templates/.icons/simple/netto.svg +1 -0
  13301. docsforge/themes/material/templates/.icons/simple/neutralinojs.svg +1 -0
  13302. docsforge/themes/material/templates/.icons/simple/newbalance.svg +1 -0
  13303. docsforge/themes/material/templates/.icons/simple/newegg.svg +1 -0
  13304. docsforge/themes/material/templates/.icons/simple/newgrounds.svg +1 -0
  13305. docsforge/themes/material/templates/.icons/simple/newjapanprowrestling.svg +1 -0
  13306. docsforge/themes/material/templates/.icons/simple/newpipe.svg +1 -0
  13307. docsforge/themes/material/templates/.icons/simple/newrelic.svg +1 -0
  13308. docsforge/themes/material/templates/.icons/simple/newyorktimes.svg +1 -0
  13309. docsforge/themes/material/templates/.icons/simple/nexon.svg +1 -0
  13310. docsforge/themes/material/templates/.icons/simple/nextbike.svg +1 -0
  13311. docsforge/themes/material/templates/.icons/simple/nextbilliondotai.svg +1 -0
  13312. docsforge/themes/material/templates/.icons/simple/nextcloud.svg +1 -0
  13313. docsforge/themes/material/templates/.icons/simple/nextdns.svg +1 -0
  13314. docsforge/themes/material/templates/.icons/simple/nextdoor.svg +1 -0
  13315. docsforge/themes/material/templates/.icons/simple/nextdotjs.svg +1 -0
  13316. docsforge/themes/material/templates/.icons/simple/nextflow.svg +1 -0
  13317. docsforge/themes/material/templates/.icons/simple/nextra.svg +1 -0
  13318. docsforge/themes/material/templates/.icons/simple/nfc.svg +1 -0
  13319. docsforge/themes/material/templates/.icons/simple/nfcore.svg +1 -0
  13320. docsforge/themes/material/templates/.icons/simple/nginx.svg +1 -0
  13321. docsforge/themes/material/templates/.icons/simple/nginxproxymanager.svg +1 -0
  13322. docsforge/themes/material/templates/.icons/simple/ngrok.svg +1 -0
  13323. docsforge/themes/material/templates/.icons/simple/ngrx.svg +1 -0
  13324. docsforge/themes/material/templates/.icons/simple/nhl.svg +1 -0
  13325. docsforge/themes/material/templates/.icons/simple/nhost.svg +1 -0
  13326. docsforge/themes/material/templates/.icons/simple/nicehash.svg +1 -0
  13327. docsforge/themes/material/templates/.icons/simple/niconico.svg +1 -0
  13328. docsforge/themes/material/templates/.icons/simple/nike.svg +1 -0
  13329. docsforge/themes/material/templates/.icons/simple/nikon.svg +1 -0
  13330. docsforge/themes/material/templates/.icons/simple/nim.svg +1 -0
  13331. docsforge/themes/material/templates/.icons/simple/nissan.svg +1 -0
  13332. docsforge/themes/material/templates/.icons/simple/nixos.svg +1 -0
  13333. docsforge/themes/material/templates/.icons/simple/nobaralinux.svg +1 -0
  13334. docsforge/themes/material/templates/.icons/simple/nodebb.svg +1 -0
  13335. docsforge/themes/material/templates/.icons/simple/nodedotjs.svg +1 -0
  13336. docsforge/themes/material/templates/.icons/simple/nodegui.svg +1 -0
  13337. docsforge/themes/material/templates/.icons/simple/nodemon.svg +1 -0
  13338. docsforge/themes/material/templates/.icons/simple/nodered.svg +1 -0
  13339. docsforge/themes/material/templates/.icons/simple/nokia.svg +1 -0
  13340. docsforge/themes/material/templates/.icons/simple/nomad.svg +1 -0
  13341. docsforge/themes/material/templates/.icons/simple/norco.svg +1 -0
  13342. docsforge/themes/material/templates/.icons/simple/nordicsemiconductor.svg +1 -0
  13343. docsforge/themes/material/templates/.icons/simple/nordvpn.svg +1 -0
  13344. docsforge/themes/material/templates/.icons/simple/normalizedotcss.svg +1 -0
  13345. docsforge/themes/material/templates/.icons/simple/norton.svg +1 -0
  13346. docsforge/themes/material/templates/.icons/simple/norwegian.svg +1 -0
  13347. docsforge/themes/material/templates/.icons/simple/note.svg +1 -0
  13348. docsforge/themes/material/templates/.icons/simple/notebooklm.svg +1 -0
  13349. docsforge/themes/material/templates/.icons/simple/notepadplusplus.svg +1 -0
  13350. docsforge/themes/material/templates/.icons/simple/notion.svg +1 -0
  13351. docsforge/themes/material/templates/.icons/simple/notist.svg +1 -0
  13352. docsforge/themes/material/templates/.icons/simple/nounproject.svg +1 -0
  13353. docsforge/themes/material/templates/.icons/simple/novu.svg +1 -0
  13354. docsforge/themes/material/templates/.icons/simple/now.svg +1 -0
  13355. docsforge/themes/material/templates/.icons/simple/npm.svg +1 -0
  13356. docsforge/themes/material/templates/.icons/simple/nrwl.svg +1 -0
  13357. docsforge/themes/material/templates/.icons/simple/nsis.svg +1 -0
  13358. docsforge/themes/material/templates/.icons/simple/ntfy.svg +1 -0
  13359. docsforge/themes/material/templates/.icons/simple/nubank.svg +1 -0
  13360. docsforge/themes/material/templates/.icons/simple/nucleo.svg +1 -0
  13361. docsforge/themes/material/templates/.icons/simple/nuget.svg +1 -0
  13362. docsforge/themes/material/templates/.icons/simple/nuke.svg +1 -0
  13363. docsforge/themes/material/templates/.icons/simple/numba.svg +1 -0
  13364. docsforge/themes/material/templates/.icons/simple/numpy.svg +1 -0
  13365. docsforge/themes/material/templates/.icons/simple/nunjucks.svg +1 -0
  13366. docsforge/themes/material/templates/.icons/simple/nushell.svg +1 -0
  13367. docsforge/themes/material/templates/.icons/simple/nutanix.svg +1 -0
  13368. docsforge/themes/material/templates/.icons/simple/nuxt.svg +1 -0
  13369. docsforge/themes/material/templates/.icons/simple/nvidia.svg +1 -0
  13370. docsforge/themes/material/templates/.icons/simple/nvm.svg +1 -0
  13371. docsforge/themes/material/templates/.icons/simple/nx.svg +1 -0
  13372. docsforge/themes/material/templates/.icons/simple/nxp.svg +1 -0
  13373. docsforge/themes/material/templates/.icons/simple/nzxt.svg +1 -0
  13374. docsforge/themes/material/templates/.icons/simple/o2.svg +1 -0
  13375. docsforge/themes/material/templates/.icons/simple/obb.svg +1 -0
  13376. docsforge/themes/material/templates/.icons/simple/observable.svg +1 -0
  13377. docsforge/themes/material/templates/.icons/simple/obsidian.svg +1 -0
  13378. docsforge/themes/material/templates/.icons/simple/obsstudio.svg +1 -0
  13379. docsforge/themes/material/templates/.icons/simple/obtainium.svg +1 -0
  13380. docsforge/themes/material/templates/.icons/simple/ocaml.svg +1 -0
  13381. docsforge/themes/material/templates/.icons/simple/oclc.svg +1 -0
  13382. docsforge/themes/material/templates/.icons/simple/oclif.svg +1 -0
  13383. docsforge/themes/material/templates/.icons/simple/octanerender.svg +1 -0
  13384. docsforge/themes/material/templates/.icons/simple/octave.svg +1 -0
  13385. docsforge/themes/material/templates/.icons/simple/octobercms.svg +1 -0
  13386. docsforge/themes/material/templates/.icons/simple/octoprint.svg +1 -0
  13387. docsforge/themes/material/templates/.icons/simple/octopusdeploy.svg +1 -0
  13388. docsforge/themes/material/templates/.icons/simple/oculus.svg +1 -0
  13389. docsforge/themes/material/templates/.icons/simple/odin.svg +1 -0
  13390. docsforge/themes/material/templates/.icons/simple/odnoklassniki.svg +1 -0
  13391. docsforge/themes/material/templates/.icons/simple/odoo.svg +1 -0
  13392. docsforge/themes/material/templates/.icons/simple/odysee.svg +1 -0
  13393. docsforge/themes/material/templates/.icons/simple/ohdear.svg +1 -0
  13394. docsforge/themes/material/templates/.icons/simple/okcupid.svg +1 -0
  13395. docsforge/themes/material/templates/.icons/simple/okta.svg +1 -0
  13396. docsforge/themes/material/templates/.icons/simple/okx.svg +1 -0
  13397. docsforge/themes/material/templates/.icons/simple/ollama.svg +1 -0
  13398. docsforge/themes/material/templates/.icons/simple/omadacloud.svg +1 -0
  13399. docsforge/themes/material/templates/.icons/simple/oneplus.svg +1 -0
  13400. docsforge/themes/material/templates/.icons/simple/onestream.svg +1 -0
  13401. docsforge/themes/material/templates/.icons/simple/onlyfans.svg +1 -0
  13402. docsforge/themes/material/templates/.icons/simple/onlyoffice.svg +1 -0
  13403. docsforge/themes/material/templates/.icons/simple/onnx.svg +1 -0
  13404. docsforge/themes/material/templates/.icons/simple/onstar.svg +1 -0
  13405. docsforge/themes/material/templates/.icons/simple/opel.svg +1 -0
  13406. docsforge/themes/material/templates/.icons/simple/open3d.svg +1 -0
  13407. docsforge/themes/material/templates/.icons/simple/openaccess.svg +1 -0
  13408. docsforge/themes/material/templates/.icons/simple/openaigym.svg +1 -0
  13409. docsforge/themes/material/templates/.icons/simple/openapiinitiative.svg +1 -0
  13410. docsforge/themes/material/templates/.icons/simple/openbadges.svg +1 -0
  13411. docsforge/themes/material/templates/.icons/simple/openbsd.svg +1 -0
  13412. docsforge/themes/material/templates/.icons/simple/openbugbounty.svg +1 -0
  13413. docsforge/themes/material/templates/.icons/simple/opencage.svg +1 -0
  13414. docsforge/themes/material/templates/.icons/simple/opencollective.svg +1 -0
  13415. docsforge/themes/material/templates/.icons/simple/opencontainersinitiative.svg +1 -0
  13416. docsforge/themes/material/templates/.icons/simple/opencritic.svg +1 -0
  13417. docsforge/themes/material/templates/.icons/simple/opencv.svg +1 -0
  13418. docsforge/themes/material/templates/.icons/simple/openfaas.svg +1 -0
  13419. docsforge/themes/material/templates/.icons/simple/opengl.svg +1 -0
  13420. docsforge/themes/material/templates/.icons/simple/openhab.svg +1 -0
  13421. docsforge/themes/material/templates/.icons/simple/openid.svg +1 -0
  13422. docsforge/themes/material/templates/.icons/simple/openjdk.svg +1 -0
  13423. docsforge/themes/material/templates/.icons/simple/openjsfoundation.svg +1 -0
  13424. docsforge/themes/material/templates/.icons/simple/openlayers.svg +1 -0
  13425. docsforge/themes/material/templates/.icons/simple/openmediavault.svg +1 -0
  13426. docsforge/themes/material/templates/.icons/simple/openmined.svg +1 -0
  13427. docsforge/themes/material/templates/.icons/simple/opennebula.svg +1 -0
  13428. docsforge/themes/material/templates/.icons/simple/openproject.svg +1 -0
  13429. docsforge/themes/material/templates/.icons/simple/openrouter.svg +1 -0
  13430. docsforge/themes/material/templates/.icons/simple/openscad.svg +1 -0
  13431. docsforge/themes/material/templates/.icons/simple/opensea.svg +1 -0
  13432. docsforge/themes/material/templates/.icons/simple/opensearch.svg +1 -0
  13433. docsforge/themes/material/templates/.icons/simple/opensourcehardware.svg +1 -0
  13434. docsforge/themes/material/templates/.icons/simple/opensourceinitiative.svg +1 -0
  13435. docsforge/themes/material/templates/.icons/simple/openssl.svg +1 -0
  13436. docsforge/themes/material/templates/.icons/simple/openstack.svg +1 -0
  13437. docsforge/themes/material/templates/.icons/simple/openstreetmap.svg +1 -0
  13438. docsforge/themes/material/templates/.icons/simple/opensuse.svg +1 -0
  13439. docsforge/themes/material/templates/.icons/simple/opentelemetry.svg +1 -0
  13440. docsforge/themes/material/templates/.icons/simple/opentext.svg +1 -0
  13441. docsforge/themes/material/templates/.icons/simple/opentofu.svg +1 -0
  13442. docsforge/themes/material/templates/.icons/simple/openverse.svg +1 -0
  13443. docsforge/themes/material/templates/.icons/simple/openvpn.svg +1 -0
  13444. docsforge/themes/material/templates/.icons/simple/openwrt.svg +1 -0
  13445. docsforge/themes/material/templates/.icons/simple/openzeppelin.svg +1 -0
  13446. docsforge/themes/material/templates/.icons/simple/openzfs.svg +1 -0
  13447. docsforge/themes/material/templates/.icons/simple/opera.svg +1 -0
  13448. docsforge/themes/material/templates/.icons/simple/operagx.svg +1 -0
  13449. docsforge/themes/material/templates/.icons/simple/opnsense.svg +1 -0
  13450. docsforge/themes/material/templates/.icons/simple/oppo.svg +1 -0
  13451. docsforge/themes/material/templates/.icons/simple/opsgenie.svg +1 -0
  13452. docsforge/themes/material/templates/.icons/simple/opslevel.svg +1 -0
  13453. docsforge/themes/material/templates/.icons/simple/optimism.svg +1 -0
  13454. docsforge/themes/material/templates/.icons/simple/optuna.svg +1 -0
  13455. docsforge/themes/material/templates/.icons/simple/orange.svg +1 -0
  13456. docsforge/themes/material/templates/.icons/simple/orcid.svg +1 -0
  13457. docsforge/themes/material/templates/.icons/simple/oreilly.svg +1 -0
  13458. docsforge/themes/material/templates/.icons/simple/org.svg +1 -0
  13459. docsforge/themes/material/templates/.icons/simple/organicmaps.svg +1 -0
  13460. docsforge/themes/material/templates/.icons/simple/origin.svg +1 -0
  13461. docsforge/themes/material/templates/.icons/simple/osano.svg +1 -0
  13462. docsforge/themes/material/templates/.icons/simple/osf.svg +1 -0
  13463. docsforge/themes/material/templates/.icons/simple/osgeo.svg +1 -0
  13464. docsforge/themes/material/templates/.icons/simple/oshkosh.svg +1 -0
  13465. docsforge/themes/material/templates/.icons/simple/osmand.svg +1 -0
  13466. docsforge/themes/material/templates/.icons/simple/osmc.svg +1 -0
  13467. docsforge/themes/material/templates/.icons/simple/osu.svg +1 -0
  13468. docsforge/themes/material/templates/.icons/simple/otto.svg +1 -0
  13469. docsforge/themes/material/templates/.icons/simple/outline.svg +1 -0
  13470. docsforge/themes/material/templates/.icons/simple/overcast.svg +1 -0
  13471. docsforge/themes/material/templates/.icons/simple/overleaf.svg +1 -0
  13472. docsforge/themes/material/templates/.icons/simple/ovh.svg +1 -0
  13473. docsforge/themes/material/templates/.icons/simple/owasp.svg +1 -0
  13474. docsforge/themes/material/templates/.icons/simple/owncloud.svg +1 -0
  13475. docsforge/themes/material/templates/.icons/simple/oxc.svg +1 -0
  13476. docsforge/themes/material/templates/.icons/simple/oxygen.svg +1 -0
  13477. docsforge/themes/material/templates/.icons/simple/oyo.svg +1 -0
  13478. docsforge/themes/material/templates/.icons/simple/p5dotjs.svg +1 -0
  13479. docsforge/themes/material/templates/.icons/simple/packagist.svg +1 -0
  13480. docsforge/themes/material/templates/.icons/simple/packer.svg +1 -0
  13481. docsforge/themes/material/templates/.icons/simple/packt.svg +1 -0
  13482. docsforge/themes/material/templates/.icons/simple/paddle.svg +1 -0
  13483. docsforge/themes/material/templates/.icons/simple/paddlepaddle.svg +1 -0
  13484. docsforge/themes/material/templates/.icons/simple/paddypower.svg +1 -0
  13485. docsforge/themes/material/templates/.icons/simple/padlet.svg +1 -0
  13486. docsforge/themes/material/templates/.icons/simple/pagekit.svg +1 -0
  13487. docsforge/themes/material/templates/.icons/simple/pagerduty.svg +1 -0
  13488. docsforge/themes/material/templates/.icons/simple/pagespeedinsights.svg +1 -0
  13489. docsforge/themes/material/templates/.icons/simple/pagseguro.svg +1 -0
  13490. docsforge/themes/material/templates/.icons/simple/palantir.svg +1 -0
  13491. docsforge/themes/material/templates/.icons/simple/paloaltonetworks.svg +1 -0
  13492. docsforge/themes/material/templates/.icons/simple/paloaltosoftware.svg +1 -0
  13493. docsforge/themes/material/templates/.icons/simple/panasonic.svg +1 -0
  13494. docsforge/themes/material/templates/.icons/simple/pandas.svg +1 -0
  13495. docsforge/themes/material/templates/.icons/simple/pandora.svg +1 -0
  13496. docsforge/themes/material/templates/.icons/simple/pantheon.svg +1 -0
  13497. docsforge/themes/material/templates/.icons/simple/paperlessngx.svg +1 -0
  13498. docsforge/themes/material/templates/.icons/simple/paperspace.svg +1 -0
  13499. docsforge/themes/material/templates/.icons/simple/paperswithcode.svg +1 -0
  13500. docsforge/themes/material/templates/.icons/simple/paradoxinteractive.svg +1 -0
  13501. docsforge/themes/material/templates/.icons/simple/paramountplus.svg +1 -0
  13502. docsforge/themes/material/templates/.icons/simple/paritysubstrate.svg +1 -0
  13503. docsforge/themes/material/templates/.icons/simple/parrotsecurity.svg +1 -0
  13504. docsforge/themes/material/templates/.icons/simple/parsedotly.svg +1 -0
  13505. docsforge/themes/material/templates/.icons/simple/passbolt.svg +1 -0
  13506. docsforge/themes/material/templates/.icons/simple/passport.svg +1 -0
  13507. docsforge/themes/material/templates/.icons/simple/pastebin.svg +1 -0
  13508. docsforge/themes/material/templates/.icons/simple/patreon.svg +1 -0
  13509. docsforge/themes/material/templates/.icons/simple/payback.svg +1 -0
  13510. docsforge/themes/material/templates/.icons/simple/paychex.svg +1 -0
  13511. docsforge/themes/material/templates/.icons/simple/payhip.svg +1 -0
  13512. docsforge/themes/material/templates/.icons/simple/payloadcms.svg +1 -0
  13513. docsforge/themes/material/templates/.icons/simple/payoneer.svg +1 -0
  13514. docsforge/themes/material/templates/.icons/simple/paypal.svg +1 -0
  13515. docsforge/themes/material/templates/.icons/simple/paysafe.svg +1 -0
  13516. docsforge/themes/material/templates/.icons/simple/paytm.svg +1 -0
  13517. docsforge/themes/material/templates/.icons/simple/pcgamingwiki.svg +1 -0
  13518. docsforge/themes/material/templates/.icons/simple/pdm.svg +1 -0
  13519. docsforge/themes/material/templates/.icons/simple/pdq.svg +1 -0
  13520. docsforge/themes/material/templates/.icons/simple/peakdesign.svg +1 -0
  13521. docsforge/themes/material/templates/.icons/simple/pearson.svg +1 -0
  13522. docsforge/themes/material/templates/.icons/simple/peerlist.svg +1 -0
  13523. docsforge/themes/material/templates/.icons/simple/peertube.svg +1 -0
  13524. docsforge/themes/material/templates/.icons/simple/pegasusairlines.svg +1 -0
  13525. docsforge/themes/material/templates/.icons/simple/pelican.svg +1 -0
  13526. docsforge/themes/material/templates/.icons/simple/peloton.svg +1 -0
  13527. docsforge/themes/material/templates/.icons/simple/penny.svg +1 -0
  13528. docsforge/themes/material/templates/.icons/simple/penpot.svg +1 -0
  13529. docsforge/themes/material/templates/.icons/simple/percy.svg +1 -0
  13530. docsforge/themes/material/templates/.icons/simple/perforce.svg +1 -0
  13531. docsforge/themes/material/templates/.icons/simple/perl.svg +1 -0
  13532. docsforge/themes/material/templates/.icons/simple/perplexity.svg +1 -0
  13533. docsforge/themes/material/templates/.icons/simple/persistent.svg +1 -0
  13534. docsforge/themes/material/templates/.icons/simple/personio.svg +1 -0
  13535. docsforge/themes/material/templates/.icons/simple/petsathome.svg +1 -0
  13536. docsforge/themes/material/templates/.icons/simple/peugeot.svg +1 -0
  13537. docsforge/themes/material/templates/.icons/simple/pexels.svg +1 -0
  13538. docsforge/themes/material/templates/.icons/simple/pfsense.svg +1 -0
  13539. docsforge/themes/material/templates/.icons/simple/phabricator.svg +1 -0
  13540. docsforge/themes/material/templates/.icons/simple/philipshue.svg +1 -0
  13541. docsforge/themes/material/templates/.icons/simple/phoenixframework.svg +1 -0
  13542. docsforge/themes/material/templates/.icons/simple/phonepe.svg +1 -0
  13543. docsforge/themes/material/templates/.icons/simple/phosphoricons.svg +1 -0
  13544. docsforge/themes/material/templates/.icons/simple/photobucket.svg +1 -0
  13545. docsforge/themes/material/templates/.icons/simple/photocrowd.svg +1 -0
  13546. docsforge/themes/material/templates/.icons/simple/photon.svg +1 -0
  13547. docsforge/themes/material/templates/.icons/simple/photopea.svg +1 -0
  13548. docsforge/themes/material/templates/.icons/simple/php.svg +1 -0
  13549. docsforge/themes/material/templates/.icons/simple/phpbb.svg +1 -0
  13550. docsforge/themes/material/templates/.icons/simple/phpmyadmin.svg +1 -0
  13551. docsforge/themes/material/templates/.icons/simple/phpstorm.svg +1 -0
  13552. docsforge/themes/material/templates/.icons/simple/piaggiogroup.svg +1 -0
  13553. docsforge/themes/material/templates/.icons/simple/piapro.svg +1 -0
  13554. docsforge/themes/material/templates/.icons/simple/picardsurgeles.svg +1 -0
  13555. docsforge/themes/material/templates/.icons/simple/picartodottv.svg +1 -0
  13556. docsforge/themes/material/templates/.icons/simple/picnic.svg +1 -0
  13557. docsforge/themes/material/templates/.icons/simple/picpay.svg +1 -0
  13558. docsforge/themes/material/templates/.icons/simple/picrew.svg +1 -0
  13559. docsforge/themes/material/templates/.icons/simple/picsart.svg +1 -0
  13560. docsforge/themes/material/templates/.icons/simple/picxy.svg +1 -0
  13561. docsforge/themes/material/templates/.icons/simple/pihole.svg +1 -0
  13562. docsforge/themes/material/templates/.icons/simple/pimcore.svg +1 -0
  13563. docsforge/themes/material/templates/.icons/simple/pinboard.svg +1 -0
  13564. docsforge/themes/material/templates/.icons/simple/pinescript.svg +1 -0
  13565. docsforge/themes/material/templates/.icons/simple/pinetwork.svg +1 -0
  13566. docsforge/themes/material/templates/.icons/simple/pingdom.svg +1 -0
  13567. docsforge/themes/material/templates/.icons/simple/pinia.svg +1 -0
  13568. docsforge/themes/material/templates/.icons/simple/pino.svg +1 -0
  13569. docsforge/themes/material/templates/.icons/simple/pinterest.svg +1 -0
  13570. docsforge/themes/material/templates/.icons/simple/pioneerdj.svg +1 -0
  13571. docsforge/themes/material/templates/.icons/simple/piped.svg +1 -0
  13572. docsforge/themes/material/templates/.icons/simple/pipx.svg +1 -0
  13573. docsforge/themes/material/templates/.icons/simple/pivotaltracker.svg +1 -0
  13574. docsforge/themes/material/templates/.icons/simple/piwigo.svg +1 -0
  13575. docsforge/themes/material/templates/.icons/simple/pix.svg +1 -0
  13576. docsforge/themes/material/templates/.icons/simple/pixabay.svg +1 -0
  13577. docsforge/themes/material/templates/.icons/simple/pixelfed.svg +1 -0
  13578. docsforge/themes/material/templates/.icons/simple/pixiv.svg +1 -0
  13579. docsforge/themes/material/templates/.icons/simple/pixlr.svg +1 -0
  13580. docsforge/themes/material/templates/.icons/simple/pkgsrc.svg +1 -0
  13581. docsforge/themes/material/templates/.icons/simple/plane.svg +1 -0
  13582. docsforge/themes/material/templates/.icons/simple/planet.svg +1 -0
  13583. docsforge/themes/material/templates/.icons/simple/planetscale.svg +1 -0
  13584. docsforge/themes/material/templates/.icons/simple/plangrid.svg +1 -0
  13585. docsforge/themes/material/templates/.icons/simple/platformdotsh.svg +1 -0
  13586. docsforge/themes/material/templates/.icons/simple/platformio.svg +1 -0
  13587. docsforge/themes/material/templates/.icons/simple/platzi.svg +1 -0
  13588. docsforge/themes/material/templates/.icons/simple/plausibleanalytics.svg +1 -0
  13589. docsforge/themes/material/templates/.icons/simple/playcanvas.svg +1 -0
  13590. docsforge/themes/material/templates/.icons/simple/playerdotme.svg +1 -0
  13591. docsforge/themes/material/templates/.icons/simple/playerfm.svg +1 -0
  13592. docsforge/themes/material/templates/.icons/simple/playstation.svg +1 -0
  13593. docsforge/themes/material/templates/.icons/simple/playstation2.svg +1 -0
  13594. docsforge/themes/material/templates/.icons/simple/playstation3.svg +1 -0
  13595. docsforge/themes/material/templates/.icons/simple/playstation4.svg +1 -0
  13596. docsforge/themes/material/templates/.icons/simple/playstation5.svg +1 -0
  13597. docsforge/themes/material/templates/.icons/simple/playstationportable.svg +1 -0
  13598. docsforge/themes/material/templates/.icons/simple/playstationvita.svg +1 -0
  13599. docsforge/themes/material/templates/.icons/simple/pleroma.svg +1 -0
  13600. docsforge/themes/material/templates/.icons/simple/plesk.svg +1 -0
  13601. docsforge/themes/material/templates/.icons/simple/plex.svg +1 -0
  13602. docsforge/themes/material/templates/.icons/simple/plotly.svg +1 -0
  13603. docsforge/themes/material/templates/.icons/simple/plume.svg +1 -0
  13604. docsforge/themes/material/templates/.icons/simple/pluralsight.svg +1 -0
  13605. docsforge/themes/material/templates/.icons/simple/plurk.svg +1 -0
  13606. docsforge/themes/material/templates/.icons/simple/pm2.svg +1 -0
  13607. docsforge/themes/material/templates/.icons/simple/pnpm.svg +1 -0
  13608. docsforge/themes/material/templates/.icons/simple/pocketbase.svg +1 -0
  13609. docsforge/themes/material/templates/.icons/simple/pocketcasts.svg +1 -0
  13610. docsforge/themes/material/templates/.icons/simple/podcastaddict.svg +1 -0
  13611. docsforge/themes/material/templates/.icons/simple/podcastindex.svg +1 -0
  13612. docsforge/themes/material/templates/.icons/simple/podman.svg +1 -0
  13613. docsforge/themes/material/templates/.icons/simple/poe.svg +1 -0
  13614. docsforge/themes/material/templates/.icons/simple/poetry.svg +1 -0
  13615. docsforge/themes/material/templates/.icons/simple/polars.svg +1 -0
  13616. docsforge/themes/material/templates/.icons/simple/polestar.svg +1 -0
  13617. docsforge/themes/material/templates/.icons/simple/polkadot.svg +1 -0
  13618. docsforge/themes/material/templates/.icons/simple/poly.svg +1 -0
  13619. docsforge/themes/material/templates/.icons/simple/polygon.svg +1 -0
  13620. docsforge/themes/material/templates/.icons/simple/polymerproject.svg +1 -0
  13621. docsforge/themes/material/templates/.icons/simple/polywork.svg +1 -0
  13622. docsforge/themes/material/templates/.icons/simple/pomerium.svg +1 -0
  13623. docsforge/themes/material/templates/.icons/simple/pond5.svg +1 -0
  13624. docsforge/themes/material/templates/.icons/simple/popos.svg +1 -0
  13625. docsforge/themes/material/templates/.icons/simple/porkbun.svg +1 -0
  13626. docsforge/themes/material/templates/.icons/simple/porsche.svg +1 -0
  13627. docsforge/themes/material/templates/.icons/simple/portableappsdotcom.svg +1 -0
  13628. docsforge/themes/material/templates/.icons/simple/portainer.svg +1 -0
  13629. docsforge/themes/material/templates/.icons/simple/portswigger.svg +1 -0
  13630. docsforge/themes/material/templates/.icons/simple/posit.svg +1 -0
  13631. docsforge/themes/material/templates/.icons/simple/postcss.svg +1 -0
  13632. docsforge/themes/material/templates/.icons/simple/postgresql.svg +1 -0
  13633. docsforge/themes/material/templates/.icons/simple/posthog.svg +1 -0
  13634. docsforge/themes/material/templates/.icons/simple/postiz.svg +1 -0
  13635. docsforge/themes/material/templates/.icons/simple/postman.svg +1 -0
  13636. docsforge/themes/material/templates/.icons/simple/postmates.svg +1 -0
  13637. docsforge/themes/material/templates/.icons/simple/powers.svg +1 -0
  13638. docsforge/themes/material/templates/.icons/simple/prdotco.svg +1 -0
  13639. docsforge/themes/material/templates/.icons/simple/preact.svg +1 -0
  13640. docsforge/themes/material/templates/.icons/simple/precommit.svg +1 -0
  13641. docsforge/themes/material/templates/.icons/simple/prefect.svg +1 -0
  13642. docsforge/themes/material/templates/.icons/simple/premid.svg +1 -0
  13643. docsforge/themes/material/templates/.icons/simple/premierleague.svg +1 -0
  13644. docsforge/themes/material/templates/.icons/simple/prepbytes.svg +1 -0
  13645. docsforge/themes/material/templates/.icons/simple/prestashop.svg +1 -0
  13646. docsforge/themes/material/templates/.icons/simple/presto.svg +1 -0
  13647. docsforge/themes/material/templates/.icons/simple/prettier.svg +1 -0
  13648. docsforge/themes/material/templates/.icons/simple/pretzel.svg +1 -0
  13649. docsforge/themes/material/templates/.icons/simple/prevention.svg +1 -0
  13650. docsforge/themes/material/templates/.icons/simple/prezi.svg +1 -0
  13651. docsforge/themes/material/templates/.icons/simple/primefaces.svg +1 -0
  13652. docsforge/themes/material/templates/.icons/simple/primeng.svg +1 -0
  13653. docsforge/themes/material/templates/.icons/simple/primereact.svg +1 -0
  13654. docsforge/themes/material/templates/.icons/simple/primevue.svg +1 -0
  13655. docsforge/themes/material/templates/.icons/simple/printables.svg +1 -0
  13656. docsforge/themes/material/templates/.icons/simple/prisma.svg +1 -0
  13657. docsforge/themes/material/templates/.icons/simple/prismic.svg +1 -0
  13658. docsforge/themes/material/templates/.icons/simple/privatedivision.svg +1 -0
  13659. docsforge/themes/material/templates/.icons/simple/privateinternetaccess.svg +1 -0
  13660. docsforge/themes/material/templates/.icons/simple/probot.svg +1 -0
  13661. docsforge/themes/material/templates/.icons/simple/processingfoundation.svg +1 -0
  13662. docsforge/themes/material/templates/.icons/simple/processon.svg +1 -0
  13663. docsforge/themes/material/templates/.icons/simple/processwire.svg +1 -0
  13664. docsforge/themes/material/templates/.icons/simple/producthunt.svg +1 -0
  13665. docsforge/themes/material/templates/.icons/simple/progate.svg +1 -0
  13666. docsforge/themes/material/templates/.icons/simple/progress.svg +1 -0
  13667. docsforge/themes/material/templates/.icons/simple/prometheus.svg +1 -0
  13668. docsforge/themes/material/templates/.icons/simple/pronounsdotpage.svg +1 -0
  13669. docsforge/themes/material/templates/.icons/simple/prosieben.svg +1 -0
  13670. docsforge/themes/material/templates/.icons/simple/proteus.svg +1 -0
  13671. docsforge/themes/material/templates/.icons/simple/protocolsdotio.svg +1 -0
  13672. docsforge/themes/material/templates/.icons/simple/protodotio.svg +1 -0
  13673. docsforge/themes/material/templates/.icons/simple/proton.svg +1 -0
  13674. docsforge/themes/material/templates/.icons/simple/protoncalendar.svg +1 -0
  13675. docsforge/themes/material/templates/.icons/simple/protondb.svg +1 -0
  13676. docsforge/themes/material/templates/.icons/simple/protondrive.svg +1 -0
  13677. docsforge/themes/material/templates/.icons/simple/protonmail.svg +1 -0
  13678. docsforge/themes/material/templates/.icons/simple/protonvpn.svg +1 -0
  13679. docsforge/themes/material/templates/.icons/simple/protools.svg +1 -0
  13680. docsforge/themes/material/templates/.icons/simple/protractor.svg +1 -0
  13681. docsforge/themes/material/templates/.icons/simple/proxmox.svg +1 -0
  13682. docsforge/themes/material/templates/.icons/simple/pterodactyl.svg +1 -0
  13683. docsforge/themes/material/templates/.icons/simple/pubg.svg +1 -0
  13684. docsforge/themes/material/templates/.icons/simple/publons.svg +1 -0
  13685. docsforge/themes/material/templates/.icons/simple/pubmed.svg +1 -0
  13686. docsforge/themes/material/templates/.icons/simple/pug.svg +1 -0
  13687. docsforge/themes/material/templates/.icons/simple/pulumi.svg +1 -0
  13688. docsforge/themes/material/templates/.icons/simple/puma.svg +1 -0
  13689. docsforge/themes/material/templates/.icons/simple/puppet.svg +1 -0
  13690. docsforge/themes/material/templates/.icons/simple/puppeteer.svg +1 -0
  13691. docsforge/themes/material/templates/.icons/simple/purescript.svg +1 -0
  13692. docsforge/themes/material/templates/.icons/simple/purgecss.svg +1 -0
  13693. docsforge/themes/material/templates/.icons/simple/purism.svg +1 -0
  13694. docsforge/themes/material/templates/.icons/simple/pushbullet.svg +1 -0
  13695. docsforge/themes/material/templates/.icons/simple/pusher.svg +1 -0
  13696. docsforge/themes/material/templates/.icons/simple/pwa.svg +1 -0
  13697. docsforge/themes/material/templates/.icons/simple/pycharm.svg +1 -0
  13698. docsforge/themes/material/templates/.icons/simple/pycqa.svg +1 -0
  13699. docsforge/themes/material/templates/.icons/simple/pydantic.svg +1 -0
  13700. docsforge/themes/material/templates/.icons/simple/pyg.svg +1 -0
  13701. docsforge/themes/material/templates/.icons/simple/pypi.svg +1 -0
  13702. docsforge/themes/material/templates/.icons/simple/pypy.svg +1 -0
  13703. docsforge/themes/material/templates/.icons/simple/pyscaffold.svg +1 -0
  13704. docsforge/themes/material/templates/.icons/simple/pysyft.svg +1 -0
  13705. docsforge/themes/material/templates/.icons/simple/pytest.svg +1 -0
  13706. docsforge/themes/material/templates/.icons/simple/python.svg +1 -0
  13707. docsforge/themes/material/templates/.icons/simple/pythonanywhere.svg +1 -0
  13708. docsforge/themes/material/templates/.icons/simple/pytorch.svg +1 -0
  13709. docsforge/themes/material/templates/.icons/simple/pyup.svg +1 -0
  13710. docsforge/themes/material/templates/.icons/simple/qantas.svg +1 -0
  13711. docsforge/themes/material/templates/.icons/simple/qase.svg +1 -0
  13712. docsforge/themes/material/templates/.icons/simple/qatarairways.svg +1 -0
  13713. docsforge/themes/material/templates/.icons/simple/qbittorrent.svg +1 -0
  13714. docsforge/themes/material/templates/.icons/simple/qemu.svg +1 -0
  13715. docsforge/themes/material/templates/.icons/simple/qgis.svg +1 -0
  13716. docsforge/themes/material/templates/.icons/simple/qi.svg +1 -0
  13717. docsforge/themes/material/templates/.icons/simple/qiita.svg +1 -0
  13718. docsforge/themes/material/templates/.icons/simple/qiskit.svg +1 -0
  13719. docsforge/themes/material/templates/.icons/simple/qiwi.svg +1 -0
  13720. docsforge/themes/material/templates/.icons/simple/qlik.svg +1 -0
  13721. docsforge/themes/material/templates/.icons/simple/qlty.svg +1 -0
  13722. docsforge/themes/material/templates/.icons/simple/qmk.svg +1 -0
  13723. docsforge/themes/material/templates/.icons/simple/qnap.svg +1 -0
  13724. docsforge/themes/material/templates/.icons/simple/qodo.svg +1 -0
  13725. docsforge/themes/material/templates/.icons/simple/qq.svg +1 -0
  13726. docsforge/themes/material/templates/.icons/simple/qt.svg +1 -0
  13727. docsforge/themes/material/templates/.icons/simple/quad9.svg +1 -0
  13728. docsforge/themes/material/templates/.icons/simple/qualcomm.svg +1 -0
  13729. docsforge/themes/material/templates/.icons/simple/qualtrics.svg +1 -0
  13730. docsforge/themes/material/templates/.icons/simple/qualys.svg +1 -0
  13731. docsforge/themes/material/templates/.icons/simple/quantcast.svg +1 -0
  13732. docsforge/themes/material/templates/.icons/simple/quantconnect.svg +1 -0
  13733. docsforge/themes/material/templates/.icons/simple/quarkus.svg +1 -0
  13734. docsforge/themes/material/templates/.icons/simple/quarto.svg +1 -0
  13735. docsforge/themes/material/templates/.icons/simple/quasar.svg +1 -0
  13736. docsforge/themes/material/templates/.icons/simple/qubesos.svg +1 -0
  13737. docsforge/themes/material/templates/.icons/simple/quest.svg +1 -0
  13738. docsforge/themes/material/templates/.icons/simple/quickbooks.svg +1 -0
  13739. docsforge/themes/material/templates/.icons/simple/quicklook.svg +1 -0
  13740. docsforge/themes/material/templates/.icons/simple/quicktime.svg +1 -0
  13741. docsforge/themes/material/templates/.icons/simple/quicktype.svg +1 -0
  13742. docsforge/themes/material/templates/.icons/simple/quizlet.svg +1 -0
  13743. docsforge/themes/material/templates/.icons/simple/quora.svg +1 -0
  13744. docsforge/themes/material/templates/.icons/simple/qwant.svg +1 -0
  13745. docsforge/themes/material/templates/.icons/simple/qwik.svg +1 -0
  13746. docsforge/themes/material/templates/.icons/simple/qwiklabs.svg +1 -0
  13747. docsforge/themes/material/templates/.icons/simple/qzone.svg +1 -0
  13748. docsforge/themes/material/templates/.icons/simple/r.svg +1 -0
  13749. docsforge/themes/material/templates/.icons/simple/r3.svg +1 -0
  13750. docsforge/themes/material/templates/.icons/simple/rabbitmq.svg +1 -0
  13751. docsforge/themes/material/templates/.icons/simple/racket.svg +1 -0
  13752. docsforge/themes/material/templates/.icons/simple/radar.svg +1 -0
  13753. docsforge/themes/material/templates/.icons/simple/radarr.svg +1 -0
  13754. docsforge/themes/material/templates/.icons/simple/radiofrance.svg +1 -0
  13755. docsforge/themes/material/templates/.icons/simple/radixui.svg +1 -0
  13756. docsforge/themes/material/templates/.icons/simple/radstudio.svg +1 -0
  13757. docsforge/themes/material/templates/.icons/simple/railway.svg +1 -0
  13758. docsforge/themes/material/templates/.icons/simple/rainmeter.svg +1 -0
  13759. docsforge/themes/material/templates/.icons/simple/rainyun.svg +1 -0
  13760. docsforge/themes/material/templates/.icons/simple/rakuten.svg +1 -0
  13761. docsforge/themes/material/templates/.icons/simple/rakutenkobo.svg +1 -0
  13762. docsforge/themes/material/templates/.icons/simple/ram.svg +1 -0
  13763. docsforge/themes/material/templates/.icons/simple/rancher.svg +1 -0
  13764. docsforge/themes/material/templates/.icons/simple/rapid.svg +1 -0
  13765. docsforge/themes/material/templates/.icons/simple/rarible.svg +1 -0
  13766. docsforge/themes/material/templates/.icons/simple/rasa.svg +1 -0
  13767. docsforge/themes/material/templates/.icons/simple/raspberrypi.svg +1 -0
  13768. docsforge/themes/material/templates/.icons/simple/ratatui.svg +1 -0
  13769. docsforge/themes/material/templates/.icons/simple/ravelry.svg +1 -0
  13770. docsforge/themes/material/templates/.icons/simple/ray.svg +1 -0
  13771. docsforge/themes/material/templates/.icons/simple/raycast.svg +1 -0
  13772. docsforge/themes/material/templates/.icons/simple/raylib.svg +1 -0
  13773. docsforge/themes/material/templates/.icons/simple/razer.svg +1 -0
  13774. docsforge/themes/material/templates/.icons/simple/razorpay.svg +1 -0
  13775. docsforge/themes/material/templates/.icons/simple/rclone.svg +1 -0
  13776. docsforge/themes/material/templates/.icons/simple/react.svg +1 -0
  13777. docsforge/themes/material/templates/.icons/simple/reactbootstrap.svg +1 -0
  13778. docsforge/themes/material/templates/.icons/simple/reacthookform.svg +1 -0
  13779. docsforge/themes/material/templates/.icons/simple/reactiveresume.svg +1 -0
  13780. docsforge/themes/material/templates/.icons/simple/reactivex.svg +1 -0
  13781. docsforge/themes/material/templates/.icons/simple/reactos.svg +1 -0
  13782. docsforge/themes/material/templates/.icons/simple/reactquery.svg +1 -0
  13783. docsforge/themes/material/templates/.icons/simple/reactrouter.svg +1 -0
  13784. docsforge/themes/material/templates/.icons/simple/reacttable.svg +1 -0
  13785. docsforge/themes/material/templates/.icons/simple/readdotcv.svg +1 -0
  13786. docsforge/themes/material/templates/.icons/simple/readme.svg +1 -0
  13787. docsforge/themes/material/templates/.icons/simple/readthedocs.svg +1 -0
  13788. docsforge/themes/material/templates/.icons/simple/reason.svg +1 -0
  13789. docsforge/themes/material/templates/.icons/simple/reasonstudios.svg +1 -0
  13790. docsforge/themes/material/templates/.icons/simple/recoil.svg +1 -0
  13791. docsforge/themes/material/templates/.icons/simple/red.svg +1 -0
  13792. docsforge/themes/material/templates/.icons/simple/redash.svg +1 -0
  13793. docsforge/themes/material/templates/.icons/simple/redbubble.svg +1 -0
  13794. docsforge/themes/material/templates/.icons/simple/redbull.svg +1 -0
  13795. docsforge/themes/material/templates/.icons/simple/redcandlegames.svg +1 -0
  13796. docsforge/themes/material/templates/.icons/simple/reddit.svg +1 -0
  13797. docsforge/themes/material/templates/.icons/simple/redhat.svg +1 -0
  13798. docsforge/themes/material/templates/.icons/simple/redhatopenshift.svg +1 -0
  13799. docsforge/themes/material/templates/.icons/simple/redis.svg +1 -0
  13800. docsforge/themes/material/templates/.icons/simple/redmine.svg +1 -0
  13801. docsforge/themes/material/templates/.icons/simple/redox.svg +1 -0
  13802. docsforge/themes/material/templates/.icons/simple/redragon.svg +1 -0
  13803. docsforge/themes/material/templates/.icons/simple/redsys.svg +1 -0
  13804. docsforge/themes/material/templates/.icons/simple/redux.svg +1 -0
  13805. docsforge/themes/material/templates/.icons/simple/reduxsaga.svg +1 -0
  13806. docsforge/themes/material/templates/.icons/simple/redwoodjs.svg +1 -0
  13807. docsforge/themes/material/templates/.icons/simple/reebok.svg +1 -0
  13808. docsforge/themes/material/templates/.icons/simple/refine.svg +1 -0
  13809. docsforge/themes/material/templates/.icons/simple/refinedgithub.svg +1 -0
  13810. docsforge/themes/material/templates/.icons/simple/rekaui.svg +1 -0
  13811. docsforge/themes/material/templates/.icons/simple/relay.svg +1 -0
  13812. docsforge/themes/material/templates/.icons/simple/relianceindustrieslimited.svg +1 -0
  13813. docsforge/themes/material/templates/.icons/simple/remark.svg +1 -0
  13814. docsforge/themes/material/templates/.icons/simple/remedyentertainment.svg +1 -0
  13815. docsforge/themes/material/templates/.icons/simple/remix.svg +1 -0
  13816. docsforge/themes/material/templates/.icons/simple/removedotbg.svg +1 -0
  13817. docsforge/themes/material/templates/.icons/simple/renault.svg +1 -0
  13818. docsforge/themes/material/templates/.icons/simple/render.svg +1 -0
  13819. docsforge/themes/material/templates/.icons/simple/renovate.svg +1 -0
  13820. docsforge/themes/material/templates/.icons/simple/renpy.svg +1 -0
  13821. docsforge/themes/material/templates/.icons/simple/renren.svg +1 -0
  13822. docsforge/themes/material/templates/.icons/simple/replicate.svg +1 -0
  13823. docsforge/themes/material/templates/.icons/simple/replit.svg +1 -0
  13824. docsforge/themes/material/templates/.icons/simple/republicofgamers.svg +1 -0
  13825. docsforge/themes/material/templates/.icons/simple/rescript.svg +1 -0
  13826. docsforge/themes/material/templates/.icons/simple/rescuetime.svg +1 -0
  13827. docsforge/themes/material/templates/.icons/simple/researchgate.svg +1 -0
  13828. docsforge/themes/material/templates/.icons/simple/resend.svg +1 -0
  13829. docsforge/themes/material/templates/.icons/simple/resharper.svg +1 -0
  13830. docsforge/themes/material/templates/.icons/simple/resurrectionremixos.svg +1 -0
  13831. docsforge/themes/material/templates/.icons/simple/retool.svg +1 -0
  13832. docsforge/themes/material/templates/.icons/simple/retroachievements.svg +1 -0
  13833. docsforge/themes/material/templates/.icons/simple/retroarch.svg +1 -0
  13834. docsforge/themes/material/templates/.icons/simple/retropie.svg +1 -0
  13835. docsforge/themes/material/templates/.icons/simple/revanced.svg +1 -0
  13836. docsforge/themes/material/templates/.icons/simple/revealdotjs.svg +1 -0
  13837. docsforge/themes/material/templates/.icons/simple/revenuecat.svg +1 -0
  13838. docsforge/themes/material/templates/.icons/simple/reverbnation.svg +1 -0
  13839. docsforge/themes/material/templates/.icons/simple/revoltdotchat.svg +1 -0
  13840. docsforge/themes/material/templates/.icons/simple/revolut.svg +1 -0
  13841. docsforge/themes/material/templates/.icons/simple/rewe.svg +1 -0
  13842. docsforge/themes/material/templates/.icons/simple/rezgo.svg +1 -0
  13843. docsforge/themes/material/templates/.icons/simple/rhinoceros.svg +1 -0
  13844. docsforge/themes/material/templates/.icons/simple/rich.svg +1 -0
  13845. docsforge/themes/material/templates/.icons/simple/rider.svg +1 -0
  13846. docsforge/themes/material/templates/.icons/simple/rimacautomobili.svg +1 -0
  13847. docsforge/themes/material/templates/.icons/simple/rime.svg +1 -0
  13848. docsforge/themes/material/templates/.icons/simple/ring.svg +1 -0
  13849. docsforge/themes/material/templates/.icons/simple/riotgames.svg +1 -0
  13850. docsforge/themes/material/templates/.icons/simple/ripple.svg +1 -0
  13851. docsforge/themes/material/templates/.icons/simple/riscv.svg +1 -0
  13852. docsforge/themes/material/templates/.icons/simple/riseup.svg +1 -0
  13853. docsforge/themes/material/templates/.icons/simple/ritzcarlton.svg +1 -0
  13854. docsforge/themes/material/templates/.icons/simple/rive.svg +1 -0
  13855. docsforge/themes/material/templates/.icons/simple/roadmapdotsh.svg +1 -0
  13856. docsforge/themes/material/templates/.icons/simple/roamresearch.svg +1 -0
  13857. docsforge/themes/material/templates/.icons/simple/robinhood.svg +1 -0
  13858. docsforge/themes/material/templates/.icons/simple/roblox.svg +1 -0
  13859. docsforge/themes/material/templates/.icons/simple/robloxstudio.svg +1 -0
  13860. docsforge/themes/material/templates/.icons/simple/roboflow.svg +1 -0
  13861. docsforge/themes/material/templates/.icons/simple/robotframework.svg +1 -0
  13862. docsforge/themes/material/templates/.icons/simple/rocket.svg +1 -0
  13863. docsforge/themes/material/templates/.icons/simple/rocketdotchat.svg +1 -0
  13864. docsforge/themes/material/templates/.icons/simple/rocksdb.svg +1 -0
  13865. docsforge/themes/material/templates/.icons/simple/rockstargames.svg +1 -0
  13866. docsforge/themes/material/templates/.icons/simple/rockwellautomation.svg +1 -0
  13867. docsforge/themes/material/templates/.icons/simple/rockylinux.svg +1 -0
  13868. docsforge/themes/material/templates/.icons/simple/roku.svg +1 -0
  13869. docsforge/themes/material/templates/.icons/simple/roll20.svg +1 -0
  13870. docsforge/themes/material/templates/.icons/simple/rollbar.svg +1 -0
  13871. docsforge/themes/material/templates/.icons/simple/rolldown.svg +1 -0
  13872. docsforge/themes/material/templates/.icons/simple/rollsroyce.svg +1 -0
  13873. docsforge/themes/material/templates/.icons/simple/rollupdotjs.svg +1 -0
  13874. docsforge/themes/material/templates/.icons/simple/rook.svg +1 -0
  13875. docsforge/themes/material/templates/.icons/simple/roon.svg +1 -0
  13876. docsforge/themes/material/templates/.icons/simple/root.svg +1 -0
  13877. docsforge/themes/material/templates/.icons/simple/rootme.svg +1 -0
  13878. docsforge/themes/material/templates/.icons/simple/roots.svg +1 -0
  13879. docsforge/themes/material/templates/.icons/simple/rootsbedrock.svg +1 -0
  13880. docsforge/themes/material/templates/.icons/simple/rootssage.svg +1 -0
  13881. docsforge/themes/material/templates/.icons/simple/ros.svg +1 -0
  13882. docsforge/themes/material/templates/.icons/simple/rossmann.svg +1 -0
  13883. docsforge/themes/material/templates/.icons/simple/rotaryinternational.svg +1 -0
  13884. docsforge/themes/material/templates/.icons/simple/rottentomatoes.svg +1 -0
  13885. docsforge/themes/material/templates/.icons/simple/roundcube.svg +1 -0
  13886. docsforge/themes/material/templates/.icons/simple/rsocket.svg +1 -0
  13887. docsforge/themes/material/templates/.icons/simple/rss.svg +1 -0
  13888. docsforge/themes/material/templates/.icons/simple/rstudioide.svg +1 -0
  13889. docsforge/themes/material/templates/.icons/simple/rte.svg +1 -0
  13890. docsforge/themes/material/templates/.icons/simple/rtl.svg +1 -0
  13891. docsforge/themes/material/templates/.icons/simple/rtlzwei.svg +1 -0
  13892. docsforge/themes/material/templates/.icons/simple/rtm.svg +1 -0
  13893. docsforge/themes/material/templates/.icons/simple/rubocop.svg +1 -0
  13894. docsforge/themes/material/templates/.icons/simple/ruby.svg +1 -0
  13895. docsforge/themes/material/templates/.icons/simple/rubygems.svg +1 -0
  13896. docsforge/themes/material/templates/.icons/simple/rubymine.svg +1 -0
  13897. docsforge/themes/material/templates/.icons/simple/rubyonrails.svg +1 -0
  13898. docsforge/themes/material/templates/.icons/simple/rubysinatra.svg +1 -0
  13899. docsforge/themes/material/templates/.icons/simple/ruff.svg +1 -0
  13900. docsforge/themes/material/templates/.icons/simple/rumahweb.svg +1 -0
  13901. docsforge/themes/material/templates/.icons/simple/rumble.svg +1 -0
  13902. docsforge/themes/material/templates/.icons/simple/rundeck.svg +1 -0
  13903. docsforge/themes/material/templates/.icons/simple/runkeeper.svg +1 -0
  13904. docsforge/themes/material/templates/.icons/simple/runkit.svg +1 -0
  13905. docsforge/themes/material/templates/.icons/simple/runrundotit.svg +1 -0
  13906. docsforge/themes/material/templates/.icons/simple/rust.svg +1 -0
  13907. docsforge/themes/material/templates/.icons/simple/rustdesk.svg +1 -0
  13908. docsforge/themes/material/templates/.icons/simple/rxdb.svg +1 -0
  13909. docsforge/themes/material/templates/.icons/simple/ryanair.svg +1 -0
  13910. docsforge/themes/material/templates/.icons/simple/rye.svg +1 -0
  13911. docsforge/themes/material/templates/.icons/simple/s7airlines.svg +1 -0
  13912. docsforge/themes/material/templates/.icons/simple/sabanci.svg +1 -0
  13913. docsforge/themes/material/templates/.icons/simple/safari.svg +1 -0
  13914. docsforge/themes/material/templates/.icons/simple/sage.svg +1 -0
  13915. docsforge/themes/material/templates/.icons/simple/sagemath.svg +1 -0
  13916. docsforge/themes/material/templates/.icons/simple/sahibinden.svg +1 -0
  13917. docsforge/themes/material/templates/.icons/simple/sailfishos.svg +1 -0
  13918. docsforge/themes/material/templates/.icons/simple/sailsdotjs.svg +1 -0
  13919. docsforge/themes/material/templates/.icons/simple/salla.svg +1 -0
  13920. docsforge/themes/material/templates/.icons/simple/saltproject.svg +1 -0
  13921. docsforge/themes/material/templates/.icons/simple/samsclub.svg +1 -0
  13922. docsforge/themes/material/templates/.icons/simple/samsung.svg +1 -0
  13923. docsforge/themes/material/templates/.icons/simple/samsungpay.svg +1 -0
  13924. docsforge/themes/material/templates/.icons/simple/sanfranciscomunicipalrailway.svg +1 -0
  13925. docsforge/themes/material/templates/.icons/simple/sanic.svg +1 -0
  13926. docsforge/themes/material/templates/.icons/simple/sanity.svg +1 -0
  13927. docsforge/themes/material/templates/.icons/simple/saopaulometro.svg +1 -0
  13928. docsforge/themes/material/templates/.icons/simple/sap.svg +1 -0
  13929. docsforge/themes/material/templates/.icons/simple/sartorius.svg +1 -0
  13930. docsforge/themes/material/templates/.icons/simple/sass.svg +1 -0
  13931. docsforge/themes/material/templates/.icons/simple/sat1.svg +1 -0
  13932. docsforge/themes/material/templates/.icons/simple/satellite.svg +1 -0
  13933. docsforge/themes/material/templates/.icons/simple/saturn.svg +1 -0
  13934. docsforge/themes/material/templates/.icons/simple/saucelabs.svg +1 -0
  13935. docsforge/themes/material/templates/.icons/simple/saudia.svg +1 -0
  13936. docsforge/themes/material/templates/.icons/simple/scala.svg +1 -0
  13937. docsforge/themes/material/templates/.icons/simple/scalar.svg +1 -0
  13938. docsforge/themes/material/templates/.icons/simple/scaleway.svg +1 -0
  13939. docsforge/themes/material/templates/.icons/simple/scania.svg +1 -0
  13940. docsforge/themes/material/templates/.icons/simple/schneiderelectric.svg +1 -0
  13941. docsforge/themes/material/templates/.icons/simple/scikitlearn.svg +1 -0
  13942. docsforge/themes/material/templates/.icons/simple/scilab.svg +1 -0
  13943. docsforge/themes/material/templates/.icons/simple/scipy.svg +1 -0
  13944. docsforge/themes/material/templates/.icons/simple/scopus.svg +1 -0
  13945. docsforge/themes/material/templates/.icons/simple/scpfoundation.svg +1 -0
  13946. docsforge/themes/material/templates/.icons/simple/scrapbox.svg +1 -0
  13947. docsforge/themes/material/templates/.icons/simple/scrapy.svg +1 -0
  13948. docsforge/themes/material/templates/.icons/simple/scratch.svg +1 -0
  13949. docsforge/themes/material/templates/.icons/simple/screencastify.svg +1 -0
  13950. docsforge/themes/material/templates/.icons/simple/scrimba.svg +1 -0
  13951. docsforge/themes/material/templates/.icons/simple/scrollreveal.svg +1 -0
  13952. docsforge/themes/material/templates/.icons/simple/scrumalliance.svg +1 -0
  13953. docsforge/themes/material/templates/.icons/simple/scrutinizerci.svg +1 -0
  13954. docsforge/themes/material/templates/.icons/simple/scylladb.svg +1 -0
  13955. docsforge/themes/material/templates/.icons/simple/seafile.svg +1 -0
  13956. docsforge/themes/material/templates/.icons/simple/seagate.svg +1 -0
  13957. docsforge/themes/material/templates/.icons/simple/searxng.svg +1 -0
  13958. docsforge/themes/material/templates/.icons/simple/seat.svg +1 -0
  13959. docsforge/themes/material/templates/.icons/simple/seatgeek.svg +1 -0
  13960. docsforge/themes/material/templates/.icons/simple/securityscorecard.svg +1 -0
  13961. docsforge/themes/material/templates/.icons/simple/sefaria.svg +1 -0
  13962. docsforge/themes/material/templates/.icons/simple/sega.svg +1 -0
  13963. docsforge/themes/material/templates/.icons/simple/selenium.svg +1 -0
  13964. docsforge/themes/material/templates/.icons/simple/sellfy.svg +1 -0
  13965. docsforge/themes/material/templates/.icons/simple/semanticrelease.svg +1 -0
  13966. docsforge/themes/material/templates/.icons/simple/semanticscholar.svg +1 -0
  13967. docsforge/themes/material/templates/.icons/simple/semanticui.svg +1 -0
  13968. docsforge/themes/material/templates/.icons/simple/semanticuireact.svg +1 -0
  13969. docsforge/themes/material/templates/.icons/simple/semanticweb.svg +1 -0
  13970. docsforge/themes/material/templates/.icons/simple/semaphoreci.svg +1 -0
  13971. docsforge/themes/material/templates/.icons/simple/semrush.svg +1 -0
  13972. docsforge/themes/material/templates/.icons/simple/semver.svg +1 -0
  13973. docsforge/themes/material/templates/.icons/simple/sencha.svg +1 -0
  13974. docsforge/themes/material/templates/.icons/simple/sennheiser.svg +1 -0
  13975. docsforge/themes/material/templates/.icons/simple/sensu.svg +1 -0
  13976. docsforge/themes/material/templates/.icons/simple/sentry.svg +1 -0
  13977. docsforge/themes/material/templates/.icons/simple/sepa.svg +1 -0
  13978. docsforge/themes/material/templates/.icons/simple/sequelize.svg +1 -0
  13979. docsforge/themes/material/templates/.icons/simple/servbay.svg +1 -0
  13980. docsforge/themes/material/templates/.icons/simple/serverfault.svg +1 -0
  13981. docsforge/themes/material/templates/.icons/simple/serverless.svg +1 -0
  13982. docsforge/themes/material/templates/.icons/simple/session.svg +1 -0
  13983. docsforge/themes/material/templates/.icons/simple/sessionize.svg +1 -0
  13984. docsforge/themes/material/templates/.icons/simple/setapp.svg +1 -0
  13985. docsforge/themes/material/templates/.icons/simple/setuptools.svg +1 -0
  13986. docsforge/themes/material/templates/.icons/simple/sfml.svg +1 -0
  13987. docsforge/themes/material/templates/.icons/simple/shadcnui.svg +1 -0
  13988. docsforge/themes/material/templates/.icons/simple/shadow.svg +1 -0
  13989. docsforge/themes/material/templates/.icons/simple/shanghaimetro.svg +1 -0
  13990. docsforge/themes/material/templates/.icons/simple/sharex.svg +1 -0
  13991. docsforge/themes/material/templates/.icons/simple/sharp.svg +1 -0
  13992. docsforge/themes/material/templates/.icons/simple/shazam.svg +1 -0
  13993. docsforge/themes/material/templates/.icons/simple/shell.svg +1 -0
  13994. docsforge/themes/material/templates/.icons/simple/shelly.svg +1 -0
  13995. docsforge/themes/material/templates/.icons/simple/shenzhenmetro.svg +1 -0
  13996. docsforge/themes/material/templates/.icons/simple/shieldsdotio.svg +1 -0
  13997. docsforge/themes/material/templates/.icons/simple/shikimori.svg +1 -0
  13998. docsforge/themes/material/templates/.icons/simple/shopee.svg +1 -0
  13999. docsforge/themes/material/templates/.icons/simple/shopify.svg +1 -0
  14000. docsforge/themes/material/templates/.icons/simple/shopware.svg +1 -0
  14001. docsforge/themes/material/templates/.icons/simple/shortcut.svg +1 -0
  14002. docsforge/themes/material/templates/.icons/simple/showpad.svg +1 -0
  14003. docsforge/themes/material/templates/.icons/simple/showtime.svg +1 -0
  14004. docsforge/themes/material/templates/.icons/simple/showwcase.svg +1 -0
  14005. docsforge/themes/material/templates/.icons/simple/sidekiq.svg +1 -0
  14006. docsforge/themes/material/templates/.icons/simple/sidequest.svg +1 -0
  14007. docsforge/themes/material/templates/.icons/simple/siemens.svg +1 -0
  14008. docsforge/themes/material/templates/.icons/simple/sifive.svg +1 -0
  14009. docsforge/themes/material/templates/.icons/simple/signal.svg +1 -0
  14010. docsforge/themes/material/templates/.icons/simple/silverairways.svg +1 -0
  14011. docsforge/themes/material/templates/.icons/simple/similarweb.svg +1 -0
  14012. docsforge/themes/material/templates/.icons/simple/simkl.svg +1 -0
  14013. docsforge/themes/material/templates/.icons/simple/simpleanalytics.svg +1 -0
  14014. docsforge/themes/material/templates/.icons/simple/simpleicons.svg +1 -0
  14015. docsforge/themes/material/templates/.icons/simple/simplelocalize.svg +1 -0
  14016. docsforge/themes/material/templates/.icons/simple/simplelogin.svg +1 -0
  14017. docsforge/themes/material/templates/.icons/simple/simplenote.svg +1 -0
  14018. docsforge/themes/material/templates/.icons/simple/simplex.svg +1 -0
  14019. docsforge/themes/material/templates/.icons/simple/sinaweibo.svg +1 -0
  14020. docsforge/themes/material/templates/.icons/simple/singaporeairlines.svg +1 -0
  14021. docsforge/themes/material/templates/.icons/simple/singlestore.svg +1 -0
  14022. docsforge/themes/material/templates/.icons/simple/sitecore.svg +1 -0
  14023. docsforge/themes/material/templates/.icons/simple/sitepoint.svg +1 -0
  14024. docsforge/themes/material/templates/.icons/simple/siyuan.svg +1 -0
  14025. docsforge/themes/material/templates/.icons/simple/skaffold.svg +1 -0
  14026. docsforge/themes/material/templates/.icons/simple/skeleton.svg +1 -0
  14027. docsforge/themes/material/templates/.icons/simple/sketch.svg +1 -0
  14028. docsforge/themes/material/templates/.icons/simple/sketchfab.svg +1 -0
  14029. docsforge/themes/material/templates/.icons/simple/sketchup.svg +1 -0
  14030. docsforge/themes/material/templates/.icons/simple/skillshare.svg +1 -0
  14031. docsforge/themes/material/templates/.icons/simple/skoda.svg +1 -0
  14032. docsforge/themes/material/templates/.icons/simple/sky.svg +1 -0
  14033. docsforge/themes/material/templates/.icons/simple/skypack.svg +1 -0
  14034. docsforge/themes/material/templates/.icons/simple/slackware.svg +1 -0
  14035. docsforge/themes/material/templates/.icons/simple/slashdot.svg +1 -0
  14036. docsforge/themes/material/templates/.icons/simple/slickpic.svg +1 -0
  14037. docsforge/themes/material/templates/.icons/simple/slides.svg +1 -0
  14038. docsforge/themes/material/templates/.icons/simple/slideshare.svg +1 -0
  14039. docsforge/themes/material/templates/.icons/simple/slint.svg +1 -0
  14040. docsforge/themes/material/templates/.icons/simple/smart.svg +1 -0
  14041. docsforge/themes/material/templates/.icons/simple/smartthings.svg +1 -0
  14042. docsforge/themes/material/templates/.icons/simple/smashingmagazine.svg +1 -0
  14043. docsforge/themes/material/templates/.icons/simple/smoothcomp.svg +1 -0
  14044. docsforge/themes/material/templates/.icons/simple/smrt.svg +1 -0
  14045. docsforge/themes/material/templates/.icons/simple/smugmug.svg +1 -0
  14046. docsforge/themes/material/templates/.icons/simple/snapchat.svg +1 -0
  14047. docsforge/themes/material/templates/.icons/simple/snapcraft.svg +1 -0
  14048. docsforge/themes/material/templates/.icons/simple/snapdragon.svg +1 -0
  14049. docsforge/themes/material/templates/.icons/simple/sncf.svg +1 -0
  14050. docsforge/themes/material/templates/.icons/simple/snort.svg +1 -0
  14051. docsforge/themes/material/templates/.icons/simple/snowflake.svg +1 -0
  14052. docsforge/themes/material/templates/.icons/simple/snowpack.svg +1 -0
  14053. docsforge/themes/material/templates/.icons/simple/snyk.svg +1 -0
  14054. docsforge/themes/material/templates/.icons/simple/socialblade.svg +1 -0
  14055. docsforge/themes/material/templates/.icons/simple/society6.svg +1 -0
  14056. docsforge/themes/material/templates/.icons/simple/socket.svg +1 -0
  14057. docsforge/themes/material/templates/.icons/simple/socketdotio.svg +1 -0
  14058. docsforge/themes/material/templates/.icons/simple/softcatala.svg +1 -0
  14059. docsforge/themes/material/templates/.icons/simple/softpedia.svg +1 -0
  14060. docsforge/themes/material/templates/.icons/simple/sogou.svg +1 -0
  14061. docsforge/themes/material/templates/.icons/simple/solana.svg +1 -0
  14062. docsforge/themes/material/templates/.icons/simple/solid.svg +1 -0
  14063. docsforge/themes/material/templates/.icons/simple/solidity.svg +1 -0
  14064. docsforge/themes/material/templates/.icons/simple/sololearn.svg +1 -0
  14065. docsforge/themes/material/templates/.icons/simple/solus.svg +1 -0
  14066. docsforge/themes/material/templates/.icons/simple/sonar.svg +1 -0
  14067. docsforge/themes/material/templates/.icons/simple/sonarqubecloud.svg +1 -0
  14068. docsforge/themes/material/templates/.icons/simple/sonarqubeforide.svg +1 -0
  14069. docsforge/themes/material/templates/.icons/simple/sonarqubeserver.svg +1 -0
  14070. docsforge/themes/material/templates/.icons/simple/sonarr.svg +1 -0
  14071. docsforge/themes/material/templates/.icons/simple/sonatype.svg +1 -0
  14072. docsforge/themes/material/templates/.icons/simple/songkick.svg +1 -0
  14073. docsforge/themes/material/templates/.icons/simple/songoda.svg +1 -0
  14074. docsforge/themes/material/templates/.icons/simple/sonicwall.svg +1 -0
  14075. docsforge/themes/material/templates/.icons/simple/sonos.svg +1 -0
  14076. docsforge/themes/material/templates/.icons/simple/sony.svg +1 -0
  14077. docsforge/themes/material/templates/.icons/simple/soriana.svg +1 -0
  14078. docsforge/themes/material/templates/.icons/simple/soundcharts.svg +1 -0
  14079. docsforge/themes/material/templates/.icons/simple/soundcloud.svg +1 -0
  14080. docsforge/themes/material/templates/.icons/simple/sourceengine.svg +1 -0
  14081. docsforge/themes/material/templates/.icons/simple/sourceforge.svg +1 -0
  14082. docsforge/themes/material/templates/.icons/simple/sourcehut.svg +1 -0
  14083. docsforge/themes/material/templates/.icons/simple/sourcetree.svg +1 -0
  14084. docsforge/themes/material/templates/.icons/simple/southwestairlines.svg +1 -0
  14085. docsforge/themes/material/templates/.icons/simple/spacemacs.svg +1 -0
  14086. docsforge/themes/material/templates/.icons/simple/spaceship.svg +1 -0
  14087. docsforge/themes/material/templates/.icons/simple/spacex.svg +1 -0
  14088. docsforge/themes/material/templates/.icons/simple/spacy.svg +1 -0
  14089. docsforge/themes/material/templates/.icons/simple/sparkar.svg +1 -0
  14090. docsforge/themes/material/templates/.icons/simple/sparkasse.svg +1 -0
  14091. docsforge/themes/material/templates/.icons/simple/sparkfun.svg +1 -0
  14092. docsforge/themes/material/templates/.icons/simple/sparkpost.svg +1 -0
  14093. docsforge/themes/material/templates/.icons/simple/spdx.svg +1 -0
  14094. docsforge/themes/material/templates/.icons/simple/speakerdeck.svg +1 -0
  14095. docsforge/themes/material/templates/.icons/simple/spectrum.svg +1 -0
  14096. docsforge/themes/material/templates/.icons/simple/speedtest.svg +1 -0
  14097. docsforge/themes/material/templates/.icons/simple/speedypage.svg +1 -0
  14098. docsforge/themes/material/templates/.icons/simple/sphinx.svg +1 -0
  14099. docsforge/themes/material/templates/.icons/simple/spigotmc.svg +1 -0
  14100. docsforge/themes/material/templates/.icons/simple/spine.svg +1 -0
  14101. docsforge/themes/material/templates/.icons/simple/spinnaker.svg +1 -0
  14102. docsforge/themes/material/templates/.icons/simple/splunk.svg +1 -0
  14103. docsforge/themes/material/templates/.icons/simple/spoj.svg +1 -0
  14104. docsforge/themes/material/templates/.icons/simple/spond.svg +1 -0
  14105. docsforge/themes/material/templates/.icons/simple/spotify.svg +1 -0
  14106. docsforge/themes/material/templates/.icons/simple/spotlight.svg +1 -0
  14107. docsforge/themes/material/templates/.icons/simple/spreadshirt.svg +1 -0
  14108. docsforge/themes/material/templates/.icons/simple/spreaker.svg +1 -0
  14109. docsforge/themes/material/templates/.icons/simple/spring.svg +1 -0
  14110. docsforge/themes/material/templates/.icons/simple/spring_creators.svg +1 -0
  14111. docsforge/themes/material/templates/.icons/simple/springboot.svg +1 -0
  14112. docsforge/themes/material/templates/.icons/simple/springsecurity.svg +1 -0
  14113. docsforge/themes/material/templates/.icons/simple/spyderide.svg +1 -0
  14114. docsforge/themes/material/templates/.icons/simple/sqlalchemy.svg +1 -0
  14115. docsforge/themes/material/templates/.icons/simple/sqlite.svg +1 -0
  14116. docsforge/themes/material/templates/.icons/simple/square.svg +1 -0
  14117. docsforge/themes/material/templates/.icons/simple/squareenix.svg +1 -0
  14118. docsforge/themes/material/templates/.icons/simple/squarespace.svg +1 -0
  14119. docsforge/themes/material/templates/.icons/simple/srgssr.svg +1 -0
  14120. docsforge/themes/material/templates/.icons/simple/ssrn.svg +1 -0
  14121. docsforge/themes/material/templates/.icons/simple/sst.svg +1 -0
  14122. docsforge/themes/material/templates/.icons/simple/stackbit.svg +1 -0
  14123. docsforge/themes/material/templates/.icons/simple/stackblitz.svg +1 -0
  14124. docsforge/themes/material/templates/.icons/simple/stackedit.svg +1 -0
  14125. docsforge/themes/material/templates/.icons/simple/stackexchange.svg +1 -0
  14126. docsforge/themes/material/templates/.icons/simple/stackhawk.svg +1 -0
  14127. docsforge/themes/material/templates/.icons/simple/stackoverflow.svg +1 -0
  14128. docsforge/themes/material/templates/.icons/simple/stackshare.svg +1 -0
  14129. docsforge/themes/material/templates/.icons/simple/stadia.svg +1 -0
  14130. docsforge/themes/material/templates/.icons/simple/staffbase.svg +1 -0
  14131. docsforge/themes/material/templates/.icons/simple/stagetimer.svg +1 -0
  14132. docsforge/themes/material/templates/.icons/simple/standardjs.svg +1 -0
  14133. docsforge/themes/material/templates/.icons/simple/standardresume.svg +1 -0
  14134. docsforge/themes/material/templates/.icons/simple/starbucks.svg +1 -0
  14135. docsforge/themes/material/templates/.icons/simple/stardock.svg +1 -0
  14136. docsforge/themes/material/templates/.icons/simple/starlingbank.svg +1 -0
  14137. docsforge/themes/material/templates/.icons/simple/starship.svg +1 -0
  14138. docsforge/themes/material/templates/.icons/simple/startdotgg.svg +1 -0
  14139. docsforge/themes/material/templates/.icons/simple/startpage.svg +1 -0
  14140. docsforge/themes/material/templates/.icons/simple/startrek.svg +1 -0
  14141. docsforge/themes/material/templates/.icons/simple/starz.svg +1 -0
  14142. docsforge/themes/material/templates/.icons/simple/statamic.svg +1 -0
  14143. docsforge/themes/material/templates/.icons/simple/statista.svg +1 -0
  14144. docsforge/themes/material/templates/.icons/simple/statuspage.svg +1 -0
  14145. docsforge/themes/material/templates/.icons/simple/statuspal.svg +1 -0
  14146. docsforge/themes/material/templates/.icons/simple/steam.svg +1 -0
  14147. docsforge/themes/material/templates/.icons/simple/steamdb.svg +1 -0
  14148. docsforge/themes/material/templates/.icons/simple/steamdeck.svg +1 -0
  14149. docsforge/themes/material/templates/.icons/simple/steamworks.svg +1 -0
  14150. docsforge/themes/material/templates/.icons/simple/steelseries.svg +1 -0
  14151. docsforge/themes/material/templates/.icons/simple/steem.svg +1 -0
  14152. docsforge/themes/material/templates/.icons/simple/steemit.svg +1 -0
  14153. docsforge/themes/material/templates/.icons/simple/steinberg.svg +1 -0
  14154. docsforge/themes/material/templates/.icons/simple/stellar.svg +1 -0
  14155. docsforge/themes/material/templates/.icons/simple/stencil.svg +1 -0
  14156. docsforge/themes/material/templates/.icons/simple/stencyl.svg +1 -0
  14157. docsforge/themes/material/templates/.icons/simple/stimulus.svg +1 -0
  14158. docsforge/themes/material/templates/.icons/simple/stmicroelectronics.svg +1 -0
  14159. docsforge/themes/material/templates/.icons/simple/stockx.svg +1 -0
  14160. docsforge/themes/material/templates/.icons/simple/stopstalk.svg +1 -0
  14161. docsforge/themes/material/templates/.icons/simple/storyblok.svg +1 -0
  14162. docsforge/themes/material/templates/.icons/simple/storybook.svg +1 -0
  14163. docsforge/themes/material/templates/.icons/simple/strapi.svg +1 -0
  14164. docsforge/themes/material/templates/.icons/simple/strava.svg +1 -0
  14165. docsforge/themes/material/templates/.icons/simple/streamlabs.svg +1 -0
  14166. docsforge/themes/material/templates/.icons/simple/streamlit.svg +1 -0
  14167. docsforge/themes/material/templates/.icons/simple/streamrunners.svg +1 -0
  14168. docsforge/themes/material/templates/.icons/simple/stremio.svg +1 -0
  14169. docsforge/themes/material/templates/.icons/simple/stripe.svg +1 -0
  14170. docsforge/themes/material/templates/.icons/simple/strongswan.svg +1 -0
  14171. docsforge/themes/material/templates/.icons/simple/stryker.svg +1 -0
  14172. docsforge/themes/material/templates/.icons/simple/stubhub.svg +1 -0
  14173. docsforge/themes/material/templates/.icons/simple/studio3t.svg +1 -0
  14174. docsforge/themes/material/templates/.icons/simple/styledcomponents.svg +1 -0
  14175. docsforge/themes/material/templates/.icons/simple/stylelint.svg +1 -0
  14176. docsforge/themes/material/templates/.icons/simple/styleshare.svg +1 -0
  14177. docsforge/themes/material/templates/.icons/simple/stylus.svg +1 -0
  14178. docsforge/themes/material/templates/.icons/simple/subaru.svg +1 -0
  14179. docsforge/themes/material/templates/.icons/simple/sublimetext.svg +1 -0
  14180. docsforge/themes/material/templates/.icons/simple/substack.svg +1 -0
  14181. docsforge/themes/material/templates/.icons/simple/subtitleedit.svg +1 -0
  14182. docsforge/themes/material/templates/.icons/simple/subversion.svg +1 -0
  14183. docsforge/themes/material/templates/.icons/simple/suckless.svg +1 -0
  14184. docsforge/themes/material/templates/.icons/simple/sui.svg +1 -0
  14185. docsforge/themes/material/templates/.icons/simple/suitest.svg +1 -0
  14186. docsforge/themes/material/templates/.icons/simple/sumologic.svg +1 -0
  14187. docsforge/themes/material/templates/.icons/simple/suno.svg +1 -0
  14188. docsforge/themes/material/templates/.icons/simple/sunrise.svg +1 -0
  14189. docsforge/themes/material/templates/.icons/simple/supabase.svg +1 -0
  14190. docsforge/themes/material/templates/.icons/simple/supercrease.svg +1 -0
  14191. docsforge/themes/material/templates/.icons/simple/supermicro.svg +1 -0
  14192. docsforge/themes/material/templates/.icons/simple/superuser.svg +1 -0
  14193. docsforge/themes/material/templates/.icons/simple/surfshark.svg +1 -0
  14194. docsforge/themes/material/templates/.icons/simple/surrealdb.svg +1 -0
  14195. docsforge/themes/material/templates/.icons/simple/surveymonkey.svg +1 -0
  14196. docsforge/themes/material/templates/.icons/simple/suse.svg +1 -0
  14197. docsforge/themes/material/templates/.icons/simple/suzuki.svg +1 -0
  14198. docsforge/themes/material/templates/.icons/simple/svelte.svg +1 -0
  14199. docsforge/themes/material/templates/.icons/simple/svg.svg +1 -0
  14200. docsforge/themes/material/templates/.icons/simple/svgdotjs.svg +1 -0
  14201. docsforge/themes/material/templates/.icons/simple/svgo.svg +1 -0
  14202. docsforge/themes/material/templates/.icons/simple/svgtrace.svg +1 -0
  14203. docsforge/themes/material/templates/.icons/simple/swagger.svg +1 -0
  14204. docsforge/themes/material/templates/.icons/simple/swarm.svg +1 -0
  14205. docsforge/themes/material/templates/.icons/simple/sway.svg +1 -0
  14206. docsforge/themes/material/templates/.icons/simple/swc.svg +1 -0
  14207. docsforge/themes/material/templates/.icons/simple/swift.svg +1 -0
  14208. docsforge/themes/material/templates/.icons/simple/swiggy.svg +1 -0
  14209. docsforge/themes/material/templates/.icons/simple/swiper.svg +1 -0
  14210. docsforge/themes/material/templates/.icons/simple/swisscows.svg +1 -0
  14211. docsforge/themes/material/templates/.icons/simple/swr.svg +1 -0
  14212. docsforge/themes/material/templates/.icons/simple/symantec.svg +1 -0
  14213. docsforge/themes/material/templates/.icons/simple/symbolab.svg +1 -0
  14214. docsforge/themes/material/templates/.icons/simple/symfony.svg +1 -0
  14215. docsforge/themes/material/templates/.icons/simple/symphony.svg +1 -0
  14216. docsforge/themes/material/templates/.icons/simple/sympy.svg +1 -0
  14217. docsforge/themes/material/templates/.icons/simple/syncthing.svg +1 -0
  14218. docsforge/themes/material/templates/.icons/simple/synology.svg +1 -0
  14219. docsforge/themes/material/templates/.icons/simple/system76.svg +1 -0
  14220. docsforge/themes/material/templates/.icons/simple/tabelog.svg +1 -0
  14221. docsforge/themes/material/templates/.icons/simple/tablecheck.svg +1 -0
  14222. docsforge/themes/material/templates/.icons/simple/tacobell.svg +1 -0
  14223. docsforge/themes/material/templates/.icons/simple/tado.svg +1 -0
  14224. docsforge/themes/material/templates/.icons/simple/taichigraphics.svg +1 -0
  14225. docsforge/themes/material/templates/.icons/simple/taichilang.svg +1 -0
  14226. docsforge/themes/material/templates/.icons/simple/tails.svg +1 -0
  14227. docsforge/themes/material/templates/.icons/simple/tailscale.svg +1 -0
  14228. docsforge/themes/material/templates/.icons/simple/tailwindcss.svg +1 -0
  14229. docsforge/themes/material/templates/.icons/simple/taipy.svg +1 -0
  14230. docsforge/themes/material/templates/.icons/simple/taketwointeractivesoftware.svg +1 -0
  14231. docsforge/themes/material/templates/.icons/simple/talend.svg +1 -0
  14232. docsforge/themes/material/templates/.icons/simple/talenthouse.svg +1 -0
  14233. docsforge/themes/material/templates/.icons/simple/talos.svg +1 -0
  14234. docsforge/themes/material/templates/.icons/simple/tamiya.svg +1 -0
  14235. docsforge/themes/material/templates/.icons/simple/tampermonkey.svg +1 -0
  14236. docsforge/themes/material/templates/.icons/simple/tanstack.svg +1 -0
  14237. docsforge/themes/material/templates/.icons/simple/taobao.svg +1 -0
  14238. docsforge/themes/material/templates/.icons/simple/tapas.svg +1 -0
  14239. docsforge/themes/material/templates/.icons/simple/target.svg +1 -0
  14240. docsforge/themes/material/templates/.icons/simple/tarom.svg +1 -0
  14241. docsforge/themes/material/templates/.icons/simple/task.svg +1 -0
  14242. docsforge/themes/material/templates/.icons/simple/tasmota.svg +1 -0
  14243. docsforge/themes/material/templates/.icons/simple/tata.svg +1 -0
  14244. docsforge/themes/material/templates/.icons/simple/tauri.svg +1 -0
  14245. docsforge/themes/material/templates/.icons/simple/taxbuzz.svg +1 -0
  14246. docsforge/themes/material/templates/.icons/simple/tcs.svg +1 -0
  14247. docsforge/themes/material/templates/.icons/simple/teal.svg +1 -0
  14248. docsforge/themes/material/templates/.icons/simple/teamcity.svg +1 -0
  14249. docsforge/themes/material/templates/.icons/simple/teamspeak.svg +1 -0
  14250. docsforge/themes/material/templates/.icons/simple/teamviewer.svg +1 -0
  14251. docsforge/themes/material/templates/.icons/simple/techcrunch.svg +1 -0
  14252. docsforge/themes/material/templates/.icons/simple/ted.svg +1 -0
  14253. docsforge/themes/material/templates/.icons/simple/teepublic.svg +1 -0
  14254. docsforge/themes/material/templates/.icons/simple/teespring.svg +1 -0
  14255. docsforge/themes/material/templates/.icons/simple/tekton.svg +1 -0
  14256. docsforge/themes/material/templates/.icons/simple/tele5.svg +1 -0
  14257. docsforge/themes/material/templates/.icons/simple/telefonica.svg +1 -0
  14258. docsforge/themes/material/templates/.icons/simple/telegram.svg +1 -0
  14259. docsforge/themes/material/templates/.icons/simple/telegraph.svg +1 -0
  14260. docsforge/themes/material/templates/.icons/simple/telenor.svg +1 -0
  14261. docsforge/themes/material/templates/.icons/simple/telequebec.svg +1 -0
  14262. docsforge/themes/material/templates/.icons/simple/temporal.svg +1 -0
  14263. docsforge/themes/material/templates/.icons/simple/tensorflow.svg +1 -0
  14264. docsforge/themes/material/templates/.icons/simple/teradata.svg +1 -0
  14265. docsforge/themes/material/templates/.icons/simple/teratail.svg +1 -0
  14266. docsforge/themes/material/templates/.icons/simple/termius.svg +1 -0
  14267. docsforge/themes/material/templates/.icons/simple/terraform.svg +1 -0
  14268. docsforge/themes/material/templates/.icons/simple/tesco.svg +1 -0
  14269. docsforge/themes/material/templates/.icons/simple/tesla.svg +1 -0
  14270. docsforge/themes/material/templates/.icons/simple/testcafe.svg +1 -0
  14271. docsforge/themes/material/templates/.icons/simple/testin.svg +1 -0
  14272. docsforge/themes/material/templates/.icons/simple/testinglibrary.svg +1 -0
  14273. docsforge/themes/material/templates/.icons/simple/testrail.svg +1 -0
  14274. docsforge/themes/material/templates/.icons/simple/tether.svg +1 -0
  14275. docsforge/themes/material/templates/.icons/simple/textpattern.svg +1 -0
  14276. docsforge/themes/material/templates/.icons/simple/textual.svg +1 -0
  14277. docsforge/themes/material/templates/.icons/simple/tga.svg +1 -0
  14278. docsforge/themes/material/templates/.icons/simple/thangs.svg +1 -0
  14279. docsforge/themes/material/templates/.icons/simple/thanos.svg +1 -0
  14280. docsforge/themes/material/templates/.icons/simple/thealgorithms.svg +1 -0
  14281. docsforge/themes/material/templates/.icons/simple/theboringcompany.svg +1 -0
  14282. docsforge/themes/material/templates/.icons/simple/theconversation.svg +1 -0
  14283. docsforge/themes/material/templates/.icons/simple/thefinals.svg +1 -0
  14284. docsforge/themes/material/templates/.icons/simple/theguardian.svg +1 -0
  14285. docsforge/themes/material/templates/.icons/simple/theirishtimes.svg +1 -0
  14286. docsforge/themes/material/templates/.icons/simple/themighty.svg +1 -0
  14287. docsforge/themes/material/templates/.icons/simple/themodelsresource.svg +1 -0
  14288. docsforge/themes/material/templates/.icons/simple/themoviedatabase.svg +1 -0
  14289. docsforge/themes/material/templates/.icons/simple/thenorthface.svg +1 -0
  14290. docsforge/themes/material/templates/.icons/simple/theodinproject.svg +1 -0
  14291. docsforge/themes/material/templates/.icons/simple/theplanetarysociety.svg +1 -0
  14292. docsforge/themes/material/templates/.icons/simple/theregister.svg +1 -0
  14293. docsforge/themes/material/templates/.icons/simple/thesoundsresource.svg +1 -0
  14294. docsforge/themes/material/templates/.icons/simple/thespritersresource.svg +1 -0
  14295. docsforge/themes/material/templates/.icons/simple/thestorygraph.svg +1 -0
  14296. docsforge/themes/material/templates/.icons/simple/thewashingtonpost.svg +1 -0
  14297. docsforge/themes/material/templates/.icons/simple/theweatherchannel.svg +1 -0
  14298. docsforge/themes/material/templates/.icons/simple/thingiverse.svg +1 -0
  14299. docsforge/themes/material/templates/.icons/simple/thinkpad.svg +1 -0
  14300. docsforge/themes/material/templates/.icons/simple/thirdweb.svg +1 -0
  14301. docsforge/themes/material/templates/.icons/simple/threadless.svg +1 -0
  14302. docsforge/themes/material/templates/.icons/simple/threads.svg +1 -0
  14303. docsforge/themes/material/templates/.icons/simple/threedotjs.svg +1 -0
  14304. docsforge/themes/material/templates/.icons/simple/threema.svg +1 -0
  14305. docsforge/themes/material/templates/.icons/simple/thumbtack.svg +1 -0
  14306. docsforge/themes/material/templates/.icons/simple/thunderbird.svg +1 -0
  14307. docsforge/themes/material/templates/.icons/simple/thunderstore.svg +1 -0
  14308. docsforge/themes/material/templates/.icons/simple/thurgauerkantonalbank.svg +1 -0
  14309. docsforge/themes/material/templates/.icons/simple/thymeleaf.svg +1 -0
  14310. docsforge/themes/material/templates/.icons/simple/ticketmaster.svg +1 -0
  14311. docsforge/themes/material/templates/.icons/simple/ticktick.svg +1 -0
  14312. docsforge/themes/material/templates/.icons/simple/tidal.svg +1 -0
  14313. docsforge/themes/material/templates/.icons/simple/tiddlywiki.svg +1 -0
  14314. docsforge/themes/material/templates/.icons/simple/tide.svg +1 -0
  14315. docsforge/themes/material/templates/.icons/simple/tidyverse.svg +1 -0
  14316. docsforge/themes/material/templates/.icons/simple/tietoevry.svg +1 -0
  14317. docsforge/themes/material/templates/.icons/simple/tiktok.svg +1 -0
  14318. docsforge/themes/material/templates/.icons/simple/tildapublishing.svg +1 -0
  14319. docsforge/themes/material/templates/.icons/simple/tile.svg +1 -0
  14320. docsforge/themes/material/templates/.icons/simple/timescale.svg +1 -0
  14321. docsforge/themes/material/templates/.icons/simple/tina.svg +1 -0
  14322. docsforge/themes/material/templates/.icons/simple/tinder.svg +1 -0
  14323. docsforge/themes/material/templates/.icons/simple/tindie.svg +1 -0
  14324. docsforge/themes/material/templates/.icons/simple/tinkercad.svg +1 -0
  14325. docsforge/themes/material/templates/.icons/simple/tinygrad.svg +1 -0
  14326. docsforge/themes/material/templates/.icons/simple/tinyletter.svg +1 -0
  14327. docsforge/themes/material/templates/.icons/simple/tistory.svg +1 -0
  14328. docsforge/themes/material/templates/.icons/simple/tldraw.svg +1 -0
  14329. docsforge/themes/material/templates/.icons/simple/tmux.svg +1 -0
  14330. docsforge/themes/material/templates/.icons/simple/todoist.svg +1 -0
  14331. docsforge/themes/material/templates/.icons/simple/toggl.svg +1 -0
  14332. docsforge/themes/material/templates/.icons/simple/toggltrack.svg +1 -0
  14333. docsforge/themes/material/templates/.icons/simple/tokio.svg +1 -0
  14334. docsforge/themes/material/templates/.icons/simple/tokyometro.svg +1 -0
  14335. docsforge/themes/material/templates/.icons/simple/toll.svg +1 -0
  14336. docsforge/themes/material/templates/.icons/simple/toml.svg +1 -0
  14337. docsforge/themes/material/templates/.icons/simple/tomorrowland.svg +1 -0
  14338. docsforge/themes/material/templates/.icons/simple/tomtom.svg +1 -0
  14339. docsforge/themes/material/templates/.icons/simple/ton.svg +1 -0
  14340. docsforge/themes/material/templates/.icons/simple/topcoder.svg +1 -0
  14341. docsforge/themes/material/templates/.icons/simple/topdotgg.svg +1 -0
  14342. docsforge/themes/material/templates/.icons/simple/toptal.svg +1 -0
  14343. docsforge/themes/material/templates/.icons/simple/torbrowser.svg +1 -0
  14344. docsforge/themes/material/templates/.icons/simple/torizon.svg +1 -0
  14345. docsforge/themes/material/templates/.icons/simple/torproject.svg +1 -0
  14346. docsforge/themes/material/templates/.icons/simple/toshiba.svg +1 -0
  14347. docsforge/themes/material/templates/.icons/simple/totvs.svg +1 -0
  14348. docsforge/themes/material/templates/.icons/simple/tourbox.svg +1 -0
  14349. docsforge/themes/material/templates/.icons/simple/tower.svg +1 -0
  14350. docsforge/themes/material/templates/.icons/simple/toyota.svg +1 -0
  14351. docsforge/themes/material/templates/.icons/simple/tplink.svg +1 -0
  14352. docsforge/themes/material/templates/.icons/simple/tqdm.svg +1 -0
  14353. docsforge/themes/material/templates/.icons/simple/traccar.svg +1 -0
  14354. docsforge/themes/material/templates/.icons/simple/tradingview.svg +1 -0
  14355. docsforge/themes/material/templates/.icons/simple/traefikmesh.svg +1 -0
  14356. docsforge/themes/material/templates/.icons/simple/traefikproxy.svg +1 -0
  14357. docsforge/themes/material/templates/.icons/simple/trailforks.svg +1 -0
  14358. docsforge/themes/material/templates/.icons/simple/trainerroad.svg +1 -0
  14359. docsforge/themes/material/templates/.icons/simple/trakt.svg +1 -0
  14360. docsforge/themes/material/templates/.icons/simple/transifex.svg +1 -0
  14361. docsforge/themes/material/templates/.icons/simple/transmission.svg +1 -0
  14362. docsforge/themes/material/templates/.icons/simple/transportforireland.svg +1 -0
  14363. docsforge/themes/material/templates/.icons/simple/transportforlondon.svg +1 -0
  14364. docsforge/themes/material/templates/.icons/simple/travisci.svg +1 -0
  14365. docsforge/themes/material/templates/.icons/simple/treehouse.svg +1 -0
  14366. docsforge/themes/material/templates/.icons/simple/trello.svg +1 -0
  14367. docsforge/themes/material/templates/.icons/simple/trendmicro.svg +1 -0
  14368. docsforge/themes/material/templates/.icons/simple/tresorit.svg +1 -0
  14369. docsforge/themes/material/templates/.icons/simple/treyarch.svg +1 -0
  14370. docsforge/themes/material/templates/.icons/simple/tricentis.svg +1 -0
  14371. docsforge/themes/material/templates/.icons/simple/trilium.svg +1 -0
  14372. docsforge/themes/material/templates/.icons/simple/triller.svg +1 -0
  14373. docsforge/themes/material/templates/.icons/simple/trillertv.svg +1 -0
  14374. docsforge/themes/material/templates/.icons/simple/trimble.svg +1 -0
  14375. docsforge/themes/material/templates/.icons/simple/trino.svg +1 -0
  14376. docsforge/themes/material/templates/.icons/simple/tripadvisor.svg +1 -0
  14377. docsforge/themes/material/templates/.icons/simple/tripdotcom.svg +1 -0
  14378. docsforge/themes/material/templates/.icons/simple/trivago.svg +1 -0
  14379. docsforge/themes/material/templates/.icons/simple/trivy.svg +1 -0
  14380. docsforge/themes/material/templates/.icons/simple/trove.svg +1 -0
  14381. docsforge/themes/material/templates/.icons/simple/trpc.svg +1 -0
  14382. docsforge/themes/material/templates/.icons/simple/truenas.svg +1 -0
  14383. docsforge/themes/material/templates/.icons/simple/trueup.svg +1 -0
  14384. docsforge/themes/material/templates/.icons/simple/trulia.svg +1 -0
  14385. docsforge/themes/material/templates/.icons/simple/trustedshops.svg +1 -0
  14386. docsforge/themes/material/templates/.icons/simple/trustpilot.svg +1 -0
  14387. docsforge/themes/material/templates/.icons/simple/tryhackme.svg +1 -0
  14388. docsforge/themes/material/templates/.icons/simple/tryitonline.svg +1 -0
  14389. docsforge/themes/material/templates/.icons/simple/tsnode.svg +1 -0
  14390. docsforge/themes/material/templates/.icons/simple/tubi.svg +1 -0
  14391. docsforge/themes/material/templates/.icons/simple/tui.svg +1 -0
  14392. docsforge/themes/material/templates/.icons/simple/tumblr.svg +1 -0
  14393. docsforge/themes/material/templates/.icons/simple/turbo.svg +1 -0
  14394. docsforge/themes/material/templates/.icons/simple/turborepo.svg +1 -0
  14395. docsforge/themes/material/templates/.icons/simple/turbosquid.svg +1 -0
  14396. docsforge/themes/material/templates/.icons/simple/turkishairlines.svg +1 -0
  14397. docsforge/themes/material/templates/.icons/simple/turso.svg +1 -0
  14398. docsforge/themes/material/templates/.icons/simple/tuta.svg +1 -0
  14399. docsforge/themes/material/templates/.icons/simple/tuxedocomputers.svg +1 -0
  14400. docsforge/themes/material/templates/.icons/simple/tv4play.svg +1 -0
  14401. docsforge/themes/material/templates/.icons/simple/tvtime.svg +1 -0
  14402. docsforge/themes/material/templates/.icons/simple/twenty.svg +1 -0
  14403. docsforge/themes/material/templates/.icons/simple/twinkly.svg +1 -0
  14404. docsforge/themes/material/templates/.icons/simple/twinmotion.svg +1 -0
  14405. docsforge/themes/material/templates/.icons/simple/twitch.svg +1 -0
  14406. docsforge/themes/material/templates/.icons/simple/typeform.svg +1 -0
  14407. docsforge/themes/material/templates/.icons/simple/typeorm.svg +1 -0
  14408. docsforge/themes/material/templates/.icons/simple/typer.svg +1 -0
  14409. docsforge/themes/material/templates/.icons/simple/typescript.svg +1 -0
  14410. docsforge/themes/material/templates/.icons/simple/typo3.svg +1 -0
  14411. docsforge/themes/material/templates/.icons/simple/typst.svg +1 -0
  14412. docsforge/themes/material/templates/.icons/simple/uber.svg +1 -0
  14413. docsforge/themes/material/templates/.icons/simple/ubereats.svg +1 -0
  14414. docsforge/themes/material/templates/.icons/simple/ubiquiti.svg +1 -0
  14415. docsforge/themes/material/templates/.icons/simple/ubisoft.svg +1 -0
  14416. docsforge/themes/material/templates/.icons/simple/ublockorigin.svg +1 -0
  14417. docsforge/themes/material/templates/.icons/simple/ubuntu.svg +1 -0
  14418. docsforge/themes/material/templates/.icons/simple/ubuntumate.svg +1 -0
  14419. docsforge/themes/material/templates/.icons/simple/udacity.svg +1 -0
  14420. docsforge/themes/material/templates/.icons/simple/udemy.svg +1 -0
  14421. docsforge/themes/material/templates/.icons/simple/udotsdotnews.svg +1 -0
  14422. docsforge/themes/material/templates/.icons/simple/ufc.svg +1 -0
  14423. docsforge/themes/material/templates/.icons/simple/uikit.svg +1 -0
  14424. docsforge/themes/material/templates/.icons/simple/uipath.svg +1 -0
  14425. docsforge/themes/material/templates/.icons/simple/ukca.svg +1 -0
  14426. docsforge/themes/material/templates/.icons/simple/ultralytics.svg +1 -0
  14427. docsforge/themes/material/templates/.icons/simple/ulule.svg +1 -0
  14428. docsforge/themes/material/templates/.icons/simple/umami.svg +1 -0
  14429. docsforge/themes/material/templates/.icons/simple/umbraco.svg +1 -0
  14430. docsforge/themes/material/templates/.icons/simple/umbrel.svg +1 -0
  14431. docsforge/themes/material/templates/.icons/simple/uml.svg +1 -0
  14432. docsforge/themes/material/templates/.icons/simple/unacademy.svg +1 -0
  14433. docsforge/themes/material/templates/.icons/simple/underarmour.svg +1 -0
  14434. docsforge/themes/material/templates/.icons/simple/underscoredotjs.svg +1 -0
  14435. docsforge/themes/material/templates/.icons/simple/undertale.svg +1 -0
  14436. docsforge/themes/material/templates/.icons/simple/unicode.svg +1 -0
  14437. docsforge/themes/material/templates/.icons/simple/unilever.svg +1 -0
  14438. docsforge/themes/material/templates/.icons/simple/uniqlo.svg +1 -0
  14439. docsforge/themes/material/templates/.icons/simple/uniqlo_ja.svg +1 -0
  14440. docsforge/themes/material/templates/.icons/simple/unitedairlines.svg +1 -0
  14441. docsforge/themes/material/templates/.icons/simple/unitednations.svg +1 -0
  14442. docsforge/themes/material/templates/.icons/simple/unity.svg +1 -0
  14443. docsforge/themes/material/templates/.icons/simple/unjs.svg +1 -0
  14444. docsforge/themes/material/templates/.icons/simple/unlicense.svg +1 -0
  14445. docsforge/themes/material/templates/.icons/simple/unocss.svg +1 -0
  14446. docsforge/themes/material/templates/.icons/simple/unpkg.svg +1 -0
  14447. docsforge/themes/material/templates/.icons/simple/unraid.svg +1 -0
  14448. docsforge/themes/material/templates/.icons/simple/unrealengine.svg +1 -0
  14449. docsforge/themes/material/templates/.icons/simple/unsplash.svg +1 -0
  14450. docsforge/themes/material/templates/.icons/simple/unstop.svg +1 -0
  14451. docsforge/themes/material/templates/.icons/simple/untappd.svg +1 -0
  14452. docsforge/themes/material/templates/.icons/simple/upcloud.svg +1 -0
  14453. docsforge/themes/material/templates/.icons/simple/uphold.svg +1 -0
  14454. docsforge/themes/material/templates/.icons/simple/uplabs.svg +1 -0
  14455. docsforge/themes/material/templates/.icons/simple/upptime.svg +1 -0
  14456. docsforge/themes/material/templates/.icons/simple/ups.svg +1 -0
  14457. docsforge/themes/material/templates/.icons/simple/upstash.svg +1 -0
  14458. docsforge/themes/material/templates/.icons/simple/uptimekuma.svg +1 -0
  14459. docsforge/themes/material/templates/.icons/simple/upwork.svg +1 -0
  14460. docsforge/themes/material/templates/.icons/simple/uservoice.svg +1 -0
  14461. docsforge/themes/material/templates/.icons/simple/usps.svg +1 -0
  14462. docsforge/themes/material/templates/.icons/simple/utorrent.svg +1 -0
  14463. docsforge/themes/material/templates/.icons/simple/uv.svg +1 -0
  14464. docsforge/themes/material/templates/.icons/simple/v.svg +1 -0
  14465. docsforge/themes/material/templates/.icons/simple/v0.svg +1 -0
  14466. docsforge/themes/material/templates/.icons/simple/v2ex.svg +1 -0
  14467. docsforge/themes/material/templates/.icons/simple/v8.svg +1 -0
  14468. docsforge/themes/material/templates/.icons/simple/vaadin.svg +1 -0
  14469. docsforge/themes/material/templates/.icons/simple/vagrant.svg +1 -0
  14470. docsforge/themes/material/templates/.icons/simple/vala.svg +1 -0
  14471. docsforge/themes/material/templates/.icons/simple/valorant.svg +1 -0
  14472. docsforge/themes/material/templates/.icons/simple/valve.svg +1 -0
  14473. docsforge/themes/material/templates/.icons/simple/vanillaextract.svg +1 -0
  14474. docsforge/themes/material/templates/.icons/simple/vapor.svg +1 -0
  14475. docsforge/themes/material/templates/.icons/simple/vault.svg +1 -0
  14476. docsforge/themes/material/templates/.icons/simple/vaultwarden.svg +1 -0
  14477. docsforge/themes/material/templates/.icons/simple/vauxhall.svg +1 -0
  14478. docsforge/themes/material/templates/.icons/simple/vbulletin.svg +1 -0
  14479. docsforge/themes/material/templates/.icons/simple/vectary.svg +1 -0
  14480. docsforge/themes/material/templates/.icons/simple/vectorlogozone.svg +1 -0
  14481. docsforge/themes/material/templates/.icons/simple/vectorworks.svg +1 -0
  14482. docsforge/themes/material/templates/.icons/simple/veeam.svg +1 -0
  14483. docsforge/themes/material/templates/.icons/simple/veed.svg +1 -0
  14484. docsforge/themes/material/templates/.icons/simple/veepee.svg +1 -0
  14485. docsforge/themes/material/templates/.icons/simple/vega.svg +1 -0
  14486. docsforge/themes/material/templates/.icons/simple/vegas.svg +1 -0
  14487. docsforge/themes/material/templates/.icons/simple/velocity.svg +1 -0
  14488. docsforge/themes/material/templates/.icons/simple/velog.svg +1 -0
  14489. docsforge/themes/material/templates/.icons/simple/vencord.svg +1 -0
  14490. docsforge/themes/material/templates/.icons/simple/venmo.svg +1 -0
  14491. docsforge/themes/material/templates/.icons/simple/vercel.svg +1 -0
  14492. docsforge/themes/material/templates/.icons/simple/verdaccio.svg +1 -0
  14493. docsforge/themes/material/templates/.icons/simple/veritas.svg +1 -0
  14494. docsforge/themes/material/templates/.icons/simple/verizon.svg +1 -0
  14495. docsforge/themes/material/templates/.icons/simple/vespa.svg +1 -0
  14496. docsforge/themes/material/templates/.icons/simple/vestel.svg +1 -0
  14497. docsforge/themes/material/templates/.icons/simple/vexxhost.svg +1 -0
  14498. docsforge/themes/material/templates/.icons/simple/vfairs.svg +1 -0
  14499. docsforge/themes/material/templates/.icons/simple/viadeo.svg +1 -0
  14500. docsforge/themes/material/templates/.icons/simple/viaplay.svg +1 -0
  14501. docsforge/themes/material/templates/.icons/simple/viber.svg +1 -0
  14502. docsforge/themes/material/templates/.icons/simple/viblo.svg +1 -0
  14503. docsforge/themes/material/templates/.icons/simple/victoriametrics.svg +1 -0
  14504. docsforge/themes/material/templates/.icons/simple/victronenergy.svg +1 -0
  14505. docsforge/themes/material/templates/.icons/simple/vikunja.svg +1 -0
  14506. docsforge/themes/material/templates/.icons/simple/vim.svg +1 -0
  14507. docsforge/themes/material/templates/.icons/simple/vimeo.svg +1 -0
  14508. docsforge/themes/material/templates/.icons/simple/vimeolivestream.svg +1 -0
  14509. docsforge/themes/material/templates/.icons/simple/vinted.svg +1 -0
  14510. docsforge/themes/material/templates/.icons/simple/virgin.svg +1 -0
  14511. docsforge/themes/material/templates/.icons/simple/virginatlantic.svg +1 -0
  14512. docsforge/themes/material/templates/.icons/simple/virginmedia.svg +1 -0
  14513. docsforge/themes/material/templates/.icons/simple/virtualbox.svg +1 -0
  14514. docsforge/themes/material/templates/.icons/simple/virustotal.svg +1 -0
  14515. docsforge/themes/material/templates/.icons/simple/visa.svg +1 -0
  14516. docsforge/themes/material/templates/.icons/simple/visualparadigm.svg +1 -0
  14517. docsforge/themes/material/templates/.icons/simple/visx.svg +1 -0
  14518. docsforge/themes/material/templates/.icons/simple/vite.svg +1 -0
  14519. docsforge/themes/material/templates/.icons/simple/vitepress.svg +1 -0
  14520. docsforge/themes/material/templates/.icons/simple/vitess.svg +1 -0
  14521. docsforge/themes/material/templates/.icons/simple/vitest.svg +1 -0
  14522. docsforge/themes/material/templates/.icons/simple/vivaldi.svg +1 -0
  14523. docsforge/themes/material/templates/.icons/simple/vivawallet.svg +1 -0
  14524. docsforge/themes/material/templates/.icons/simple/vivino.svg +1 -0
  14525. docsforge/themes/material/templates/.icons/simple/vivint.svg +1 -0
  14526. docsforge/themes/material/templates/.icons/simple/vivo.svg +1 -0
  14527. docsforge/themes/material/templates/.icons/simple/vk.svg +1 -0
  14528. docsforge/themes/material/templates/.icons/simple/vlcmediaplayer.svg +1 -0
  14529. docsforge/themes/material/templates/.icons/simple/vmware.svg +1 -0
  14530. docsforge/themes/material/templates/.icons/simple/vodafone.svg +1 -0
  14531. docsforge/themes/material/templates/.icons/simple/voelkner.svg +1 -0
  14532. docsforge/themes/material/templates/.icons/simple/voidlinux.svg +1 -0
  14533. docsforge/themes/material/templates/.icons/simple/voipdotms.svg +1 -0
  14534. docsforge/themes/material/templates/.icons/simple/volkswagen.svg +1 -0
  14535. docsforge/themes/material/templates/.icons/simple/volvo.svg +1 -0
  14536. docsforge/themes/material/templates/.icons/simple/vonage.svg +1 -0
  14537. docsforge/themes/material/templates/.icons/simple/vorondesign.svg +1 -0
  14538. docsforge/themes/material/templates/.icons/simple/vowpalwabbit.svg +1 -0
  14539. docsforge/themes/material/templates/.icons/simple/vox.svg +1 -0
  14540. docsforge/themes/material/templates/.icons/simple/vrchat.svg +1 -0
  14541. docsforge/themes/material/templates/.icons/simple/vsco.svg +1 -0
  14542. docsforge/themes/material/templates/.icons/simple/vscodium.svg +1 -0
  14543. docsforge/themes/material/templates/.icons/simple/vtex.svg +1 -0
  14544. docsforge/themes/material/templates/.icons/simple/vuedotjs.svg +1 -0
  14545. docsforge/themes/material/templates/.icons/simple/vuetify.svg +1 -0
  14546. docsforge/themes/material/templates/.icons/simple/vueuse.svg +1 -0
  14547. docsforge/themes/material/templates/.icons/simple/vulkan.svg +1 -0
  14548. docsforge/themes/material/templates/.icons/simple/vultr.svg +1 -0
  14549. docsforge/themes/material/templates/.icons/simple/vyond.svg +1 -0
  14550. docsforge/themes/material/templates/.icons/simple/w3schools.svg +1 -0
  14551. docsforge/themes/material/templates/.icons/simple/wacom.svg +1 -0
  14552. docsforge/themes/material/templates/.icons/simple/wagmi.svg +1 -0
  14553. docsforge/themes/material/templates/.icons/simple/wagtail.svg +1 -0
  14554. docsforge/themes/material/templates/.icons/simple/wails.svg +1 -0
  14555. docsforge/themes/material/templates/.icons/simple/wakatime.svg +1 -0
  14556. docsforge/themes/material/templates/.icons/simple/walkman.svg +1 -0
  14557. docsforge/themes/material/templates/.icons/simple/wallabag.svg +1 -0
  14558. docsforge/themes/material/templates/.icons/simple/walletconnect.svg +1 -0
  14559. docsforge/themes/material/templates/.icons/simple/wantedly.svg +1 -0
  14560. docsforge/themes/material/templates/.icons/simple/wappalyzer.svg +1 -0
  14561. docsforge/themes/material/templates/.icons/simple/warp.svg +1 -0
  14562. docsforge/themes/material/templates/.icons/simple/wasabi.svg +1 -0
  14563. docsforge/themes/material/templates/.icons/simple/wasmcloud.svg +1 -0
  14564. docsforge/themes/material/templates/.icons/simple/wasmer.svg +1 -0
  14565. docsforge/themes/material/templates/.icons/simple/watchtower.svg +1 -0
  14566. docsforge/themes/material/templates/.icons/simple/wattpad.svg +1 -0
  14567. docsforge/themes/material/templates/.icons/simple/wayland.svg +1 -0
  14568. docsforge/themes/material/templates/.icons/simple/waze.svg +1 -0
  14569. docsforge/themes/material/templates/.icons/simple/wazirx.svg +1 -0
  14570. docsforge/themes/material/templates/.icons/simple/wearos.svg +1 -0
  14571. docsforge/themes/material/templates/.icons/simple/weasyl.svg +1 -0
  14572. docsforge/themes/material/templates/.icons/simple/web3dotjs.svg +1 -0
  14573. docsforge/themes/material/templates/.icons/simple/webassembly.svg +1 -0
  14574. docsforge/themes/material/templates/.icons/simple/webauthn.svg +1 -0
  14575. docsforge/themes/material/templates/.icons/simple/webawesome.svg +1 -0
  14576. docsforge/themes/material/templates/.icons/simple/webcomponentsdotorg.svg +1 -0
  14577. docsforge/themes/material/templates/.icons/simple/webdotde.svg +1 -0
  14578. docsforge/themes/material/templates/.icons/simple/webdriverio.svg +1 -0
  14579. docsforge/themes/material/templates/.icons/simple/webex.svg +1 -0
  14580. docsforge/themes/material/templates/.icons/simple/webflow.svg +1 -0
  14581. docsforge/themes/material/templates/.icons/simple/webgl.svg +1 -0
  14582. docsforge/themes/material/templates/.icons/simple/webgpu.svg +1 -0
  14583. docsforge/themes/material/templates/.icons/simple/weblate.svg +1 -0
  14584. docsforge/themes/material/templates/.icons/simple/webmin.svg +1 -0
  14585. docsforge/themes/material/templates/.icons/simple/webmoney.svg +1 -0
  14586. docsforge/themes/material/templates/.icons/simple/webpack.svg +1 -0
  14587. docsforge/themes/material/templates/.icons/simple/webrtc.svg +1 -0
  14588. docsforge/themes/material/templates/.icons/simple/webstorm.svg +1 -0
  14589. docsforge/themes/material/templates/.icons/simple/webtoon.svg +1 -0
  14590. docsforge/themes/material/templates/.icons/simple/webtrees.svg +1 -0
  14591. docsforge/themes/material/templates/.icons/simple/wechat.svg +1 -0
  14592. docsforge/themes/material/templates/.icons/simple/wegame.svg +1 -0
  14593. docsforge/themes/material/templates/.icons/simple/weightsandbiases.svg +1 -0
  14594. docsforge/themes/material/templates/.icons/simple/welcometothejungle.svg +1 -0
  14595. docsforge/themes/material/templates/.icons/simple/wellfound.svg +1 -0
  14596. docsforge/themes/material/templates/.icons/simple/wellsfargo.svg +1 -0
  14597. docsforge/themes/material/templates/.icons/simple/wemo.svg +1 -0
  14598. docsforge/themes/material/templates/.icons/simple/weread.svg +1 -0
  14599. docsforge/themes/material/templates/.icons/simple/westernunion.svg +1 -0
  14600. docsforge/themes/material/templates/.icons/simple/wetransfer.svg +1 -0
  14601. docsforge/themes/material/templates/.icons/simple/wezterm.svg +1 -0
  14602. docsforge/themes/material/templates/.icons/simple/wgpu.svg +1 -0
  14603. docsforge/themes/material/templates/.icons/simple/what3words.svg +1 -0
  14604. docsforge/themes/material/templates/.icons/simple/whatsapp.svg +1 -0
  14605. docsforge/themes/material/templates/.icons/simple/wheniwork.svg +1 -0
  14606. docsforge/themes/material/templates/.icons/simple/wikibooks.svg +1 -0
  14607. docsforge/themes/material/templates/.icons/simple/wikidata.svg +1 -0
  14608. docsforge/themes/material/templates/.icons/simple/wikidotgg.svg +1 -0
  14609. docsforge/themes/material/templates/.icons/simple/wikidotjs.svg +1 -0
  14610. docsforge/themes/material/templates/.icons/simple/wikimediacommons.svg +1 -0
  14611. docsforge/themes/material/templates/.icons/simple/wikimediafoundation.svg +1 -0
  14612. docsforge/themes/material/templates/.icons/simple/wikipedia.svg +1 -0
  14613. docsforge/themes/material/templates/.icons/simple/wikiquote.svg +1 -0
  14614. docsforge/themes/material/templates/.icons/simple/wikisource.svg +1 -0
  14615. docsforge/themes/material/templates/.icons/simple/wikiversity.svg +1 -0
  14616. docsforge/themes/material/templates/.icons/simple/wikivoyage.svg +1 -0
  14617. docsforge/themes/material/templates/.icons/simple/winamp.svg +1 -0
  14618. docsforge/themes/material/templates/.icons/simple/windsurf.svg +1 -0
  14619. docsforge/themes/material/templates/.icons/simple/wine.svg +1 -0
  14620. docsforge/themes/material/templates/.icons/simple/wipro.svg +1 -0
  14621. docsforge/themes/material/templates/.icons/simple/wire.svg +1 -0
  14622. docsforge/themes/material/templates/.icons/simple/wireguard.svg +1 -0
  14623. docsforge/themes/material/templates/.icons/simple/wireshark.svg +1 -0
  14624. docsforge/themes/material/templates/.icons/simple/wise.svg +1 -0
  14625. docsforge/themes/material/templates/.icons/simple/wish.svg +1 -0
  14626. docsforge/themes/material/templates/.icons/simple/wistia.svg +1 -0
  14627. docsforge/themes/material/templates/.icons/simple/wix.svg +1 -0
  14628. docsforge/themes/material/templates/.icons/simple/wizzair.svg +1 -0
  14629. docsforge/themes/material/templates/.icons/simple/wolfram.svg +1 -0
  14630. docsforge/themes/material/templates/.icons/simple/wolframlanguage.svg +1 -0
  14631. docsforge/themes/material/templates/.icons/simple/wolframmathematica.svg +1 -0
  14632. docsforge/themes/material/templates/.icons/simple/wondershare.svg +1 -0
  14633. docsforge/themes/material/templates/.icons/simple/wondersharefilmora.svg +1 -0
  14634. docsforge/themes/material/templates/.icons/simple/woo.svg +1 -0
  14635. docsforge/themes/material/templates/.icons/simple/woocommerce.svg +1 -0
  14636. docsforge/themes/material/templates/.icons/simple/wordpress.svg +1 -0
  14637. docsforge/themes/material/templates/.icons/simple/workplace.svg +1 -0
  14638. docsforge/themes/material/templates/.icons/simple/worldhealthorganization.svg +1 -0
  14639. docsforge/themes/material/templates/.icons/simple/wpengine.svg +1 -0
  14640. docsforge/themes/material/templates/.icons/simple/wpexplorer.svg +1 -0
  14641. docsforge/themes/material/templates/.icons/simple/wprocket.svg +1 -0
  14642. docsforge/themes/material/templates/.icons/simple/writedotas.svg +1 -0
  14643. docsforge/themes/material/templates/.icons/simple/wwe.svg +1 -0
  14644. docsforge/themes/material/templates/.icons/simple/wwise.svg +1 -0
  14645. docsforge/themes/material/templates/.icons/simple/wxt.svg +1 -0
  14646. docsforge/themes/material/templates/.icons/simple/wykop.svg +1 -0
  14647. docsforge/themes/material/templates/.icons/simple/wyze.svg +1 -0
  14648. docsforge/themes/material/templates/.icons/simple/x.svg +1 -0
  14649. docsforge/themes/material/templates/.icons/simple/xampp.svg +1 -0
  14650. docsforge/themes/material/templates/.icons/simple/xcode.svg +1 -0
  14651. docsforge/themes/material/templates/.icons/simple/xdadevelopers.svg +1 -0
  14652. docsforge/themes/material/templates/.icons/simple/xdotorg.svg +1 -0
  14653. docsforge/themes/material/templates/.icons/simple/xendit.svg +1 -0
  14654. docsforge/themes/material/templates/.icons/simple/xero.svg +1 -0
  14655. docsforge/themes/material/templates/.icons/simple/xfce.svg +1 -0
  14656. docsforge/themes/material/templates/.icons/simple/xiaohongshu.svg +1 -0
  14657. docsforge/themes/material/templates/.icons/simple/xiaomi.svg +1 -0
  14658. docsforge/themes/material/templates/.icons/simple/xing.svg +1 -0
  14659. docsforge/themes/material/templates/.icons/simple/xml.svg +1 -0
  14660. docsforge/themes/material/templates/.icons/simple/xmpp.svg +1 -0
  14661. docsforge/themes/material/templates/.icons/simple/xo.svg +1 -0
  14662. docsforge/themes/material/templates/.icons/simple/xrp.svg +1 -0
  14663. docsforge/themes/material/templates/.icons/simple/xsplit.svg +1 -0
  14664. docsforge/themes/material/templates/.icons/simple/xstate.svg +1 -0
  14665. docsforge/themes/material/templates/.icons/simple/xubuntu.svg +1 -0
  14666. docsforge/themes/material/templates/.icons/simple/xyflow.svg +1 -0
  14667. docsforge/themes/material/templates/.icons/simple/yaak.svg +1 -0
  14668. docsforge/themes/material/templates/.icons/simple/yabai.svg +1 -0
  14669. docsforge/themes/material/templates/.icons/simple/yale.svg +1 -0
  14670. docsforge/themes/material/templates/.icons/simple/yamahacorporation.svg +1 -0
  14671. docsforge/themes/material/templates/.icons/simple/yamahamotorcorporation.svg +1 -0
  14672. docsforge/themes/material/templates/.icons/simple/yaml.svg +1 -0
  14673. docsforge/themes/material/templates/.icons/simple/yandexcloud.svg +1 -0
  14674. docsforge/themes/material/templates/.icons/simple/yarn.svg +1 -0
  14675. docsforge/themes/material/templates/.icons/simple/ycombinator.svg +1 -0
  14676. docsforge/themes/material/templates/.icons/simple/yelp.svg +1 -0
  14677. docsforge/themes/material/templates/.icons/simple/yeti.svg +1 -0
  14678. docsforge/themes/material/templates/.icons/simple/yii.svg +1 -0
  14679. docsforge/themes/material/templates/.icons/simple/yoast.svg +1 -0
  14680. docsforge/themes/material/templates/.icons/simple/yolo.svg +1 -0
  14681. docsforge/themes/material/templates/.icons/simple/youhodler.svg +1 -0
  14682. docsforge/themes/material/templates/.icons/simple/youtube.svg +1 -0
  14683. docsforge/themes/material/templates/.icons/simple/youtubegaming.svg +1 -0
  14684. docsforge/themes/material/templates/.icons/simple/youtubekids.svg +1 -0
  14685. docsforge/themes/material/templates/.icons/simple/youtubemusic.svg +1 -0
  14686. docsforge/themes/material/templates/.icons/simple/youtubeshorts.svg +1 -0
  14687. docsforge/themes/material/templates/.icons/simple/youtubestudio.svg +1 -0
  14688. docsforge/themes/material/templates/.icons/simple/youtubetv.svg +1 -0
  14689. docsforge/themes/material/templates/.icons/simple/yr.svg +1 -0
  14690. docsforge/themes/material/templates/.icons/simple/yubico.svg +1 -0
  14691. docsforge/themes/material/templates/.icons/simple/yunohost.svg +1 -0
  14692. docsforge/themes/material/templates/.icons/simple/zabka.svg +1 -0
  14693. docsforge/themes/material/templates/.icons/simple/zaim.svg +1 -0
  14694. docsforge/themes/material/templates/.icons/simple/zalando.svg +1 -0
  14695. docsforge/themes/material/templates/.icons/simple/zalo.svg +1 -0
  14696. docsforge/themes/material/templates/.icons/simple/zap.svg +1 -0
  14697. docsforge/themes/material/templates/.icons/simple/zapier.svg +1 -0
  14698. docsforge/themes/material/templates/.icons/simple/zara.svg +1 -0
  14699. docsforge/themes/material/templates/.icons/simple/zazzle.svg +1 -0
  14700. docsforge/themes/material/templates/.icons/simple/zcash.svg +1 -0
  14701. docsforge/themes/material/templates/.icons/simple/zcool.svg +1 -0
  14702. docsforge/themes/material/templates/.icons/simple/zdf.svg +1 -0
  14703. docsforge/themes/material/templates/.icons/simple/zebpay.svg +1 -0
  14704. docsforge/themes/material/templates/.icons/simple/zebratechnologies.svg +1 -0
  14705. docsforge/themes/material/templates/.icons/simple/zedindustries.svg +1 -0
  14706. docsforge/themes/material/templates/.icons/simple/zelle.svg +1 -0
  14707. docsforge/themes/material/templates/.icons/simple/zenbrowser.svg +1 -0
  14708. docsforge/themes/material/templates/.icons/simple/zend.svg +1 -0
  14709. docsforge/themes/material/templates/.icons/simple/zendesk.svg +1 -0
  14710. docsforge/themes/material/templates/.icons/simple/zenn.svg +1 -0
  14711. docsforge/themes/material/templates/.icons/simple/zenodo.svg +1 -0
  14712. docsforge/themes/material/templates/.icons/simple/zensar.svg +1 -0
  14713. docsforge/themes/material/templates/.icons/simple/zerodha.svg +1 -0
  14714. docsforge/themes/material/templates/.icons/simple/zerotier.svg +1 -0
  14715. docsforge/themes/material/templates/.icons/simple/zettlr.svg +1 -0
  14716. docsforge/themes/material/templates/.icons/simple/zhihu.svg +1 -0
  14717. docsforge/themes/material/templates/.icons/simple/zig.svg +1 -0
  14718. docsforge/themes/material/templates/.icons/simple/zigbee.svg +1 -0
  14719. docsforge/themes/material/templates/.icons/simple/zigbee2mqtt.svg +1 -0
  14720. docsforge/themes/material/templates/.icons/simple/ziggo.svg +1 -0
  14721. docsforge/themes/material/templates/.icons/simple/zilch.svg +1 -0
  14722. docsforge/themes/material/templates/.icons/simple/zillow.svg +1 -0
  14723. docsforge/themes/material/templates/.icons/simple/zincsearch.svg +1 -0
  14724. docsforge/themes/material/templates/.icons/simple/zingat.svg +1 -0
  14725. docsforge/themes/material/templates/.icons/simple/zod.svg +1 -0
  14726. docsforge/themes/material/templates/.icons/simple/zoho.svg +1 -0
  14727. docsforge/themes/material/templates/.icons/simple/zoiper.svg +1 -0
  14728. docsforge/themes/material/templates/.icons/simple/zola.svg +1 -0
  14729. docsforge/themes/material/templates/.icons/simple/zomato.svg +1 -0
  14730. docsforge/themes/material/templates/.icons/simple/zoom.svg +1 -0
  14731. docsforge/themes/material/templates/.icons/simple/zorin.svg +1 -0
  14732. docsforge/themes/material/templates/.icons/simple/zotero.svg +1 -0
  14733. docsforge/themes/material/templates/.icons/simple/zsh.svg +1 -0
  14734. docsforge/themes/material/templates/.icons/simple/zulip.svg +1 -0
  14735. docsforge/themes/material/templates/.icons/simple/zyte.svg +1 -0
  14736. docsforge/themes/material/templates/404.html +7 -0
  14737. docsforge/themes/material/templates/__init__.py +70 -0
  14738. docsforge/themes/material/templates/assets/images/favicon.png +0 -0
  14739. docsforge/themes/material/templates/assets/javascripts/bundle.79ae519e.min.js +16 -0
  14740. docsforge/themes/material/templates/assets/javascripts/bundle.79ae519e.min.js.map +7 -0
  14741. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.ar.min.js +1 -0
  14742. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.da.min.js +18 -0
  14743. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.de.min.js +18 -0
  14744. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.du.min.js +18 -0
  14745. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.el.min.js +1 -0
  14746. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.es.min.js +18 -0
  14747. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.fi.min.js +18 -0
  14748. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.fr.min.js +18 -0
  14749. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.he.min.js +1 -0
  14750. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.hi.min.js +1 -0
  14751. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.hu.min.js +18 -0
  14752. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.hy.min.js +1 -0
  14753. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.it.min.js +18 -0
  14754. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.ja.min.js +1 -0
  14755. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.jp.min.js +1 -0
  14756. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.kn.min.js +1 -0
  14757. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.ko.min.js +1 -0
  14758. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.multi.min.js +1 -0
  14759. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.nl.min.js +18 -0
  14760. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.no.min.js +18 -0
  14761. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.pt.min.js +18 -0
  14762. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.ro.min.js +18 -0
  14763. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.ru.min.js +18 -0
  14764. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.sa.min.js +1 -0
  14765. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.stemmer.support.min.js +1 -0
  14766. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.sv.min.js +18 -0
  14767. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.ta.min.js +1 -0
  14768. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.te.min.js +1 -0
  14769. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.th.min.js +1 -0
  14770. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.tr.min.js +18 -0
  14771. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.vi.min.js +1 -0
  14772. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.zh.min.js +1 -0
  14773. docsforge/themes/material/templates/assets/javascripts/lunr/tinyseg.js +206 -0
  14774. docsforge/themes/material/templates/assets/javascripts/lunr/wordcut.js +6708 -0
  14775. docsforge/themes/material/templates/assets/javascripts/workers/search.2c215733.min.js +42 -0
  14776. docsforge/themes/material/templates/assets/javascripts/workers/search.2c215733.min.js.map +7 -0
  14777. docsforge/themes/material/templates/assets/stylesheets/main.484c7ddc.min.css +1 -0
  14778. docsforge/themes/material/templates/assets/stylesheets/main.484c7ddc.min.css.map +1 -0
  14779. docsforge/themes/material/templates/assets/stylesheets/palette.ab4e12ef.min.css +1 -0
  14780. docsforge/themes/material/templates/assets/stylesheets/palette.ab4e12ef.min.css.map +1 -0
  14781. docsforge/themes/material/templates/base.html +259 -0
  14782. docsforge/themes/material/templates/blog-post.html +138 -0
  14783. docsforge/themes/material/templates/blog.html +21 -0
  14784. docsforge/themes/material/templates/fragments/tags/default/listing.html +19 -0
  14785. docsforge/themes/material/templates/fragments/tags/default/tag.html +16 -0
  14786. docsforge/themes/material/templates/main.html +4 -0
  14787. docsforge/themes/material/templates/mkdocs_theme.yml +50 -0
  14788. docsforge/themes/material/templates/partials/actions.html +22 -0
  14789. docsforge/themes/material/templates/partials/alternate.html +22 -0
  14790. docsforge/themes/material/templates/partials/comments.html +3 -0
  14791. docsforge/themes/material/templates/partials/consent.html +71 -0
  14792. docsforge/themes/material/templates/partials/content.html +12 -0
  14793. docsforge/themes/material/templates/partials/copyright.html +16 -0
  14794. docsforge/themes/material/templates/partials/feedback.html +47 -0
  14795. docsforge/themes/material/templates/partials/footer.html +56 -0
  14796. docsforge/themes/material/templates/partials/header.html +69 -0
  14797. docsforge/themes/material/templates/partials/icons.html +52 -0
  14798. docsforge/themes/material/templates/partials/integrations/analytics/google.html +7 -0
  14799. docsforge/themes/material/templates/partials/integrations/analytics.html +14 -0
  14800. docsforge/themes/material/templates/partials/javascripts/announce.html +4 -0
  14801. docsforge/themes/material/templates/partials/javascripts/base.html +4 -0
  14802. docsforge/themes/material/templates/partials/javascripts/consent.html +4 -0
  14803. docsforge/themes/material/templates/partials/javascripts/content.html +7 -0
  14804. docsforge/themes/material/templates/partials/javascripts/outdated.html +4 -0
  14805. docsforge/themes/material/templates/partials/javascripts/palette.html +4 -0
  14806. docsforge/themes/material/templates/partials/language.html +6 -0
  14807. docsforge/themes/material/templates/partials/languages/af.html +56 -0
  14808. docsforge/themes/material/templates/partials/languages/ar.html +57 -0
  14809. docsforge/themes/material/templates/partials/languages/az.html +55 -0
  14810. docsforge/themes/material/templates/partials/languages/be.html +57 -0
  14811. docsforge/themes/material/templates/partials/languages/bg.html +56 -0
  14812. docsforge/themes/material/templates/partials/languages/bn.html +56 -0
  14813. docsforge/themes/material/templates/partials/languages/ca.html +55 -0
  14814. docsforge/themes/material/templates/partials/languages/cs.html +55 -0
  14815. docsforge/themes/material/templates/partials/languages/cy.html +55 -0
  14816. docsforge/themes/material/templates/partials/languages/da.html +56 -0
  14817. docsforge/themes/material/templates/partials/languages/de.html +57 -0
  14818. docsforge/themes/material/templates/partials/languages/el.html +55 -0
  14819. docsforge/themes/material/templates/partials/languages/en.html +60 -0
  14820. docsforge/themes/material/templates/partials/languages/eo.html +56 -0
  14821. docsforge/themes/material/templates/partials/languages/es.html +56 -0
  14822. docsforge/themes/material/templates/partials/languages/et.html +55 -0
  14823. docsforge/themes/material/templates/partials/languages/eu.html +55 -0
  14824. docsforge/themes/material/templates/partials/languages/fa.html +57 -0
  14825. docsforge/themes/material/templates/partials/languages/fi.html +56 -0
  14826. docsforge/themes/material/templates/partials/languages/fr.html +56 -0
  14827. docsforge/themes/material/templates/partials/languages/gl.html +56 -0
  14828. docsforge/themes/material/templates/partials/languages/he.html +57 -0
  14829. docsforge/themes/material/templates/partials/languages/hi.html +56 -0
  14830. docsforge/themes/material/templates/partials/languages/hr.html +55 -0
  14831. docsforge/themes/material/templates/partials/languages/hu.html +56 -0
  14832. docsforge/themes/material/templates/partials/languages/hy.html +56 -0
  14833. docsforge/themes/material/templates/partials/languages/id.html +56 -0
  14834. docsforge/themes/material/templates/partials/languages/is.html +55 -0
  14835. docsforge/themes/material/templates/partials/languages/it.html +56 -0
  14836. docsforge/themes/material/templates/partials/languages/ja.html +58 -0
  14837. docsforge/themes/material/templates/partials/languages/ka.html +48 -0
  14838. docsforge/themes/material/templates/partials/languages/kn.html +55 -0
  14839. docsforge/themes/material/templates/partials/languages/ko.html +56 -0
  14840. docsforge/themes/material/templates/partials/languages/ku-IQ.html +44 -0
  14841. docsforge/themes/material/templates/partials/languages/lb.html +56 -0
  14842. docsforge/themes/material/templates/partials/languages/lt.html +56 -0
  14843. docsforge/themes/material/templates/partials/languages/lv.html +55 -0
  14844. docsforge/themes/material/templates/partials/languages/mk.html +56 -0
  14845. docsforge/themes/material/templates/partials/languages/mn.html +55 -0
  14846. docsforge/themes/material/templates/partials/languages/ms.html +55 -0
  14847. docsforge/themes/material/templates/partials/languages/my.html +56 -0
  14848. docsforge/themes/material/templates/partials/languages/nb.html +56 -0
  14849. docsforge/themes/material/templates/partials/languages/nl.html +56 -0
  14850. docsforge/themes/material/templates/partials/languages/nn.html +56 -0
  14851. docsforge/themes/material/templates/partials/languages/pl.html +56 -0
  14852. docsforge/themes/material/templates/partials/languages/pt-BR.html +56 -0
  14853. docsforge/themes/material/templates/partials/languages/pt.html +56 -0
  14854. docsforge/themes/material/templates/partials/languages/ro.html +56 -0
  14855. docsforge/themes/material/templates/partials/languages/ru.html +56 -0
  14856. docsforge/themes/material/templates/partials/languages/sa.html +55 -0
  14857. docsforge/themes/material/templates/partials/languages/sh.html +55 -0
  14858. docsforge/themes/material/templates/partials/languages/si.html +31 -0
  14859. docsforge/themes/material/templates/partials/languages/sk.html +55 -0
  14860. docsforge/themes/material/templates/partials/languages/sl.html +56 -0
  14861. docsforge/themes/material/templates/partials/languages/sq.html +56 -0
  14862. docsforge/themes/material/templates/partials/languages/sr.html +55 -0
  14863. docsforge/themes/material/templates/partials/languages/sv.html +56 -0
  14864. docsforge/themes/material/templates/partials/languages/ta.html +56 -0
  14865. docsforge/themes/material/templates/partials/languages/te.html +55 -0
  14866. docsforge/themes/material/templates/partials/languages/th.html +56 -0
  14867. docsforge/themes/material/templates/partials/languages/tl.html +52 -0
  14868. docsforge/themes/material/templates/partials/languages/tr.html +56 -0
  14869. docsforge/themes/material/templates/partials/languages/uk.html +55 -0
  14870. docsforge/themes/material/templates/partials/languages/ur.html +57 -0
  14871. docsforge/themes/material/templates/partials/languages/uz.html +56 -0
  14872. docsforge/themes/material/templates/partials/languages/vi.html +56 -0
  14873. docsforge/themes/material/templates/partials/languages/zh-Hant.html +57 -0
  14874. docsforge/themes/material/templates/partials/languages/zh-TW.html +57 -0
  14875. docsforge/themes/material/templates/partials/languages/zh.html +57 -0
  14876. docsforge/themes/material/templates/partials/logo.html +9 -0
  14877. docsforge/themes/material/templates/partials/nav-item.html +170 -0
  14878. docsforge/themes/material/templates/partials/nav.html +30 -0
  14879. docsforge/themes/material/templates/partials/pagination.html +20 -0
  14880. docsforge/themes/material/templates/partials/palette.html +16 -0
  14881. docsforge/themes/material/templates/partials/path-item.html +29 -0
  14882. docsforge/themes/material/templates/partials/path.html +23 -0
  14883. docsforge/themes/material/templates/partials/post.html +68 -0
  14884. docsforge/themes/material/templates/partials/progress.html +4 -0
  14885. docsforge/themes/material/templates/partials/search.html +42 -0
  14886. docsforge/themes/material/templates/partials/social.html +27 -0
  14887. docsforge/themes/material/templates/partials/source-file.html +110 -0
  14888. docsforge/themes/material/templates/partials/source.html +12 -0
  14889. docsforge/themes/material/templates/partials/tabs-item.html +37 -0
  14890. docsforge/themes/material/templates/partials/tabs.html +13 -0
  14891. docsforge/themes/material/templates/partials/tags.html +31 -0
  14892. docsforge/themes/material/templates/partials/toc-item.html +25 -0
  14893. docsforge/themes/material/templates/partials/toc.html +25 -0
  14894. docsforge/themes/material/templates/partials/top.html +8 -0
  14895. docsforge/themes/material/templates/redirect.html +16 -0
  14896. docsforge/utilities/__init__.py +30 -0
  14897. docsforge/utilities/filter/__init__.py +135 -0
  14898. docsforge/utilities/filter/config.py +58 -0
  14899. docsforge/utils/__init__.py +403 -0
  14900. docsforge/utils/babel_stub.py +29 -0
  14901. docsforge/utils/cache.py +75 -0
  14902. docsforge/utils/filters.py +1 -0
  14903. docsforge/utils/meta.py +102 -0
  14904. docsforge/utils/rendering.py +104 -0
  14905. docsforge/utils/templates.py +57 -0
  14906. docsforge/utils/yaml.py +165 -0
  14907. docsforge-9.7.6.dist-info/METADATA +203 -0
  14908. docsforge-9.7.6.dist-info/RECORD +14911 -0
  14909. docsforge-9.7.6.dist-info/WHEEL +4 -0
  14910. docsforge-9.7.6.dist-info/entry_points.txt +56 -0
  14911. 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="M12.382.01C12.255.006 12.128 0 12 0A11.999 11.999 0 0 0 1.804 18.327l9.911-17.17zm7.097 19.686L11.201 5.121 2.788 19.689l.007.007zm.184 1.538H4.337a12 12 0 0 0 15.326 0m2.917-3.568A12 12 0 0 0 12.382.01l.667 1.148zM12.383.009l-.001.001h.001z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.69 8.83c0 .13-.115.246-.247.248a.25.25 0 0 1-.248-.243.24.24 0 0 1 .237-.251.25.25 0 0 1 .258.246m14.294 3.678c-.026.409-.06.818-.113 1.225a11 11 0 0 1-.364 1.674 12 12 0 0 1-.892 2.194 12 12 0 0 1-2.411 3.158 11.95 11.95 0 0 1-7.716 3.235c-.05.002-.855.004-.868.004a12 12 0 0 1-1.452-.133 12 12 0 0 1-1.794-.418 12 12 0 0 1-2.283-.996 12 12 0 0 1-2.913-2.311 11.96 11.96 0 0 1-3.103-6.79 12 12 0 0 1-.073-1.527q.01-.648.087-1.29a11.9 11.9 0 0 1 1.317-4.17 12 12 0 0 1 2.033-2.77 12 12 0 0 1 1.152-1.03A12 12 0 0 1 8.027.677c.481-.17.97-.314 1.47-.411a16 16 0 0 1 1.151-.182 14 14 0 0 1 1.033-.077c.236-.011.473-.001.71.004a11.944 11.944 0 0 1 5.224 1.385A12 12 0 0 1 20.63 3.67a12 12 0 0 1 1.362 1.692 12 12 0 0 1 1.47 3.089q.336 1.083.46 2.21c.068.614.1 1.23.061 1.848m-10.77-3.846c.052.087.129.135.266.136.028-.013.089-.03.14-.063a35 35 0 0 1 2.514-1.495.32.32 0 0 0 .15-.16l.576-1.299c.05-.113.047-.223-.041-.316-.089-.094-.2-.109-.313-.058-.158.069-.317.137-.466.223-.368.212-.693.484-1.005.77-.648.595-1.225 1.256-1.78 1.937a.4.4 0 0 0-.04.057.25.25 0 0 0 0 .268m8.192-2.643q-.069-.013-.14-.015a4.5 4.5 0 0 0-1.063.08c-.682.125-1.334.347-1.972.61-1.028.422-2.007.943-2.963 1.507a37 37 0 0 0-3.139 2.07c-.207.152-.437.082-.487-.157-.02-.096-.058-.187-.09-.28a2.4 2.4 0 0 0-2.38-1.64c-.352.015-.69.1-1.018.222a.46.46 0 0 1-.276.018c-.164-.038-.33-.07-.494-.105l-4.449-.936q-.402-.086-.805-.168c-.036-.007-.083-.04-.116.02.033.054.093.053.142.068l5.565 1.65c.075.022.151.044.22.08.538.275.868.708.978 1.303.022.114.026.233.028.35.006.494-.013.989.016 1.481.055.961.45 1.775 1.137 2.446.572.559 1.157 1.105 1.72 1.672.768.774 1.192 1.717 1.301 2.8a.43.43 0 0 0 .132.277q.942.938 1.88 1.878.033.034.069.065a.25.25 0 0 0 .276.034.26.26 0 0 0 .158-.241q0-.035-.006-.07a12 12 0 0 0-.386-1.946 6 6 0 0 0-1.347-2.45c-.302-.329-.628-.635-.943-.952q-.065-.06-.125-.124c-.115-.124-.114-.265.002-.387q.04-.043.083-.083l8.55-8.545q.048-.044.09-.093a.266.266 0 0 0-.148-.44"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 0H3a3 3 0 0 0-3 3v18a3 3 0 0 0 3 3h18c1.658 0 3-1.342 3-3V3a3 3 0 0 0-3-3m-5.801 4.399c0-.44.36-.8.802-.8.44 0 .8.36.8.8v10.688a.802.802 0 0 1-1.602 0zM11.2 3.994a.8.8 0 0 1 1.6 0v11.602a.8.8 0 0 1-1.6 0zm-4 .405a.801.801 0 0 1 1.601 0v10.688a.801.801 0 0 1-1.601 0zM3.199 6A.801.801 0 0 1 4.8 6v7.195a.8.8 0 0 1-1.601 0zM20.52 18.202c-.123.105-3.086 2.593-8.52 2.593s-8.397-2.486-8.521-2.593a.8.8 0 0 1 1.039-1.218c.047.041 2.693 2.211 7.481 2.211 4.848 0 7.456-2.186 7.479-2.207a.8.8 0 0 1 1.128.086c.289.336.25.84-.086 1.128m.281-5.007a.802.802 0 0 1-1.602 0V6a.802.802 0 0 1 1.602 0z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9.948 13.05.677 1.18h12.782l.15-1.18zm1.961-2.556a3.2 3.2 0 0 0-.694.071 1.7 1.7 0 0 0-.537-.07 2.7 2.7 0 0 0-1.007.168l-.215 1.53.317.552h.384l.254-1.834a.7.7 0 0 1 .2-.03c.17 0 .229.086.23.192l-.234 1.672h.782l.215-1.525a1 1 0 0 0 .008-.093l.03-.214a.7.7 0 0 1 .201-.029c.197 0 .246.115.227.25l-.22 1.608h.778l.215-1.524c.062-.442-.185-.72-.93-.72M8.88 11.88a.73.73 0 0 0 .438-.593l.012-.078h-.004c.062-.442-.185-.72-.93-.72a2.7 2.7 0 0 0-1.007.17v.003L7.1 12.741h.778l.104-.74h.2l1.466 2c.097.13.219.23.375.23h.208l-1.355-2.352zm-.32-.755-.01.084-.025.165a.27.27 0 0 1-.3.247h-.19l.01-.078.09-.638a.6.6 0 0 1 .202-.03c.197 0 .247.114.227.25zm-3.84 1.503c.014-.102-.023-.174-.145-.174h-.09c-.197 0-.247-.114-.228-.25l.165-1.178v-.015l.01-.078h.23c.113 0 .207-.115.231-.289H4.47l.122-.871c-.558.061-.815.32-.871.705l-.066.434-.006.042-.004.03-.14 1.04c-.061.432.17.707.876.72h.322l.016-.114m1.416-2.14a2.7 2.7 0 0 0-1.007.17l-.119.846-.068.509c-.06.43.175.705.877.718h.853l.015-.102c.015-.103-.021-.186-.143-.186H5.92c-.197 0-.246-.114-.227-.25l.025-.186h.244c.714-.01 1.03-.283 1.092-.713l.012-.079h-.004c.06-.44-.187-.719-.931-.719zm.166.642-.011.085-.027.155a.27.27 0 0 1-.3.247h-.191l.01-.078.09-.638a.6.6 0 0 1 .202-.029c.196 0 .245.115.226.25zm16.764-.642a2.7 2.7 0 0 0-1.005.17l-.12.846-.068.509c-.06.43.175.705.876.718h.854l.015-.103c.015-.103-.022-.185-.144-.185h-.625c-.196 0-.246-.114-.226-.25l.025-.186h.244c.713-.01 1.03-.283 1.092-.713l.012-.079h-.004c.061-.44-.186-.719-.93-.719zm.163.642-.01.085-.025.164a.27.27 0 0 1-.3.247h-.191l.01-.077.09-.639a.6.6 0 0 1 .202-.028c.196-.01.246.105.226.24zm-9.025-.632h-.665c-.116 0-.208.115-.233.29h.794c.197 0 .246.121.227.253l-.034.247h-.258c-.703.013-1.017.284-1.078.713l-.012.078h.007c-.06.44.187.719.933.719.342.008.684-.05 1.005-.17l.12-.847.075-.564c.06-.43-.175-.713-.876-.726zm.024 1.245-.09.645a.6.6 0 0 1-.201.03c-.196 0-.245-.115-.227-.25l.01-.085.026-.165a.27.27 0 0 1 .298-.248h.192l-.01.077zm3.16-.456.012-.079h.005c.06-.44-.187-.718-.93-.718a2.7 2.7 0 0 0-1.007.17v.003l-.293 2.08h.778l.104-.74h.198l.437.739h.778l-.513-.862a.73.73 0 0 0 .438-.593zm-.747-.165-.01.085-.039.163a.27.27 0 0 1-.3.247h-.19l.01-.078.09-.638a.6.6 0 0 1 .201-.029c.201.001.25.115.232.25zm2.604 1.33.018-.132a3.3 3.3 0 0 1-.647.073h-.06c-.196 0-.245-.115-.227-.254l.065-.479.018-.136.07-.477a.27.27 0 0 1 .296-.254h.06q.317-.003.624.067l.018-.137c.016-.114.027-.207-.127-.236a3 3 0 0 0-.537-.037c-.744 0-1.07.277-1.13.718l-.117.835c-.06.44.188.719.932.719q.291 0 .58-.048c.085-.02.14-.058.165-.236m1.486-1.946q-.109 0-.21.006l.1-.73c-.558.061-.815.32-.87.706l-.071.507-.247 1.76h.778l.254-1.834a.7.7 0 0 1 .2-.029c.197 0 .246.114.227.25l-.227 1.613h.778l.216-1.524c.062-.442-.186-.72-.932-.72M.865 11.51l.007-.055.243-1.684h-.78l-.27 1.843v.007l-.056.424c-.054.385.128.646.67.706l.18-1.239m22.771-1.53h-1.07l-.042.29h.878c.115 0 .208-.116.233-.29M2.274 12.741l.227-1.613c.019-.135-.03-.25-.227-.25a.6.6 0 0 0-.2.03l-.254 1.833h-.78l.293-2.079a2.7 2.7 0 0 1 1.006-.17c.745 0 .992.28.93.72l-.214 1.525h-.778"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.667 22.884V24H1.333v-1.116zm-.842-1.675v1.396H2.175v-1.396zM4.233 6.14l.234.118.118 1.882.117 3.058v2.941l-.117 3.666-.02 2.47-.332.098H3.062l-.352-.098-.136-2.47-.118-3.646v-2.941l.118-3.078.107-1.892.244-.107zm16.842 0 .235.118.117 1.882.117 3.058v2.941l-.117 3.666-.02 2.47-.332.098h-1.171l-.352-.098-.137-2.47-.117-3.646v-2.941l.117-3.078.108-1.892.244-.107zm-11.79 0 .235.118.117 1.882.117 3.058v2.941l-.117 3.666-.02 2.47-.331.098H8.114l-.352-.098-.136-2.47-.117-3.646v-2.941l.117-3.078.107-1.892.244-.107zm6.457 0 .234.118.117 1.882.118 3.058v2.941l-.118 3.666-.019 2.47-.332.098H14.57l-.351-.098-.137-2.47-.117-3.646v-2.941l.117-3.078.108-1.892.244-.107zm6.083-2.511V5.58H2.175V3.628zM11.798 0l10.307 2.347-.413.723H1.951l-.618-.587Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.264 6.24c-2.52 0-5.376 3.024-6.264 3.984-.72-.792-3.696-3.984-6.264-3.984C2.568 6.24 0 8.832 0 12s2.568 5.76 5.736 5.76c2.52 0 5.376-3.024 6.264-3.984.72.792 3.696 3.984 6.264 3.984C21.432 17.76 24 15.168 24 12s-2.568-5.76-5.736-5.76M5.736 15.384A3.38 3.38 0 0 1 2.352 12a3.395 3.395 0 0 1 3.384-3.384c1.176 0 3.24 1.8 4.68 3.384-.408.456-3.144 3.384-4.68 3.384m12.528 0c-1.176 0-3.24-1.8-4.68-3.384.408-.456 3.168-3.384 4.68-3.384A3.38 3.38 0 0 1 21.648 12c-.024 1.872-1.536 3.384-3.384 3.384"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.913 6.036c-1.105.574-3.763 1.924-5.9 3.009-3.773 1.913-7.026 3.593-7.111 3.667-.032.022.01.404.085.861.574 3.413 2.147 6.453 4.316 8.356l.69.616.692-.595c1.839-1.616 3.327-4.22 4.05-7.058.149-.564.276-1.308.287-1.648l.021-.617-2.955-1.53-.734.371c-.393.202-.723.394-.723.426s.67.393 1.489.797l1.488.733-.064.383c-.393 2.169-1.616 4.752-2.923 6.187l-.606.67-.447-.426c-.924-.893-1.934-2.615-2.519-4.305-.33-.946-.723-2.434-.659-2.487.021-.022 3.04-1.542 6.708-3.391l6.654-3.37.213.35c.67 1.085.723 2.541.138 3.732-.648 1.318-1.754 1.988-3.37 2.062l-.978.043-.064.319c-.031.18-.063.478-.063.68 0 .319.032.361.382.425.574.107 1.765-.032 2.456-.287 1.68-.627 2.849-1.913 3.37-3.731.446-1.563-.032-3.423-1.265-4.848-.213-.244-.447-.446-.51-.446-.075.01-1.032.478-2.148 1.052m-18.54-.552C.184 6.876-.262 8.62.152 10.235c.468 1.808 1.659 3.136 3.37 3.774.691.255 1.882.393 2.456.287.414-.085.457-.202.319-1.03l-.064-.394-.978-.043c-1.626-.074-2.721-.744-3.38-2.083-.574-1.148-.532-2.541.085-3.615l.265-.457L6.073 8.63l3.858 1.956.713-.35c.393-.203.712-.405.712-.447 0-.064-9.344-4.805-9.482-4.805-.043 0-.266.223-.5.5m6.315-3.615-.265.404.233.064c.691.18 1.69.957 2.105 1.637l.213.34-.595.883c-.596.893-1.212 2.03-1.212 2.232 0 .096.956.638 1.137.638.043 0 .287-.404.532-.883.531-1.041.956-1.658 1.658-2.402l.5-.531.446.478a10.2 10.2 0 0 1 1.69 2.424c.245.467.468.882.49.914.063.074 1.2-.542 1.2-.66 0-.19-.648-1.37-1.222-2.21l-.595-.872.223-.35c.33-.532 1.201-1.277 1.754-1.5.266-.117.478-.255.478-.308 0-.064-.106-.245-.244-.415l-.245-.297-.52.244c-.309.149-.872.585-1.34 1.053l-.808.808-.659-.606-.648-.617-.649.617-.659.616-.755-.765c-.606-.617-1.637-1.329-1.913-1.329-.032 0-.18.18-.33.393z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.32 12.38c0 1.174.974 2.033 2.211 2.033s2.212-.859 2.212-2.033v-2.7h-1.198v2.56c0 .633-.44 1.06-1.017 1.06s-1.017-.424-1.017-1.06V9.68h-1.198l.008 2.699zm7.624-1.619h1.429v3.563h1.198V10.76H24V9.68h-4.056v1.082zM19.17 9.68h-1.198v4.645h1.198zM7.482 10.761h1.43v3.563h1.197V10.76h1.428V9.68H7.482v1.082zM1.198 9.68H0v4.645h1.198zm5.653 1.94c0-1.174-.974-2.032-2.212-2.032s-2.212.858-2.212 2.032v2.705h1.198v-2.56c0-.633.44-1.06 1.017-1.06s1.018.425 1.018 1.06v2.56h1.197L6.85 11.62z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0m0 .742A11.257 11.257 0 0 1 23.258 12 11.257 11.257 0 0 1 12 23.258 11.257 11.257 0 0 1 .742 12 11.257 11.257 0 0 1 12 .742m-.66 4.375a.776.776 0 0 0-.777.778.776.776 0 0 0 .777.775.776.776 0 0 0 .775-.775.776.776 0 0 0-.775-.778m.035 2.266-.523 1.853-2.75 9.291h-.713v.373h1.974v-.373h-.875l2.606-8.806 4.6 9.174h1.429z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.247 10.326a1.164 1.164 0 1 1-2.328 0 1.164 1.164 0 0 1 2.328 0m-6.288 0a1.164 1.164 0 1 1-2.329 0 1.164 1.164 0 0 1 2.329 0m-.14 13.52c-4.712-.98-8.227-4.257-9.482-8.842-.421-1.537-.421-4.49 0-6.027C1.506 4.709 4.73 1.485 8.997.316c1.538-.421 4.49-.421 6.028 0 4.267 1.169 7.492 4.393 8.66 8.66.24.874.294 1.43.294 3.014s-.054 2.14-.293 3.014c-1.17 4.271-4.439 7.536-8.661 8.65-1.391.367-3.916.46-5.206.192m6.64-9.315c-3.047-1.348-4.054-1.737-4.5-1.737s-1.433.38-4.38 1.684c-2.091.926-3.828 1.76-3.86 1.79h16.663zm-9.873-.361c1.621-.729 3.06-1.387 3.196-1.464.258-.145.337-.09-5.285-3.682-.56-.358-1.023-.698-1.025-.65v7.19a790 790 0 0 0 3.114-1.394m14.078-2.194V8.417c0-.11-1.676.993-3.496 2.12-3 1.854-3.281 2.06-3.004 2.185 1.345.611 6.42 2.862 6.5 2.872zm-8.169.11c.545.125.643.104 1.226-.263.349-.22.655-.419.681-.442s-.05-.181-.167-.35-.215-.5-.215-.739V9.86l-.569.21c-.726.267-2.28.27-3 .005l-.556-.205.013.452c.007.26-.088.563-.225.715-.232.256-.22.276.45.726.64.432.725.455 1.23.327a2.35 2.35 0 0 1 1.132-.002zm-4.23-2.65c-.105-.113-2.97-.954-3.033-.891-.03.03.504.414 1.186.854l1.24.8.34-.344c.186-.188.307-.377.268-.42zm9.76-.373c.473-.306.8-.555.728-.555-.155 0-2.877.804-3.027.894-.057.034.033.229.2.433l.304.37.47-.293c.257-.162.854-.544 1.326-.85zm-1.636-.555c2.11-.59 3.867-1.102 3.904-1.139H3.59c.187.187 7.779 2.195 8.323 2.202.41.005 2.014-.376 4.476-1.063"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0c-.61 0-1.201.044-1.787.133v3.285a8.9 8.9 0 0 1 3.574.004V.139A12 12 0 0 0 12 0M9.38.295C4.084 1.5.13 6.283.13 12 .129 18.628 5.44 24 12 24s11.871-5.372 11.871-12c0-5.717-3.953-10.499-9.246-11.705v3.34c3.575 1.113 6.18 4.44 6.18 8.365 0 4.83-3.949 8.76-8.8 8.76-4.85 0-8.804-3.93-8.804-8.76 0-3.924 2.605-7.247 6.18-8.365zM12 4.137q-.925.001-1.783.2V19.53a8 8 0 0 0 1.783.2q.924-.001 1.787-.2V4.343A7.7 7.7 0 0 0 12 4.137"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22.922 7.027-.103-.23-.169.188c-.408.464-.928.82-1.505 1.036l-.159.061.066.155a9.7 9.7 0 0 1 .75 3.759c0 5.405-4.397 9.806-9.806 9.806S2.194 17.405 2.194 12 6.596 2.194 12 2.194c1.467 0 2.883.319 4.2.947l.155.075.066-.155a3.77 3.77 0 0 1 1.106-1.453l.197-.159-.225-.117A11.9 11.9 0 0 0 12.001.001c-6.619 0-12 5.381-12 12s5.381 12 12 12 12-5.381 12-12c0-1.73-.361-3.403-1.078-4.973zM12 6.53A5.476 5.476 0 0 0 6.53 12 5.476 5.476 0 0 0 12 17.47 5.476 5.476 0 0 0 17.47 12 5.48 5.48 0 0 0 12 6.53m10.345-2.007a2.494 2.494 0 1 1-4.988 0 2.494 2.494 0 0 1 4.988 0"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.182 15.499a1.8 1.8 0 0 1-.354-.036 1.83 1.83 0 0 1-1.208-.863l-.007-.012a.543.543 0 0 1 .2-.716.5.5 0 0 1 .27-.074.53.53 0 0 1 .462.272l.018.03.057.076.075.077a.74.74 0 0 0 .346.167.76.76 0 0 0 .595-.136.72.72 0 0 0 .3-.54.74.74 0 0 0-.208-.577s-1.6-1.661-1.671-1.738a2 2 0 0 1-.193-.23c-.226-.32-.296-.696-.261-1.07a1.7 1.7 0 0 1 .225-.74s.073-.123.095-.155c.084-.123.251-.283.366-.372a2 2 0 0 1 .306-.185 1.75 1.75 0 0 1 2.282.705.52.52 0 0 1 .055.402.53.53 0 0 1-.253.326.5.5 0 0 1-.259.07.53.53 0 0 1-.46-.27.7.7 0 0 0-.466-.33.72.72 0 0 0-.564.128.69.69 0 0 0-.267.498.7.7 0 0 0 .19.54l1.636 1.686a1.83 1.83 0 0 1 .507 1.393c-.047.524-.307 1-.715 1.305a1.84 1.84 0 0 1-1.099.369m-5.175 0a1.76 1.76 0 0 0 1.759-1.76v-3.478a1.759 1.759 0 0 0-3.518 0v3.478a1.76 1.76 0 0 0 1.759 1.76m0-5.935c.378 0 .697.32.697.697v3.478a.7.7 0 0 1-.697.697.69.69 0 0 1-.697-.697v-3.478a.7.7 0 0 1 .697-.697m-7.898.323v5.08a.53.53 0 0 0 1.061 0V12.09Zm2.88 2.025v-2.88a.531.531 0 0 1 1.062 0v5.084zm1.053 2.94v.114a.533.533 0 0 1-1.007.24l-2.92-6.052v-.121a.53.53 0 0 1 .303-.477.525.525 0 0 1 .709.247Zm-7.907.646a1.76 1.76 0 0 0 1.759-1.759v-3.478a1.759 1.759 0 0 0-3.518 0v3.478a1.76 1.76 0 0 0 1.76 1.76m0-5.935a.707.707 0 0 1 .696.697v3.478a.697.697 0 1 1-1.394 0v-3.478a.7.7 0 0 1 .697-.697M0 14.911a.58.58 0 1 0 1.158 0v-5.83A.58.58 0 0 0 0 9.08z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.1 6.05c-.614 0-1.1.48-1.1 1.08a1.08 1.08 0 0 0 1.1 1.08c.62 0 1.11-.48 1.11-1.08S1.72 6.05 1.1 6.05m7.61.02c-3.36 0-5.46 2.29-5.46 5.93 0 3.67 2.1 5.95 5.46 5.95 3.34 0 5.45-2.28 5.45-5.95 0-3.64-2.11-5.93-5.45-5.93m10.84 0c-2.5 0-4.28 1.38-4.28 3.43 0 1.63 1.01 2.65 3.13 3.14l1.49.36c1.45.33 2.04.81 2.04 1.64 0 .96-.97 1.64-2.35 1.64-1.41 0-2.47-.69-2.58-1.75h-2c.08 2.12 1.82 3.42 4.46 3.42 2.79 0 4.54-1.37 4.54-3.55 0-1.71-1-2.68-3.32-3.21l-1.33-.3c-1.41-.34-1.99-.79-1.99-1.55 0-.96.88-1.6 2.18-1.6 1.31 0 2.21.65 2.31 1.72h1.96c-.05-2.02-1.72-3.39-4.26-3.39M8.71 7.82c2.04 0 3.35 1.63 3.35 4.18 0 2.57-1.31 4.2-3.35 4.2-2.06 0-3.36-1.63-3.36-4.2 0-2.55 1.3-4.18 3.36-4.18M.111 9.31v8.45H2.1V9.31z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.446 18.824a.74.74 0 1 0-.742-.74.74.74 0 0 0 .742.74m9.186 2.217a1.158 1.158 0 1 0-1.16-1.157 1.16 1.16 0 0 0 1.16 1.157m-4.395.392a.986.986 0 1 0-.988-.984.987.987 0 0 0 .988.985m2.494 2.07a1.158 1.158 0 1 0-1.16-1.157 1.16 1.16 0 0 0 1.16 1.158m-4.545-.394a.986.986 0 1 0-.987-.985.987.987 0 0 0 .987.985m-1.703-2.168a.863.863 0 1 0-.865-.86.863.863 0 0 0 .865.86m2.049-1.674a.863.863 0 1 0-.863-.866.864.864 0 0 0 .863.866m3.631-.296a.986.986 0 1 0-.988-.985.987.987 0 0 0 .988.985m-1.729-2.143a.863.863 0 1 0-.863-.863.864.864 0 0 0 .863.863m-2.939.32a.74.74 0 1 0-.741-.74.74.74 0 0 0 .741.74m-2.519-.32a.616.616 0 1 0-.618-.616.617.617 0 0 0 .618.616m-.025-1.7a.542.542 0 1 0-.543-.542.543.543 0 0 0 .543.542m2.1.024a.616.616 0 1 0-.617-.616.617.617 0 0 0 .617.616m2.37-.467a.74.74 0 1 0-.74-.74.74.74 0 0 0 .74.74m-.469-1.97a.616.616 0 1 0-.617-.617.617.617 0 0 0 .617.616m-1.95.738a.542.542 0 1 0-.545-.542.543.543 0 0 0 .544.542m-1.779.222a.443.443 0 1 0-.444-.444.445.445 0 0 0 .444.444M8.67 7.123a.863.863 0 1 0-.865-.862.863.863 0 0 0 .865.862m2.246-.025a.74.74 0 1 0-.74-.739.74.74 0 0 0 .74.739m-.42-2.61a.74.74 0 1 0-.74-.74.74.74 0 0 0 .74.74M8.25 4.487a.863.863 0 1 0-.865-.862.863.863 0 0 0 .865.862m-2.618.591a.986.986 0 1 0-.99-.985.986.986 0 0 0 .99.985M6.05 7.69a.986.986 0 1 0-.988-.986.987.987 0 0 0 .988.986M3.186 9.093a1.158 1.158 0 1 0-1.16-1.158 1.16 1.16 0 0 0 1.16 1.158M1.383 14.34A1.38 1.38 0 1 0 0 12.96a1.38 1.38 0 0 0 1.383 1.38m2.963-2.365a1.158 1.158 0 1 0-1.16-1.158 1.16 1.16 0 0 0 1.16 1.158m2.866-1.403a.986.986 0 1 0-.989-.986.987.987 0 0 0 .989.986m2.617-.592a.863.863 0 1 0-.868-.86.863.863 0 0 0 .868.86m2.247 0a.74.74 0 1 0-.74-.739.74.74 0 0 0 .74.74m.692-2.488a.616.616 0 1 0-.618-.615.617.617 0 0 0 .618.615m-.42-2.613a.616.616 0 1 0-.618-.616.617.617 0 0 0 .619.616m7.162 11.48a.616.616 0 1 0-.618-.615.616.616 0 0 0 .618.615m-5.755-10.76a.543.543 0 1 0-.543-.542.54.54 0 0 0 .543.542m1.038.834a.443.443 0 1 0-.445-.443.444.444 0 0 0 .445.443M14.2 8.207a.543.543 0 1 0-.543-.542.543.543 0 0 0 .543.542m-.271 2.167a.616.616 0 1 0-.618-.616.617.617 0 0 0 .618.616m.024 4.631a.616.616 0 1 0-.617-.616.617.617 0 0 0 .617.616m1.68 1.182a.542.542 0 1 0-.544-.542.543.543 0 0 0 .543.542m1.16 1.281a.443.443 0 1 0-.445-.443.444.444 0 0 0 .444.443m1.308-.347a.542.542 0 1 0-.543-.542.54.54 0 0 0 .543.542m-1.058-1.697a.616.616 0 1 0-.618-.615.616.616 0 0 0 .618.615m-1.708-1.65a.74.74 0 1 0-.74-.74.74.74 0 0 0 .74.74m5.557 1.38a.74.74 0 1 0-.74-.74.74.74 0 0 0 .74.74m-2.494-.937a.74.74 0 1 0-.74-.739.74.74 0 0 0 .74.74m3.729-.838a.863.863 0 1 0-.864-.861.863.863 0 0 0 .864.861M16.546 12a.863.863 0 1 0-.863-.862.864.864 0 0 0 .863.862m3.087.419a.863.863 0 1 0-.864-.862.863.863 0 0 0 .864.861m3.383-1.404a.986.986 0 1 0-.987-.986.987.987 0 0 0 .987.986m-2.47-.961a.986.986 0 1 0-.988-.985.987.987 0 0 0 .989.985m-3.086-.418a.986.986 0 1 0-.988-.986.987.987 0 0 0 .988.986m3.482-2.489a1.158 1.158 0 1 0-1.16-1.158 1.16 1.16 0 0 0 1.16 1.158m-3.087-.443a1.158 1.158 0 1 0-1.161-1.158 1.16 1.16 0 0 0 1.16 1.158m1.16 16.035a1.38 1.38 0 1 0-1.383-1.377 1.38 1.38 0 0 0 1.383 1.377M17.46 3.255a1.38 1.38 0 1 0-1.384-1.38 1.38 1.38 0 0 0 1.384 1.38"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0 1.608 6v12L12 24l10.392-6V6zm-1.073 1.445za1.8 1.8 0 0 0 2.138 0l7.534 4.35a1.8 1.8 0 0 0 0 .403l-7.535 4.35a1.8 1.8 0 0 0-2.137 0l-7.536-4.35a1.8 1.8 0 0 0 0-.402zM21.324 7.4q.164.12.349.201v8.7a1.8 1.8 0 0 0-1.069 1.852l-7.535 4.35a1.8 1.8 0 0 0-.349-.2l-.009-8.653a1.8 1.8 0 0 0 1.07-1.851zm-18.648.048 7.535 4.35a1.8 1.8 0 0 0 1.069 1.852v8.7q-.186.081-.349.202l-7.535-4.35a1.8 1.8 0 0 0-1.069-1.852v-8.7a2 2 0 0 0 .35-.202z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.691 11.281c-1.26-.322-1.573-.479-1.573-.957v-.021c0-.354.323-.635.937-.635.578 0 1.174.239 1.779.639l.074.05c.026.01.055.002.074-.018l.775-1.121a.06.06 0 0 0-.009-.068q-.033-.024-.068-.05l-.007-.005c-.716-.541-1.584-.843-2.592-.843-1.492 0-2.552.874-2.552 2.196v.021c0 1.448.949 1.854 2.416 2.228 1.22.313 1.468.521 1.468.927v.021c0 .427-.396.687-1.052.687-.797 0-1.461-.315-2.092-.817l-.043-.035a.064.064 0 0 0-.075.012l-.881 1.049a.07.07 0 0 0 0 .073l.068.059a4.64 4.64 0 0 0 2.986 1.075c1.572 0 2.676-.813 2.676-2.259v-.018c.005-1.273-.828-1.805-2.309-2.19M5.765 8.42a.07.07 0 0 1 .068-.065h1.475a.07.07 0 0 1 .064.068v7.157a.064.064 0 0 1-.064.064H5.829a.07.07 0 0 1-.067-.064zM0 13.339c0-.035.029-.063.064-.063h1.475a.07.07 0 0 1 .065.063v2.241a.07.07 0 0 1-.065.064H.064A.064.064 0 0 1 0 15.58zM15.836 8.42c0-.035.029-.064.064-.064h1.476c.034 0 .063.029.063.064v7.16a.064.064 0 0 1-.063.064H15.9a.064.064 0 0 1-.064-.064zm-.887 7.172-1.744-2.551c.926-.344 1.559-1.084 1.559-2.259v-.022c0-.688-.218-1.261-.624-1.667-.478-.477-1.193-.737-2.123-.737H8.749a.064.064 0 0 0-.063.064v7.16c0 .035.028.064.063.064h1.476a.064.064 0 0 0 .064-.064v-2.268h1.26l1.559 2.332h1.81c.038 0 .051-.024.031-.052M2.847 10.966a.07.07 0 0 1 .068-.063h1.47a.07.07 0 0 1 .064.063v4.61a.064.064 0 0 1-.064.063H2.909a.07.07 0 0 1-.068-.063zm7.448.93.008-2.093h1.578c.782 0 1.26.354 1.26 1.041v.021c0 .614-.447 1.031-1.228 1.031z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.848 8.166c.75-3.536-1.287-7.264-5.747-7.264h-6.955l-1.152 5.4h5.246c1.076 0 1.748.884 1.517 1.941-.23 1.076-1.267 1.903-2.344 1.903H9.11l7.111 13.143h7.437l-4.806-8.82c1.288-.692 4.21-2.632 4.997-6.303zM1.23 17.505 0 23.31h6.342l2.767-13.145c-3.863.135-6.9 2.71-7.88 7.34zM5.4 6.648a2.985 2.985 0 0 0 2.997-2.98A2.986 2.986 0 0 0 5.4.69a2.986 2.986 0 0 0-2.998 2.98c0 1.633 1.346 2.978 2.998 2.978"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.153 8.677c.876 0 1.592.333 2.196.839.014.012.063.051.077.064.059.049.071.052.142-.022l.068-.072.518-.566c.055-.065.046-.07.006-.112l-.071-.069c-.777-.69-1.776-1.183-2.936-1.183-2.454 0-4.366 1.972-4.366 4.45s1.912 4.438 4.366 4.438c1.16 0 2.161-.523 2.939-1.226.086-.074.118-.101.032-.187l-.528-.577c-.086-.087-.109-.066-.195.008-.604.505-1.372.861-2.248.861-1.763 0-3.194-1.431-3.194-3.317 0-1.898 1.431-3.329 3.194-3.329M4.1 9.824c0-.752.617-1.208 1.443-1.208.716 0 1.246.296 1.814.826.086.086.114.134.2.035l.512-.553c.087-.099.04-.123-.046-.209a3.32 3.32 0 0 0-2.492-1.159c-1.419 0-2.541.924-2.541 2.256 0 2.786 4.292 2.207 4.292 4.142 0 .789-.69 1.406-1.714 1.406-.985 0-1.504-.454-2.047-.971-.086-.087-.105-.107-.179-.033l-.585.553c-.087.074-.078.08-.017.179.561.756 1.607 1.344 2.828 1.344 1.53 0 2.849-1.011 2.849-2.429 0-2.934-4.317-2.28-4.317-4.179M1.147 7.639v7.616a.06.06 0 0 1-.019.044L.044 16.346c-.016.016-.044.004-.044-.019V7.639c0-.014.012-.026.026-.026h1.095c.014 0 .026.012.026.026m20.056-.066c-1.11 0-1.99.49-2.533 1.168a1 1 0 0 0-.057.081c-.04.061-.029.066.027.128.14.156.576.649.576.649q.027.028.051.006l.075-.071c.346-.358.936-.95 1.849-.95 1.024 0 1.64.642 1.64 1.578 0 1.33-.762 1.962-2.459 3.389-.494.415-1.405 1.215-1.633 1.414a.16.16 0 0 0-.052.117v1.194c0 .053.063.082.103.047.468-.411 2.405-2.107 3.034-2.641 1.629-1.384 2.068-2.324 2.068-3.532 0-1.467-1.06-2.577-2.689-2.577m2.734 7.792H21.2a.064.064 0 0 0-.064.064v.81c0 .035.029.063.064.063h2.737a.063.063 0 0 0 .063-.063v-.81a.064.064 0 0 0-.063-.064"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.53.507 5.944 13.856l4.761-5.735 1.827 15.372ZM5.46 3.845 4.932 4.93l1.852.42.519-1.075Zm2.243.528-.525 1.082 1.853.42.514-1.075Zm6 1.377-.518 1.082 1.85.423.521-1.075Zm2.244.528-.516 1.08 1.85.422.521-1.075ZM8.9 12.955a2 2 0 0 0-.195.01l-.24.58c.686-.117.983.076 1.24.79H.003L0 14.837h2.345v.282s-.928-.361-1.722.35c-.62.715-.102 1.414-.102 1.414s.518-.289 1.325-.151c.75.134.712.492.712.492s-.102.442-.705.357c-.607-.092-.561-.698-.561-.698l-.669.442s.258.436.831.576l.49.759h.764l-.577-.744a2 2 0 0 0 .197-.043c1.46-.39.948-1.5-.134-1.787-.75-.197-1.571.17-1.571.17s.111-.925 1.45-.705c.763.135 1.03.436 1.03.436v-1.15h1.504l-.63.295s.332.364.437.83c.102.488-.109.583-.247.593-.075-.066-.494-.646-.494-.646l-.3.256L4.428 17.8h.728l-.774-.964c.167-.013.4-.068.56-.272.107.055.239.101.394.114.475.036.76-.193.76-.193V17.8h.762v-2.964h1.645l-.629.294s.332.364.436.83c.099.489-.111.584-.252.594-.069-.066-.495-.646-.495-.646l-.292.256 1.04 1.633h.734s-.66-.823-.764-.961c.243-.02.632-.132.711-.692.097-.728-.226-1.171-.346-1.308h.9v2.96h.764v-2.96h.397v-.502h-.554c-.3-1.076-.664-1.38-1.25-1.38m4.992.33a.414.414 0 0 0-.413.424c0 .214.182.416.413.416.265 0 .43-.223.43-.416a.42.42 0 0 0-.43-.423m-.77 1.06v.495h2.955q-.616.142-1.027.56c-.137.144-.27.355-.387.643a4 4 0 0 0-.144.38q1.274.006 1.616.129c.16.065.309.147.456.252.184.135.279.269.302.403h-1.731l-.59.594h2.029c.593-.456.882-.823.882-1.115a.53.53 0 0 0-.16-.364c-.233-.23-.548-.384-.939-.453-.206-.033-.57-.055-1.081-.055a8 8 0 0 0 .216-.335c.102-.131.207-.193.305-.193q.407-.001 1.315.505l.597-.6a6 6 0 0 0-.682-.352L24 14.84v-.495zm-7.027.492v.865s.003.23-.456.463c-.2.103-.403.144-.576.157a1 1 0 0 0 .038-.177c.094-.728-.232-1.172-.353-1.308zm7.427.406v2.551h.731v-2.55zm4.551.003v2.551h.735V16.06q.293-.126.587-.124c.207 0 .364.05.479.157.147.158.213.397.19.732l.613-.604c.02-.315-.05-.558-.216-.718a.67.67 0 0 0-.489-.197q-.29.001-.643.194-.31.155-.52.38v-.633zm2.991 0v1.9s.013.372.25.546c.173.115.406.105.406.105h1.984v-1.865c0-.333-.186-.685-.541-.685zm1.79.665c.188.002.167.048.167.355v.85l-1.14-.004s-.109.014-.138-.026c-.036-.046-.02-.098-.02-.348v-.826z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.996 0A1 1 0 0 0 0 .996V12c0 6.628 5.372 12 12 12s12-5.372 12-12S18.628 0 12 0zm11.17 3.582a8.333 8.333 0 0 1 8.254 8.41 8.333 8.333 0 0 1-8.41 8.252c-4.597-.045-8.296-3.81-8.254-8.41.045-4.6 3.81-8.296 8.41-8.252m-.031 2.27a6.107 6.107 0 0 0-6.155 6.046 6.11 6.11 0 0 0 6.05 6.163 6.1 6.1 0 0 0 6.154-6.047 6.107 6.107 0 0 0-6.041-6.162zm-.02 3.013a3.1 3.1 0 0 1 3.063 3.123 3.09 3.09 0 0 1-3.121 3.06l.002-.001a3.091 3.091 0 0 1 .056-6.182"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 21h16l-10 3zm0-1 6-1V8zm7-1 9 1-9-20z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.13 1.338C2.08 1.96.02 4.328 0 4.95v1.03c0 1.303 1.22 2.45 2.325 2.45 1.33 0 2.436-1.102 2.436-2.41 0 1.308 1.07 2.41 2.4 2.41 1.328 0 2.362-1.102 2.362-2.41 0 1.308 1.137 2.41 2.466 2.41h.024c1.33 0 2.466-1.102 2.466-2.41 0 1.308 1.034 2.41 2.363 2.41 1.33 0 2.4-1.102 2.4-2.41 0 1.308 1.106 2.41 2.435 2.41C22.78 8.43 24 7.282 24 5.98V4.95c-.02-.62-2.082-2.99-3.13-3.612-3.253-.114-5.508-.134-8.87-.133-3.362 0-7.945.053-8.87.133m6.376 6.477a2.7 2.7 0 0 1-.468.602c-.5.49-1.19.795-1.947.795a2.79 2.79 0 0 1-1.95-.795 2.6 2.6 0 0 1-.446-.59 2.8 2.8 0 0 1-.486.59 2.8 2.8 0 0 1-1.95.795.8.8 0 0 1-.264-.052 40 40 0 0 0-.168 2.95v.005l-.006 1.167c.02 2.334-.23 7.564 1.03 8.85 1.952.454 5.545.662 9.15.663 3.605 0 7.198-.21 9.15-.664 1.26-1.284 1.01-6.514 1.03-8.848l-.006-1.167v-.004a40 40 0 0 0-.168-2.95.9.9 0 0 1-.263.052 2.8 2.8 0 0 1-1.95-.795 2.7 2.7 0 0 1-.486-.59c-.127.22-.265.412-.447.59a2.79 2.79 0 0 1-1.95.794c-.76 0-1.446-.303-1.948-.793a2.7 2.7 0 0 1-.468-.602 2.7 2.7 0 0 1-.463.602 2.79 2.79 0 0 1-1.95.794h-.16a2.79 2.79 0 0 1-1.95-.793 2.7 2.7 0 0 1-.464-.602zm-2.004 2.59v.002c.795.002 1.5 0 2.373.953A20 20 0 0 1 12 11.253c.72 0 1.438.035 2.125.107.873-.953 1.578-.95 2.372-.953.376 0 1.876 0 2.92 2.934l1.123 4.028c.832 2.995-.266 3.068-1.636 3.07-2.03-.075-3.156-1.55-3.156-3.025-1.124.184-2.436.276-3.748.277-1.312 0-2.624-.093-3.748-.277 0 1.475-1.125 2.95-3.156 3.026-1.37-.004-2.468-.077-1.636-3.072l1.122-4.027c1.045-2.934 2.545-2.934 2.92-2.934zM12 12.714c-.002.002-2.14 1.964-2.523 2.662l1.4-.056v1.22c0 .056.56.033 1.123.007.562.026 1.124.05 1.124-.008v-1.22l1.4.055C14.138 14.677 12 12.713 12 12.713z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 5.359v13.282A5.36 5.36 0 0 1 18.641 24H5.359A5.36 5.36 0 0 1 0 18.641V5.359A5.36 5.36 0 0 1 5.359 0h13.282A5.36 5.36 0 0 1 24 5.359m-.932-.233A4.196 4.196 0 0 0 18.874.932H5.126A4.196 4.196 0 0 0 .932 5.126v13.748a4.196 4.196 0 0 0 4.194 4.194h13.748a4.196 4.196 0 0 0 4.194-4.194zm-.816.233v13.282a3.613 3.613 0 0 1-3.611 3.611H5.359a3.613 3.613 0 0 1-3.611-3.611V5.359a3.613 3.613 0 0 1 3.611-3.611h13.282a3.613 3.613 0 0 1 3.611 3.611M8.854 4.194v6.495h.962V4.194zM5.483 9.493v1.085h.597V9.48q.283-.037.508-.133.373-.165.575-.448.208-.284.208-.649a.9.9 0 0 0-.171-.568 1.4 1.4 0 0 0-.426-.388 3 3 0 0 0-.544-.261 32 32 0 0 0-.545-.209 1.8 1.8 0 0 1-.426-.216q-.164-.12-.164-.284 0-.223.179-.351.18-.126.485-.127.344 0 .575.105.239.105.5.298l.433-.5a2.3 2.3 0 0 0-.605-.433 1.6 1.6 0 0 0-.582-.159v-.968h-.597v.978a2 2 0 0 0-.477.127 1.2 1.2 0 0 0-.545.411q-.194.268-.194.634 0 .335.164.56.164.224.418.38a4 4 0 0 0 .552.262q.291.104.545.209.261.104.425.238a.39.39 0 0 1 .165.321q0 .225-.187.359-.18.134-.537.134-.381 0-.717-.134a4.4 4.4 0 0 1-.649-.351l-.388.589q.209.173.477.306.276.135.575.217.191.046.373.064"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.977 23.999c-2.483 0-4.898-.777-6.954-2.262a11.93 11.93 0 0 1-4.814-7.806A11.95 11.95 0 0 1 2.3 4.994 11.85 11.85 0 0 1 10.08.159a11.83 11.83 0 0 1 8.896 2.104 11.93 11.93 0 0 1 4.815 7.807 11.96 11.96 0 0 1-2.091 8.937 11.86 11.86 0 0 1-7.78 4.835 12 12 0 0 1-1.943.157m-6.474-2.926a11.02 11.02 0 0 0 8.284 1.96 11.04 11.04 0 0 0 7.246-4.504c3.583-5.003 2.445-12.003-2.538-15.603a11.02 11.02 0 0 0-8.284-1.96A11.05 11.05 0 0 0 2.966 5.47C-.618 10.474.521 17.473 5.503 21.073m10.606-3.552a2.08 2.08 0 0 0 1.458-1.468l.062-.216.008-5.786c.006-4.334 0-5.814-.024-5.895a.54.54 0 0 0-.118-.214.5.5 0 0 0-.276-.073c-.073 0-.325.035-.56.078-1.041.19-7.176 1.411-7.281 1.45a.8.8 0 0 0-.399.354l-.065.128s-.031 9.07-.078 9.172a.7.7 0 0 1-.376.35 9 9 0 0 1-.609.137c-1.231.245-1.688.421-2.075.801-.22.216-.382.51-.453.82-.067.294-.045.736.051 1.005.1.281.262.521.473.71q.29.223.674.324c.563.144 1.618-.016 2.158-.328a2.4 2.4 0 0 0 .667-.629c.06-.089.15-.268.2-.399.176-.456.181-8.581.204-8.683a.44.44 0 0 1 .32-.344c.147-.04 6.055-1.207 6.222-1.23.146-.02.284.027.36.12a.3.3 0 0 1 .109.096c.048.07.051.213.058 2.785.008 2.96.012 2.892-.149 3.079-.117.136-.263.189-.864.31-.914.188-1.226.276-1.576.447-.437.213-.679.446-.867.835a1.6 1.6 0 0 0-.182.754c.001.49.169.871.55 1.245q.052.05.104.097c.192.148.387.238.633.294.37.082 1.124.025 1.641-.126"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.91 11.018a60 60 0 0 0-.98-.27c-.1 0-.16.05-.2.17-.35 1.2-.9 2.53-1.38 3.36-.16-.3-.45-.83-.73-1.3l-1.04-1.83c-.22-.34-.36-.43-.64-.43-.57 0-1.42.51-1.42 1 0 .16.04.28.21.57.2.32.3.6.3.92 0 .82-.62 1.56-1.8 1.56-.55 0-.99-.16-1.27-.45-.27-.28-.4-.65-.4-1.27v-1.03c.2.08.44.12.73.12h.93c.13 0 .17-.05.17-.16v-1c0-.11-.04-.17-.17-.17H6.56v-1.63c0-.2-.05-.33-.16-.43-.16-.15-.5-.22-.89-.22-.4 0-.72.07-.89.22-.1.1-.16.24-.16.43v4c0 .66-.1 1.02-.34 1.27-.2.22-.53.34-.88.34s-.66-.12-.84-.31c-.2-.2-.29-.48-.29-.9v-2.6c0-.11-.04-.16-.16-.16H.18c-.12 0-.17.05-.17.16v2.35c0 .94.25 1.47.67 1.9.55.54 1.48.79 2.38.79.88 0 1.81-.32 2.36-.82a4 4 0 0 0 2.6.82c1.42 0 2.47-.6 3.08-1.6.27.43.47.74.67 1.02.28.42.54.58 1.12.58.54 0 .87-.13 1.17-.59.78-1.18 1.44-2.59 1.92-3.88.05-.16.1-.28.1-.35 0-.08-.05-.14-.17-.18m-14.85-.92c.66 0 1.07-.46 1.07-1.05 0-.6-.4-1.06-1.07-1.06-.65-.01-1.06.46-1.06 1.05s.4 1.05 1.06 1.05zm22.84 5.1-2.28-3.13c-.05-.07-.05-.14 0-.2l2.1-3.07c.07-.09.11-.15.11-.28 0-.12-.07-.25-.19-.37a.51.51 0 0 0-.39-.17.4.4 0 0 0-.24.1l-2.9 2.22c-.06.05-.13.05-.2 0l-2.89-2.22a.4.4 0 0 0-.25-.1.5.5 0 0 0-.38.17c-.12.12-.2.25-.2.37 0 .13.05.2.11.28l2.11 3.07c.05.06.05.13 0 .2l-2.28 3.13a.42.42 0 0 0-.1.26c0 .14.06.26.18.38.11.11.24.18.38.18.1 0 .17-.04.26-.1l3.06-2.23a.17.17 0 0 1 .2 0l3.07 2.23c.09.06.16.1.26.1.14 0 .27-.07.38-.18.12-.12.18-.24.18-.38 0-.1-.04-.17-.1-.26"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.084 10.059a.084.084 0 0 0-.084.084v3.574c0 .046.038.084.084.084h.912a.083.083 0 0 0 .082-.084v-3.574a.083.083 0 0 0-.082-.084zm1.775 0c-.062 0-.105.058-.076.11l1.895 3.257.011.02c.195.306.577.495 1.002.494s.807-.196.997-.508L7.75 10.17c.028-.046-.007-.111-.076-.111H6.658a.09.09 0 0 0-.074.039l-1.857 2.925c-.017.028-.064.023-.079.006L2.936 10.1a.09.09 0 0 0-.077-.04zm7.598 0c-.73-.001-1.324.488-1.324 1.091v1.557c0 .603.594 1.094 1.324 1.094h3.049a.08.08 0 0 0 .082-.084v-.733a.08.08 0 0 0-.082-.084H9.234c-.017 0-.03-.015-.03-.033V10.99c0-.017.013-.033.03-.033h3.272a.08.08 0 0 0 .082-.082v-.732a.08.08 0 0 0-.082-.084zm5.443 0c-.73-.001-1.324.488-1.324 1.091v1.557c0 .603.594 1.094 1.324 1.094h3.05a.084.084 0 0 0 .083-.084v-.733a.084.084 0 0 0-.084-.084h-3.271a.03.03 0 0 1-.032-.033V10.99c0-.017.014-.033.032-.033h3.271a.08.08 0 0 0 .084-.082v-.732a.084.084 0 0 0-.084-.084zm5.334 0c-.73 0-1.324.49-1.324 1.093v1.555c0 .603.594 1.094 1.324 1.094h2.442c.73 0 1.324-.49 1.324-1.094v-1.555c0-.603-.594-1.093-1.324-1.093zm-.226.898h2.879c.015 0 .027.012.027.027v1.889a.027.027 0 0 1-.027.027h-2.88a.027.027 0 0 1-.027-.027v-1.889c0-.015.013-.027.028-.027m-10.215.56a.05.05 0 0 0-.049.051v.73c0 .028.022.052.049.052h2.72a.05.05 0 0 0 .05-.051v-.73a.05.05 0 0 0-.05-.051z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.597 11.737c0-.35-.065-.732-.268-1.025-.408-.588-1.283-.775-1.892-.405-.308.188-.48.515-.576.851-.191.668-.104 1.43.03 2.1.043.214.088.428.148.639.021.076.031.186.08.25.087.11.297.141.426.12.387-.065.291-.703.278-.974-.03-.634-.218-1.25-.036-1.881.076-.268.225-.568.494-.684.244-.105.49.023.586.261.156.385.117.83.215 1.23.033.137.07.272.131.399.018.037.043.113.094.108.126-.011.304-.22.398-.298.304-.25.616-.52.965-.705.165-.088.435-.23.603-.08a.6.6 0 0 1 .108.13c.198.31.002.55-.127.845-.166.38-.336.758-.577 1.098-.207.293-.49.549-.655.869-.107.205-.167.43-.123.663.036.188.181.301.373.257.143-.033.24-.156.322-.269.146-.202.281-.412.426-.615.28-.393.61-.76.846-1.183a3.4 3.4 0 0 0 .42-1.664c0-.474-.171-1.198-.723-1.298a1 1 0 0 0-.326.01 1.4 1.4 0 0 0-.374.12 2.7 2.7 0 0 0-.818.637c-.146.16-.276.363-.449.495M9.078.016c-.435.058-.878.052-1.315.12-.838.129-1.64.389-2.425.703q-.43.172-.845.376c-.103.05-.26.09-.343.17-.043.041-.039.139-.044.195-.014.156-.034.313-.05.47-.058.605-.1 1.229-.013 1.834.028.195.09.55.33.587.369.058.656-.397.837-.648.424-.586.905-1.132 1.6-1.394.817-.308 1.753-.381 2.618-.44 2.426-.167 5.078.277 6.865 2.064.254.254.495.524.7.82.8 1.159 1.223 2.477 1.427 3.86.096.65.161 1.308.013 1.955-.257 1.122-.932 2.1-1.706 2.931-.53.57-1.128 1.084-1.749 1.552-.347.261-.736.483-1.062.768-.375.329-.688.74-.925 1.179-.639 1.181-.81 2.602-.622 3.92.038.27.073.542.134.809.018.08.022.217.073.282.097.122.36.189.508.196.154.007.256-.11.294-.249.064-.236.026-.498-.012-.736-.076-.487-.147-.977-.125-1.471a3.7 3.7 0 0 1 1.026-2.425c.643-.673 1.512-1.061 2.243-1.625 1.474-1.136 2.794-2.668 3.301-4.492a5.2 5.2 0 0 0 .159-2.015c-.105-.849-.415-1.697-.708-2.497-.892-2.437-2.422-4.755-4.851-5.87-.964-.443-1.973-.645-3.016-.79q-.735-.1-1.472-.132c-.274-.012-.572-.042-.845-.006M5.277 15.796c-.473.068-.61.447-.523.876.112.548.543.965.97 1.295a6.03 6.03 0 0 0 3.884 1.238c.538-.023 1.124-.112 1.617-.34.265-.122.542-.563.181-.751a.6.6 0 0 0-.169-.051c-.157-.026-.333.041-.482.084-.263.075-.526.153-.797.196-.808.13-1.683-.055-2.352-.534-.542-.387-.98-.898-1.393-1.415-.253-.316-.482-.663-.936-.598m-.615 2.678c-.12.016-.259.011-.362.087-.215.158.022.476.135.62.328.417.76.763 1.192 1.068a7.83 7.83 0 0 0 4.03 1.442c.421.03.85 0 1.267-.07.152-.026.342-.037.482-.103.399-.186.284-.939-.072-1.106-.155-.073-.404.023-.567.046-.385.054-.771.06-1.158.05-1.015-.025-2.096-.338-2.98-.831a5.6 5.6 0 0 1-.966-.693c-.181-.16-.368-.42-.603-.502-.11-.037-.284-.023-.398-.008m.241 2.256a.64.64 0 0 0-.413.236c-.078.088-.152.167-.197.278-.246.609.41 1.183.864 1.47.504.32 1.055.558 1.616.758 1.266.45 2.752.739 4.066.336.391-.12.778-.338 1.062-.634.16-.167.27-.419-.024-.526-.174-.063-.385.098-.543.162a4.6 4.6 0 0 1-1.158.312c-.527.064-1.001-.052-1.508-.179a12 12 0 0 1-1.291-.373 4.5 4.5 0 0 1-1.026-.513c-.094-.066-.206-.125-.282-.211-.25-.282-.439-.612-.707-.88-.116-.116-.281-.256-.459-.236"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.816 22.377c0 .073-.128.132-.286.132-.159 0-.287-.06-.287-.131 0-.073.128-.132.286-.132.159 0 .287.059.287.131m-.738.156c0 .075-.126.136-.281.136s-.282-.061-.282-.136.126-.136.282-.136.281.06.281.136m-.743.14c0 .07-.174.127-.388.127s-.388-.057-.388-.126c0-.07.174-.127.388-.127s.388.057.388.127m-1.136.112c0 .089-.158.16-.354.16s-.354-.071-.354-.16c0-.088.158-.16.354-.16s.354.072.354.16m-1.194.04c0 .096-.237.174-.53.174-.291 0-.528-.078-.528-.175s.237-.175.529-.175.529.078.529.175m1.107-.88c.612-.029.772-.121.791-.325 0 0 .122-.15-.291-.233-.413-.082-.995-.082-.893-.413.102-.335 1.155-.393 1.786-.393s1.345-.039 1.253.301c-.088.34-.549.345-.51.573s.418.16.35.52c-.068.359-1.743.49-2.928.592-1.18.102-1.932-.02-1.743-.34.19-.32 1.573-.252 2.185-.282m-9.97 1.076c.007.045-.127.102-.3.127-.172.025-.317.009-.324-.036-.006-.045.128-.102.3-.127.173-.025.318-.01.325.036m.093.226c.007.053-.148.12-.347.148-.199.03-.366.01-.374-.043s.147-.12.346-.149c.2-.029.367-.01.375.044m.164.204c.008.053-.147.12-.346.148-.199.03-.367.01-.374-.043s.147-.12.346-.149.367-.01.374.044m.739.114c.009.064-.15.138-.355.166-.204.028-.377-.001-.386-.065-.008-.064.15-.138.355-.166.204-.028.377.001.386.065m1.18.13c.007.084-.24.17-.55.196s-.566-.023-.572-.106.239-.17.549-.194.567.022.573.105m1.193.002c.018.084-.2.203-.489.265-.288.063-.536.046-.555-.038-.018-.084.2-.203.49-.265.287-.063.536-.046.554.038m1.246-2.033c.355-.078 1.986-.039 2.03.247.053.292-2.67.544-3.287.631-.617.088-.641.263-.641.263 0 .014-.053.155.35.15.563-.01.956.107.723.379s-2.811.199-3.34 0c-.53-.2-.32-.398-.049-.5.272-.097 1.044-.19 1.937-.36.894-.17 1.928-.728 2.277-.81m6.792-9.734a.646.646 0 1 1-1.291 0 .646.646 0 0 1 1.29 0m-6.233 1.51a.646.646 0 1 1-1.292 0 .646.646 0 0 1 1.291 0m-2.991 6.583c-.354 0-.602-.14-.757-.418a1.3 1.3 0 0 1-.131-.373c-.063-.335-.044-.729.029-1.098.082-.412.228-.796.383-1.039.141-.223.272-.368.389-.465a51 51 0 0 0 .52 1.32c.237.587.455 1.107.616 1.476-.01.02-.025.034-.04.053-.232.31-.557.544-1.009.544m15.016-2.194a.2.2 0 0 0 .019.072c.053.292.233 1.078.354 1.53-1.864.208-4.505.34-7.432.34-2.476 0-4.748-.093-6.515-.248a87 87 0 0 1-.675-1.607c-.597-1.456-1.33-3.393-1.558-4.578-.21-1.092-.462-2.418.116-3.612l-.33-.029c-1.369-.146-1.553-.413-1.626-.524a.38.38 0 0 1-.04-.374c.122-.306.535-.583 1.015-.81a5 5 0 0 0 .136.28c-.437.21-.776.433-.859.646-.02.044-.01.063.005.088.068.097.461.398 2.685.47a.63.63 0 0 1-.5-.504.63.63 0 0 1 .058-.393 6 6 0 0 0-.602.364S1.936 6.765 3.12 6.046a.76.76 0 0 1 .398-.121c.99 0 1.723 2.16 1.723 2.16s-.145.054-.359.15c.262.025.782.146 1.83.569 1.068.432 1.496.46 1.612.46A.63.63 0 0 1 9 9.344l.034.034a23 23 0 0 0 .456-.04q.072-.008.195-.038a.63.63 0 0 1 .286-.583.62.62 0 0 1 .733.044.4.4 0 0 0 .087-.034c.272-.136 1.233-1.16 1.957-2.034a.62.62 0 0 1 .612-.214c.194-.655.97-2.976 2.155-2.976 1.379 0 .578 2.729.442 2.923 0 0-.32-.024-.758-.024-.485 0-1.116.029-1.63.165l.053.039a.624.624 0 0 1 .082.878c-.116.136-.267.32-.442.52.36-.146.733-.306 1.107-.466a49 49 0 0 0 1.724-.792h.01l.004-.01c.442-.213.84-.417 1.175-.606 1.17-.656 1.316-.942 1.33-1.015.01-.048 0-.063-.005-.068-.01-.02-.092-.097-.46-.097-.404 0-.967.092-1.554.219a4 4 0 0 0 .029-.326c.573-.116 1.121-.204 1.529-.204.369 0 .592.068.709.214a.37.37 0 0 1 .068.335c-.044.19-.243.52-1.48 1.214a9 9 0 0 1-.375.204c-.092.053-.194.102-.296.155.558.47.976 1.175 1.238 2.194.53 2.04.937 4.428 1.219 6.321-.462.058-.743.277-.801.631-.063.384.136.592.344.816.224.238.48.505.563 1.107M14.5 5.498c0 .024.004.02.004.02l.063-.117c.044-.073.102-.175.17-.296.073-.122.156-.258.258-.38.048-.057.106-.116.165-.16a.44.44 0 0 1 .184-.082c.02 0 .034-.005.049-.005.014.005.034 0 .048.005.015.005.034.005.049.01l.039.01.01.004c0 .005.004.005.004.01.01.015.015.044.02.078 0 .068-.005.15-.02.223-.01.073-.029.146-.044.214-.033.136-.063.247-.082.33-.024.082-.034.13-.034.13s.034-.033.087-.101c.054-.063.122-.165.195-.291.034-.063.072-.136.102-.219s.058-.175.068-.281a.4.4 0 0 0-.02-.185c-.005-.02-.014-.034-.024-.053l-.015-.025-.02-.024a.4.4 0 0 0-.101-.077l-.01-.005h-.005l-.014-.005h-.005l-.02-.01-.043-.015c-.024-.01-.058-.014-.088-.019s-.063-.005-.092-.005c-.029.005-.063.005-.092.01a.7.7 0 0 0-.32.155c-.088.073-.151.156-.204.238-.102.165-.16.33-.2.471a2 2 0 0 0-.058.35q-.006.058-.005.097m-4.287 3.578a.187.187 0 0 0-.063.252c.014.02.092.131.257.194a.7.7 0 0 0 .252.044c.146 0 .306-.039.471-.112.36-.16 1.238-1.048 2.243-2.257a.184.184 0 0 0-.14-.301.18.18 0 0 0-.141.068c-.433.52-1.656 1.922-2.093 2.146l-.02.01q-.078.03-.15.053l-.223.063-.18-.146a.17.17 0 0 0-.116-.043.2.2 0 0 0-.097.029M9.17 14.304c.058.335.587.524 1.185.427.597-.097 1.038-.451.98-.786s-.587-.525-1.184-.427c-.597.102-1.034.456-.981.786M4.417 7.949l.073.093s-.005-.015-.005-.035c-.005-.019-.005-.048-.014-.087a2 2 0 0 0-.078-.31 2.4 2.4 0 0 0-.175-.418 2 2 0 0 0-.14-.223 1 1 0 0 0-.205-.214c-.048-.03-.097-.063-.165-.083-.014-.004-.034-.004-.053-.01h-.073c-.01 0-.029.006-.034.006l-.029.01-.02.004-.004.005-.01.005a.34.34 0 0 0-.16.136.45.45 0 0 0-.054.175c-.01.106.015.194.035.272.024.077.053.15.082.208a1.5 1.5 0 0 0 .17.272q.036.045.058.068l.024.024-.024-.116c-.014-.073-.039-.18-.058-.301a2 2 0 0 1-.024-.194.6.6 0 0 1 .01-.19.1.1 0 0 1 .024-.053c.01-.005.014-.01.029-.015h.01l.014-.005c.005 0 0 .005 0 .005h.005a.2.2 0 0 1 .063.034c.049.04.102.093.15.15.054.064.102.122.146.185.087.126.175.248.248.35a5 5 0 0 0 .184.252m.355 1.078.034.005c.13.015.553.092 1.592.51.854.344 1.5.52 1.913.52.31 0 .393-.098.422-.132.044-.053.049-.107.044-.136a.19.19 0 0 0-.185-.17.16.16 0 0 0-.082.02l-.088.043h-.116c-.248 0-.762-.082-1.767-.49-1.204-.485-1.646-.539-1.777-.539-.03 0-.039 0-.058.005a.2.2 0 0 0-.117.078.182.182 0 0 0 .15.286zm.043 3.695a2.039 2.039 0 1 0 4.078 0 2.039 2.039 0 0 0-4.078 0m5.525 3.364c-.267.102-.5.247-.704.374.049.218.199.708.631.582.354-.107.15-.733.073-.956m.621.781c.117.044.578.083.534-.475-.014-.195-.029-.33-.038-.423q-.065-.006-.122-.005c-.136 0-.262-.004-.369-.004-.111 0-.17.004-.194.01l-.155.028c.038.253.145.797.344.87m1.787-1.378c.432-.195.432-.525.408-.695-.03-.18-.297-.558-1.38-.568 0 0-.334.782-1.242.928-.908.15-1.296-.025-1.451-.219 0 0-.874.257-.947.81-.073.554.66.749 1.01.554s.873-.616 1.573-.708c.373-.049 1.597.092 2.029-.102m2.47-4.234a2.039 2.039 0 1 0-4.077 0 2.039 2.039 0 0 0 4.078 0M3.117 18.198a3.3 3.3 0 0 0-.024.956c-.66-.14-1.034-.306-1.034-.476s.383-.335 1.058-.48m18.487.038c.573.136.888.287.883.442 0 .248-.767.476-2.063.656.233-.063.495-.233.796-.515a1.5 1.5 0 0 0 .35-.5 1 1 0 0 0 .034-.083m-.35-.072a1.05 1.05 0 0 1-.276.388c-.389.369-.622.447-.753.447-.257 0-.447-.36-.558-1.064-.005-.048-.015-.097-.02-.145-.092-.7-.412-1.04-.645-1.282-.204-.213-.301-.33-.262-.548.053-.316.436-.384.747-.384.146 0 .257.015.257.015h.02c.573.01 1.17.529 1.451 1.252.156.398.219.903.04 1.32M4.71 6.362a2 2 0 0 0-.326-.36c-.01-.398-.01-.757.01-.898.039-.262.69-1.024 1.296-1.607.51-.49 1.486-1.335 2.301-1.5q.189-.037.442-.038c1.554 0 4.7 1.165 4.855 1.32l.01.01c.038-.379.077-.908.01-1.059 0 0 .295.093.349.277 0 0 .733-.738.66-1.655 0 0 .165 0 .184.296 0 0 .53-1.253.918-1.141s-.126 1.86-.403 2.19c0 0 .442-.107.495-.404 0 0 .054.258-.02.403 0 0 .996-.81.957-1.12 0 0 .131.315.092.552 0 0 .826-.66.826-.937 0 0 .126 1.603-1.471 2.19 0 0 .422-.053.626-.092 0 0-.175.228-.442.553q-.242-.152-.563-.15c-.64 0-1.228.485-1.748 1.442.078-.418-.029-.758-.184-.792q-.009-.006-.024-.005c-.16 0-.389.277-.481.69-.092.437.015.806.175.84.058.014.13-.02.204-.088-.15.36-.267.694-.345.932-3.976 1.792-6.505 1.753-7.656 1.573a7 7 0 0 0-.442-.942c-.058-.097-.116-.194-.174-.281 2.776.747 6.476-.65 7.956-1.296-.077-.219-.087-.5-.02-.806.064-.296.195-.549.355-.719a2 2 0 0 0-.072-.242c-.34-.185-3.156-1.234-4.627-1.234-.146 0-.272.015-.379.034-1.3.267-3.277 2.53-3.35 2.85-.024.155-.014.68.005 1.214"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.35 0a.01.01 0 0 1 .012.007l.014.052a.01.01 0 0 1-.004.01c-.594.406-1.168 1.487-.837 2.726l1.259 4.71 1.82 6.808c.373 1.398.892 2.173 1.611 2.28a.01.01 0 0 1 .008.006l.02.055a.01.01 0 0 1-.003.01c-.373.365-.678 1.27-1.064 2.102q-.065.142-.126.285c-.444 1.036-1.388 3.244-4.223 4.331-3.415 1.308-6.886.483-8.35-1.94-.958-1.58-.729-3.739.827-4.614 1.35-.757 2.806-.26 3.354.86.532 1.085.165 2.242-.274 2.623-.09.08-.002.232.204.37.91.629 1.945.595 2.945.065 1.28-.677 1.735-1.84 1.071-4.323L9.278 3.94C8.947 2.7 7.91 2.05 7.194 1.998a.01.01 0 0 1-.008-.007l-.014-.052a.01.01 0 0 1 .007-.012zm1.142.288c.01-.003.017.008.01.015-.386.438-.643 1.101-.35 2.196L18.2 13.894c.534 1.997 1.44 2.106 1.869 2.233a.02.02 0 0 1 .009.032c-.223.226-.78 1.574-1.043 2.227-.412 1.027-1.157 2.176-1.895 2.764-.009.006-.02-.004-.014-.013.673-1.065 1.271-2.549 1.68-3.579.195-.494.383-.937.552-1.151a1 1 0 0 1 .056-.064c.012-.012.005-.032-.011-.033a1 1 0 0 1-.128-.016c-.35-.073-.71-.352-.97-.715-.265-.37-.491-.882-.666-1.535L14.631 2.8c-.327-1.222.144-2.287.861-2.511ZM8.715 16.25c.608.206 1.14.649 1.504 1.401a3.3 3.3 0 0 1 .165 2.502.02.02 0 0 1-.015.013.85.85 0 0 1-.533-.08.06.06 0 0 1-.029-.071 3.44 3.44 0 0 0-.153-2.638 2.8 2.8 0 0 0-.947-1.11c-.01-.006-.003-.02.008-.017"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.365 0 0 5.364 0 12s5.365 12 12 12 12-5.364 12-12V0zm.496 3.318h8.17v8.17h-8.17zm-9.168 9.178h8.16v8.149c-4.382-.257-7.904-3.767-8.16-8.149m9.168.016h8.152a8.684 8.684 0 0 1-8.152 8.148z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.138.034A12 12 0 0 0 2.35 4.873a9.35 9.35 0 0 0 1.351 7.82.014.014 0 1 1-.022.018 8.23 8.23 0 0 1-2.08-6.656c0-.015-.012-.019-.019-.007A11.9 11.9 0 0 0 .362 9.065a8.76 8.76 0 0 0 2.421 5.358.015.015 0 0 1-.018.023 7.17 7.17 0 0 1-2.64-4.044c0-.015-.02-.015-.02 0a12 12 0 0 0-.058 2.656A7.2 7.2 0 0 0 2.24 16.21c.016.015 0 .035-.016.027A6.5 6.5 0 0 1 .27 14.457c-.007-.011-.02-.007-.017.006a11.996 11.996 0 0 0 23.48 0c0-.013-.009-.017-.017-.006a6.5 6.5 0 0 1-1.955 1.78c-.018.01-.032-.011-.016-.026a7.2 7.2 0 0 0 2.196-3.153h.013a12 12 0 0 0-.06-2.656c0-.015-.017-.015-.02 0a7.17 7.17 0 0 1-2.64 4.044.015.015 0 0 1-.018-.023 8.76 8.76 0 0 0 2.42-5.358 11.9 11.9 0 0 0-1.218-3.017c-.008-.012-.022-.008-.018.007a8.23 8.23 0 0 1-2.08 6.656.015.015 0 1 1-.023-.017 9.34 9.34 0 0 0 1.353-7.821A12 12 0 0 0 11.138.034m.044.311a7.721 7.721 0 0 1 6.238 13.173l-.001.002c-2.454 2.387-6.118.862-5.745-2.07.286-2.26 3.057-4.51 5.156-5.732a.016.016 0 0 0 0-.027 18 18 0 0 1-1.214-1.296 2.413 2.413 0 0 0-3.855.067l-6.032.56a.019.019 0 0 0 0 .037l6.466.375c1.147.064 1.521 1.105.416 1.943-4.107 3.113-4.84 6.407-3.919 9.018a.017.017 0 0 1-.031.014 5.3 5.3 0 0 1-.814-1.875A7.721 7.721 0 0 1 11.182.345M9.12 17.335h1.635l-.874 2.281a2.195 2.195 0 0 1-2.339 1.262 5.3 5.3 0 0 1-1.138-.112l.28-.728c.748.087 1.39.021 1.641-.633zm3.866 0h1.463l.328 3.43H13.14l-.025-.677h-1.477l-.543.678H9.743l2.74-3.176a.7.7 0 0 1 .503-.254zm3.545 0h1.636l-1.039 2.704h2.079l-.28.727h-3.71zm-3.47.999-.88 1.096h.92z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.591 19.649h.771v-3.786h-.77zm-6.874-5.03-.238-.733 3.6-1.17.238.735-3.6 1.17m4.645-5.762L7.138 5.796l.624-.453 2.224 3.062zm5.315.028-.624-.454 2.225-3.062.624.453zm4.592 5.78-3.6-1.17.238-.734 3.6 1.17zM12 .001C5.383.001 0 5.384 0 11.998 0 18.617 5.383 24 12 24s12-5.382 12-12c0-6.617-5.383-12-12-12zm0 2.43c5.284 0 9.569 4.283 9.569 9.567 0 5.287-4.285 9.573-9.569 9.573-5.286 0-9.57-4.286-9.57-9.573 0-5.284 4.285-9.567 9.57-9.567m1.552 7.96.575 1.768.747.242 4.736-1.538-.86-2.645-4.736 1.539zm.337 2.5-1.504 1.093v.785l2.927 4.03 2.25-1.636-2.927-4.029zm-2.275 1.093-1.504-1.093-.747.243-2.927 4.029 2.25 1.635 2.928-4.029zM9.873 12.16l.574-1.767-.462-.635-4.736-1.54-.86 2.646 4.737 1.54zm1.198-2.22h1.859l.462-.636v-4.98H10.61v4.98z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0h24v24H0zm22.034 18.276c-.175-1.095-.888-2.015-3.003-2.873-.736-.345-1.554-.585-1.797-1.14-.091-.33-.105-.51-.046-.705.15-.646.915-.84 1.515-.66.39.12.75.42.976.9 1.034-.676 1.034-.676 1.755-1.125-.27-.42-.404-.601-.586-.78-.63-.705-1.469-1.065-2.834-1.034l-.705.089c-.676.165-1.32.525-1.71 1.005-1.14 1.291-.811 3.541.569 4.471 1.365 1.02 3.361 1.244 3.616 2.205.24 1.17-.87 1.545-1.966 1.41-.811-.18-1.26-.586-1.755-1.336l-1.83 1.051c.21.48.45.689.81 1.109 1.74 1.756 6.09 1.666 6.871-1.004.029-.09.24-.705.074-1.65zm-8.983-7.245h-2.248c0 1.938-.009 3.864-.009 5.805 0 1.232.063 2.363-.138 2.711-.33.689-1.18.601-1.566.48-.396-.196-.597-.466-.83-.855-.063-.105-.11-.196-.127-.196l-1.825 1.125c.305.63.75 1.172 1.324 1.517.855.51 2.004.675 3.207.405.783-.226 1.458-.691 1.811-1.411.51-.93.402-2.07.397-3.346.012-2.054 0-4.109 0-6.179z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m0 5.265 2.022 4.589 2.022-4.59zm2.022 7.6c.698 0 1.266-.565 1.266-1.26 0-.699-.568-1.262-1.266-1.262a1.262 1.262 0 1 0 0 2.523M.928 16.228c0 .957.862 2.509 3.315 2.509s3.315-1.188 3.315-2.51V5.266H5.369l.001 11.342c0 .62-.503 1.14-1.126 1.14a1.127 1.127 0 0 1-1.128-1.124l-.001-2.311H.928zm8.289 2.311V5.265h4.374c.845 0 2.187.693 2.187 2.162v2.261c0 .662-.58 1.833-1.44 1.833.86 0 1.44.742 1.44 1.305v3.979c0 .676-.546 1.733-2.187 1.733zm3.38-7.559c.796 0 .995-.134.995-2.214s-.2-2.246-.995-2.246h-1.195v4.457zm.995 3.811c0-2.081 0-2.69-.864-2.69h-1.326v5.348l1.326.003c.863 0 .863-.581.863-2.66m3.779 3.748H24v-4.226h-2.189l.002 2.31a1.126 1.126 0 0 1-2.255 0V5.265H17.37Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.05 9.864c.972.074 1.726.367 2.355.685v-1.31s-1.258-.317-2.441-.368C8.838 8.686 7.669 10.305 7.669 12s1.17 3.314 5.295 3.13c1.183-.054 2.44-.37 2.44-.37v-1.309c-.619.308-1.382.611-2.354.683-1.68.128-2.69-.69-2.69-2.134 0-1.445 1.01-2.261 2.69-2.135m7.685 4.122c-.051.01-.158.02-.215.02h-1.8v-1.631h1.8c.057 0 .164.01.215.02a.806.806 0 0 1 .632.795.804.804 0 0 1-.632.796M18.72 9.95h1.632c.059 0 .145.007.177.013.338.058.626.331.626.74a.735.735 0 0 1-.626.739 2 2 0 0 1-.178.013h-1.63zm3.499 1.985V11.9c.913-.133 1.415-.726 1.415-1.42 0-.883-.734-1.392-1.73-1.442-.077-.003-.202-.01-.304-.01h-5.332v5.946h5.755c1.13 0 1.977-.604 1.977-1.547 0-.87-.772-1.422-1.781-1.491zm-17.864.68c0 .878-.591 1.53-1.666 1.53-.917 0-1.817-.272-2.689-.694v1.309s1.402.383 3.191.383c2.971 0 3.837-1.125 3.837-2.529V9.027H4.354z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.85 4.396a.71.71 0 0 0-.046.976l2.583 2.553a.734.734 0 0 0 .988-.046.72.72 0 0 0 0-1.035L3.898 4.396a.743.743 0 0 0-1.048 0m18.305-.004a.71.71 0 0 1 .047.977l-2.583 2.553a.734.734 0 0 1-.988-.046.72.72 0 0 1 0-1.036l2.477-2.448a.743.743 0 0 1 1.047 0m-16.65 9.045a.73.73 0 0 1-.742.732h-2.27a.74.74 0 0 1-.741-.732c0-.408.338-.732.74-.732h2.271c.413 0 .741.333.741.732zm7.49-11.123c.413 0 .742.324.742.732v2.243a.74.74 0 0 1-.741.732.74.74 0 0 1-.742-.732V3.046c0-.408.338-.732.742-.732zm11.257 11.132a.73.73 0 0 1-.741.732h-2.27a.74.74 0 0 1-.742-.732c0-.408.338-.732.742-.732h2.27c.413 0 .741.333.741.732m-10.135 4.06c-.03 0-.036-.048-.007-.056 1.738-.484 3.04-2.105 3.04-3.984-.001-2.274-1.879-4.134-4.133-4.132-2.266.015-4.119 1.898-4.105 4.159a4.14 4.14 0 0 0 3.048 3.955c.029.008.023.057-.007.057l-2.733.006a.2.2 0 0 1-.14-.057 5.72 5.72 0 0 1-1.683-3.926c-.056-3.04 2.531-5.682 5.586-5.714s5.675 2.577 5.683 5.63c-.003 1.54-.667 2.977-1.704 4.01a.2.2 0 0 1-.14.057zM24 17.92c0 .804-.244 1.417-.72 1.853-.482.436-1.128.654-1.922.654h-7.156a2 2 0 0 0-.208-.012c-.804 0-1.21.5-1.457 1.203a.1.1 0 0 1-.096.07h-.874a.1.1 0 0 1-.095-.07c-.152-.457-.24-.826-.69-1.024q-.326-.167-.812-.167H2.642c-.808 0-1.446-.218-1.922-.654C.245 19.337 0 18.724 0 17.92q0-.148.012-.292a.1.1 0 0 1 .099-.09h1.026c.065 0 .114.06.113.125v.066q0 .584.366.913c.244.218.598.327 1.073.327h7.32c.795 0 1.427.218 1.91.66q.04.041.074.083.04-.042.081-.082.724-.663 1.909-.661h7.327q.705 0 1.073-.327c.244-.218.36-.525.36-.913v-.066c-.002-.064.048-.125.112-.125h1.034c.051 0 .095.039.099.09q.012.143.011.292z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.165 7.169v5.2c0 .677-.444 1.079-1.163 1.079-.718 0-1.099-.529-1.099-1.1v-.93H0v.952c0 .972.296 2.707 3.024 2.707 2.727 0 3.108-1.862 3.108-2.75V7.17Zm4.918 2.156c-1.798 0-2.6 1.648-2.6 3.066 0 1.416.909 2.79 2.769 2.79 1.628.022 2.707-1.035 2.707-1.818h-1.798s-.211.508-.846.508c-.634 0-.993-.36-.993-1.227h3.658c0-2.727-1.353-3.32-2.897-3.32m5.847 0c-1.797 0-2.6 1.648-2.6 3.066 0 1.416.909 2.79 2.77 2.79 1.628.022 2.706-1.035 2.706-1.818H16.01s-.212.508-.846.508c-.635 0-.994-.36-.994-1.227h3.657c0-2.727-1.352-3.32-2.896-3.32m6.743.063c-.913 0-1.318.497-1.34.522-.128.154-.287.317-.287-.078v-.296h-1.82v7.295h1.84v-2.009c0-.148.148-.126.255 0 .106.128.57.444 1.375.444 1.459 0 2.304-1.268 2.304-3.002 0-2.241-1.416-2.876-2.327-2.876m-12.4 1.12c.676 0 .971.508.971 1.037h-1.86c0-.572.233-1.036.888-1.036m5.846 0c.677 0 .973.508.973 1.037H14.23c0-.572.233-1.036.888-1.036m5.92.297c.932 0 1.1.719 1.1 1.459s-.127 1.712-1.013 1.712c-.889 0-1.122-.57-1.102-1.648.022-1.079.444-1.523 1.016-1.523zm2.282 4.566a.586.586 0 0 0-.586.586.585.585 0 1 0 .586-.586m0 .062a.524.524 0 0 1 .524.524.525.525 0 0 1-.524.524.526.526 0 0 1-.525-.524c0-.29.235-.524.525-.524m-.21.202v.621h.072v-.269h.176l.116.27h.08l-.121-.288a.14.14 0 0 0 .072-.045.18.18 0 0 0 .043-.115c0-.103-.08-.174-.195-.174zm.07.068h.172c.072 0 .118.041.118.105 0 .072-.049.116-.128.116h-.162z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.073 24q-.523 0-1.02-.189a2.85 2.85 0 0 1-1.726-3.402l-.015-.006.09-.226L12.399 2.01c.105-.27.057-.91.006-1.267a.5.5 0 0 1 .008-.24l.008-.023.006-.015V.458l.009-.019c.108-.292.45-.439 1.008-.439.673 0 1.602.21 2.551.573.797.307 1.523.689 2.033 1.075.602.45.842.854.707 1.2l-.031.045-.016.015a.8.8 0 0 1-.15.165c-.314.271-.764.735-.84.945l-7.063 18.421-.016-.006a2.87 2.87 0 0 1-2.543 1.561H8.07zm-2.187-3.718-.02.05A2.36 2.36 0 0 0 7.23 23.35q.407.156.837.154c.971 0 1.83-.585 2.188-1.5l.027-.061 6.959-18.09c.146-.39.84-1.02.979-1.14l.016-.016c.012-.015.02-.015.02-.03 0-.06-.061-.27-.557-.645-.479-.36-1.154-.72-1.904-1.005-.868-.328-1.768-.539-2.368-.539-.39 0-.524.082-.545.126v.04c.016.104.147 1.035-.034 1.515l-6.962 18.12zm8.95-11.507s-.964 1.109-1.843 1.509c-.88.398-1.529.293-2.32.756-.789.461-1.188 1.103-1.188 1.103L6.27 20.505c-.348.944.168 2.05 1.125 2.42.96.369 2.04-.12 2.412-1.056zM9.905 18.76c.104-.041.225 0 .266.105.042.104 0 .222-.105.264-.104.043-.225 0-.266-.104a.204.204 0 0 1 .105-.265m-1.014-1.802a.297.297 0 0 1-.397-.155.296.296 0 0 1 .154-.397c.154-.07.335 0 .398.153.074.15.008.314-.155.39zm.286-1.096a.58.58 0 0 1 .287-.758.574.574 0 0 1 .75.285.583.583 0 0 1-.285.757c-.3.126-.629 0-.765-.285zm2.426-2.258a.295.295 0 0 1 .398.15c.07.154 0 .336-.153.399a.297.297 0 0 1-.399-.155.293.293 0 0 1 .154-.397zm-1.293-1.379c.105-.042.226 0 .266.105.043.104 0 .226-.104.266-.104.042-.226 0-.265-.104a.205.205 0 0 1 .103-.267M13.681 1.14c.1-.261.993-.162 1.995.226.999.384 1.729.909 1.63 1.17-.104.264-.997.164-1.996-.221-1.005-.385-1.734-.91-1.632-1.176z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 .002C8.826.002-1.398 18.537.16 21.666c1.56 3.129 22.14 3.094 23.682 0S15.177 0 12 0zm7.76 18.949c-1.008 2.028-14.493 2.05-15.514 0C3.224 16.9 9.92 4.755 12.003 4.755c2.081 0 8.77 12.166 7.759 14.196zM12 9.198c-1.054 0-4.446 6.15-3.93 7.189.518 1.04 7.348 1.027 7.86 0 .511-1.027-2.874-7.19-3.93-7.19z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.872 24h-.975a4 4 0 0 1-.07-.197c-.215-.666-.594-1.49-.692-2.154-.146-.984.78-1.039 1.374-1.465.915-.66 1.635-1.025 2.627-1.62.295-.179 1.182-.624 1.281-.829.201-.408-.345-.982-.49-1.3-.225-.507-.345-.937-.376-1.435-.824-.13-1.455-.627-1.844-1.185-.63-.925-1.066-2.635-.525-3.936.045-.103.254-.305.285-.463.06-.308-.105-.72-.12-1.048-.06-1.692.284-3.15 1.425-3.66.463-1.84 2.113-2.453 3.673-3.367.58-.342 1.224-.562 1.89-.807 2.372-.877 6.027-.712 7.994.783.836.633 2.176 1.97 2.656 2.939 1.262 2.555 1.17 6.825.287 9.934-.12.421-.29 1.032-.533 1.533-.168.35-.689 1.05-.625 1.36.064.314 1.19 1.17 1.432 1.395.434.422 1.26.975 1.324 1.5.07.557-.248 1.336-.41 1.875-.217.721-.436 1.441-.654 2.131H2.87zm11.104-3.54a7.7 7.7 0 0 0-2.065-.757c-.87-.164-.78 1.188-.75 1.994.03.643.36 1.316.51 1.744.076.197.09.41.256.449.3.068 1.29-.326 1.575-.479.6-.328 1.064-.844 1.574-1.189.016-.17.016-.34.03-.508a2.65 2.65 0 0 0-1.095-.277c.314-.15.75-.15 1.035-.332l.016-.193c-.496-.03-.69-.254-1.021-.436zm7.454 2.935a18 18 0 0 0 .465-1.752c.06-.287.215-.918.178-1.176-.059-.459-.684-.799-1.004-1.086-.584-.525-.95-.975-1.56-1.469-.249.375-.78.615-.983.914 1.447-.689 1.71 2.625 1.141 3.69.09.329.391.45.514.735l-.086.166h1.29c.013 0 .03 0 .044.014zm-6.634-.012c-.05-.074-.1-.135-.15-.209l-.301.195h.45zm2.77 0c.008-.209.018-.404.03-.598-.53.029-.825-.48-1.196-.527-.324-.045-.6.361-1.02.195-.095.105-.183.227-.284.316q.23.27.424.584h.815a.3.3 0 0 1 .3-.285c.165 0 .284.121.284.27h.66zm2.116 0c-.314-.479-.947-.898-1.68-.555l-.03.541h1.71zm-8.51 0-.104-.344c-.225-.72-.36-1.26-.405-1.68-.914-.436-1.875-.87-2.654-1.426-.15-.105-1.109-1.35-1.23-1.305-1.739.676-3.359 1.86-4.814 2.984.256.557.48 1.141.69 1.74h8.505zm8.265-2.113c-.029-.512-.164-1.56-.48-1.74-.66-.39-1.846.78-2.34.943.045.15.135.271.15.48.285-.074.645-.029.898.092-.299.03-.629.03-.824.164-.074.195.016.48-.029.764.69.197 1.5.303 2.385.332.164-.227.225-.645.211-1.082zm-4.08-.36c-.044.375.046.51.12.943 1.26.391 1.034-1.74-.135-.959zM8.76 19.5c-.45.457 1.27 1.082 1.814 1.115 0-.29.165-.564.135-.77-.65-.118-1.502-.042-1.945-.347zm5.565.215c0 .043-.061.03-.068.064.58.451 1.014.545 1.802.51.354-.262.67-.563 1.043-.807-.855.074-1.931.607-2.774.23zm3.42-17.726c-1.606-.906-4.35-1.591-6.076-.731-1.38.692-3.27 1.84-3.899 3.292.6 1.402-.166 2.686-.226 4.109-.018.757.36 1.42.391 2.242-.2.338-.825.38-1.26.356-.146-.729-.4-1.549-1.155-1.63-1.064-.116-1.845.764-1.89 1.683-.06 1.08.833 2.864 2.085 2.745.488-.046.608-.54 1.139-.54.285.57-.445.75-.523 1.154-.016.105.06.511.104.705.233.944.744 2.16 1.245 2.88.635.9 1.884 1.051 3.229 1.141.24-.525 1.125-.48 1.706-.346-.691-.27-1.336-.945-1.875-1.529-.615-.676-1.23-1.41-1.261-2.28 1.155 1.604 2.1 3 4.2 3.704 1.59.525 3.45-.254 4.664-1.109.51-.359.811-.93 1.17-1.439 1.35-1.936 1.98-4.71 1.846-7.394-.06-1.111-.06-2.221-.436-2.955-.389-.781-1.695-1.471-2.475-.781-.15-.764.63-1.23 1.545-.96-.66-.854-1.336-1.858-2.266-2.384zM13.58 14.896c.615 1.544 2.724 1.363 4.505 1.323-.084.194-.256.435-.465.515-.57.232-2.145.408-2.937-.012-.506-.27-.824-.873-1.102-1.227-.137-.172-.795-.608-.012-.609zm.164-.87c.893.464 2.52.517 3.731.48.066.267.066.593.068.913-1.55.08-3.386-.304-3.794-1.395h-.005zm6.675-.586c-.473.9-1.145 1.897-2.539 1.928-.023-.284-.045-.735 0-.904 1.064-.103 1.727-.646 2.543-1.017zm-.649-.667c-1.02.66-2.154 1.375-3.824 1.21-.351-.31-.485-1-.14-1.458.181.313.06.885.57.97.944.165 2.038-.579 2.73-.84.42-.713-.046-.976-.42-1.433-.782-.93-1.83-2.1-1.802-3.51.314-.224.346.346.391.45.404.96 1.424 2.175 2.174 3 .18.21.48.39.51.524.092.39-.254.854-.209 1.11zm-13.439-.675c-.314-.184-.393-.99-.768-1.01-.535-.03-.438 1.05-.436 1.68-.37-.33-.435-1.365-.164-1.89-.308-.15-.445.164-.618.284.22-1.59 2.34-.734 1.99.96zM4.713 5.995c-.685.756-.54 2.174-.459 3.188 1.244-.785 2.898.06 2.883 1.394.595-.016.223-.744.115-1.215-.353-1.528.592-3.187.041-4.59-1.064.084-1.939.52-2.578 1.215zm9.12 1.113c.307.562.404 1.148.84 1.57.195.19.574.424.387.95-.045.121-.365.391-.551.45-.674.195-2.254.03-1.721-.81.563.015 1.314.36 1.732-.045-.314-.524-.885-1.53-.674-2.13zm6.198-.013h.068c.33.668.6 1.375 1.004 1.965-.27.628-2.053 1.19-2.023.057.39-.17 1.05-.035 1.395-.25-.193-.556-.48-1.006-.434-1.771zm-6.927-1.617c-1.422-.33-2.131.592-2.56 1.553-.384-.094-.231-.615-.135-.883.255-.701 1.28-1.633 2.119-1.506.359.057.848.386.576.834zM9.642 1.593c-1.56.44-3.56 1.574-4.2 2.974.495-.07.84-.321 1.33-.351.186-.016.428.074.641.015.424-.104.78-1.065 1.102-1.41.31-.345.685-.496.94-.81.167-.09.409-.074.42-.33-.073-.075-.15-.135-.232-.105z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.251 11.82a3.12 3.12 0 0 0-2.328-3.01L22.911 0H8.104L11.1 8.838a3.12 3.12 0 0 0-2.244 2.988 3.12 3.12 0 0 0 1.313 2.536 8.3 8.3 0 0 1-1.084 1.244 8.1 8.1 0 0 1-2.55 1.647c-.834-.563-1.195-1.556-.869-2.446a3.11 3.11 0 0 0-.91-6.08 3.117 3.117 0 0 0-3.113 3.113c0 .848.347 1.626.903 2.182q-.072.144-.146.299c-.465.959-.993 2.043-1.195 3.259-.403 2.432.257 4.384 1.849 5.489A5.1 5.1 0 0 0 5.999 24c1.827 0 3.682-.917 5.475-1.807 1.279-.632 2.599-1.292 3.898-1.612.48-.118.98-.187 1.508-.264 1.07-.153 2.175-.312 3.168-.89a4.48 4.48 0 0 0 2.182-3.091c.174-.994 0-1.994-.444-2.87.298-.48.465-1.042.465-1.647zm-1.355 0c0 .965-.785 1.75-1.75 1.75a1.753 1.753 0 0 1-1.085-3.126l.007-.007q.085-.063.18-.125s.008 0 .008-.007c.028-.014.055-.035.083-.05.007 0 .014-.006.021-.006q.044-.021.097-.042.054-.02.098-.041c.007 0 .013-.007.02-.007.028-.007.056-.021.084-.028.007 0 .02-.007.028-.007.034-.007.062-.014.097-.02h.007l.104-.022c.007 0 .02 0 .028-.007.028 0 .055-.007.083-.007h.035c.035 0 .07-.007.111-.007h.09c.028 0 .05 0 .077.007h.014q.083.009.167.028a1.766 1.766 0 0 1 1.396 1.723zM10.043 1.39h10.93l-2.509 7.4c-.104.02-.208.055-.312.09l-2.64-5.385-2.648 5.35c-.104-.034-.216-.055-.327-.076zm4.968 9.825a3.1 3.1 0 0 0-.938-1.668l1.438-2.904 1.452 2.967c-.43.43-.743.98-.868 1.605zm-3.481-1.098c.034-.007.062-.014.097-.02h.02c.029-.008.056-.008.084-.015h.028c.028 0 .049-.007.076-.007h.271c.028 0 .049.007.07.007.014 0 .02 0 .035.007.027.007.048.007.076.014q.009-.002.028.007l.097.02h.007q.042.01.083.029c.007 0 .014.007.028.007.021.007.049.014.07.027.007 0 .014.007.02.007.028.014.056.021.084.035h.007a.4.4 0 0 1 .09.049h.007c.028.014.056.034.084.048.007 0 .007.007.013.007.028.014.05.035.077.049l.007.007c.083.062.16.132.236.201l.007.007a1.75 1.75 0 0 1 .48 1.209 1.752 1.752 0 0 1-3.502 0 1.74 1.74 0 0 1 1.32-1.695m-6.838-.049c.966 0 1.751.786 1.751 1.751s-.785 1.751-1.75 1.751-1.752-.785-1.752-1.75.786-1.752 1.751-1.752m16.163 6.025a3.07 3.07 0 0 1-1.508 2.133c-.758.438-1.689.577-2.669.716a17 17 0 0 0-1.64.291c-1.445.355-2.834 1.05-4.182 1.717-1.724.854-3.35 1.66-4.857 1.66a3.65 3.65 0 0 1-2.154-.688c-1.529-1.056-1.453-3.036-1.272-4.12.167-1.015.632-1.966 1.077-2.877.028-.055.049-.104.077-.16q.228.084.479.126c-.264 1.473.486 2.994 1.946 3.745l.264.139.284-.104c1.216-.431 2.342-1.133 3.336-2.071a9.3 9.3 0 0 0 1.445-1.716c.16.027.32.034.48.034a3.12 3.12 0 0 0 3.008-2.327h1.167a3.11 3.11 0 0 0 3.01 2.327c.576 0 1.11-.16 1.57-.43.18.52.236 1.063.139 1.605"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.778 19.044c3.048-.498 4.755-.73 8.219-2.395L24 13.81c-3.228 3.225-9.249 5.146-15.07 5.098-.75-.01-1.948.017-2.246-.024 3.1.49 6.18.556 9.094.159M3.836 15.764c.75.003 1.805-.014 2.403-.394.535-.467.93-1.106 1.247-1.828l1.545-4.697-2.157.013-1.199 3.664c-.225 1.161-.943 1.566-1.483 1.483l-1.354-.097-.515 1.676zm13.29-.104 1.672-5.074h2.44l.543-1.665-5.907-.01-.556 1.662H16.6l-1.73 5.077 2.257.01m-3.859-.024.564-1.718h-3.204l.297-.909h2.668l.543-1.641h-2.661l.262-.81h3.08l.57-1.713-5.267.027-2.205 6.757zm1.245-9.809c1.883-.072 3.743.083 5.969.277-2.192-.809-5.7-1.407-8.344-1.407-4.344 0-8.644 1.054-12.117 2.675L0 11.07c3.321-3.387 9.114-5.298 14.513-5.243"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.779 9.795h.926v4.986a1.265 1.265 0 0 1-1.344 1.256H0v-.869h.265c.316 0 .52-.147.52-.491V9.795M.779 7.96h.926v.926H.779zm2.444 3.748a.98.98 0 0 1 .971-1.081.98.98 0 0 1 .97 1.081zm2.867.762v-.762l.001-.074a1.877 1.877 0 0 0-1.868-1.868h-.029c-.887 0-1.897.565-1.897 2.365 0 1.885 1.095 2.337 2.043 2.337a2.12 2.12 0 0 0 1.665-.723l-.671-.564a1.45 1.45 0 0 1-1.005.446q-.036.003-.072.002a1.037 1.037 0 0 1-1.029-1.131zm.734-4.047h.925v1.372h.672v.705h-.672v2.681c0 .254.102.344.328.344h.344v.869h-.48a1.06 1.06 0 0 1-1.129-1.128v-2.738H6.35v-.733h.462zm4.673 3.127a.98.98 0 0 1 1.081.971.98.98 0 0 1-1.081.97H9.99V11.55zm-2.483 2.867h2.755a1.77 1.77 0 0 0 1.761-1.761l-.001-.073a1.45 1.45 0 0 0-1.05-1.49c.588-.201.977-.768.954-1.389 0-1.016-.655-1.732-1.913-1.732H9.019v6.456m2.393-5.587a.935.935 0 0 1 1.034.925.936.936 0 0 1-1.034.926H9.996V8.841zm2.647-.881h.926v5.272c0 .209.119.316.344.316h.316v.869h-.406c-.672 0-1.18-.288-1.18-1.129zm1.976 1.835h.925v2.737a.92.92 0 0 0 .912.986.92.92 0 0 0 .911-.986V9.795h.926v4.599h-.926v-.491a1.47 1.47 0 0 1-1.19.565 1.554 1.554 0 0 1-1.542-1.547l.001-.05zm5.096 1.913a.97.97 0 0 1 .971-1.072c.565 0 .943.372.971 1.072zm2.868.762v-.762l.001-.074a1.877 1.877 0 0 0-1.868-1.868h-.03c-.886 0-1.896.565-1.896 2.365 0 1.885 1.095 2.337 2.037 2.337a2.12 2.12 0 0 0 1.66-.745l-.672-.565a1.45 1.45 0 0 1-1.071.448 1.037 1.037 0 0 1-1.029-1.131z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.345 23.997A2.347 2.347 0 0 1 0 21.652V10.988C0 9.665.535 8.37 1.473 7.433l5.965-5.961A5 5 0 0 1 10.989 0h10.666A2.347 2.347 0 0 1 24 2.345v10.664a5.06 5.06 0 0 1-1.473 3.554l-5.965 5.965A5.02 5.02 0 0 1 13.007 24v-.003zm8.969-6.854H5.486v1.371h5.828zM3.963 6.514h13.523v13.519l4.257-4.257a3.94 3.94 0 0 0 1.146-2.767V2.345c0-.678-.552-1.234-1.234-1.234H10.989a3.9 3.9 0 0 0-2.767 1.145zm-.192.192L2.256 8.22a3.94 3.94 0 0 0-1.145 2.768v10.664c0 .678.552 1.234 1.234 1.234h10.666a3.9 3.9 0 0 0 2.767-1.146l1.512-1.511H3.771z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.135.003a2.6 2.6 0 0 0-1.42.344L2.55 5.06a2.6 2.6 0 0 0-.953.967l3.957 2.17a1.77 1.77 0 0 1 .603-.588l4.951-2.86a1.76 1.76 0 0 1 1.76 0l4.951 2.86a1.8 1.8 0 0 1 .526.46l3.921-2.265a2.6 2.6 0 0 0-.816-.744L13.291.347a2.6 2.6 0 0 0-1.152-.34Zm-.145 4.912a1.36 1.36 0 0 0-.68.182L6.36 7.953a1.35 1.35 0 0 0-.454.435l1.92 1.055a1.1 1.1 0 0 1 .31-.275l3.34-1.928a1.05 1.05 0 0 1 1.051 0l3.336 1.928a1 1 0 0 1 .238.199l.018-.01-.002-.002 1.877-1.08a1.4 1.4 0 0 0-.373-.322l-4.95-2.86a1.36 1.36 0 0 0-.68-.178Zm10.432 1.149-3.92 2.26a1.76 1.76 0 0 1 .2.812v5.715c0 .627-.332 1.21-.88 1.528l-4.95 2.86a1.8 1.8 0 0 1-.64.214v4.524a2.6 2.6 0 0 0 1.059-.313l8.162-4.713a2.58 2.58 0 0 0 1.289-2.23V7.297a2.6 2.6 0 0 0-.318-1.228Zm-20.937.238a2.6 2.6 0 0 0-.227.99v9.43c0 .918.491 1.767 1.293 2.229l8.162 4.713a2.6 2.6 0 0 0 1.225.336v-4.531a1.76 1.76 0 0 1-.833-.235L6.156 16.38a1.77 1.77 0 0 1-.877-1.528V9.136a1.8 1.8 0 0 1 .131-.676Zm16.67 2.223-1.89 1.092a1.06 1.06 0 0 1 .124.46v3.856c0 .378-.2.72-.526.907l-3.336 1.93a1 1 0 0 1-.295.107v2.17c.152-.027.304-.078.44-.157l4.949-2.859a1.36 1.36 0 0 0 .68-1.18V9.136a1.36 1.36 0 0 0-.147-.607Zm-12.387.13a1.4 1.4 0 0 0-.088.481v5.715a1.36 1.36 0 0 0 .68 1.18l4.95 2.86c.194.112.412.166.627.177v-2.174a1.05 1.05 0 0 1-.46-.123L8.14 14.843a1.05 1.05 0 0 1-.532-.908v-3.853a1 1 0 0 1 .077-.38l-.034-.013z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10.655 15.631-1.268.353c.11.32.2.893.2 1.665v3.795h1.421v-4.015c.265-.32.552-.474.86-.474.156 0 .277.033.409.11l.386-1.312a1.05 1.05 0 0 0-.53-.122 1.2 1.2 0 0 0-.463.09c-.265.131-.596.43-.805.715 0-.32-.077-.573-.21-.805M5.76 13.757h-.154v7.676h1.477v-3.398h1.864v-1.268H7.082v-1.764H9.41l.088-.673c-1.4-.1-2.668-.32-3.738-.573m-3.452 8.7.684.796c.662-.265 1.49-.86 1.71-1.81.077-.308.1-.506.1-1.51v-6.165H3.308v6.33c0 .828-.032 1.136-.142 1.423-.144.32-.486.695-.86.938zm13.422-3.892c0 1.346-.264 1.92-.871 1.92a.78.78 0 0 1-.717-.464c-.11-.286-.176-.773-.176-1.434 0-.563.055-.96.143-1.268.11-.353.386-.574.728-.574.254 0 .474.11.606.298.199.265.287.76.287 1.522m.87 2.206c.465-.551.674-1.225.674-2.195 0-.916-.187-1.544-.617-2.073-.464-.574-1.06-.85-1.831-.85-1.456 0-2.426 1.18-2.426 2.967s.96 2.934 2.426 2.934c.827.01 1.367-.297 1.775-.783zm4.038-3.177c0 .52-.31.805-.86.805-.497 0-.828-.23-.828-.805 0-.529.31-.838.838-.838.53 0 .85.31.85.838m2.503-1.213-.585-.937c-.33.31-.727.485-1.113.485-.177 0-.276-.022-.662-.12a3.3 3.3 0 0 0-.97-.145c-1.38 0-2.272.75-2.272 1.92 0 .837.375 1.367 1.158 1.576-.32.077-.662.243-.816.43a.8.8 0 0 0-.166.52c0 .176.044.33.11.463a.7.7 0 0 0 .31.275c.253.1.66.166 1.29.177.33 0 .529.01.595.01.386.023.584.09.739.166.143.089.253.287.253.508 0 .22-.132.44-.341.573-.188.132-.497.188-.894.188-.65 0-1.014-.243-1.014-.695 0-.2.022-.243.066-.364h-1.301c-.055.11-.122.265-.122.573 0 .386.144.717.442 1.004.485.474 1.279.606 2.04.606.838 0 1.654-.198 2.128-.727.298-.331.43-.695.43-1.17 0-.507-.143-.893-.463-1.212-.375-.364-.805-.497-1.632-.508l-.761-.01c-.143 0-.232-.056-.232-.133 0-.154.199-.288.563-.464.11.01.143.01.21.01 1.146 0 1.984-.705 1.984-1.686 0-.375-.11-.662-.32-.927.177.022.232.033.364.033.375 0 .673-.12.982-.419M5.384 7.085c-1.764.43-2.966 1.279-2.966 2.25 0 .606.463 1.157 1.224 1.587a2.15 2.15 0 0 1-.353-1.157c.01-1.004.794-1.941 2.095-2.68M24 10.889c0-.64-.397-1.224-1.059-1.709.055.2.1.397.1.596 0 1.82-2.548 3.385-6.165 4.036.408.044.827.066 1.268.066 3.23-.01 5.856-1.345 5.856-2.989m-2.084-.992c0-.673-.574-1.29-1.555-1.798.23.276.353.574.353.883 0 1.62-3.44 2.933-7.698 2.933-4.246 0-7.698-1.312-7.698-2.933q0-.314.165-.596c-.683.452-1.07.97-1.07 1.522 0 1.753 3.916 3.176 8.747 3.176s8.756-1.445 8.756-3.187M18.1 9.81c-1.786 1.147-7.279 1.588-9.639.11-1.853-1.158-1.213-3-6.518-7.036-.694-.53.133-1.092.651-.728s.044.453 1.092 1.5c2.117 2.118 2.095.21 2.426.938.706 1.51 2.25 3.032 2.25 3.032 1.555 1.015 2.79 1.235 5.084-.32 1.456-.981.86 1.566 4.423-.275 1.3-.673 1.246-.22 2.569-2.063.55-.76 1.6.585.408.772-.474.078-1.28.596-1.621 1.412-.496 1.224-.287 2.128-1.125 2.658M8.196 6.7c-.44-.199-.904-.95-1.08-1.246.496-.486.297-1.29.01-1.732-.275-.44-.617-.32-.98-.727-.376-.41.142-1.467.617-.651 1.775 3.055 2.944 1.786 4.39 1.599 1.39-.177 2.624.584 3-1.566.065-.353.407-.43.44.143.033.585.254 1.996 1.015 2.173.76.187 1.378-.177 1.555-.375.176-.2.275-.177.353.33.077.497.275 1.192 1.345.42 2.195-1.566 1.566-2.173 2.426-2.58.485-.232 1.257.518.144 1.08-1.588.805-1.754 1.797-2.757 2.426-1.688 1.059-1.17.044-3.882-.342-1.048-.143-1.38 1.015-2.195.684-1.864-.772-3.177-.618-4.4.364zm5.879-5.657c.066.463.143.452.309.485.165.044.375-.22.375-.463.01-.254-.11-.408-.353-.397-.254.01-.342.132-.331.375m8.16.827c.2.187.728.066.85-.078.32-.352.33-.562.165-.805-.165-.231-.507-.198-.85.056-.341.253-.275.727-.164.827zm-.143 2.338c-.165.22-.176.386-.055.507.132.132.397.242.585.1.187-.155.187-.376.033-.563-.166-.2-.386-.2-.563-.044M5.352 1.45c.253.077.374.32.584.044.11-.133.12-.32-.023-.52-.088-.12-.507-.21-.683-.032-.177.177-.01.464.121.508zM.178 1.295c.463.287.76.717 1.114.33.121-.131.264-.363.01-.826C1.117.457.511.325.301.457c-.22.12-.485.618-.121.838zM4.447 3.49c.143.154.397.143.551.055.144-.088.121-.32-.022-.518-.088-.122-.353-.188-.53 0-.176.187-.098.352 0 .463z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10.844 0 .021 1.2C7.226 1.636 4.1 4.387 3.231 8.176c-1.041 4.517 1.518 9.036 5.783 10.55.042.015.639.18.96.272v.01l.203.047c1.848.43 1.777.347 2.132-1.27.304-.117.568-.095.882-.15a7 7 0 0 0 .764-.178c1.081 1.476.687 1.635 2.696.378 2.453-1.534 1.331-1.205.86-2.593l.98-1.336c1.309.313 1.657.537 1.974-.889.608-2.742.89-2.653-1.054-3.083-.109-.31-.233-1.25-.31-1.635.378-.337 1.272-.589 1.197-1.271-.013-.115-1.523-2.754-1.91-2.887-.538-.188-1.091.449-1.523.6-.244-.206-1.176-.798-1.305-1.058.15-.645.544-1.42-.34-1.735-.685-.25-1.501-.443-2.477-.577l.003.004.527.497-.82.904c.67.045 1.185.165 1.848.356-.404 1.974-.029 1.192 1.322 2.258.252.198.85.794 1.098.854.456.108.894-.363 1.219-.532l.71 1.185c-1.368.866-1.019.648-.663 2.224.371 1.645-.506 1.713 1.457 2.198l-.332 1.35c-1.964-.425-1.197-.007-2.256 1.328-.933 1.172-1.275 1.008-.355 2.333l-1.16.68c-.782-1.409-.777-.959-2.22-.652-1.626.335-1.732-.44-2.194 1.458l-.285-.07-1.137-.344C5.879 16.168 3.7 12.38 4.573 8.588a7.52 7.52 0 0 1 5.955-5.702q.184-.032.366-.057l.021 1.176 1.92-2.118zm1.385 6.854a3.6 3.6 0 0 0-1.142.168c-4.232 1.296-2.575 7.69 1.83 6.567 4.049-1.031 2.777-6.665-.688-6.735m-.108 1.389c2.233.046 2.91 3.542.239 4.095-1.201.248-2.176-.667-2.352-1.657-.228-1.284.665-2.222 1.647-2.4q.243-.044.466-.038M1.534 22.392V24h20.932v-1.608z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.709 7.171c-2.455-.029-6.332 1.749-8.684 2.962-3.434-1.75-10.178-4.729-10.942-1.54-1.03 4.297-2.187 7.563.985 8.167 2.207.42 7.122-2.43 9.912-4.205 2.78 1.771 7.746 4.66 9.96 4.231 3.168-.616 2-3.896.961-8.208-.24-1-1.067-1.394-2.192-1.407"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.613 3.494h-.087C19.268 4.91 13.69 4.91 12.14 4.885l-1.434-.025C6.476 4.705 4.318 3.082.538 1.394c-.261-.116-.565.077-.536.348.029.927.275 4.818 3.186 5.836.102.04.218.077.32.103.144.026.202.142.231.22l.246.76c.044.18.174.334.32.334h.245c.217 0 .391.155.406.348v.735c0 .077-.073.141-.16.141H2.928c-.174 0-.319.13-.319.284v1.147c0 .154.145.283.32.283h1.867c.087 0 .16.064.16.142v.31c0 .076-.073.141-.16.141H2.928c-.174.012-.305.128-.305.283v1.148c0 .129.116.27.247.27h1.94c.088 0 .16.065.16.142v7.537c0 .387.362.709.797.709h1.318c.434 0 .797-.322.797-.71V14.37c0-.077.072-.142.16-.142l8.14-.013c.087 0 .16.065.16.142v7.576c0 .386.362.709.797.709h1.318c.434 0 .796-.323.796-.71v-7.588c0-.077.073-.141.16-.141 0 0 2.028-.013 2.057-.026a.29.29 0 0 0 .144-.245v-1.135c0-.155-.144-.283-.333-.283h-2.013V12.5h-.015v-.425c0-.078.073-.142.16-.142h1.868c.174 0 .319-.129.319-.283v-1.147c0-.155-.145-.284-.32-.284h-1.867c-.087 0-.16-.064-.16-.14v-.736c0-.18.174-.348.406-.348h.246c.174 0 .275-.167.319-.335l.246-.76c.03-.103.13-.193.246-.232 1.869-.412 2.637-1.636 3.274-3.556V4.1c.072-.49-.26-.58-.377-.605zM16.37 8.97v1.12c0 .155-.102.271-.232.271h-2.607c-.13 0-.232-.116-.232-.27v-1.12c0-.143.1-.272.232-.272h2.607a.28.28 0 0 1 .232.27zm-5.375 0v1.12c0 .142-.102.271-.232.271H8.157c-.13 0-.232-.116-.232-.27v-1.12c0-.143.101-.272.232-.272h2.607a.28.28 0 0 1 .232.27z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A12 12 0 1 1 0 12 12 12 0 0 1 12 0m5.587 14.559c-.883 0-1.49-.648-1.49-1.574 0-.912.62-1.56 1.49-1.56s1.491.648 1.491 1.573c0 .897-.634 1.56-1.49 1.56zm.03-5.152c-2.265 0-3.772 1.437-3.772 3.576 0 2.195 1.451 3.604 3.729 3.604 2.264 0 3.755-1.409 3.755-3.59 0-2.153-1.475-3.59-3.713-3.59zM11.78 6.272c-.856 0-1.395.483-1.395 1.243 0 .774.552 1.257 1.435 1.257.857 0 1.395-.483 1.395-1.257s-.552-1.243-1.435-1.243m.152 3.204h-.277c-.675 0-1.187.317-1.187 1.285v4.42c0 .98.496 1.284 1.216 1.284h.275c.677 0 1.16-.33 1.16-1.285v-4.419c0-.995-.47-1.285-1.187-1.285M8.316 7.392h-.4c-.76 0-1.174.43-1.174 1.285v4.13c0 1.063-.36 1.436-1.2 1.436-.662 0-1.201-.29-1.63-.816C3.87 13.373 3 13.786 3 14.81c0 1.104 1.035 1.781 2.955 1.781 2.334 0 3.563-1.173 3.563-3.742V8.675c0-.856-.413-1.283-1.202-1.283"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.571 11.513H0a5.22 5.22 0 0 0 5.232 5.215h2.13v2.057A5.215 5.215 0 0 0 12.575 24V12.518a1.005 1.005 0 0 0-1.005-1.005zm5.723-5.756H5.736a5.215 5.215 0 0 0 5.215 5.214h2.129v2.058a5.22 5.22 0 0 0 5.215 5.214V6.758a1 1 0 0 0-1.001-1.001M23.013 0H11.455a5.215 5.215 0 0 0 5.215 5.215h2.129v2.057A5.215 5.215 0 0 0 24 12.483V1.005A1 1 0 0 0 23.013 0"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.004 0c-2.35 2.395-2.365 6.185.133 8.585l3.412 3.413-3.197 3.198a6.5 6.5 0 0 1 1.412 7.04l9.566-9.566a.95.95 0 0 0 0-1.344zm-1.748 1.74L.67 11.327a.95.95 0 0 0 0 1.344C4.45 16.44 8.22 20.244 12 24c2.295-2.298 2.395-6.096-.08-8.533l-3.47-3.469 3.2-3.2c-1.918-1.955-2.363-4.725-1.394-7.057z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.191 0c-2.03.393-3.466 1.199-4.325 2.318l2.883 1.664a2.8 2.8 0 0 1 1.882-.194c.181-1.091.048-2.358-.44-3.788m-4.94 3.06L5.83 10.715l4.734 2.736 1.113-1.925c-.505-.498-.716-1.256-.742-2.045-.032-.966.202-2.039.638-3.01.324-.72.759-1.387 1.308-1.892L10.252 3.06zm10.498.15c-1.494.289-2.665.803-3.522 1.499a2.82 2.82 0 0 1 .777 1.731l2.874 1.658c.543-1.305.533-2.948-.129-4.888m-18.361.409L.459 6.961l5.186 2.173L8.737 3.78zm12.539 1.016c-.332.005-.64.115-.943.297-.608.364-1.163 1.085-1.543 1.929s-.584 1.805-.558 2.588c.026.782.271 1.325.652 1.546h.001c.382.219.974.16 1.664-.208.69-.369 1.421-1.026 1.962-1.776.541-.751.887-1.594.899-2.303s-.238-1.283-1.042-1.747c-.402-.233-.759-.331-1.091-.326zm2.991 2.853c-.163.728-.524 1.438-.985 2.079-.623.863-1.433 1.602-2.285 2.057-.699.373-1.464.57-2.15.378l-1.111 1.923 4.735 2.734 4.419-7.656zm2.756 3.185-3.09 5.356 4.476 3.406 1.929-3.343zm-14.066 1.59c-1.143.5-2.02 1.177-2.634 2l4.449 2.57c.408-.945.561-2.039.432-3.272zm-3.055 2.855-3.542 6.13v1.899l4.365-7.554zm8.613.354c-1.143.501-2.02 1.177-2.634 2.001l4.449 2.569c.409-.945.562-2.04.432-3.273zm-6.869.653L.722 24h1.099l4.301-7.398-.825-.476zm1.751 1.011L3.094 24H4.19l3.68-6.389zm2.077 1.2L5.911 24h1.093l2.944-5.189zm1.751 1.012L8.28 24h1.086l2.333-4.179zm1.751 1.01L10.647 24h1.084l1.72-3.167z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.671 8.622a2.3 2.3 0 0 0-.895-.998c-.464-.294-1.044-.356-1.448-.356q-.204 0-.408.02h-.01a3 3 0 0 1 .034-.185c.02-.103.043-.22.056-.341.054-.521-.132-1.222-.473-1.785-.054-.09-.052-.12-.052-.12a.4.4 0 0 1 .06-.07l.03-.033c.807-.864 1.051-1.814.724-2.829C16.67 0 16.504 0 16.382 0a.2.2 0 0 0-.144.063.22.22 0 0 0-.048.177c.063.638-.081 1.552-.177 1.9-.118.438-.528 1.09-1.824 1.711a3 3 0 0 1-.279.103c-.423.141-1.13.378-1.522.918-.296.347-.368.695-.496 1.322-.114.558-.206 1.237-.026 2.048l.052.207.028.112.015-.003-.016.004c.012.048.004.06-.013.072a1.3 1.3 0 0 1-.192.059c-.192.03-.384.065-.567.1-.584.1-2.348.405-3.161 1.699-.502.798-.573 1.84-.212 3.1.374 1.249 1.116 2.106 1.624 2.281l.008.003q.054.025.105.042a2 2 0 0 1-.007.126l-.01.069c-.056.407-.248.845-.444.857-.103-.02-.512-.252-.801-.442l-.264-.174c-.808-.535-1.254-.829-1.934-.905l-.07-.004c-.72 0-2.016 1.213-2.044 3.63-.014 1.21.113 2.316.378 3.288.189.697.39 1.094.45 1.2l.232.437.107-.48c.562-2.544 1.255-3.157 2.408-3.89.845.792 1.956 1.21 3.22 1.21 1.066 0 2.18-.31 3.139-.873.941-.552 1.668-1.296 2.112-2.156.074.048.163.11.222.152.211.148.256.179.331.179h.007c.082-.003.861-.264 1.658-1.238.463-.566.846-1.266 1.135-2.082.36-1.008.576-2.198.65-3.537.082-1.124-.032-2.02-.339-2.66zm-2.987-6.47c.067.27.076.55.026.824a2.7 2.7 0 0 1-.685 1.442 8.2 8.2 0 0 0 .66-2.267m-.557 3.301q.177.268.265.576a1.47 1.47 0 0 1-.033.811q-.208.493-.55.494h-.03a.6.6 0 0 1-.226-.083c-.292-.171-.45-.624-.336-.956l.014-.03c.018-.049.072-.14.22-.283a8 8 0 0 1 .675-.528zm-3.38-.09.004-.005v-.005c.062-.154.491-.402.776-.567l.107-.062a4 4 0 0 1 .384-.177c.47-.2 1.2-.51 1.802-1.09-.175.613-.595 1.644-1.286 2.269-.154.138-.464.261-.824.403-.387.153-.853.336-1.304.613.035-.353.144-.97.34-1.379zm-.3 1.996c.233-.192.658-.452 2.051-.912l.032.154.028.141c.091.45.192.956 1.13 1.237-.088.192-.267.517-.33.578l-.02.018-.015.024c-.182.293-1.168.931-1.61.931a.3.3 0 0 1-.056-.004c-.266-.051-.877-.594-1.056-.994-.347-.787-.276-1.07-.156-1.171zm-3.471 7.221c-.511-.76-.898-2.087-.645-3.155v-.005c.123-.58.528-.922.696-1.042l.024-.018c.249-.217.757-.446 1.433-.646.096-.025.15-.036.151-.036.125-.026.26-.057.393-.088a7 7 0 0 1 .758-.148 2 2 0 0 0 .19-.03 1.5 1.5 0 0 1 .252-.033.32.32 0 0 1 .192.05c.25.298.864.886 1.266.92h.025c.458-.024 1.176-.471 2.134-1.329.163-.144.314-.27.462-.38l.018-.013a3.5 3.5 0 0 1 .856-.478c-.1.328-.18.89.144 1.68.168.409.492 1.33.76 2.233.462 1.554.398 1.828.388 1.853a.5.5 0 0 1-.062.15.4.4 0 0 1-.103-.036c-.233-.108-.494-.3-.799-.526-.566-.415-1.27-.931-2.301-1.334a6.2 6.2 0 0 0-2.236-.445 4.7 4.7 0 0 0-.897.085c-1.623.32-2.479 1.036-2.938 1.42l-.003.004a.19.19 0 0 0-.06.209.185.185 0 0 0 .177.121 1 1 0 0 0 .218-.05 9 9 0 0 1 1.488-.31q.27-.032.543-.033c.786 0 1.51.24 2.274.76.175.147.282.244.347.307l-.066.018-.464.13c-1.15.326-2.886.817-3.709.817a1.4 1.4 0 0 1-.188-.011c-.213-.032-.474-.254-.715-.61zm-3.39 5.83a4.1 4.1 0 0 0-.7 1.415c-.155-.741-.337-1.96-.234-2.908.215-1.965 1.189-2.623 1.333-2.657h.01c.008 0 .017 0 .036.02.078.085.246.441.124 1.916q-.044.457.218.765c.117.135.265.24.432.305a5 5 0 0 0-1.22 1.144zm1.655-1.929a.4.4 0 0 1-.16.037.13.13 0 0 1-.106-.04c-.032-.033-.102-.144-.08-.473.016-.161.039-.323.06-.48a7 7 0 0 0 .084-.893c.568.372 1.197.765 1.604.947-.266.235-.82.66-1.402.903zm7.404-.053a5.35 5.35 0 0 1-3.47 1.632 6 6 0 0 1-.463.017c-1.736 0-2.618-.736-3.024-1.147 1.962-.846 2.36-2.056 2.534-2.585a2 2 0 0 1 .048-.134c.075-.037.313-.144 1.047-.419.576-.207 1.267-.44 1.876-.645.507-.171.946-.32 1.185-.407l.02-.006a1 1 0 0 1 .096-.023l.013.017c.223.29.592.468.595.47.277.124.573.199.875.221-.007 1.049-.486 2.137-1.33 3.009zm1.522-3.59c-.727 0-.981-.234-1.22-.517-1.179-1.406-2.482-1.637-2.989-1.67a7 7 0 0 0-.473-.016q-.191 0-.374.01a5.7 5.7 0 0 1 1.824-.303c1.3 0 2.553.461 3.72 1.37.477.37.827.632 1.13.843a28 28 0 0 1-.598.168l-.095.026a6 6 0 0 1-.924.088zm.452 2.658c-.076-.067-.192-.174-.311-.283a4.7 4.7 0 0 0 .247-.864c.057-.312.092-.72.109-.937a9 9 0 0 0 1.022-.217q.607-.173.94-.399c-.695 1.735-1.7 2.496-2.007 2.699zm2.404-3.966c-.104-.855-.45-1.912-.585-2.323q-.021-.07-.035-.108c-.01-.033-.04-.12-.105-.297-.167-.465-.514-1.432-.576-1.718-.089-.42.112-.999.24-1.05a.4.4 0 0 1 .124-.022c.236 0 .528.223.758.583.28.432.445 1.005.467 1.608.048 1.316-.074 2.415-.288 3.327"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.999 1.16c-3.458.001-6.983.746-10.296 2.348A22 22 0 0 0 0 12.007c0 2.806.526 5.657 1.696 8.484A23.6 23.6 0 0 0 12 22.839c3.464 0 6.977-.738 10.303-2.348a22.04 22.04 0 0 0-.006-16.983A23.6 23.6 0 0 0 12 1.161zm0 .917c3.418 0 6.696.757 9.572 2.105a21 21 0 0 1 1.503 7.825c0 2.75-.528 5.386-1.496 7.81-2.878 1.35-6.158 2.107-9.58 2.107-3.42 0-6.7-.757-9.577-2.108a21 21 0 0 1-1.497-7.81c0-2.757.53-5.394 1.502-7.824C5.305 2.834 8.581 2.077 12 2.077zm-.001.687c-3.128 0-6.24.668-9.022 1.924-.9 2.34-1.359 4.8-1.359 7.319 0 2.513.458 4.968 1.354 7.306 2.783 1.258 5.897 1.923 9.027 1.923s6.245-.665 9.028-1.923l.004-.003a10.6 10.6 0 0 0-1.427-1.807c-.01-.005-.169-.055-.169-.055-1.725-.53-2.855-.928-3.355-1.187-.687-.357-1.41-1.224-1.49-1.322a10.6 10.6 0 0 0-2.114.03l-.408.053c-.78.1-1.584.208-2.373.081-.525-.086-1.035-.254-1.575-.43-.832-.272-1.685-.552-2.66-.55h-.038l.017.034c.221.43 1.096 1.737 2.19 2.096.242.058.417.122.493.182l.534 1.086c-.682-.31-2.79-1.381-4.49-3.45v-.003c0-.028-.044-.43-.053-.518 1.013-.378 3.293-.597 3.55-.622l.018-.002.008-.02c.137-1.2.42-2.16.953-3.21a.2.2 0 0 0 .024-.087.1.1 0 0 0-.013-.052c-.03-.056-.102-.067-.106-.067l-1.551-.271-.168-.513a28 28 0 0 1 3.287-.977c.133-.213.17-.328.17-.467 0-.118-.057-.22-.17-.297-.56-.379-2.322-.15-4.105.533-.004-.007-.003-.009-.009-.016.37-.277 1.032-.688 1.523-.916l.019-.011-.006-.019c-.133-.45-1.004-.796-1.102-.83l.006-.038c.885-.06 1.472.354 1.652.65l.009.013.017-.005c.114-.037.513-.164.946-.215l.026-.001-.007-.027C8.94 5.325 8.217 4.82 7.97 4.666c.007-.012.01-.017.017-.025.854.066 1.643.802 1.821 1.424l.005.017.018.001c.23.008.507.034.694.065l.019.004.007-.017a1.3 1.3 0 0 0 .103-.517c0-.56-.316-1.16-.705-1.54.007-.01.01-.02.02-.03 1.123.426 1.409 1.235 1.409 1.988 0 .528-.14 1.03-.23 1.35l-.038.133 1.765-.214c-.168.213-.53.592-1.255.992 0-.004-.746-.095-.746-.095l-.02-.003-.006.02c-.05.153-.487 1.533-.489 2.547q.001.565.317.869c.374.36.993.38 1.426.363 1.84-.067 3.276.046 4.273.34l.06.017.008-.014c.062-.095.11-.272.11-.506 0-.445-.177-1.107-.776-1.856.007-.005.007-.01.015-.015.099.055 1.714.972 1.93 2.356-.039.014-.775.315-.775.315l.024.024c.682.714.918 1.577 1.107 2.268.15.548.33.897.567 1.103.276.237 1.32.736 1.634.883.26.37.71 1.064 1.034 1.602a20.3 20.3 0 0 0 1.067-6.508c0-2.52-.46-4.98-1.358-7.32a22.1 22.1 0 0 0-9.024-1.923"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.719 14.759 14.22 17.26l-2.37 2.37-.462.466a5.33 5.33 0 0 1-5.047 1.397 3.21 3.21 0 1 1-3.872-3.844 5.32 5.32 0 0 1 1.396-5.08l.179-.18 2.37 2.37-.184.181a1.974 1.974 0 0 0 0 2.789c.771.78 2.022.78 2.787 0l.465-.465 2.367-2.371 2.502-2.506zm.924 6.652a5.32 5.32 0 0 1-5.328-1.318l-.18-.185 2.365-2.369.18.184a1.974 1.974 0 0 0 2.787 0 1.965 1.965 0 0 0-.004-2.781l-.466-.465-2.365-2.37-2.502-2.503 2.37-2.369 2.499 2.505 2.367 2.37.464.464a5.28 5.28 0 0 1 1.411 5.021A3.215 3.215 0 0 1 24 20.775a3.204 3.204 0 0 1-3.209 3.21 3.19 3.19 0 0 1-3.135-2.565zM6.975 9.461l2.508-2.505 2.37-2.369.462-.461A5.3 5.3 0 0 1 17.58 2.79 3.215 3.215 0 0 1 20.759.015a3.211 3.211 0 0 1 .421 6.395 5.31 5.31 0 0 1-1.35 5.234l-.182.184-2.369-2.369.184-.184a1.967 1.967 0 1 0-2.781-2.78l-.462.461-2.37 2.369-2.505 2.502zm-2.653 2.647-.461-.462a5.31 5.31 0 0 1-1.332-5.288A3.22 3.22 0 0 1 .03 3.224C.03 1.454 1.47.015 3.24.015a3.215 3.215 0 0 1 3.17 2.691 5.32 5.32 0 0 1 4.979 1.415l.184.185-2.37 2.37-.183-.181a1.977 1.977 0 0 0-2.785 0 1.977 1.977 0 0 0-.005 2.79l.465.466 2.37 2.369 2.505 2.505-2.367 2.37-2.51-2.505-2.371-2.37z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.969 0h-8.904a.15.15 0 0 0-.152.152v2.827c0 .095.077.172.172.172h1.221c.493 0 .894.38.937.863v13.378h-.001l-.017.363-.05.282q-.015.067-.033.132a2.1 2.1 0 0 1-.384.708l-.021.021q-.08.095-.172.18-.095.085-.2.16c-.498.353-1.169.508-1.918.436-.955-.089-1.903-.523-2.669-1.22-.765-.696-1.242-1.558-1.34-2.427-.089-.778.144-1.462.655-1.927l.004-.003q.03-.026.062-.05c.366-.307.842-.493 1.387-.544l.017-.002.298-.014.35.017.024.003c.499.05.993.199 1.462.425q.015 0 .036.011c.143.079.17-.005.174-.061V9.626a.26.26 0 0 0-.203-.256c-2.527-.556-5.005.022-6.754 1.615-1.528 1.389-2.267 3.395-2.027 5.502.213 1.876 1.176 3.679 2.712 5.076 1.497 1.362 3.402 2.213 5.368 2.399q.408.038.809.038c1.877 0 3.619-.644 4.905-1.814a6.32 6.32 0 0 0 2.055-4.288l.01-10.866h.001V4.077a.946.946 0 0 1 .945-.926h1.221a.17.17 0 0 0 .172-.172V.152A.15.15 0 0 0 20.969 0"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.55 2.194v-.075q0-.525.338-.938.337-.412.862-.412c.525 0 .663.112.938.337s.425.525.45.9q.037.563-.338.938c-.375.375-.55.375-.9.375l-.225.075.075.112-.075.413-.15 1.2q.075.075.075.15l-.15.75q-.075.15-.15.225l-.075.3a23 23 0 0 1-.45 1.575v.15q-.075.375-.112.6t-.263.75q-.15.3 0 .975l.075.075q0 .225.188.525c.188.3.187.375.187.525q.075 1.5-.225 2.55l.15.45q.9.45.525.975l.375.15q.9.45 1.275.787.375.338.75.713.3.075.45.225l.225.075q1.575 1.05 3.15 2.55l.3.225v.075l-.075.15.225.15h.075q.225.15.3.15h.075q.075 0 .15-.075l.15-.075q.15-.15.3-.225h.3q.075 0 0 .075l-.3.15-.375.45h.525l.525.075q.225-.075.375-.15l.375-.225q.225-.075.45.15h.075q.075.075-.075.225l-.9.825q-.375.3-.675.375l-.975.675q-.075.075-.15 0l-.225-.3-.15-.3-.188-.263-.225-.3-.187-.225-.15-.187-.3-.225q-.15 0-.3-.075l-.975-.75q-.225 0-.525-.225-1.125-.975-1.5-1.2l-.45-.3-.9-.15q-.45-.075-1.2-.45l-.6-.3q-.6-.3-.825-.3l-.3-.15q-.3-.075-.45-.15l-.15-.15q-.15 0-.3.075l-1.5.75-1.875.825q-.75.6-1.425.975l-.825.375-1.275.9q-.15.15-.3 0l-.15.15q-.225.075-.3.075l-.3.15v.15H3.2l-.15.225q-.15.3-.3.337t-.187.113a.4.4 0 0 1-.075.112l-.15.15-.225.15-.338-.037-.45.075-.3.075q-.375.075-.6-.113-.225-.187-.375-.562-.15-.225.15-.375l.075-.075q.075-.075.225-.075h.45l.6-.225.3-.075q0-.15.075-.225t.225-.075v-.075a.7.7 0 0 1-.075-.3q-.076-.15-.037-.225.037-.075.075-.075h.037l.075.225q.075.375.225.225l.075-.15q.075-.15.225-.15l.15.15.15-.15-.075-.075q0-.075.075-.075l.3-.3q.375-.45.9-.825 1.05-.825 2.25-1.275.375-.375.825-.375.3-.525.9-1.125.525-.375.75-.525.15-.3.375-.3h.075l.15-.15q.15-.075.225-.15v-.375q0-.375.075-.6t.375-.225l.3-.3q-.15-.3-.15-.675h-.075q-.15-.225-.15-.45-.225-.375-.3-.6H9.65q-.075.225-.375.3l-.075.15q-.3.525-.525.787-.225.263-.825.638-.375.375-.525.825-.075.225 0 .45l-.075.15h.075q0 .15.075.15h.075q.15.075.15.187c0 .112-.075.1-.225.075a.6.6 0 0 1-.337-.15q-.113-.112-.188-.112l-.225.225q-.15.225-.3.187-.15-.037-.075-.112l.075-.075q.075-.15 0-.15l-.6.15q-.075.075-.187 0c-.112-.075-.063-.1.037-.15l.375-.15q0-.075-.075-.075-.3.15-.6.075l-.375-.075-.075-.075q0-.075.075-.075.3.075.75-.075l.525-.225.6-.675.075-.15q.3-.6.638-1.088a3.7 3.7 0 0 1 .712-.787l.075-.3q.15-.3.3-.525t.375-.6l.225-.3q.3-.45.675-.45l.225-.225q.075-.075.075-.225l.15-.15-.075-.075q-.45-.375-.45-.675-.075-.525.338-.9c.413-.375.55-.363.825-.338q.412.038.637.263l.15.15q.075 0 .075.075l.3.15v.225q.15.15.15.225.15-.225.45-.525l.375-1.2q0-.3.15-.6l.15-.225v-.15l.225-.9h.15l.225-.9a.93.93 0 0 0 0-.525l-.3-.75z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m4.822 13.107.112-.07A1.36 1.36 0 0 1 4.453 12a1.37 1.37 0 0 1 1.374-1.365c.41 0 .776.18 1.03.462l.016-.027c.115-.203.226-.402.31-.6.038-.078.066-.157.097-.233a2.3 2.3 0 0 0-1.452-.517A2.287 2.287 0 0 0 3.533 12c0 .562.205 1.076.544 1.473a3 3 0 0 0 .14-.058c.2-.085.4-.194.605-.308m2.702-2.642a5 5 0 0 1-.312.787 7 7 0 0 1-.118.216 1.4 1.4 0 0 1 .108.532 1.37 1.37 0 0 1-1.88 1.269 6 6 0 0 1-.316.175 5 5 0 0 1-.673.272l-.012.004a2.3 2.3 0 0 0 1.506.56A2.287 2.287 0 0 0 8.122 12a2.26 2.26 0 0 0-.598-1.535m-6.202-.673H2.72v2.754q0 .887-.437 1.31-.438.42-1.36.42A3.7 3.7 0 0 1 0 14.16v-.96a1.4 1.4 0 0 0 .446.076q.474 0 .674-.23.202-.231.202-.795zm7.555 0h1.4v2.55q-.001.56.199.811.2.25.638.25.45 0 .68-.27.229-.266.228-.791v-2.55h1.332v2.55q0 .969-.56 1.45-.559.484-1.68.484-1.11 0-1.673-.486-.564-.487-.563-1.448zm6.914 0h1.687l1.985 4.383h-1.495l-.372-.928h-2.02l-.39.928h-1.385zm.815.978-.68 1.644h1.337zm2.174-.978h1.462l1.17 3.41 1.156-3.41H24l-1.778 4.383h-1.754z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.25 1.65C20.25.74 19.51 0 18.6 0H5.4c-.91 0-1.65.74-1.65 1.65v20.7c0 .91.74 1.65 1.65 1.65h13.2c.91 0 1.65-.74 1.65-1.65zm-5.275 4.341a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3m.04 9.018a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3m-6.015 0a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.559 20.407c-.63 0-1.08-.026-1.08-.026V17.22h1.073c1.19 0 1.95.33 1.95 1.426 0 .93-.329 1.76-1.943 1.76m.028-3.965H6.61V24h.87v-2.797h1.275c1.783 0 2.634-1.096 2.634-2.483 0-1.413-.871-2.279-2.8-2.279m4.781 4.13h3.063v-.812H13.37v-2.55h3.548v-.768H12.5v7.42h4.566v-.768H13.37zm8.115-.633v.753h1.289v1.866c-.395.587-1.452.587-1.452.587-.805 0-1.454-.277-1.927-.838-.47-.558-.707-1.158-.707-2.06 0-.947.235-1.675.711-2.257.482-.583 1.15-.905 1.982-.905.427 0 .884.131 1.33.405l.538-.602q-.723-.594-1.84-.593c-1.11 0-2.005.361-2.656 1.08-.657.715-.99 1.668-.99 2.832s.305 2.043.9 2.745c.591.692 1.42 1.047 2.44 1.047.46 0 .932-.043 1.423-.197.378-.12.508-.216 1.075-.216v-3.647zM3.856 16.441h-.584v.768h.584v3.571c0 1.101.033 1.746-.345 2.124a1.27 1.27 0 0 1-.865.367c-1.362 0-1.412-1.091-1.412-1.091H.4c.08 1.942 2.362 1.813 2.362 1.813.607-.033 1.087-.233 1.462-.609.495-.499.507-1.422.507-2.192v-4.75zM17.352 0H3.063v14.282h8.266V8.271h6.023zm.686 9.067h5.213v5.216h-5.213z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.525 5.87c-2.126 3.054-1.862 7.026-.237 10.269q.057.117.118.229.035.076.077.15.021.042.047.082.04.078.081.152l.157.266c.03.049.057.097.09.146.056.094.12.187.178.281q.037.06.079.117a6 6 0 0 0 .31.445q.115.16.24.315.042.057.086.115l.22.269c.028.03.055.067.084.099q.148.176.306.35l.005.006a3 3 0 0 0 .425.44q.119.125.245.245l.101.097q.165.158.34.309.002 0 .005.003l.057.05q.153.135.31.26l.125.105q.13.1.26.2l.137.105c.093.07.192.139.287.207q.052.038.106.073l.03.023.28.185.12.08q.221.14.44.272.063.031.123.068.164.095.329.183.09.05.184.094.113.062.234.125a.3.3 0 0 1 .056.023q.049.023.096.047.18.09.375.175.037.014.076.034.215.094.438.182c.034.01.07.027.105.04q.204.078.411.152l.05.018q.23.078.46.15.054.016.111.033c.16.048.314.105.474.137 10.273 1.872 13.258-6.177 13.258-6.177-2.508 3.266-6.958 4.127-11.174 3.169-.156-.036-.312-.086-.47-.132a14 14 0 0 1-.567-.182l-.062-.024q-.202-.07-.4-.148a2 2 0 0 0-.11-.04q-.22-.09-.433-.184c-.031-.01-.057-.024-.088-.036l-.362-.17a2 2 0 0 1-.106-.052c-.094-.044-.188-.095-.28-.143a4 4 0 0 1-.187-.096c-.114-.06-.227-.125-.34-.187q-.052-.035-.112-.066a16 16 0 0 1-.439-.27 2 2 0 0 1-.118-.078 6 6 0 0 1-.312-.207q-.05-.035-.103-.073a10 10 0 0 1-.295-.212q-.064-.05-.132-.1c-.088-.07-.177-.135-.265-.208l-.118-.095a11 11 0 0 1-.335-.28.3.3 0 0 0-.037-.031l-.347-.316-.1-.094q-.123-.125-.25-.246l-.098-.1a9 9 0 0 1-.309-.323l-.015-.016q-.159-.174-.313-.355-.04-.046-.08-.097l-.227-.277a21 21 0 0 1-.34-.449C2.152 11.79 1.306 7.384 3.177 3.771m4.943-.473c-1.54 2.211-1.454 5.169-.254 7.508a9 9 0 0 0 .678 1.133c.23.33.484.721.793.988q.162.181.344.36l.09.09q.172.164.35.325l.016.013a10 10 0 0 0 .414.342c.034.023.063.05.096.073q.21.161.428.316l.015.009q.093.066.198.13c.028.018.06.042.09.06q.158.1.318.197.025.011.048.023c.09.055.188.108.282.157.033.02.065.035.1.054q.1.05.197.102l.032.014q.204.1.408.19.05.02.092.039.167.072.336.137c.05.017.097.037.144.052.102.038.21.073.31.108l.14.045c.147.045.295.104.449.13C22.164 17.206 24 11.098 24 11.098c-1.653 2.38-4.852 3.513-8.261 2.628a8 8 0 0 1-.449-.13c-.048-.014-.09-.029-.136-.043-.104-.036-.211-.07-.312-.109l-.144-.054c-.113-.045-.227-.087-.336-.135-.034-.015-.065-.025-.091-.04q-.211-.093-.418-.192l-.206-.107-.119-.06a6 6 0 0 1-.265-.15 1 1 0 0 1-.062-.035c-.106-.066-.217-.13-.318-.198q-.05-.03-.097-.062l-.208-.136c-.144-.1-.285-.208-.428-.313q-.048-.042-.094-.079c-1.499-1.178-2.681-2.79-3.242-4.613-.59-1.897-.46-4.023.56-5.75m4.292-.147c-.909 1.334-.996 2.99-.37 4.46.665 1.563 2.024 2.79 3.608 3.37q.096.036.196.07l.088.027c.092.03.185.063.28.084 4.381.845 5.567-2.25 5.886-2.704-1.043 1.498-2.792 1.857-4.938 1.335a5 5 0 0 1-.516-.16 6 6 0 0 1-.618-.254 6.5 6.5 0 0 1-1.082-.66c-1.922-1.457-3.113-4.236-1.859-6.5"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.955 13.653h1.089c2.684 0 2.684-4.123 2.684-4.123s0-4.162-2.684-4.162H9.18v8.869c0 1.556-3.112 1.478-3.112 1.478s-3.073.116-3.073-1.478v-3.423H0v4.395c0 3.19 5.68 3.384 6.107 3.423.428 0 6.107-.194 6.107-3.423V8.363h7.896c.661 0 .661 1.167.661 1.167s0 1.167-.66 1.167h-6.069l5.952 7.702H24Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.851 0 .811 4.02l1.56 14.7L11.85 24l9.6-5.28 1.74-14.76zm.062 4.622a6.668 6.75 0 0 1 2.666.572 12.5 12.5 0 0 0-2.59 1.95c-.045-.02-.092-.031-.138-.045a1.2 1.2 0 0 0-.346-.056c-.071 0-.141.01-.21.021a9 9 0 0 1-.615-2.318 6.668 6.75 0 0 1 1.171-.122 6.668 6.75 0 0 1 .062-.002m-1.99.312a9.8 9.8 0 0 0 .69 2.504 1.2 1.2 0 0 0-.328.825 1.2 1.2 0 0 0 .18.63c-.937 1.294-1.656 2.803-1.905 4.31-.01.056-.013.11-.02.166-.282.09-.515.284-.656.54-.987-.333-1.885-.968-2.615-2.022a6.668 6.75 0 0 1-.026-.515 6.668 6.75 0 0 1 4.68-6.438m5.507.709a6.668 6.75 0 0 1 2.53 2.9c-.377.953-1.049 1.892-1.893 2.727a1.24 1.24 0 0 0-.644-.184 1.24 1.24 0 0 0-.768.27 11 11 0 0 1-1.318-1.168c-.333-.35-.637-.73-.921-1.123.19-.215.31-.494.31-.802a1.2 1.2 0 0 0-.159-.586c1.058-1.008 2.112-1.67 2.863-2.034m-3.925 1.982a.62.62 0 0 1 .346.114.62.62 0 0 1 .292.524.62.62 0 0 1-.292.524.63.63 0 0 1-.346.113.634.634 0 0 1-.638-.637c0-.355.283-.638.638-.638m-.441 1.771a1.2 1.2 0 0 0 .675.062q.055.073.112.148a11 11 0 0 0 .921 1.119 12 12 0 0 0 1.446 1.277c-.032.11-.054.224-.054.342a1.2 1.2 0 0 0 .066.38 10 10 0 0 1-2.118 1.042c-.087.029-.173.052-.261.078a7.7 7.7 0 0 1-1.87.332 1.15 1.15 0 0 0-.66-.773q.004-.036.01-.073c.219-1.333.873-2.73 1.733-3.934m7.272.19a6.668 6.75 0 0 1 .245 1.786 6.668 6.75 0 0 1-.259 1.856 10 10 0 0 1-1.666-.63 1.24 1.24 0 0 0-.065-.713 9.4 9.4 0 0 0 1.745-2.3zm-2.913 2.101c.367 0 .657.291.657.658s-.291.657-.657.657-.658-.29-.658-.657.29-.658.658-.658m.837 1.59a11 11 0 0 0 1.802.688 6.668 6.75 0 0 1-6.149 4.157 6.668 6.75 0 0 1-.062-.004 6.668 6.75 0 0 1-.042 0c-.087-.042-.168-.08-.266-.129-.312-.154-.667-.352-.846-.5a3.8 3.8 0 0 1-1.294-2.03c.21-.111.38-.284.487-.495a8.4 8.4 0 0 0 1.96-.306 9 9 0 0 0 .513-.154 11 11 0 0 0 2.341-1.13c.205.143.452.23.719.23a1.25 1.25 0 0 0 .837-.328zm-10.707.116a5.8 5.8 0 0 0 2.212 1.298 1.15 1.15 0 0 0 .857.87 4.6 4.6 0 0 0 1.24 2.222 6.668 6.75 0 0 1-4.31-4.39zm3.327.464c.331 0 .595.263.595.596s-.264.595-.595.595a.59.59 0 0 1-.596-.595.59.59 0 0 1 .596-.596"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.9 3.602c-2.749 0-5.103 1.544-6.35 3.779-.536-.317-1.139-.54-1.806-.54-1.981 0-3.6 1.606-3.6 3.579 0 .263.063.513.118.762C.912 12.09 0 13.602 0 15.344c0 2.763 2.241 5.012 5.008 5.054h14.008c2.746.017 4.984-2.206 4.984-4.937 0-1.946-1.153-3.602-2.799-4.41.003-.062.01-.115.01-.184 0-4.008-3.28-7.265-7.31-7.265zm0 .843c3.58 0 6.47 2.872 6.47 6.422 0 .115-.012.242-.02.387a.42.42 0 0 0 .26.414 4.1 4.1 0 0 1 2.546 3.793 4.094 4.094 0 0 1-4.135 4.096H5.02C2.702 19.52.844 17.653.844 15.344c0-1.545.834-2.883 2.08-3.62a.42.42 0 0 0 .187-.49 2.7 2.7 0 0 1-.125-.814 2.74 2.74 0 0 1 2.758-2.736 2.75 2.75 0 0 1 1.686.576.42.42 0 0 0 .636-.15A6.46 6.46 0 0 1 13.9 4.444zm-5.33 6.877c-1.586 0-2.91 1.213-2.91 2.737 0 1.523 1.324 2.736 2.91 2.736 1.411 0 2.182-.931 2.496-1.266a.421.421 0 1 0-.613-.578c-.378.402-.819 1.002-1.883 1.002-1.162 0-2.068-.86-2.068-1.894 0-1.035.906-1.895 2.068-1.895.533 0 1.105.297 1.686.77.372.303.737.668 1.098 1.043a.4.4 0 0 0 .085.123c.533.552 1.122 1.205 1.774 1.736s1.386.959 2.217.959c1.586 0 2.91-1.213 2.91-2.736s-1.324-2.737-2.91-2.737c-1.411 0-2.182.931-2.496 1.266a.421.421 0 1 0 .613.578c.378-.402.819-1.002 1.883-1.002 1.162 0 2.068.86 2.068 1.895 0 1.034-.906 1.894-2.068 1.894-.533 0-1.105-.297-1.686-.77-.372-.303-.737-.67-1.098-1.044a.4.4 0 0 0-.085-.121c-.533-.552-1.122-1.208-1.774-1.739-.652-.53-1.386-.957-2.217-.957"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.043 23.968c.479-.004.953-.029 1.426-.094a11.8 11.8 0 0 0 3.146-.863 12.4 12.4 0 0 0 3.793-2.542 12 12 0 0 0 2.44-3.427 11.8 11.8 0 0 0 1.02-3.476c.149-1.16.135-2.346-.045-3.499a12 12 0 0 0-.793-2.788 11 11 0 0 0-.854-1.617c-1.168-1.837-2.861-3.314-4.81-4.3a13 13 0 0 0-2.172-.87h-.005c.119.063.24.132.345.201.12.074.239.146.351.225a9 9 0 0 1 1.559 1.33c1.063 1.145 1.797 2.548 2.218 4.041.284.982.434 1.998.495 3.017.044.743.044 1.491-.047 2.229-.149 1.27-.554 2.51-1.228 3.596a7.5 7.5 0 0 1-1.903 2.084c-1.244.928-2.877 1.482-4.436 1.114a4 4 0 0 1-.748-.258 4.7 4.7 0 0 1-.779-.45 6 6 0 0 1-1.244-1.105 6.5 6.5 0 0 1-1.049-1.747 7.4 7.4 0 0 1-.494-2.54c-.03-1.273.225-2.553.854-3.67a6.4 6.4 0 0 1 1.663-1.918c.225-.178.464-.333.704-.479l.016-.007a5.1 5.1 0 0 0-1.441-.12 5 5 0 0 0-1.228.24c-.359.12-.704.27-1.019.45a6 6 0 0 0-.733.494c-.211.18-.42.36-.615.555-1.123 1.153-1.768 2.682-2.022 4.256-.15.973-.15 1.96-.091 2.95.105 1.395.391 2.787.945 4.062a8.5 8.5 0 0 0 1.348 2.173 8.14 8.14 0 0 0 3.132 2.23 8 8 0 0 0 2.113.54c.074.015.149.015.209.015zm-2.934-.398a4 4 0 0 1-.45-.228 8.5 8.5 0 0 1-2.038-1.534c-1.094-1.137-1.827-2.566-2.247-4.08a15.2 15.2 0 0 1-.495-3.172 12 12 0 0 1 .046-2.082c.135-1.257.495-2.501 1.124-3.58a6.9 6.9 0 0 1 1.783-2.053 6.2 6.2 0 0 1 1.633-.9 5.36 5.36 0 0 1 3.522-.045c.029 0 .029 0 .045.03.015.015.045.015.06.03.045.016.104.045.165.074.239.12.479.271.704.42a6.3 6.3 0 0 1 2.097 2.502c.42.914.615 1.934.631 2.938.014 1.079-.18 2.157-.645 3.146a6.4 6.4 0 0 1-2.638 2.832c.09.03.18.045.271.075.225.044.449.074.688.074 1.468.045 2.892-.66 3.94-1.647q.293-.27.54-.585c.225-.27.435-.54.614-.823.239-.375.435-.75.614-1.154a8 8 0 0 0 .509-1.664c.196-1.004.211-2.022.149-3.026-.135-2.022-.673-4.045-1.842-5.724a9 9 0 0 0-.555-.719 10 10 0 0 0-1.063-1.034 8.5 8.5 0 0 0-1.363-.915 10 10 0 0 0-1.692-.598l-.3-.06c-.209-.03-.42-.044-.634-.06a9 9 0 0 0-1.015.016c-.704.045-1.412.16-2.112.337C5.799 1.227 2.863 3.566 1.3 6.67A11.8 11.8 0 0 0 .238 9.801a11.8 11.8 0 0 0-.104 3.775c.12 1.02.374 2.023.778 2.977.227.57.511 1.124.825 1.648 1.094 1.783 2.683 3.236 4.51 4.24.688.39 1.408.69 2.157.944.226.074.45.15.689.21z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.2 0v6.456L12 8.928l1.8-2.472V0zm3.6 6.456v3.072l2.904-.96L20.52 3.36l-2.928-2.136zm2.904 2.112-1.8 2.496 2.928.936 6.144-1.992-1.128-3.432zM17.832 12l-2.928.936 1.8 2.496 6.144 1.992 1.128-3.432zm-1.128 3.432-2.904-.96v3.072l3.792 5.232 2.928-2.136zM13.8 17.544 12 15.072l-1.8 2.472V24h3.6zm-3.6 0v-3.072l-2.904.96L3.48 20.64l2.928 2.136zm-2.904-2.112 1.8-2.496L6.168 12 .024 13.992l1.128 3.432zM6.168 12l2.928-.936-1.8-2.496-6.144-1.992-1.128 3.432zm1.128-3.432 2.904.96V6.456L6.408 1.224 3.48 3.36Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.692 5.538v3.693H0v7.384h7.385v1.847h12.923v-3.693H24V7.385h-7.385V5.538Zm1.846 1.847h1.847v7.384H1.846v-3.692h1.846v1.846h1.846zm3.693 0h5.538V9.23h-3.692v1.846h3.692v5.538H9.231V14.77h3.692v-1.846H9.231Zm7.384 1.846h5.539v3.692h-1.846v-1.846h-1.846v5.538h-1.847z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 2.5v19h19.2v-1.95c.506.263 1.124.42 1.857.42 1.687 0 2.943-.877 2.943-2.475 0-1.483-.852-2.143-2.36-2.79l-.444-.19c-.762-.33-1.092-.546-1.092-1.078 0-.431.33-.761.85-.761.51 0 .838.215 1.142.76l1.383-.887c-.585-1.029-1.396-1.422-2.525-1.422-.715 0-1.312.207-1.754.555V2.5zm.36.359h18.48v9.182a2.27 2.27 0 0 0-.487 1.432c0 .654.176 1.152.486 1.552v2.537l-1.018.592c.232.456.57.864 1.018 1.177v1.81H.361zm14.188 8.268c-1.586 0-2.6 1.014-2.6 2.346 0 1.445.85 2.13 2.132 2.675l.443.19c.81.355 1.293.57 1.293 1.18 0 .508-.47.875-1.205.875-.876 0-1.371-.457-1.752-1.078l-1.443.839c.521 1.03 1.587 1.816 3.236 1.816 1.687 0 2.943-.876 2.943-2.475 0-1.483-.852-2.143-2.361-2.79l-.444-.19c-.762-.33-1.092-.546-1.092-1.078 0-.431.33-.761.85-.761.51 0 .838.215 1.143.76l1.382-.887c-.584-1.029-1.396-1.422-2.525-1.422m-5.868.101v6.038c0 .888-.368 1.116-.951 1.116-.61 0-.864-.418-1.143-.913l-1.446.875c.419.886 1.242 1.622 2.664 1.622 1.574 0 2.652-.837 2.652-2.676v-6.062zm10.52 4.173c.345.295.781.532 1.286.747l.443.19c.81.355 1.293.57 1.293 1.18 0 .508-.47.875-1.206.875-.876 0-1.37-.457-1.752-1.078l-.064.037z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.383 0 0 5.383 0 12s5.383 12 12 12 12-5.383 12-12S18.617 0 12 0m0 22.402c-5.744 0-10.417-4.667-10.417-10.404S6.256 1.595 12 1.595s10.417 4.666 10.417 10.403S17.744 22.402 12 22.402m8.097-5.04a9.8 9.8 0 0 1-2.5 2.572 1.23 1.23 0 0 1-1.787-.42c-.97-1.794-1.75-3.59-2.468-5.391a.504.504 0 0 1 .669-.648c1.729.749 3.503 1.46 5.414 2.04a1.227 1.227 0 0 1 .672 1.847m1.615-5.36q0 .895-.156 1.746a1.235 1.235 0 0 1-1.559.97c-2.01-.583-3.87-1.324-5.687-2.111l.002.001a.503.503 0 0 1 .013-.93c1.802-.713 3.606-1.48 5.416-2.437.727-.385 1.62.04 1.782.846.124.619.19 1.26.19 1.915zm-6.847 7.713c.383.726-.04 1.61-.842 1.78a9.7 9.7 0 0 1-2.021.212 9.7 9.7 0 0 1-1.607-.132 1.233 1.233 0 0 1-.98-1.56c.583-2.003 1.322-3.854 2.107-5.666a.503.503 0 0 1 .93.014h.002c.704 1.78 1.468 3.565 2.411 5.352M9.181 4.276a1.232 1.232 0 0 1 .844-1.782 9.7 9.7 0 0 1 3.692-.05c.722.129 1.176.852.973 1.557-.585 2.028-1.33 3.9-2.125 5.73a.503.503 0 0 1-.93-.013h-.001c-.715-1.81-1.49-3.623-2.453-5.442m-5.374 2.51a9.8 9.8 0 0 1 2.635-2.747 1.233 1.233 0 0 1 1.787.42c1.021 1.88 1.83 3.763 2.578 5.65a.504.504 0 0 1-.668.648c-1.802-.783-3.644-1.53-5.64-2.13a1.234 1.234 0 0 1-.692-1.842zm6.864 7.223c-.763 1.753-1.486 3.55-2.072 5.488a1.23 1.23 0 0 1-1.838.679 9.8 9.8 0 0 1-2.662-2.53 1.23 1.23 0 0 1 .414-1.794c1.834-.99 3.67-1.783 5.51-2.513a.504.504 0 0 1 .648.668zm2.72-3.872c.775-1.777 1.51-3.6 2.103-5.57a1.23 1.23 0 0 1 1.85-.672A9.8 9.8 0 0 1 20 6.497a1.23 1.23 0 0 1-.425 1.779c-1.842.998-3.688 1.796-5.538 2.53a.504.504 0 0 1-.648-.67zm-9.098 4.78a1.23 1.23 0 0 1-1.773-.81 9.7 9.7 0 0 1-.103-3.683 1.234 1.234 0 0 1 1.56-.981c2.02.584 3.888 1.328 5.713 2.119a.503.503 0 0 1-.014.93c-1.79.71-3.585 1.474-5.383 2.425"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 14.316 7.454-5.88-2.022-1.625L12 11.1l-.004.003-5.432-4.288-2.02 1.624 7.452 5.88Zm0-7.247 2.89-2.298L12 2.453l-.004-.005-2.884 2.318 2.884 2.3Zm0 11.266-.005.002-9.975-7.87L0 12.088l.194.156 11.803 9.308 7.463-5.885L24 12.085l-2.023-1.624Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.965 15.778c-1.947 0-2.751-.929-2.751-2.58V8.409c0-.102.084-.184.188-.184h1.499c.104 0 .188.082.188.184v4.82a.87.87 0 0 0 .876.816c.466 0 .85-.358.876-.816v-4.82a.19.19 0 0 1 .188-.185h1.498c.104 0 .188.083.188.185v4.789c0 1.652-.805 2.58-2.751 2.58zm-4.495-2.66c0 1.652-.726 2.583-2.667 2.583H.188A.186.186 0 0 1 0 15.516v-1.367c0-.102.084-.185.188-.185h.677c.636 0 .73-.336.73-.735V9.582a.4.4 0 0 0-.157-.314L.259 8.456a.13.13 0 0 1-.042-.145.13.13 0 0 1 .125-.087h2.939c.104 0 .188.083.188.185zm10.927.106v2.195a.187.187 0 0 1-.188.185h-1.5a.187.187 0 0 1-.183-.18V8.409c0-.1.081-.182.183-.185h1.5c.104 0 .188.083.188.185v2.2c0 .108.045.122.101.028l1.323-2.251c.08-.136.159-.161.336-.161h1.772c.103 0 .137.084.075.185l-2.063 3.387a.25.25 0 0 0 0 .239l2.063 3.387c.057.101.028.185-.075.185h-1.772c-.179 0-.257-.03-.337-.161l-1.323-2.25c-.056-.094-.101-.082-.101.026zm9.602-1.308a.16.16 0 0 1-.093.13l-2.406 1.45a.1.1 0 0 0-.058.091c0 .039.023.074.057.091l2.446 1.694a.13.13 0 0 1 .042.145.13.13 0 0 1-.126.087h-4.299a.187.187 0 0 1-.188-.18V8.407c0-.102.084-.185.188-.185h4.305c.056 0 .107.035.125.087a.13.13 0 0 1-.042.145l-2.445 1.693a.1.1 0 0 0 0 .182l2.395 1.456q.098.055.098.13z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.138 17.569a5.569 5.569 0 1 1-11.138 0 5.569 5.569 0 1 1 11.138 0m6.431-11.138a5.569 5.569 0 1 1-11.138 0 5.569 5.569 0 1 1 11.138 0M24 17.569a5.569 5.569 0 1 1-11.138 0 5.569 5.569 0 1 1 11.138 0"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.086 13.164c.046 0 .072-.013.072-.062 0-.048-.025-.059-.073-.059h-.102v.121zm-.103.042v.129h-.045V13h.149c.085 0 .117.034.117.1 0 .054-.023.091-.08.102l.075.132h-.048l-.075-.129zm.074-.292a.254.254 0 0 0-.253.253c0 .14.114.254.253.254a.254.254 0 0 0 .253-.254.253.253 0 0 0-.253-.253m-.29.253a.29.29 0 0 1 .29-.29.29.29 0 0 1 .29.29.29.29 0 0 1-.29.291.29.29 0 0 1-.29-.29m-20.745-.66V8.83H1.6v3.677c0 .85.033 1.533-1.44 1.533L0 14.037v.397l.16.002c1.786 0 1.862-.8 1.862-1.929m15.54-1.697h3.134c-.042-.918-.101-1.701-1.44-1.701-1.29 0-1.643.699-1.694 1.7m1.702-2.089c1.794 0 1.853 1.205 1.845 2.476h-3.555c.008 1.12.286 1.955 1.743 1.955.775 0 1.13-.21 1.508-.489l.236.312c-.421.312-.918.556-1.744.556-1.82 0-2.156-1.053-2.156-2.41 0-1.355.388-2.4 2.123-2.4m-4.149 2.706q1.115.002 1.114-1.095c0-.733-.399-1.08-1.132-1.08h-1.729v2.175zm-.006-2.588c1.068 0 1.552.53 1.552 1.474 0 .95-.478 1.527-1.558 1.527h-1.735v1.598h-.412V8.84zm-2.925 0v4.6h-.412v-4.6zm-1.194 4.6h-.43v-2.814c0-.809.009-1.491-1.474-1.491-1.474 0-1.44.682-1.44 1.533v2.771h-.422v-2.771c0-1.129.076-1.93 1.862-1.93 1.794 0 1.904.801 1.904 1.896zM2.747 8.83h.43v2.814c0 .809-.01 1.49 1.473 1.49 1.474 0 1.44-.681 1.44-1.532V8.83h.422v2.772c0 1.128-.076 1.929-1.862 1.929-1.794 0-1.903-.8-1.903-1.896zm18.967 1.837v2.771h.421v-2.771c0-.85-.034-1.533 1.44-1.533q.237 0 .425.023v-.401a5 5 0 0 0-.424-.018c-1.786 0-1.862.8-1.862 1.929zm-.431 4.36a.8.8 0 0 0 .454.129c.262 0 .379-.074.379-.249 0-.18-.151-.206-.38-.247-.273-.048-.459-.094-.459-.351 0-.246.158-.342.46-.342.199 0 .341.045.442.114l-.072.11a.7.7 0 0 0-.37-.1c-.228 0-.326.063-.326.214 0 .161.132.192.358.233.278.05.479.091.479.364 0 .252-.161.373-.508.373a.9.9 0 0 1-.526-.145zm-.789-.442-.254.277v.396h-.132v-1.27h.132v.701l.643-.7h.156l-.456.498.518.771h-.153zm-1.1.032c.18 0 .29-.055.29-.255 0-.197-.107-.249-.296-.249h-.413v.504zm-.038.124h-.38v.517h-.133v-1.27h.549c.295 0 .428.118.428.37 0 .22-.104.348-.326.377l.307.523h-.144zm-.924-.117c0-.343-.16-.528-.506-.528-.345 0-.502.185-.502.528 0 .345.157.53.502.53.346 0 .506-.185.506-.53m-.506-.657c.408 0 .641.203.641.655 0 .455-.233.657-.641.657-.406 0-.638-.202-.638-.657 0-.452.232-.655.638-.655m-2.357.021.334 1.05.341-1.05h.117l.34 1.05.335-1.05h.13l-.408 1.279h-.116l-.343-1.058-.341 1.058h-.118l-.41-1.279zm-1.392.129v-.129h1.088v.129h-.476v1.141h-.136v-1.141zm-.204-.129v.129h-.705v.42h.688v.127h-.688v.47h.712v.124h-.847v-1.27zm-2.054 0 .76 1.048v-1.048h.13v1.27h-.124l-.783-1.078v1.078h-.13v-1.27Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.886 9.769q2.47 0 3.912 1.307 1.442 1.308 1.442 3.566 0 2.616-1.643 4.09-1.632 1.465-4.65 1.465-2.739 0-4.303-.883v-2.38a7.9 7.9 0 0 0 2.079.793q1.173.28 2.18.28 1.776 0 2.704-.794t.928-2.325q0-2.928-3.733-2.929-.525 0-1.297.112-.771.1-1.352.235l-1.174-.693.626-7.98H16.1v2.335H9.919l-.37 4.046q.393-.066.95-.156.57-.09 1.387-.09zM12 0C5.373 0 0 5.373 0 12a12 12 0 0 0 6.65 10.738v-3.675h.138c.01.004 4.86 2.466 8.021 0 3.163-2.468 1.62-5.785 1.08-6.557-.54-.771-3.317-2.083-5.708-1.851-2.391.231-2.391.308-2.391.308l.617-7.096 7.687-.074V.744A12 12 0 0 0 11.999 0zm4.095.744v3.049l-7.688.074-.617 7.096s0-.077 2.391-.308c2.392-.232 5.169 1.08 5.708 1.851.54.772 2.083 4.089-1.08 6.557-3.16 2.467-8.013.004-8.02 0h-.14v3.675A12 12 0 0 0 12 24c6.628 0 12-5.373 12-12A12.01 12.01 0 0 0 16.35.83a9 9 0 0 0-.255-.086M6.299 22.556"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.157 22.201A1.784 1.799 0 0 1 5.374 24a1.784 1.799 0 0 1-1.784-1.799 1.784 1.799 0 0 1 1.784-1.799 1.784 1.799 0 0 1 1.783 1.799M20.582 1.427a1.415 1.427 0 0 1-1.415 1.428 1.415 1.427 0 0 1-1.416-1.428A1.415 1.427 0 0 1 19.167 0a1.415 1.427 0 0 1 1.415 1.427M4.992 3.336A1.047 1.056 0 0 1 3.946 4.39a1.047 1.056 0 0 1-1.047-1.055A1.047 1.056 0 0 1 3.946 2.28a1.047 1.056 0 0 1 1.046 1.056m7.336 1.517c3.769 0 7.06 1.38 8.768 3.424a9.36 9.36 0 0 0-3.393-4.547 9.24 9.24 0 0 0-5.377-1.728A9.24 9.24 0 0 0 6.95 3.73a9.36 9.36 0 0 0-3.394 4.547c1.713-2.04 5.004-3.424 8.772-3.424m.001 13.295c-3.768 0-7.06-1.381-8.768-3.425a9.36 9.36 0 0 0 3.394 4.547A9.24 9.24 0 0 0 12.33 21a9.24 9.24 0 0 0 5.377-1.729 9.36 9.36 0 0 0 3.393-4.547c-1.712 2.044-5.003 3.425-8.772 3.425Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0m0 2.35a3.25 3.35 0 0 1 3.25 3.35A3.25 3.35 0 0 1 12 9.05 3.25 3.35 0 0 1 8.75 5.7 3.25 3.35 0 0 1 12 2.35m0 12.6a3.25 3.35 0 0 1 3.25 3.35A3.25 3.35 0 0 1 12 21.65a3.25 3.35 0 0 1-3.25-3.35A3.25 3.35 0 0 1 12 14.95"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.614 7.2c-.002-.003-.072-.071-.087-.2a37 37 0 0 0-.568-4.08.66.66 0 0 0-.575-.516l-1.96-.236s-.022-.003-.052 0a.413.413 0 0 0-.413.412v.68c.007.033-.035.015-.041.018A27.5 27.5 0 0 0 12.972.293 1.74 1.74 0 0 0 12.003 0c-.592-.002-.953.293-.97.293C4.278 4.47.56 11.243.417 11.615c-.18.38.032.83.44.934l1.946.374a.67.67 0 0 1 .486.57c.016.343.384 8.015.846 10.005.007.061.174.499.648.499h.014a250 250 0 0 1 3.396-.063.22.22 0 0 0 .218-.219c0-.18-.028-.06-.231-3.956a.41.41 0 0 0-.203-.323 2.1 2.1 0 0 1-1.02-1.695c-.227-5.894.011-8.233-.008-8.233.012-.528.81-.512.783.046-.11 1.809-.09 3.621-.07 5.432.01.62.94.603.929-.017-.035-1.904-.025-3.834.073-5.461.006-.509.794-.53.782.046-.106 1.799-.093 3.601-.07 5.402.01.62.939.605.93-.015.01.011-.085-2.834.072-5.434.012-.528.783-.52.783.046-.152 2.69-.08 5.386 0 8.077a2.1 2.1 0 0 1-.91 1.731.4.4 0 0 0-.174.305s-.047.403.13 2.357c.054.572.116 1.142.177 1.713a.206.206 0 0 0 .206.18 469 469 0 0 1 4.056.009.206.206 0 0 0 .206-.182c.256-2.342.316-3.658.316-3.658a.23.23 0 0 0-.207-.225l-1.341-.185a.47.47 0 0 1-.401-.535c.536-7.81 3.109-10.44 3.109-10.44a1 1 0 0 1 .125-.103.413.413 0 0 1 .627.184.8.8 0 0 1 .033.188c.222 2.454.113 6.63-.024 9.888-.117 2.765-.258 4.936-.258 4.936a.16.16 0 0 0 .16.16q1.115.02 2.228.047a.67.67 0 0 0 .649-.498c.46-1.99.825-9.663.845-10.007a.665.665 0 0 1 .486-.568l1.946-.375a.67.67 0 0 0 .44-.934c-.035-.096-.917-1.852-2.97-4.418"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.716 9.925H15.33l-4.898 4.919h6.727c-.885 1.975-2.865 3.061-5.16 3.061-3.104 0-5.639-2.67-5.639-5.771C6.36 9.02 8.896 6.42 12 6.42c1.134 0 2.189.295 3.061.871l4.542-4.561A11.92 11.92 0 0 0 12 0C5.37 0 0 5.367 0 12c0 6.623 5.37 12 12 12s12-5.115 12-11.738c0-.896-.103-1.35-.284-2.337"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.46 2.172H2.54A2.55 2.55 0 0 0 0 4.712v14.575a2.55 2.55 0 0 0 2.54 2.54h18.92a2.55 2.55 0 0 0 2.54-2.54V4.713a2.55 2.55 0 0 0-2.54-2.54ZM10.14 16.465 5.524 19.15a1.235 1.235 0 1 1-1.242-2.137L8.9 14.33a1.235 1.235 0 1 1 1.241 2.136zm1.817-4.088h-.006a1.235 1.235 0 0 1-1.23-1.24l.023-5.32a1.236 1.236 0 0 1 1.236-1.23h.005a1.235 1.235 0 0 1 1.23 1.241l-.023 5.32a1.236 1.236 0 0 1-1.235 1.23zm8.17 6.32a1.235 1.235 0 0 1-1.688.453l-4.624-2.67a1.235 1.235 0 1 1 1.235-2.14l4.624 2.67a1.235 1.235 0 0 1 .452 1.688z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 23.646H0L7.99 6.603l4.813 3.538L19.08.354Zm-8.8-3.681h.052a2.3 2.3 0 0 0 1.593-.64 2.09 2.09 0 0 0 .685-1.576 1.91 1.91 0 0 0-.66-1.511 2 2 0 0 0-1.37-.59h-.04a.7.7 0 0 0-.199.027l1.267-1.883-1.01-.705-.477.705-1.22 1.864c-.21.31-.386.582-.495.77q-.169.301-.29.625a1.9 1.9 0 0 0-.138.719 2.09 2.09 0 0 0 .676 1.558c.422.411.989.641 1.578.64Zm-5.365-2.027 1.398 1.978h1.496l-1.645-2.295 1.46-2.029-.97-.671-.427.565-1.314 1.853v-3.725l-1.31-1.068v7.37h1.31v-1.98Zm5.367.792a.963.963 0 1 1 0-1.927h.009a.94.94 0 0 1 .679.29.9.9 0 0 1 .29.668.98.98 0 0 1-.977.967Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.103 7.348Q0 7.348 0 7.45v6.752q0 .102.103.102h.704q.102 0 .103-.103v-1.48l.418-.4 1.502 1.91a.18.18 0 0 0 .143.072h.909q.072 0 .082-.04.02-.062-.02-.102l-1.982-2.462 1.9-1.839q.03-.03.01-.092-.02-.05-.082-.05h-.94q-.07 0-.143.07L.91 11.608V7.45q0-.102-.103-.102zm18.041 0q-.102 0-.102.102v6.752q0 .101.102.101h.705q.102 0 .102-.102V7.45q0-.102-.102-.102zM5.961 9.625q-.848 0-1.634.542-.082.081-.031.143l.368.52q.04.072.133.021.592-.409 1.164-.409.44.001.669.266a.84.84 0 0 1 .2.644q-.991.102-1.482.245-1.245.357-1.246 1.358 0 .634.46 1.042.47.399 1.113.398.705 0 1.154-.337v.143q0 .103.113.102h.704q.102 0 .102-.102v-2.829q0-.99-.674-1.44-.459-.307-1.113-.307m4.323 0q-1.012 0-1.563.787-.47.654-.47 1.594 0 .99.49 1.644.562.745 1.553.745.797 0 1.277-.398v.531q0 1.287-1.236 1.287-.541 0-1.114-.572a.1.1 0 0 0-.071-.03.1.1 0 0 0-.082.03l-.48.48q-.061.093.01.154.204.173.358.29.153.118.265.19.531.296 1.124.296 1.02 0 1.578-.577.557-.578.557-1.69V9.82q0-.102-.102-.102h-.705q-.103 0-.102.102v.204q-.522-.399-1.287-.399m4.802 0q-1.012 0-1.563.787-.47.654-.47 1.594 0 .99.49 1.644.562.745 1.553.745.797 0 1.277-.398v.531q0 1.287-1.236 1.287-.541 0-1.114-.572a.1.1 0 0 0-.071-.03.1.1 0 0 0-.082.03l-.48.48q-.06.093.01.154.204.173.358.29.152.118.266.19.53.296 1.123.296 1.022 0 1.578-.577.557-.578.557-1.69V9.82q0-.102-.102-.102h-.705q-.102 0-.102.102v.204q-.522-.399-1.287-.399zm6.745 0q-.98 0-1.593.634-.664.694-.664 1.695 0 1.063.674 1.747.695.694 1.737.694.97 0 1.705-.551.082-.061 0-.143l-.48-.49q-.06-.062-.153 0-.45.316-1.011.316-.634 0-1.052-.357a1.32 1.32 0 0 1-.43-.838h3.32q.102 0 .102-.102l.01-.224q.052-1.032-.602-1.717a2.08 2.08 0 0 0-1.563-.664m-.02.787a1.2 1.2 0 0 1 .837.317q.368.316.378.786h-2.461q.09-.49.439-.797.346-.306.807-.306m-11.425.102q.93 0 1.185.654v1.685q-.255.654-1.216.654-.47 0-.766-.296-.399-.378-.398-1.206 0-1.491 1.195-1.491m4.802 0q.93 0 1.185.654v1.685q-.256.654-1.216.654-.47 0-.766-.296-.398-.378-.398-1.206 0-1.491 1.195-1.491m-8.359 1.655v1.021q-.429.429-1.144.378a.9.9 0 0 1-.45-.158.52.52 0 0 1-.224-.363q-.051-.399.45-.613.367-.163 1.368-.265"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.483 18.392h-5.11c-1.382 0-1.622-1.508-1.382-2.11.12-.302.421-.724.661-1.026a6.74 6.74 0 0 0 3.306.844c3.847 0 6.913-3.135 6.913-6.934 0-2.05-.902-3.86-2.284-5.186l.18-.181c.36-.362.902-.603 1.443-.543l.841.06V0H17.61c-1.683 0-3.066 1.025-3.667 2.472a6.8 6.8 0 0 0-1.923-.301c-3.847 0-6.913 3.136-6.913 6.935 0 1.507.481 2.954 1.322 4.1-.12.12-.3.241-.42.302l-.18.18c-1.383 1.327-2.044 3.015-1.684 4.945.18 1.025 1.082 2.11 1.984 2.714.601.422 1.382.603 2.164.603l5.77-.241c.661 0 1.263.301 1.623.904L16.407 24l3.546-1.206-.601-1.327c-.902-1.869-2.765-3.075-4.87-3.075M12.02 5.849c1.803 0 3.306 1.508 3.306 3.317s-1.503 3.316-3.306 3.316-3.306-1.507-3.306-3.316c0-1.87 1.442-3.317 3.306-3.317"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.557 18.87 2.747-17.513L16.174 0zM.696 2.348v19.078l4.035.14-.035-6.679 2.487-2.4 2.626 9.078h3.565L10.087 9.722l4.957-5.444-3.496-1.339L4.73 9.443V1.322zm18.295 17.86-.99 2.331L20.12 24l2.088-1.235-.887-2.556Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.342 0a3.674 3.674 0 0 0-3.647 3.674 3.673 3.673 0 0 0 3.673 3.673A3.674 3.674 0 1 0 17.342 0M4.623.16a2.746 2.746 0 0 0-2.747 2.747v18.167a2.747 2.747 0 1 0 5.494 0V2.907A2.75 2.75 0 0 0 4.623.16m6.95 7.208a2.729 2.729 0 0 0-2.237 4.294l7.81 11.155a2.729 2.729 0 1 0 4.471-3.131L13.807 8.53a2.73 2.73 0 0 0-2.234-1.163"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m3.074 10.44.655.473-1.61 2.02 1.865 2.237-.646.5-2.201-2.692zM.837 15.542H0v-7.03l.837-.182zM21.78 11.16q-.655 0-1.005.49-.35.492-.35 1.438 0 .937.35 1.414t1.005.478q.663 0 1.014-.478.35-.477.35-1.414 0-.946-.35-1.437-.351-.491-1.014-.491m0-.673q1.036 0 1.627.673.592.672.592 1.928 0 1.237-.587 1.9-.586.665-1.632.665-1.037 0-1.628-.664-.591-.665-.592-1.901 0-1.256.596-1.928.596-.673 1.624-.673m-5.534 4.465a1.5 1.5 0 0 0 .357-.045 3 3 0 0 0 .372-.118 2 2 0 0 0 .348-.178 2 2 0 0 0 .29-.223v-1.164h-.87q-.66 0-.964.228-.303.226-.303.718 0 .782.77.782m-1.57-.745q0-.756.504-1.15.505-.397 1.469-.397h.964v-.318q0-1.155-1.019-1.155-.327 0-.686.091t-.66.227l-.245-.59q.373-.21.805-.324.431-.113.84-.114 1.766 0 1.766 1.883v3.183h-.62l-.1-.545q-.372.3-.795.464-.423.163-.805.163-.665 0-1.041-.377-.378-.378-.378-1.041m-1.65-3.766.655.473-1.61 2.02 1.864 2.237-.645.5-2.201-2.692zm-2.237 5.102h-.837v-7.03l.837-.182zm-4.494-.59q.172 0 .358-.046a3 3 0 0 0 .37-.118 2 2 0 0 0 .35-.178 2 2 0 0 0 .29-.223v-1.164h-.87q-.66 0-.965.228-.303.226-.303.718 0 .783.77.782m-1.57-.745q0-.756.505-1.15.504-.397 1.468-.397h.965v-.318q0-1.155-1.02-1.155-.326 0-.686.091t-.66.227l-.245-.59q.373-.21.805-.324.432-.113.841-.113 1.765 0 1.765 1.882v3.183h-.618l-.1-.545q-.375.3-.796.464-.422.163-.806.163-.663 0-1.04-.377-.378-.378-.378-1.041"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.125 0H1.875C.839 0 0 .84 0 1.875v20.25C0 23.161.84 24 1.875 24h20.25C23.161 24 24 23.16 24 22.125V1.875C24 .839 23.16 0 22.125 0M12 18.75q-.888 0-1.732-.12c-.562.396-3.813 2.679-4.12 2.722 0 0-.125.049-.232-.014s-.088-.229-.088-.229c.032-.22.843-3.018.992-3.533-2.745-1.36-4.57-3.769-4.57-6.513 0-4.246 4.365-7.688 9.75-7.688s9.75 3.442 9.75 7.688S17.385 18.75 12 18.75M8.05 9.867h-.878v3.342c0 .296-.252.537-.563.537s-.562-.24-.562-.537V9.867h-.878a.552.552 0 0 1 0-1.101h2.88a.552.552 0 0 1 0 1.101m10.987 2.957a.56.56 0 0 1 .109.417.56.56 0 0 1-.219.37.56.56 0 0 1-.338.114.56.56 0 0 1-.45-.224l-1.319-1.747-.195.195v1.227a.564.564 0 0 1-.562.563.563.563 0 0 1-.563-.563V9.328a.563.563 0 0 1 1.125 0v1.21l1.57-1.57a.44.44 0 0 1 .311-.126c.14 0 .282.061.388.167a.56.56 0 0 1 .165.356.44.44 0 0 1-.124.343l-1.282 1.281zm-8.35-3.502c-.095-.27-.383-.548-.75-.556-.366.008-.654.286-.749.555l-1.345 3.541c-.171.53-.022.728.133.8a.9.9 0 0 0 .357.077c.235 0 .414-.095.468-.248l.279-.73h1.715l.279.73c.054.153.233.248.468.248a.9.9 0 0 0 .357-.078c.155-.071.304-.268.133-.8zm-1.311 2.443.562-1.596.561 1.596zm5.905 1.383a.53.53 0 0 1-.539.516h-1.804a.53.53 0 0 1-.54-.516v-3.82c0-.31.258-.562.575-.562s.574.252.574.562v3.305h1.195c.297 0 .54.231.54.515"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.778 5.943s-1.97-.13-5.327.92c-3.42 1.07-5.36 2.587-5.36 2.587s5.098-2.847 10.852-3.008zm7.351 3.095.257-.017s-1.468-1.78-4.278-2.648c1.58.642 2.954 1.493 4.021 2.665m.42.74c.039-.068.166.217.263.337.004.024.01.039-.045.027-.005-.025-.013-.032-.013-.032s-.135-.08-.177-.137-.049-.157-.028-.195m3.448 8.479s.312-3.578-5.31-4.403a18 18 0 0 0-2.524-.187c-4.506.06-4.67-5.197-1.275-5.462 1.407-.116 3.087.643 4.73 1.408-.007.204.002.385.136.552s.648.35.813.445c.164.094.691.43 1.014.85.07-.131.654-.512.654-.512s-.14.003-.465-.119c-.326-.122-.713-.49-.722-.511s-.015-.055.06-.07c.059-.049-.072-.207-.13-.265s-.445-.716-.454-.73c-.009-.016-.012-.031-.04-.05-.085-.027-.46.04-.46.04s-.575-.283-.774-.893c.003.107-.099.224 0 .469-.3-.127-.558-.344-.762-.88-.12.305 0 .499 0 .499s-.707-.198-.82-.85c-.124.293 0 .469 0 .469s-1.153-.602-3.069-.61c-1.283-.118-1.55-2.374-1.43-2.754 0 0-1.85-.975-5.493-1.406-3.642-.43-6.628-.065-6.628-.065s6.45-.31 11.617 1.783c.176.785.704 2.094.989 2.723-.815.563-1.733 1.092-1.876 2.97s1.472 3.53 3.474 3.58c1.9.102 3.214.116 4.806.942 1.52.84 2.766 3.4 2.89 5.703.132-1.709-.509-5.383-3.5-6.498 4.181.732 4.549 3.832 4.549 3.832M12.68 5.663l-.15-.485s-2.484-.441-5.822-.204S0 6.38 0 6.38s6.896-1.735 12.68-.717"/></svg>