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,135 @@
1
+ # Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>
2
+ # Copyright (c) 2026 QQ (Cyrus)
3
+ #
4
+ # This file is part of DocsForge.
5
+ #
6
+ # DocsForge is free software: you can redistribute it and/or modify
7
+ # it under the terms of the GNU Lesser General Public License as published by
8
+ # the Free Software Foundation, either version 3 of the License, or
9
+ # (at your option) any later version.
10
+ #
11
+ # DocsForge is distributed in the hope that it will be useful,
12
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
+ # GNU Lesser General Public License for more details.
15
+ #
16
+ # You should have received a copy of the GNU Lesser General Public License
17
+ # along with DocsForge. If not, see <https://www.gnu.org/licenses/>.
18
+
19
+
20
+
21
+ # The above copyright notice and this permission notice shall be included in
22
+ # all copies or substantial portions of the Software.
23
+
24
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
26
+ # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
27
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
28
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
29
+ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
30
+ # IN THE SOFTWARE.
31
+
32
+ from __future__ import annotations
33
+
34
+ import logging
35
+
36
+ from fnmatch import fnmatch
37
+ from docsforge.structure.files import File
38
+
39
+ from .config import FilterConfig
40
+
41
+ # -----------------------------------------------------------------------------
42
+ # Classes
43
+ # -----------------------------------------------------------------------------
44
+
45
+ class Filter:
46
+ """
47
+ A filter.
48
+ """
49
+
50
+ def __init__(self, config: FilterConfig):
51
+ """
52
+ Initialize the filter.
53
+
54
+ Arguments:
55
+ config: The filter configuration.
56
+ """
57
+ self.config = config
58
+
59
+ def __call__(self, value: str, ref: str | None = None) -> bool:
60
+ """
61
+ Filter a value.
62
+
63
+ First, the inclusion patterns are checked. Regardless of whether they
64
+ are present, the exclusion patterns are checked afterwards. This allows
65
+ to exclude values that are included by the inclusion patterns, so that
66
+ exclusion patterns can be used to refine inclusion patterns.
67
+
68
+ Arguments:
69
+ value: The value to filter.
70
+ ref: The value used for logging.
71
+
72
+ Returns:
73
+ Whether the value should be included.
74
+ """
75
+ ref = ref or value
76
+
77
+ # Check if value matches one of the inclusion patterns
78
+ if self.config.include:
79
+ for pattern in self.config.include:
80
+ if fnmatch(value, pattern):
81
+ break
82
+
83
+ # Value is not included
84
+ else:
85
+ log.debug(f"Excluding '{ref}' due to inclusion patterns")
86
+ return False
87
+
88
+ # Check if value matches one of the exclusion patterns
89
+ for pattern in self.config.exclude:
90
+ if fnmatch(value, pattern):
91
+ log.debug(f"Excluding '{ref}' due to exclusion patterns")
92
+ return False
93
+
94
+ # Value is not excluded
95
+ return True
96
+
97
+ # -------------------------------------------------------------------------
98
+
99
+ config: FilterConfig
100
+ """
101
+ The filter configuration.
102
+ """
103
+
104
+ # -----------------------------------------------------------------------------
105
+
106
+ class FileFilter(Filter):
107
+ """
108
+ A file filter.
109
+ """
110
+
111
+ def __call__(self, file: File) -> bool:
112
+ """
113
+ Filter a file by its source path.
114
+
115
+ Arguments:
116
+ file: The file to filter.
117
+
118
+ Returns:
119
+ Whether the file should be included.
120
+ """
121
+ if file.inclusion.is_excluded():
122
+ return False
123
+
124
+ # Filter file by source path
125
+ return super().__call__(
126
+ file.src_uri,
127
+ file.src_path
128
+ )
129
+
130
+ # -----------------------------------------------------------------------------
131
+ # Data
132
+ # -----------------------------------------------------------------------------
133
+
134
+ # Set up logging
135
+ log = logging.getLogger("mkdocs.material.utilities")
@@ -0,0 +1,58 @@
1
+ # Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>
2
+ # Copyright (c) 2026 QQ (Cyrus)
3
+ #
4
+ # This file is part of DocsForge.
5
+ #
6
+ # DocsForge is free software: you can redistribute it and/or modify
7
+ # it under the terms of the GNU Lesser General Public License as published by
8
+ # the Free Software Foundation, either version 3 of the License, or
9
+ # (at your option) any later version.
10
+ #
11
+ # DocsForge is distributed in the hope that it will be useful,
12
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
+ # GNU Lesser General Public License for more details.
15
+ #
16
+ # You should have received a copy of the GNU Lesser General Public License
17
+ # along with DocsForge. If not, see <https://www.gnu.org/licenses/>.
18
+
19
+
20
+
21
+ # The above copyright notice and this permission notice shall be included in
22
+ # all copies or substantial portions of the Software.
23
+
24
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
26
+ # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
27
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
28
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
29
+ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
30
+ # IN THE SOFTWARE.
31
+
32
+ from docsforge.config.base import Config
33
+ from docsforge.config.config_options import ListOfItems, Type
34
+
35
+ # -----------------------------------------------------------------------------
36
+ # Classes
37
+ # -----------------------------------------------------------------------------
38
+
39
+ class FilterConfig(Config):
40
+ """
41
+ A filter configuration.
42
+ """
43
+
44
+ include = ListOfItems(Type(str), default = [])
45
+ """
46
+ Patterns to include.
47
+
48
+ This list contains patterns that are matched against the value to filter.
49
+ If the value matches at least one pattern, it will be included.
50
+ """
51
+
52
+ exclude = ListOfItems(Type(str), default = [])
53
+ """
54
+ Patterns to exclude.
55
+
56
+ This list contains patterns that are matched against the value to filter.
57
+ If the value matches at least one pattern, it will be excluded.
58
+ """
@@ -0,0 +1,403 @@
1
+ """
2
+ Standalone file utils.
3
+
4
+ Nothing in this module should have an knowledge of config or the layout
5
+ and structure of the site and pages in the site.
6
+ """
7
+
8
+ from __future__ import annotations
9
+
10
+ import functools
11
+ import logging
12
+ import os
13
+ import posixpath
14
+ import re
15
+ import shutil
16
+ import warnings
17
+ from bisect import insort # noqa: F401 - legacy re-export
18
+ from collections import defaultdict
19
+ from collections.abc import Collection, Iterable
20
+ from datetime import datetime, timezone
21
+ from importlib.metadata import EntryPoint, entry_points
22
+ from pathlib import PurePath
23
+ from typing import TYPE_CHECKING, TypeVar
24
+ from urllib.parse import urlsplit
25
+
26
+ from docsforge import exceptions
27
+ from docsforge.utils.yaml import get_yaml_loader, yaml_load # noqa: F401 - legacy re-export
28
+
29
+ if TYPE_CHECKING:
30
+ from docsforge.structure.pages import Page
31
+
32
+ T = TypeVar('T')
33
+
34
+ log = logging.getLogger(__name__)
35
+
36
+ markdown_extensions = (
37
+ '.markdown',
38
+ '.mdown',
39
+ '.mkdn',
40
+ '.mkd',
41
+ '.md',
42
+ )
43
+
44
+
45
+ def get_build_timestamp(*, pages: Collection[Page] | None = None) -> int:
46
+ """
47
+ Returns the number of seconds since the epoch for the latest updated page.
48
+
49
+ In reality this is just today's date because that's how pages' update time is populated.
50
+ """
51
+ if pages:
52
+ # Lexicographic comparison is OK for ISO date.
53
+ date_string = max(p.update_date for p in pages)
54
+ dt = datetime.fromisoformat(date_string).replace(tzinfo=timezone.utc)
55
+ else:
56
+ dt = get_build_datetime()
57
+ return int(dt.timestamp())
58
+
59
+
60
+ def get_build_datetime() -> datetime:
61
+ """
62
+ Returns an aware datetime object.
63
+
64
+ Support SOURCE_DATE_EPOCH environment variable for reproducible builds.
65
+ See https://reproducible-builds.org/specs/source-date-epoch/
66
+ """
67
+ source_date_epoch = os.environ.get('SOURCE_DATE_EPOCH')
68
+ if source_date_epoch is None:
69
+ return datetime.now(timezone.utc)
70
+
71
+ return datetime.fromtimestamp(int(source_date_epoch), timezone.utc)
72
+
73
+
74
+ def get_build_date() -> str:
75
+ """
76
+ Returns the displayable date string.
77
+
78
+ Support SOURCE_DATE_EPOCH environment variable for reproducible builds.
79
+ See https://reproducible-builds.org/specs/source-date-epoch/
80
+ """
81
+ return get_build_datetime().strftime('%Y-%m-%d')
82
+
83
+
84
+ _removesuffix = str.removesuffix
85
+
86
+
87
+ def reduce_list(data_set: Iterable[T]) -> list[T]:
88
+ """Reduce duplicate items in a list and preserve order."""
89
+ return list(dict.fromkeys(data_set))
90
+
91
+
92
+ def copy_file(source_path: str, output_path: str) -> None:
93
+ """
94
+ Copy source_path to output_path, making sure any parent directories exist.
95
+
96
+ The output_path may be a directory.
97
+ """
98
+ output_dir = os.path.dirname(output_path)
99
+ os.makedirs(output_dir, exist_ok=True)
100
+ if os.path.isdir(output_path):
101
+ output_path = os.path.join(output_path, os.path.basename(source_path))
102
+ shutil.copyfile(source_path, output_path)
103
+
104
+
105
+ def write_file(content: bytes, output_path: str) -> None:
106
+ """Write content to output_path, making sure any parent directories exist."""
107
+ output_dir = os.path.dirname(output_path)
108
+ os.makedirs(output_dir, exist_ok=True)
109
+ with open(output_path, 'wb') as f:
110
+ f.write(content)
111
+
112
+
113
+ def clean_directory(directory: str) -> None:
114
+ """Remove the content of a directory recursively but not the directory itself."""
115
+ if not os.path.exists(directory):
116
+ return
117
+
118
+ for entry in os.listdir(directory):
119
+ # Don't remove hidden files from the directory. We never copy files
120
+ # that are hidden, so we shouldn't delete them either.
121
+ if entry.startswith('.'):
122
+ continue
123
+
124
+ path = os.path.join(directory, entry)
125
+ if os.path.isdir(path):
126
+ shutil.rmtree(path, True)
127
+ else:
128
+ os.unlink(path)
129
+
130
+
131
+ def is_markdown_file(path: str) -> bool:
132
+ """
133
+ Return True if the given file path is a Markdown file.
134
+
135
+ https://superuser.com/questions/249436/file-extension-for-markdown-files
136
+ """
137
+ return path.endswith(markdown_extensions)
138
+
139
+
140
+ _ERROR_TEMPLATE_RE = re.compile(r'^\d{3}\.html?$')
141
+
142
+
143
+ def is_error_template(path: str) -> bool:
144
+ """Return True if the given file path is an HTTP error template."""
145
+ return bool(_ERROR_TEMPLATE_RE.match(path))
146
+
147
+
148
+ @functools.cache
149
+ def _norm_parts(path: str) -> list[str]:
150
+ if not path.startswith('/'):
151
+ path = '/' + path
152
+ path = posixpath.normpath(path)[1:]
153
+ return path.split('/') if path else []
154
+
155
+
156
+ def get_relative_url(url: str, other: str) -> str:
157
+ """
158
+ Return given url relative to other.
159
+
160
+ Both are operated as slash-separated paths, similarly to the 'path' part of a URL.
161
+ The last component of `other` is skipped if it contains a dot (considered a file).
162
+ Actual URLs (with schemas etc.) aren't supported. The leading slash is ignored.
163
+ Paths are normalized ('..' works as parent directory), but going higher than the
164
+ root has no effect ('foo/../../bar' ends up just as 'bar').
165
+ """
166
+ # Remove filename from other url if it has one.
167
+ dirname, _, basename = other.rpartition('/')
168
+ if '.' in basename:
169
+ other = dirname
170
+
171
+ other_parts = _norm_parts(other)
172
+ dest_parts = _norm_parts(url)
173
+ common = 0
174
+ for a, b in zip(other_parts, dest_parts, strict=False):
175
+ if a != b:
176
+ break
177
+ common += 1
178
+
179
+ rel_parts = ['..'] * (len(other_parts) - common) + dest_parts[common:]
180
+ relurl = '/'.join(rel_parts) or '.'
181
+ return relurl + '/' if url.endswith('/') else relurl
182
+
183
+
184
+ def normalize_url(path: str, page: Page | None = None, base: str = '') -> str:
185
+ """Return a URL relative to the given page or using the base."""
186
+ path, relative_level = _get_norm_url(path)
187
+ if relative_level == -1:
188
+ return path
189
+ if page is not None:
190
+ result = get_relative_url(path, page.url)
191
+ if relative_level > 0:
192
+ result = '../' * relative_level + result
193
+ return result
194
+
195
+ return posixpath.join(base, path)
196
+
197
+
198
+ @functools.cache
199
+ def _get_norm_url(path: str) -> tuple[str, int]:
200
+ if not path:
201
+ path = '.'
202
+ elif '\\' in path:
203
+ log.warning(
204
+ f"Path '{path}' uses OS-specific separator '\\'. "
205
+ f"That will be unsupported in a future release. Please change it to '/'."
206
+ )
207
+ path = path.replace('\\', '/')
208
+ try:
209
+ parsed = urlsplit(path)
210
+ except ValueError:
211
+ return path, -1
212
+ # Allow links to be fully qualified URLs
213
+ if parsed.scheme or parsed.netloc or path.startswith(('/', '#')):
214
+ return path, -1
215
+
216
+ # Relative path - preserve information about it
217
+ norm = posixpath.normpath(path) + '/'
218
+ relative_level = 0
219
+ while norm.startswith('../', relative_level * 3):
220
+ relative_level += 1
221
+ return path, relative_level
222
+
223
+
224
+ def create_media_urls(
225
+ path_list: Iterable[str], page: Page | None = None, base: str = ''
226
+ ) -> list[str]:
227
+ """Soft-deprecated, do not use."""
228
+ return [normalize_url(path, page, base) for path in path_list]
229
+
230
+
231
+ def path_to_url(path):
232
+ warnings.warn(
233
+ "path_to_url is never used in ProperDocs and will be removed soon.", DeprecationWarning
234
+ )
235
+ return path.replace('\\', '/')
236
+
237
+
238
+ def get_theme_dir(name: str) -> str:
239
+ """Return the directory of an installed theme by name."""
240
+ theme = get_themes()[name]
241
+ return os.path.dirname(os.path.abspath(theme.load().__file__))
242
+
243
+
244
+ @functools.cache
245
+ def get_themes() -> dict[str, EntryPoint]:
246
+ """Return a dict of all installed themes as {name: EntryPoint}."""
247
+ # Ordered set of preferred entry points.
248
+ eps: dict[EntryPoint, None] = {}
249
+ builtins: set[str] = set()
250
+
251
+ for ep in entry_points(group='mkdocs.themes'):
252
+ if ep.dist is not None and ep.dist.name != 'mkdocs':
253
+ eps[ep] = None
254
+ # These will get preference because they are later in the sequence:
255
+ for ep in entry_points(group='properdocs.themes'):
256
+ if ep.dist is not None:
257
+ eps[ep] = None
258
+ if ep.dist.name == 'properdocs':
259
+ builtins.add(ep.name)
260
+
261
+ themes: dict[str, EntryPoint] = {}
262
+ for theme in eps:
263
+ assert theme.dist is not None
264
+
265
+ if theme.name in builtins and theme.dist.name != 'properdocs':
266
+ raise exceptions.ConfigurationError(
267
+ f"The theme '{theme.name}' is a builtin theme but the package '{theme.dist.name}' "
268
+ "attempts to provide a theme with the same name."
269
+ )
270
+ elif theme.name in themes:
271
+ other_dist = themes[theme.name].dist
272
+ assert other_dist is not None
273
+ log.warning(
274
+ f"A theme named '{theme.name}' is provided by the Python packages '{theme.dist.name}' "
275
+ f"and '{other_dist.name}'. The one in '{theme.dist.name}' will be used."
276
+ )
277
+
278
+ themes[theme.name] = theme
279
+
280
+ return themes
281
+
282
+
283
+ def get_theme_names() -> Collection[str]:
284
+ """Return a list of all installed themes by name."""
285
+ return get_themes().keys()
286
+
287
+
288
+ def dirname_to_title(dirname: str) -> str:
289
+ """Return a page tile obtained from a directory name."""
290
+ title = dirname
291
+ title = title.replace('-', ' ').replace('_', ' ')
292
+ # Capitalize if the dirname was all lowercase, otherwise leave it as-is.
293
+ if title.lower() == title:
294
+ title = title.capitalize()
295
+
296
+ return title
297
+
298
+
299
+ def get_markdown_title(markdown_src: str) -> str | None:
300
+ """Soft-deprecated, do not use."""
301
+ lines = markdown_src.replace('\r\n', '\n').replace('\r', '\n').split('\n')
302
+ while lines:
303
+ line = lines.pop(0).strip()
304
+ if not line.strip():
305
+ continue
306
+ if not line.startswith('# '):
307
+ return None
308
+ return line.lstrip('# ')
309
+ return None
310
+
311
+
312
+ def find_or_create_node(branch, key):
313
+ """
314
+ Given a list, look for dictionary with a key matching key and return it's
315
+ value. If it doesn't exist, create it with the value of an empty list and
316
+ return that.
317
+ """
318
+ for node in branch:
319
+ if not isinstance(node, dict):
320
+ continue
321
+
322
+ if key in node:
323
+ return node[key]
324
+
325
+ new_branch = []
326
+ node = {key: new_branch}
327
+ branch.append(node)
328
+ return new_branch
329
+
330
+
331
+ def nest_paths(paths):
332
+ """
333
+ Given a list of paths, convert them into a nested structure that will match
334
+ the pages config.
335
+ """
336
+ nested = []
337
+
338
+ for path in paths:
339
+ parts = PurePath(path).parent.parts
340
+
341
+ branch = nested
342
+ for part in parts:
343
+ part = dirname_to_title(part)
344
+ branch = find_or_create_node(branch, part)
345
+
346
+ branch.append(path)
347
+
348
+ return nested
349
+
350
+
351
+ class DuplicateFilter:
352
+ """Avoid logging duplicate messages."""
353
+
354
+ def __init__(self) -> None:
355
+ self.msgs: set[str] = set()
356
+
357
+ def __call__(self, record: logging.LogRecord) -> bool:
358
+ rv = record.msg not in self.msgs
359
+ self.msgs.add(record.msg)
360
+ return rv
361
+
362
+
363
+ class CountHandler(logging.NullHandler):
364
+ """Counts all logged messages >= level."""
365
+
366
+ def __init__(self, **kwargs) -> None:
367
+ self.counts: dict[int, int] = defaultdict(int)
368
+ super().__init__(**kwargs)
369
+
370
+ def handle(self, record):
371
+ rv = self.filter(record)
372
+ if rv:
373
+ # Use levelno for keys so they can be sorted later
374
+ self.counts[record.levelno] += 1
375
+ return rv
376
+
377
+ def get_counts(self) -> list[tuple[str, int]]:
378
+ return [(logging.getLevelName(k), v) for k, v in sorted(self.counts.items(), reverse=True)]
379
+
380
+
381
+ class weak_property:
382
+ """Same as a read-only property, but allows overwriting the field for good."""
383
+
384
+ def __init__(self, func):
385
+ self.func = func
386
+ self.__doc__ = func.__doc__
387
+
388
+ def __get__(self, instance, owner=None):
389
+ if instance is None:
390
+ return self
391
+ return self.func(instance)
392
+
393
+
394
+ def __getattr__(name: str):
395
+ if name == 'warning_filter':
396
+ warnings.warn(
397
+ "warning_filter doesn't do anything since MkDocs 1.2 and will be removed soon. "
398
+ "All messages on the `properdocs` logger get counted automatically.",
399
+ DeprecationWarning,
400
+ )
401
+ return logging.Filter()
402
+
403
+ raise AttributeError(f"module {__name__!r} has no attribute {name!r}")
@@ -0,0 +1,29 @@
1
+ from __future__ import annotations
2
+
3
+ from string import ascii_letters
4
+ from typing import NamedTuple
5
+
6
+
7
+ class UnknownLocaleError(Exception):
8
+ pass
9
+
10
+
11
+ class Locale(NamedTuple):
12
+ language: str
13
+ territory: str = ''
14
+
15
+ def __str__(self):
16
+ if self.territory:
17
+ return f'{self.language}_{self.territory}'
18
+ return self.language
19
+
20
+ @classmethod
21
+ def parse(cls, identifier, sep):
22
+ if not isinstance(identifier, str):
23
+ raise TypeError(f"Unexpected value for identifier: '{identifier}'")
24
+ locale = cls(*identifier.split(sep, 1))
25
+ if not all(x in ascii_letters for x in locale.language):
26
+ raise ValueError(f"expected only letters, got '{locale.language}'")
27
+ if len(locale.language) != 2:
28
+ raise UnknownLocaleError(f"unknown locale '{locale.language}'")
29
+ return locale
@@ -0,0 +1,75 @@
1
+ # Copyright (c) 2023 Oleh Prypin <oleh@pryp.in>
2
+
3
+ from __future__ import annotations
4
+
5
+ import datetime
6
+ import hashlib
7
+ import logging
8
+ import os
9
+ import random
10
+ import urllib.request
11
+ from collections.abc import Callable
12
+
13
+ import platformdirs
14
+
15
+ import docsforge
16
+
17
+ log = logging.getLogger(__name__)
18
+
19
+
20
+ def download_url(url: str) -> bytes:
21
+ req = urllib.request.Request(
22
+ url, headers={"User-Agent": f"properdocs/{docsforge.__version__}"}
23
+ )
24
+ with urllib.request.urlopen(req) as resp:
25
+ return resp.read()
26
+
27
+
28
+ def download_and_cache_url(
29
+ url: str,
30
+ cache_duration: datetime.timedelta,
31
+ *,
32
+ download: Callable[[str], bytes] = download_url,
33
+ comment: bytes = b"# ",
34
+ ) -> bytes:
35
+ """
36
+ Downloads a file from the URL, stores it under ~/.cache/, and returns its content.
37
+
38
+ For tracking the age of the content, a prefix is inserted into the stored file, rather than relying on mtime.
39
+
40
+ Args:
41
+ url: URL to use.
42
+ download: Callback that will accept the URL and actually perform the download.
43
+ cache_duration: How long to consider the URL content cached.
44
+ comment: The appropriate comment prefix for this file format.
45
+ """
46
+ directory = os.path.join(platformdirs.user_cache_dir("properdocs"), "properdocs_url_cache")
47
+ name_hash = hashlib.sha256(url.encode()).hexdigest()[:32]
48
+ path = os.path.join(directory, name_hash + os.path.splitext(url)[1])
49
+
50
+ now = int(datetime.datetime.now(datetime.timezone.utc).timestamp())
51
+ prefix = b"%s%s downloaded at timestamp " % (comment, url.encode())
52
+ # Check for cached file and try to return it
53
+ if os.path.isfile(path):
54
+ try:
55
+ with open(path, "rb") as f:
56
+ line = f.readline()
57
+ if line.startswith(prefix):
58
+ line = line[len(prefix) :]
59
+ timestamp = int(line)
60
+ if datetime.timedelta(seconds=(now - timestamp)) <= cache_duration:
61
+ log.debug(f"Using cached '{path}' for '{url}'")
62
+ return f.read()
63
+ except (OSError, ValueError) as e:
64
+ log.debug(f"{type(e).__name__}: {e}")
65
+
66
+ # Download and cache the file
67
+ log.debug(f"Downloading '{url}' to '{path}'")
68
+ content = download(url)
69
+ os.makedirs(directory, exist_ok=True)
70
+ temp_filename = f"{path}.{random.randrange(1 << 32):08x}.part"
71
+ with open(temp_filename, "wb") as f:
72
+ f.write(b"%s%d\n" % (prefix, now))
73
+ f.write(content)
74
+ os.replace(temp_filename, path)
75
+ return content
@@ -0,0 +1 @@
1
+ from .templates import url_filter # noqa: F401 - legacy re-export