@dotglitch/ngx-common 2.0.0 → 3.0.0-beta.2

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 (1187) hide show
  1. package/README.md +37 -22
  2. package/{components/command-palette → command-palette}/breadcrumb/breadcrumb.component.d.ts +1 -1
  3. package/{components/command-palette → command-palette}/command-palette.component.d.ts +1 -1
  4. package/{services → command-palette}/command-palette.service.d.ts +2 -2
  5. package/command-palette/index.d.ts +2 -0
  6. package/{components/command-palette → command-palette}/shortcut/shortcut.component.d.ts +1 -1
  7. package/{components → core/components}/menu/menu.component.d.ts +2 -2
  8. package/{directives → core/components/menu}/menu.directive.d.ts +1 -1
  9. package/{types/menu.d.ts → core/components/menu/types.d.ts} +1 -1
  10. package/{components → core/components}/types.d.ts +0 -1
  11. package/{public-api.d.ts → core/index.d.ts} +12 -20
  12. package/{services → core/services}/navigation.service.d.ts +1 -1
  13. package/core/utils/index.d.ts +18 -0
  14. package/esm2022/{components/command-palette → command-palette}/breadcrumb/breadcrumb.component.mjs +1 -1
  15. package/esm2022/command-palette/command-palette.component.mjs +257 -0
  16. package/esm2022/command-palette/command-palette.service.mjs +207 -0
  17. package/esm2022/command-palette/dotglitch-ngx-common-command-palette.mjs +5 -0
  18. package/esm2022/command-palette/index.mjs +3 -0
  19. package/esm2022/{components/command-palette → command-palette}/shortcut/shortcut.component.mjs +1 -1
  20. package/esm2022/core/components/lazy-loader/lazy-loader.component.mjs +383 -0
  21. package/esm2022/core/components/lazy-loader/lazy-loader.module.mjs +33 -0
  22. package/esm2022/core/components/lazy-loader/lazy-loader.service.mjs +216 -0
  23. package/esm2022/core/components/lazy-loader/types.mjs +26 -0
  24. package/esm2022/core/components/menu/menu.component.mjs +433 -0
  25. package/esm2022/core/components/menu/menu.directive.mjs +159 -0
  26. package/esm2022/core/components/menu/types.mjs +2 -0
  27. package/esm2022/core/components/parallax-card/parallax-card.component.mjs +138 -0
  28. package/esm2022/core/components/types.mjs +3 -0
  29. package/esm2022/core/directives/image-cache.directive.mjs +143 -0
  30. package/esm2022/core/directives/utils.mjs +120 -0
  31. package/esm2022/core/dotglitch-ngx-common-core.mjs +5 -0
  32. package/esm2022/core/index.mjs +50 -0
  33. package/esm2022/core/pipes/html-bypass.pipe.mjs +27 -0
  34. package/esm2022/core/pipes/resource-bypass.pipe.mjs +27 -0
  35. package/esm2022/core/pipes/script-bypass.pipe.mjs +27 -0
  36. package/esm2022/core/pipes/style-bypass.pipe.mjs +27 -0
  37. package/esm2022/core/pipes/url-bypass.pipe.mjs +27 -0
  38. package/esm2022/core/services/dependency.service.mjs +55 -0
  39. package/esm2022/core/services/dialog.service.mjs +67 -0
  40. package/esm2022/core/services/fetch.service.mjs +74 -0
  41. package/esm2022/core/services/file.service.mjs +42 -0
  42. package/esm2022/core/services/keyboard.service.mjs +128 -0
  43. package/esm2022/core/services/navigation.service.mjs +50 -0
  44. package/esm2022/core/services/theme.service.mjs +64 -0
  45. package/esm2022/core/types/popup.mjs +2 -0
  46. package/esm2022/core/utils/index.mjs +69 -0
  47. package/esm2022/dotglitch-ngx-common.mjs +2 -2
  48. package/esm2022/filemanager/dotglitch-ngx-common-filemanager.mjs +5 -0
  49. package/esm2022/filemanager/file-grid/file-grid.component.mjs +676 -0
  50. package/esm2022/{components/filemanager → filemanager}/filemanager.component.mjs +13 -14
  51. package/esm2022/{components/filemanager → filemanager}/folder-rename/folder-rename.component.mjs +2 -2
  52. package/esm2022/filemanager/helpers.mjs +26 -0
  53. package/esm2022/filemanager/icon-resolver.mjs +155 -0
  54. package/esm2022/filemanager/index.mjs +2 -0
  55. package/esm2022/filemanager/mat-icons.mjs +5705 -0
  56. package/esm2022/filemanager/textextensions.mjs +294 -0
  57. package/esm2022/{components/filemanager → filemanager}/toolbar/breadcrumb/breadcrumb.component.mjs +1 -1
  58. package/esm2022/{components/filemanager → filemanager}/toolbar/icon-button/icon-button.component.mjs +1 -1
  59. package/esm2022/filemanager/toolbar/toolbar.component.mjs +165 -0
  60. package/esm2022/{components/filemanager → filemanager}/tree-view/tree-view.component.mjs +1 -1
  61. package/esm2022/filemanager/types.mjs +2 -0
  62. package/esm2022/index.mjs +3 -0
  63. package/esm2022/monaco-editor/dotglitch-ngx-common-monaco-editor.mjs +5 -0
  64. package/esm2022/monaco-editor/index.mjs +2 -0
  65. package/esm2022/monaco-editor/monaco-editor.component.mjs +234 -0
  66. package/esm2022/monaco-editor/ts-type-resolver/dependency-parser.mjs +91 -0
  67. package/esm2022/monaco-editor/ts-type-resolver/dummy-source-cache.mjs +15 -0
  68. package/esm2022/monaco-editor/ts-type-resolver/import-resolver.mjs +311 -0
  69. package/esm2022/monaco-editor/ts-type-resolver/main.mjs +112 -0
  70. package/esm2022/monaco-editor/ts-type-resolver/recursion-depth.mjs +21 -0
  71. package/esm2022/monaco-editor/ts-type-resolver/types.mjs +14 -0
  72. package/esm2022/monaco-editor/ts-type-resolver/unpkg-source-resolver.mjs +21 -0
  73. package/esm2022/monaco-editor/ts-type-resolver/update-emitter.mjs +37 -0
  74. package/esm2022/overlay-wrapper/dotglitch-ngx-common-overlay-wrapper.mjs +5 -0
  75. package/esm2022/overlay-wrapper/index.mjs +2 -0
  76. package/esm2022/overlay-wrapper/overlay-wrapper.component.mjs +247 -0
  77. package/esm2022/tooltip/dotglitch-ngx-common-tooltip.mjs +5 -0
  78. package/esm2022/tooltip/index.mjs +4 -0
  79. package/esm2022/tooltip/tooltip.component.mjs +204 -0
  80. package/esm2022/tooltip/tooltip.directive.mjs +153 -0
  81. package/esm2022/tooltip/types.mjs +2 -0
  82. package/fesm2022/dotglitch-ngx-common-command-palette.mjs +508 -0
  83. package/fesm2022/dotglitch-ngx-common-command-palette.mjs.map +1 -0
  84. package/fesm2022/dotglitch-ngx-common-core.mjs +2280 -0
  85. package/fesm2022/dotglitch-ngx-common-core.mjs.map +1 -0
  86. package/fesm2022/{dotglitch-ngx-common-folder-rename.component-Bh1IiRvd.mjs → dotglitch-ngx-common-filemanager-folder-rename.component-CnKuU8nn.mjs} +9 -30
  87. package/fesm2022/dotglitch-ngx-common-filemanager-folder-rename.component-CnKuU8nn.mjs.map +1 -0
  88. package/fesm2022/dotglitch-ngx-common-filemanager.mjs +7403 -0
  89. package/fesm2022/dotglitch-ngx-common-filemanager.mjs.map +1 -0
  90. package/fesm2022/dotglitch-ngx-common-monaco-editor.mjs +850 -0
  91. package/fesm2022/dotglitch-ngx-common-monaco-editor.mjs.map +1 -0
  92. package/fesm2022/dotglitch-ngx-common-overlay-wrapper.mjs +254 -0
  93. package/fesm2022/dotglitch-ngx-common-overlay-wrapper.mjs.map +1 -0
  94. package/fesm2022/dotglitch-ngx-common-tooltip.mjs +357 -0
  95. package/fesm2022/dotglitch-ngx-common-tooltip.mjs.map +1 -0
  96. package/fesm2022/dotglitch-ngx-common.mjs +3 -11686
  97. package/fesm2022/dotglitch-ngx-common.mjs.map +1 -1
  98. package/{components/filemanager → filemanager}/file-grid/file-grid.component.d.ts +7 -14
  99. package/{components/filemanager → filemanager}/filemanager.component.d.ts +4 -5
  100. package/{components/filemanager → filemanager}/folder-rename/folder-rename.component.d.ts +1 -1
  101. package/{components/filemanager → filemanager}/helpers.d.ts +1 -1
  102. package/filemanager/index.d.ts +1 -0
  103. package/{components/filemanager → filemanager}/toolbar/toolbar.component.d.ts +2 -2
  104. package/filemanager/types.d.ts +1 -0
  105. package/index.d.ts +1 -5
  106. package/monaco-editor/README.md +3 -0
  107. package/monaco-editor/index.d.ts +1 -0
  108. package/monaco-editor/monaco-editor.component.d.ts +53 -0
  109. package/overlay-wrapper/index.d.ts +1 -0
  110. package/overlay-wrapper/overlay-wrapper.component.d.ts +11 -0
  111. package/package.json +108 -47
  112. package/tooltip/index.d.ts +3 -0
  113. package/{components/tooltip → tooltip}/tooltip.component.d.ts +3 -3
  114. package/{directives → tooltip}/tooltip.directive.d.ts +2 -2
  115. package/{types/tooltip.d.ts → tooltip/types.d.ts} +1 -1
  116. package/assets/lib/vs/base/browser/ui/codicons/codicon/codicon.ttf +0 -0
  117. package/assets/lib/vs/base/common/worker/simpleWorker.nls.de.js +0 -8
  118. package/assets/lib/vs/base/common/worker/simpleWorker.nls.es.js +0 -8
  119. package/assets/lib/vs/base/common/worker/simpleWorker.nls.fr.js +0 -8
  120. package/assets/lib/vs/base/common/worker/simpleWorker.nls.it.js +0 -8
  121. package/assets/lib/vs/base/common/worker/simpleWorker.nls.ja.js +0 -8
  122. package/assets/lib/vs/base/common/worker/simpleWorker.nls.js +0 -8
  123. package/assets/lib/vs/base/common/worker/simpleWorker.nls.ko.js +0 -8
  124. package/assets/lib/vs/base/common/worker/simpleWorker.nls.ru.js +0 -8
  125. package/assets/lib/vs/base/common/worker/simpleWorker.nls.zh-cn.js +0 -8
  126. package/assets/lib/vs/base/common/worker/simpleWorker.nls.zh-tw.js +0 -8
  127. package/assets/lib/vs/base/worker/workerMain.js +0 -24
  128. package/assets/lib/vs/basic-languages/abap/abap.js +0 -10
  129. package/assets/lib/vs/basic-languages/apex/apex.js +0 -10
  130. package/assets/lib/vs/basic-languages/azcli/azcli.js +0 -10
  131. package/assets/lib/vs/basic-languages/bat/bat.js +0 -10
  132. package/assets/lib/vs/basic-languages/bicep/bicep.js +0 -11
  133. package/assets/lib/vs/basic-languages/cameligo/cameligo.js +0 -10
  134. package/assets/lib/vs/basic-languages/clojure/clojure.js +0 -10
  135. package/assets/lib/vs/basic-languages/coffee/coffee.js +0 -10
  136. package/assets/lib/vs/basic-languages/cpp/cpp.js +0 -10
  137. package/assets/lib/vs/basic-languages/csharp/csharp.js +0 -10
  138. package/assets/lib/vs/basic-languages/csp/csp.js +0 -10
  139. package/assets/lib/vs/basic-languages/css/css.js +0 -12
  140. package/assets/lib/vs/basic-languages/cypher/cypher.js +0 -10
  141. package/assets/lib/vs/basic-languages/dart/dart.js +0 -10
  142. package/assets/lib/vs/basic-languages/dockerfile/dockerfile.js +0 -10
  143. package/assets/lib/vs/basic-languages/ecl/ecl.js +0 -10
  144. package/assets/lib/vs/basic-languages/elixir/elixir.js +0 -10
  145. package/assets/lib/vs/basic-languages/flow9/flow9.js +0 -10
  146. package/assets/lib/vs/basic-languages/freemarker2/freemarker2.js +0 -12
  147. package/assets/lib/vs/basic-languages/fsharp/fsharp.js +0 -10
  148. package/assets/lib/vs/basic-languages/go/go.js +0 -10
  149. package/assets/lib/vs/basic-languages/graphql/graphql.js +0 -10
  150. package/assets/lib/vs/basic-languages/handlebars/handlebars.js +0 -10
  151. package/assets/lib/vs/basic-languages/hcl/hcl.js +0 -10
  152. package/assets/lib/vs/basic-languages/html/html.js +0 -10
  153. package/assets/lib/vs/basic-languages/ini/ini.js +0 -10
  154. package/assets/lib/vs/basic-languages/java/java.js +0 -10
  155. package/assets/lib/vs/basic-languages/javascript/javascript.js +0 -10
  156. package/assets/lib/vs/basic-languages/julia/julia.js +0 -10
  157. package/assets/lib/vs/basic-languages/kotlin/kotlin.js +0 -10
  158. package/assets/lib/vs/basic-languages/less/less.js +0 -11
  159. package/assets/lib/vs/basic-languages/lexon/lexon.js +0 -10
  160. package/assets/lib/vs/basic-languages/liquid/liquid.js +0 -10
  161. package/assets/lib/vs/basic-languages/lua/lua.js +0 -10
  162. package/assets/lib/vs/basic-languages/m3/m3.js +0 -10
  163. package/assets/lib/vs/basic-languages/markdown/markdown.js +0 -10
  164. package/assets/lib/vs/basic-languages/mips/mips.js +0 -10
  165. package/assets/lib/vs/basic-languages/msdax/msdax.js +0 -10
  166. package/assets/lib/vs/basic-languages/mysql/mysql.js +0 -10
  167. package/assets/lib/vs/basic-languages/objective-c/objective-c.js +0 -10
  168. package/assets/lib/vs/basic-languages/pascal/pascal.js +0 -10
  169. package/assets/lib/vs/basic-languages/pascaligo/pascaligo.js +0 -10
  170. package/assets/lib/vs/basic-languages/perl/perl.js +0 -10
  171. package/assets/lib/vs/basic-languages/pgsql/pgsql.js +0 -10
  172. package/assets/lib/vs/basic-languages/php/php.js +0 -10
  173. package/assets/lib/vs/basic-languages/pla/pla.js +0 -10
  174. package/assets/lib/vs/basic-languages/postiats/postiats.js +0 -10
  175. package/assets/lib/vs/basic-languages/powerquery/powerquery.js +0 -10
  176. package/assets/lib/vs/basic-languages/powershell/powershell.js +0 -10
  177. package/assets/lib/vs/basic-languages/protobuf/protobuf.js +0 -11
  178. package/assets/lib/vs/basic-languages/pug/pug.js +0 -10
  179. package/assets/lib/vs/basic-languages/python/python.js +0 -10
  180. package/assets/lib/vs/basic-languages/qsharp/qsharp.js +0 -10
  181. package/assets/lib/vs/basic-languages/r/r.js +0 -10
  182. package/assets/lib/vs/basic-languages/razor/razor.js +0 -10
  183. package/assets/lib/vs/basic-languages/redis/redis.js +0 -10
  184. package/assets/lib/vs/basic-languages/redshift/redshift.js +0 -10
  185. package/assets/lib/vs/basic-languages/restructuredtext/restructuredtext.js +0 -10
  186. package/assets/lib/vs/basic-languages/ruby/ruby.js +0 -10
  187. package/assets/lib/vs/basic-languages/rust/rust.js +0 -10
  188. package/assets/lib/vs/basic-languages/sb/sb.js +0 -10
  189. package/assets/lib/vs/basic-languages/scala/scala.js +0 -10
  190. package/assets/lib/vs/basic-languages/scheme/scheme.js +0 -10
  191. package/assets/lib/vs/basic-languages/scss/scss.js +0 -12
  192. package/assets/lib/vs/basic-languages/shell/shell.js +0 -10
  193. package/assets/lib/vs/basic-languages/solidity/solidity.js +0 -10
  194. package/assets/lib/vs/basic-languages/sophia/sophia.js +0 -10
  195. package/assets/lib/vs/basic-languages/sparql/sparql.js +0 -10
  196. package/assets/lib/vs/basic-languages/sql/sql.js +0 -10
  197. package/assets/lib/vs/basic-languages/st/st.js +0 -10
  198. package/assets/lib/vs/basic-languages/swift/swift.js +0 -13
  199. package/assets/lib/vs/basic-languages/systemverilog/systemverilog.js +0 -10
  200. package/assets/lib/vs/basic-languages/tcl/tcl.js +0 -10
  201. package/assets/lib/vs/basic-languages/twig/twig.js +0 -10
  202. package/assets/lib/vs/basic-languages/typescript/typescript.js +0 -10
  203. package/assets/lib/vs/basic-languages/vb/vb.js +0 -10
  204. package/assets/lib/vs/basic-languages/wgsl/wgsl.js +0 -307
  205. package/assets/lib/vs/basic-languages/xml/xml.js +0 -10
  206. package/assets/lib/vs/basic-languages/yaml/yaml.js +0 -10
  207. package/assets/lib/vs/editor/editor.main.css +0 -6
  208. package/assets/lib/vs/editor/editor.main.js +0 -752
  209. package/assets/lib/vs/editor/editor.main.nls.de.js +0 -31
  210. package/assets/lib/vs/editor/editor.main.nls.es.js +0 -31
  211. package/assets/lib/vs/editor/editor.main.nls.fr.js +0 -29
  212. package/assets/lib/vs/editor/editor.main.nls.it.js +0 -29
  213. package/assets/lib/vs/editor/editor.main.nls.ja.js +0 -31
  214. package/assets/lib/vs/editor/editor.main.nls.js +0 -29
  215. package/assets/lib/vs/editor/editor.main.nls.ko.js +0 -29
  216. package/assets/lib/vs/editor/editor.main.nls.ru.js +0 -31
  217. package/assets/lib/vs/editor/editor.main.nls.zh-cn.js +0 -31
  218. package/assets/lib/vs/editor/editor.main.nls.zh-tw.js +0 -29
  219. package/assets/lib/vs/language/css/cssMode.js +0 -13
  220. package/assets/lib/vs/language/css/cssWorker.js +0 -81
  221. package/assets/lib/vs/language/html/htmlMode.js +0 -13
  222. package/assets/lib/vs/language/html/htmlWorker.js +0 -453
  223. package/assets/lib/vs/language/json/jsonMode.js +0 -15
  224. package/assets/lib/vs/language/json/jsonWorker.js +0 -36
  225. package/assets/lib/vs/language/typescript/tsMode.js +0 -20
  226. package/assets/lib/vs/language/typescript/tsWorker.js +0 -37016
  227. package/assets/lib/vs/loader.js +0 -11
  228. package/assets/mat-icons.ts +0 -5704
  229. package/assets/material/3d.svg +0 -1
  230. package/assets/material/abc.svg +0 -1
  231. package/assets/material/actionscript.svg +0 -1
  232. package/assets/material/ada.svg +0 -1
  233. package/assets/material/adonis.svg +0 -1
  234. package/assets/material/advpl_include.svg +0 -1
  235. package/assets/material/advpl_prw.svg +0 -1
  236. package/assets/material/advpl_ptm.svg +0 -1
  237. package/assets/material/advpl_tlpp.svg +0 -1
  238. package/assets/material/android.svg +0 -1
  239. package/assets/material/angular-component.svg +0 -1
  240. package/assets/material/angular-directive.svg +0 -1
  241. package/assets/material/angular-guard.svg +0 -1
  242. package/assets/material/angular-pipe.svg +0 -1
  243. package/assets/material/angular-resolver.svg +0 -1
  244. package/assets/material/angular-service.svg +0 -1
  245. package/assets/material/angular.svg +0 -1
  246. package/assets/material/antlr.svg +0 -1
  247. package/assets/material/apiblueprint.svg +0 -1
  248. package/assets/material/apollo.svg +0 -1
  249. package/assets/material/applescript.svg +0 -1
  250. package/assets/material/appveyor.svg +0 -1
  251. package/assets/material/architecture.svg +0 -1
  252. package/assets/material/arduino.svg +0 -1
  253. package/assets/material/asciidoc.svg +0 -1
  254. package/assets/material/assembly.svg +0 -1
  255. package/assets/material/astro.svg +0 -1
  256. package/assets/material/astyle.svg +0 -1
  257. package/assets/material/audio.svg +0 -1
  258. package/assets/material/aurelia.svg +0 -1
  259. package/assets/material/authors.svg +0 -1
  260. package/assets/material/auto.svg +0 -1
  261. package/assets/material/auto_light.svg +0 -1
  262. package/assets/material/autohotkey.svg +0 -1
  263. package/assets/material/autoit.svg +0 -1
  264. package/assets/material/azure-pipelines.svg +0 -1
  265. package/assets/material/azure.svg +0 -1
  266. package/assets/material/babel.svg +0 -1
  267. package/assets/material/ballerina.svg +0 -1
  268. package/assets/material/bazel.svg +0 -1
  269. package/assets/material/bicep.svg +0 -1
  270. package/assets/material/bitbucket.svg +0 -13
  271. package/assets/material/bithound.svg +0 -1
  272. package/assets/material/blink.svg +0 -1
  273. package/assets/material/blink_light.svg +0 -1
  274. package/assets/material/blitz.svg +0 -1
  275. package/assets/material/bower.svg +0 -1
  276. package/assets/material/brainfuck.svg +0 -1
  277. package/assets/material/browserlist.svg +0 -1
  278. package/assets/material/browserlist_light.svg +0 -1
  279. package/assets/material/buck.svg +0 -1
  280. package/assets/material/bucklescript.svg +0 -1
  281. package/assets/material/buildkite.svg +0 -1
  282. package/assets/material/bun.svg +0 -2
  283. package/assets/material/bun_light.svg +0 -2
  284. package/assets/material/c.svg +0 -4
  285. package/assets/material/cabal.svg +0 -1
  286. package/assets/material/caddy.svg +0 -1
  287. package/assets/material/cadence.svg +0 -1
  288. package/assets/material/cake.svg +0 -1
  289. package/assets/material/capacitor.svg +0 -1
  290. package/assets/material/certificate.svg +0 -1
  291. package/assets/material/changelog.svg +0 -1
  292. package/assets/material/chess.svg +0 -1
  293. package/assets/material/chess_light.svg +0 -1
  294. package/assets/material/circleci.svg +0 -1
  295. package/assets/material/circleci_light.svg +0 -1
  296. package/assets/material/clojure.svg +0 -1
  297. package/assets/material/cloudfoundry.svg +0 -1
  298. package/assets/material/cmake.svg +0 -1
  299. package/assets/material/coala.svg +0 -1
  300. package/assets/material/cobol.svg +0 -1
  301. package/assets/material/coconut.svg +0 -1
  302. package/assets/material/code-climate.svg +0 -1
  303. package/assets/material/code-climate_light.svg +0 -1
  304. package/assets/material/codecov.svg +0 -1
  305. package/assets/material/codeowners.svg +0 -1
  306. package/assets/material/coffee.svg +0 -1
  307. package/assets/material/coldfusion.svg +0 -1
  308. package/assets/material/command.svg +0 -1
  309. package/assets/material/commitlint.svg +0 -1
  310. package/assets/material/conduct.svg +0 -1
  311. package/assets/material/console.svg +0 -1
  312. package/assets/material/contributing.svg +0 -1
  313. package/assets/material/cpp.svg +0 -4
  314. package/assets/material/craco.svg +0 -45
  315. package/assets/material/credits.svg +0 -1
  316. package/assets/material/crystal.svg +0 -1
  317. package/assets/material/crystal_light.svg +0 -1
  318. package/assets/material/csharp.svg +0 -4
  319. package/assets/material/css-map.svg +0 -1
  320. package/assets/material/css.svg +0 -1
  321. package/assets/material/cucumber.svg +0 -1
  322. package/assets/material/cuda.svg +0 -1
  323. package/assets/material/cypress.svg +0 -1
  324. package/assets/material/d.svg +0 -1
  325. package/assets/material/dart.svg +0 -1
  326. package/assets/material/dart_generated.svg +0 -1
  327. package/assets/material/database.svg +0 -1
  328. package/assets/material/denizenscript.svg +0 -1
  329. package/assets/material/deno.svg +0 -1
  330. package/assets/material/deno_light.svg +0 -1
  331. package/assets/material/dependabot.svg +0 -1
  332. package/assets/material/dhall.svg +0 -1
  333. package/assets/material/diff.svg +0 -1
  334. package/assets/material/dinophp.svg +0 -1
  335. package/assets/material/disc.svg +0 -1
  336. package/assets/material/django.svg +0 -1
  337. package/assets/material/docker.svg +0 -1
  338. package/assets/material/document.svg +0 -1
  339. package/assets/material/dotjs.svg +0 -1
  340. package/assets/material/drawio.svg +0 -1
  341. package/assets/material/drone.svg +0 -1
  342. package/assets/material/drone_light.svg +0 -1
  343. package/assets/material/dune.svg +0 -1
  344. package/assets/material/edge.svg +0 -1
  345. package/assets/material/editorconfig.svg +0 -1
  346. package/assets/material/ejs.svg +0 -1
  347. package/assets/material/elixir.svg +0 -1
  348. package/assets/material/elm.svg +0 -1
  349. package/assets/material/email.svg +0 -1
  350. package/assets/material/ember.svg +0 -1
  351. package/assets/material/erlang.svg +0 -1
  352. package/assets/material/eslint.svg +0 -1
  353. package/assets/material/exe.svg +0 -1
  354. package/assets/material/fastlane.svg +0 -1
  355. package/assets/material/favicon.svg +0 -1
  356. package/assets/material/figma.svg +0 -1
  357. package/assets/material/file.svg +0 -1
  358. package/assets/material/firebase.svg +0 -1
  359. package/assets/material/flash.svg +0 -1
  360. package/assets/material/flow.svg +0 -1
  361. package/assets/material/folder-admin-open.svg +0 -1
  362. package/assets/material/folder-admin.svg +0 -1
  363. package/assets/material/folder-android-open.svg +0 -1
  364. package/assets/material/folder-android.svg +0 -1
  365. package/assets/material/folder-angular-open.svg +0 -1
  366. package/assets/material/folder-angular.svg +0 -1
  367. package/assets/material/folder-animation-open.svg +0 -1
  368. package/assets/material/folder-animation.svg +0 -1
  369. package/assets/material/folder-ansible-open.svg +0 -1
  370. package/assets/material/folder-ansible.svg +0 -1
  371. package/assets/material/folder-api-open.svg +0 -1
  372. package/assets/material/folder-api.svg +0 -1
  373. package/assets/material/folder-apollo-open.svg +0 -1
  374. package/assets/material/folder-apollo.svg +0 -1
  375. package/assets/material/folder-app-open.svg +0 -1
  376. package/assets/material/folder-app.svg +0 -1
  377. package/assets/material/folder-archive-open.svg +0 -1
  378. package/assets/material/folder-archive.svg +0 -1
  379. package/assets/material/folder-audio-open.svg +0 -1
  380. package/assets/material/folder-audio.svg +0 -1
  381. package/assets/material/folder-aurelia-open.svg +0 -1
  382. package/assets/material/folder-aurelia.svg +0 -1
  383. package/assets/material/folder-aws-open.svg +0 -1
  384. package/assets/material/folder-aws.svg +0 -1
  385. package/assets/material/folder-azure-pipelines-open.svg +0 -1
  386. package/assets/material/folder-azure-pipelines.svg +0 -1
  387. package/assets/material/folder-base-open.svg +0 -1
  388. package/assets/material/folder-base.svg +0 -1
  389. package/assets/material/folder-batch-open.svg +0 -1
  390. package/assets/material/folder-batch.svg +0 -1
  391. package/assets/material/folder-benchmark-open.svg +0 -1
  392. package/assets/material/folder-benchmark.svg +0 -1
  393. package/assets/material/folder-bower-open.svg +0 -1
  394. package/assets/material/folder-bower.svg +0 -1
  395. package/assets/material/folder-buildkite-open.svg +0 -1
  396. package/assets/material/folder-buildkite.svg +0 -1
  397. package/assets/material/folder-cart-open.svg +0 -1
  398. package/assets/material/folder-cart.svg +0 -1
  399. package/assets/material/folder-changesets-open.svg +0 -5
  400. package/assets/material/folder-changesets.svg +0 -2
  401. package/assets/material/folder-ci-open.svg +0 -1
  402. package/assets/material/folder-ci.svg +0 -1
  403. package/assets/material/folder-circleci-open.svg +0 -1
  404. package/assets/material/folder-circleci.svg +0 -1
  405. package/assets/material/folder-class-open.svg +0 -1
  406. package/assets/material/folder-class.svg +0 -1
  407. package/assets/material/folder-client-open.svg +0 -1
  408. package/assets/material/folder-client.svg +0 -1
  409. package/assets/material/folder-cluster-open.svg +0 -1
  410. package/assets/material/folder-cluster.svg +0 -1
  411. package/assets/material/folder-cobol-open.svg +0 -1
  412. package/assets/material/folder-cobol.svg +0 -1
  413. package/assets/material/folder-command-open.svg +0 -1
  414. package/assets/material/folder-command.svg +0 -1
  415. package/assets/material/folder-components-open.svg +0 -1
  416. package/assets/material/folder-components.svg +0 -1
  417. package/assets/material/folder-config-open.svg +0 -1
  418. package/assets/material/folder-config.svg +0 -1
  419. package/assets/material/folder-connection-open.svg +0 -1
  420. package/assets/material/folder-connection.svg +0 -1
  421. package/assets/material/folder-constant-open.svg +0 -1
  422. package/assets/material/folder-constant.svg +0 -1
  423. package/assets/material/folder-container-open.svg +0 -1
  424. package/assets/material/folder-container.svg +0 -1
  425. package/assets/material/folder-content-open.svg +0 -1
  426. package/assets/material/folder-content.svg +0 -1
  427. package/assets/material/folder-context-open.svg +0 -1
  428. package/assets/material/folder-context.svg +0 -1
  429. package/assets/material/folder-contract-open.svg +0 -1
  430. package/assets/material/folder-contract.svg +0 -1
  431. package/assets/material/folder-controller-open.svg +0 -1
  432. package/assets/material/folder-controller.svg +0 -1
  433. package/assets/material/folder-core-open.svg +0 -1
  434. package/assets/material/folder-core.svg +0 -1
  435. package/assets/material/folder-coverage-open.svg +0 -1
  436. package/assets/material/folder-coverage.svg +0 -1
  437. package/assets/material/folder-css-open.svg +0 -1
  438. package/assets/material/folder-css.svg +0 -1
  439. package/assets/material/folder-custom-open.svg +0 -1
  440. package/assets/material/folder-custom.svg +0 -1
  441. package/assets/material/folder-cypress-open.svg +0 -1
  442. package/assets/material/folder-cypress.svg +0 -1
  443. package/assets/material/folder-database-open.svg +0 -1
  444. package/assets/material/folder-database.svg +0 -1
  445. package/assets/material/folder-debug-open.svg +0 -1
  446. package/assets/material/folder-debug.svg +0 -1
  447. package/assets/material/folder-decorators-open.svg +0 -2
  448. package/assets/material/folder-decorators.svg +0 -5
  449. package/assets/material/folder-delta-open.svg +0 -1
  450. package/assets/material/folder-delta.svg +0 -1
  451. package/assets/material/folder-dist-open.svg +0 -1
  452. package/assets/material/folder-dist.svg +0 -1
  453. package/assets/material/folder-docker-open.svg +0 -1
  454. package/assets/material/folder-docker.svg +0 -1
  455. package/assets/material/folder-docs-open.svg +0 -1
  456. package/assets/material/folder-docs.svg +0 -1
  457. package/assets/material/folder-download-open.svg +0 -1
  458. package/assets/material/folder-download.svg +0 -1
  459. package/assets/material/folder-dump-open.svg +0 -1
  460. package/assets/material/folder-dump.svg +0 -1
  461. package/assets/material/folder-environment-open.svg +0 -1
  462. package/assets/material/folder-environment.svg +0 -1
  463. package/assets/material/folder-error-open.svg +0 -1
  464. package/assets/material/folder-error.svg +0 -1
  465. package/assets/material/folder-event-open.svg +0 -1
  466. package/assets/material/folder-event.svg +0 -1
  467. package/assets/material/folder-examples-open.svg +0 -1
  468. package/assets/material/folder-examples.svg +0 -1
  469. package/assets/material/folder-expo-open.svg +0 -1
  470. package/assets/material/folder-expo.svg +0 -1
  471. package/assets/material/folder-export-open.svg +0 -1
  472. package/assets/material/folder-export.svg +0 -1
  473. package/assets/material/folder-fastlane-open.svg +0 -1
  474. package/assets/material/folder-fastlane.svg +0 -1
  475. package/assets/material/folder-firebase-open.svg +0 -1
  476. package/assets/material/folder-firebase.svg +0 -1
  477. package/assets/material/folder-flow-open.svg +0 -1
  478. package/assets/material/folder-flow.svg +0 -1
  479. package/assets/material/folder-font-open.svg +0 -1
  480. package/assets/material/folder-font.svg +0 -1
  481. package/assets/material/folder-functions-open.svg +0 -1
  482. package/assets/material/folder-functions.svg +0 -1
  483. package/assets/material/folder-gamemaker-open.svg +0 -2
  484. package/assets/material/folder-gamemaker.svg +0 -2
  485. package/assets/material/folder-generator-open.svg +0 -1
  486. package/assets/material/folder-generator.svg +0 -1
  487. package/assets/material/folder-git-open.svg +0 -1
  488. package/assets/material/folder-git.svg +0 -1
  489. package/assets/material/folder-github-open.svg +0 -1
  490. package/assets/material/folder-github.svg +0 -1
  491. package/assets/material/folder-gitlab-open.svg +0 -1
  492. package/assets/material/folder-gitlab.svg +0 -1
  493. package/assets/material/folder-global-open.svg +0 -1
  494. package/assets/material/folder-global.svg +0 -1
  495. package/assets/material/folder-godot-open.svg +0 -2
  496. package/assets/material/folder-godot.svg +0 -8
  497. package/assets/material/folder-gradle-open.svg +0 -1
  498. package/assets/material/folder-gradle.svg +0 -1
  499. package/assets/material/folder-graphql-open.svg +0 -1
  500. package/assets/material/folder-graphql.svg +0 -1
  501. package/assets/material/folder-guard-open.svg +0 -1
  502. package/assets/material/folder-guard.svg +0 -1
  503. package/assets/material/folder-gulp-open.svg +0 -1
  504. package/assets/material/folder-gulp.svg +0 -1
  505. package/assets/material/folder-helper-open.svg +0 -1
  506. package/assets/material/folder-helper.svg +0 -1
  507. package/assets/material/folder-home-open.svg +0 -1
  508. package/assets/material/folder-home.svg +0 -1
  509. package/assets/material/folder-hook-open.svg +0 -1
  510. package/assets/material/folder-hook.svg +0 -1
  511. package/assets/material/folder-husky-open.svg +0 -1
  512. package/assets/material/folder-husky.svg +0 -1
  513. package/assets/material/folder-i18n-open.svg +0 -1
  514. package/assets/material/folder-i18n.svg +0 -1
  515. package/assets/material/folder-images-open.svg +0 -1
  516. package/assets/material/folder-images.svg +0 -1
  517. package/assets/material/folder-import-open.svg +0 -1
  518. package/assets/material/folder-import.svg +0 -1
  519. package/assets/material/folder-include-open.svg +0 -1
  520. package/assets/material/folder-include.svg +0 -1
  521. package/assets/material/folder-intellij-open.svg +0 -1
  522. package/assets/material/folder-intellij-open_light.svg +0 -1
  523. package/assets/material/folder-intellij.svg +0 -1
  524. package/assets/material/folder-intellij_light.svg +0 -1
  525. package/assets/material/folder-interface-open.svg +0 -1
  526. package/assets/material/folder-interface.svg +0 -1
  527. package/assets/material/folder-ios-open.svg +0 -1
  528. package/assets/material/folder-ios.svg +0 -1
  529. package/assets/material/folder-java-open.svg +0 -1
  530. package/assets/material/folder-java.svg +0 -1
  531. package/assets/material/folder-javascript-open.svg +0 -1
  532. package/assets/material/folder-javascript.svg +0 -1
  533. package/assets/material/folder-jinja-open.svg +0 -1
  534. package/assets/material/folder-jinja-open_light.svg +0 -1
  535. package/assets/material/folder-jinja.svg +0 -1
  536. package/assets/material/folder-jinja_light.svg +0 -1
  537. package/assets/material/folder-job-open.svg +0 -1
  538. package/assets/material/folder-job.svg +0 -1
  539. package/assets/material/folder-json-open.svg +0 -1
  540. package/assets/material/folder-json.svg +0 -1
  541. package/assets/material/folder-keys-open.svg +0 -1
  542. package/assets/material/folder-keys.svg +0 -1
  543. package/assets/material/folder-kubernetes-open.svg +0 -1
  544. package/assets/material/folder-kubernetes.svg +0 -1
  545. package/assets/material/folder-layout-open.svg +0 -1
  546. package/assets/material/folder-layout.svg +0 -1
  547. package/assets/material/folder-less-open.svg +0 -1
  548. package/assets/material/folder-less.svg +0 -1
  549. package/assets/material/folder-lib-open.svg +0 -1
  550. package/assets/material/folder-lib.svg +0 -1
  551. package/assets/material/folder-log-open.svg +0 -1
  552. package/assets/material/folder-log.svg +0 -1
  553. package/assets/material/folder-lua-open.svg +0 -1
  554. package/assets/material/folder-lua.svg +0 -1
  555. package/assets/material/folder-mail-open.svg +0 -1
  556. package/assets/material/folder-mail.svg +0 -1
  557. package/assets/material/folder-mappings-open.svg +0 -1
  558. package/assets/material/folder-mappings.svg +0 -1
  559. package/assets/material/folder-markdown-open.svg +0 -1
  560. package/assets/material/folder-markdown.svg +0 -1
  561. package/assets/material/folder-mercurial-open.svg +0 -5
  562. package/assets/material/folder-mercurial.svg +0 -2
  563. package/assets/material/folder-messages-open.svg +0 -1
  564. package/assets/material/folder-messages.svg +0 -1
  565. package/assets/material/folder-meta-open.svg +0 -1
  566. package/assets/material/folder-meta.svg +0 -1
  567. package/assets/material/folder-middleware-open.svg +0 -1
  568. package/assets/material/folder-middleware.svg +0 -1
  569. package/assets/material/folder-mjml-open.svg +0 -1
  570. package/assets/material/folder-mjml.svg +0 -1
  571. package/assets/material/folder-mobile-open.svg +0 -1
  572. package/assets/material/folder-mobile.svg +0 -1
  573. package/assets/material/folder-mock-open.svg +0 -1
  574. package/assets/material/folder-mock.svg +0 -1
  575. package/assets/material/folder-netlify-open.svg +0 -5
  576. package/assets/material/folder-netlify.svg +0 -2
  577. package/assets/material/folder-next-open.svg +0 -1
  578. package/assets/material/folder-next.svg +0 -1
  579. package/assets/material/folder-ngrx-actions-open.svg +0 -1
  580. package/assets/material/folder-ngrx-actions.svg +0 -1
  581. package/assets/material/folder-ngrx-effects-open.svg +0 -1
  582. package/assets/material/folder-ngrx-effects.svg +0 -1
  583. package/assets/material/folder-ngrx-entities-open.svg +0 -1
  584. package/assets/material/folder-ngrx-entities.svg +0 -1
  585. package/assets/material/folder-ngrx-reducer-open.svg +0 -1
  586. package/assets/material/folder-ngrx-reducer.svg +0 -1
  587. package/assets/material/folder-ngrx-selectors-open.svg +0 -1
  588. package/assets/material/folder-ngrx-selectors.svg +0 -1
  589. package/assets/material/folder-ngrx-state-open.svg +0 -1
  590. package/assets/material/folder-ngrx-state.svg +0 -1
  591. package/assets/material/folder-ngrx-store-open.svg +0 -1
  592. package/assets/material/folder-ngrx-store.svg +0 -1
  593. package/assets/material/folder-node-open.svg +0 -1
  594. package/assets/material/folder-node.svg +0 -1
  595. package/assets/material/folder-nuxt-open.svg +0 -1
  596. package/assets/material/folder-nuxt.svg +0 -1
  597. package/assets/material/folder-open.svg +0 -1
  598. package/assets/material/folder-other-open.svg +0 -1
  599. package/assets/material/folder-other.svg +0 -1
  600. package/assets/material/folder-packages-open.svg +0 -1
  601. package/assets/material/folder-packages.svg +0 -1
  602. package/assets/material/folder-pdf-open.svg +0 -1
  603. package/assets/material/folder-pdf.svg +0 -1
  604. package/assets/material/folder-php-open.svg +0 -1
  605. package/assets/material/folder-php.svg +0 -1
  606. package/assets/material/folder-phpmailer-open.svg +0 -1
  607. package/assets/material/folder-phpmailer.svg +0 -1
  608. package/assets/material/folder-pipe-open.svg +0 -1
  609. package/assets/material/folder-pipe.svg +0 -1
  610. package/assets/material/folder-plastic-open.svg +0 -8
  611. package/assets/material/folder-plastic.svg +0 -2
  612. package/assets/material/folder-plugin-open.svg +0 -1
  613. package/assets/material/folder-plugin.svg +0 -1
  614. package/assets/material/folder-prisma-open.svg +0 -1
  615. package/assets/material/folder-prisma.svg +0 -1
  616. package/assets/material/folder-private-open.svg +0 -1
  617. package/assets/material/folder-private.svg +0 -1
  618. package/assets/material/folder-project-open.svg +0 -1
  619. package/assets/material/folder-project.svg +0 -1
  620. package/assets/material/folder-proto-open.svg +0 -1
  621. package/assets/material/folder-proto.svg +0 -1
  622. package/assets/material/folder-public-open.svg +0 -1
  623. package/assets/material/folder-public.svg +0 -1
  624. package/assets/material/folder-python-open.svg +0 -1
  625. package/assets/material/folder-python.svg +0 -1
  626. package/assets/material/folder-quasar-open.svg +0 -1
  627. package/assets/material/folder-quasar.svg +0 -1
  628. package/assets/material/folder-queue-open.svg +0 -1
  629. package/assets/material/folder-queue.svg +0 -1
  630. package/assets/material/folder-react-components-open.svg +0 -1
  631. package/assets/material/folder-react-components.svg +0 -1
  632. package/assets/material/folder-redux-actions-open.svg +0 -1
  633. package/assets/material/folder-redux-actions.svg +0 -1
  634. package/assets/material/folder-redux-reducer-open.svg +0 -1
  635. package/assets/material/folder-redux-reducer.svg +0 -1
  636. package/assets/material/folder-redux-selector-open.svg +0 -1
  637. package/assets/material/folder-redux-selector.svg +0 -1
  638. package/assets/material/folder-redux-store-open.svg +0 -1
  639. package/assets/material/folder-redux-store.svg +0 -1
  640. package/assets/material/folder-resolver-open.svg +0 -1
  641. package/assets/material/folder-resolver.svg +0 -1
  642. package/assets/material/folder-resource-open.svg +0 -1
  643. package/assets/material/folder-resource.svg +0 -1
  644. package/assets/material/folder-review-open.svg +0 -1
  645. package/assets/material/folder-review.svg +0 -1
  646. package/assets/material/folder-root-open.svg +0 -1
  647. package/assets/material/folder-root.svg +0 -1
  648. package/assets/material/folder-routes-open.svg +0 -1
  649. package/assets/material/folder-routes.svg +0 -1
  650. package/assets/material/folder-rules-open.svg +0 -1
  651. package/assets/material/folder-rules.svg +0 -1
  652. package/assets/material/folder-sass-open.svg +0 -1
  653. package/assets/material/folder-sass.svg +0 -1
  654. package/assets/material/folder-scala-open.svg +0 -1
  655. package/assets/material/folder-scala.svg +0 -1
  656. package/assets/material/folder-scripts-open.svg +0 -1
  657. package/assets/material/folder-scripts.svg +0 -1
  658. package/assets/material/folder-secure-open.svg +0 -1
  659. package/assets/material/folder-secure.svg +0 -1
  660. package/assets/material/folder-server-open.svg +0 -1
  661. package/assets/material/folder-server.svg +0 -1
  662. package/assets/material/folder-serverless-open.svg +0 -1
  663. package/assets/material/folder-serverless.svg +0 -1
  664. package/assets/material/folder-shader-open.svg +0 -1
  665. package/assets/material/folder-shader.svg +0 -1
  666. package/assets/material/folder-shared-open.svg +0 -1
  667. package/assets/material/folder-shared.svg +0 -1
  668. package/assets/material/folder-src-open.svg +0 -1
  669. package/assets/material/folder-src.svg +0 -1
  670. package/assets/material/folder-stack-open.svg +0 -1
  671. package/assets/material/folder-stack.svg +0 -1
  672. package/assets/material/folder-stencil-open.svg +0 -1
  673. package/assets/material/folder-stencil.svg +0 -1
  674. package/assets/material/folder-storybook-open.svg +0 -1
  675. package/assets/material/folder-storybook.svg +0 -1
  676. package/assets/material/folder-stylus-open.svg +0 -1
  677. package/assets/material/folder-stylus.svg +0 -1
  678. package/assets/material/folder-sublime-open.svg +0 -1
  679. package/assets/material/folder-sublime.svg +0 -1
  680. package/assets/material/folder-supabase-open.svg +0 -5
  681. package/assets/material/folder-supabase.svg +0 -2
  682. package/assets/material/folder-svelte-open.svg +0 -1
  683. package/assets/material/folder-svelte.svg +0 -1
  684. package/assets/material/folder-svg-open.svg +0 -1
  685. package/assets/material/folder-svg.svg +0 -1
  686. package/assets/material/folder-syntax-open.svg +0 -1
  687. package/assets/material/folder-syntax.svg +0 -1
  688. package/assets/material/folder-target-open.svg +0 -1
  689. package/assets/material/folder-target.svg +0 -1
  690. package/assets/material/folder-tasks-open.svg +0 -1
  691. package/assets/material/folder-tasks.svg +0 -1
  692. package/assets/material/folder-temp-open.svg +0 -1
  693. package/assets/material/folder-temp.svg +0 -1
  694. package/assets/material/folder-template-open.svg +0 -1
  695. package/assets/material/folder-template.svg +0 -1
  696. package/assets/material/folder-terraform-open.svg +0 -1
  697. package/assets/material/folder-terraform.svg +0 -1
  698. package/assets/material/folder-test-open.svg +0 -1
  699. package/assets/material/folder-test.svg +0 -1
  700. package/assets/material/folder-theme-open.svg +0 -1
  701. package/assets/material/folder-theme.svg +0 -1
  702. package/assets/material/folder-tools-open.svg +0 -1
  703. package/assets/material/folder-tools.svg +0 -1
  704. package/assets/material/folder-typescript-open.svg +0 -1
  705. package/assets/material/folder-typescript.svg +0 -1
  706. package/assets/material/folder-unity-open.svg +0 -1
  707. package/assets/material/folder-unity.svg +0 -1
  708. package/assets/material/folder-update-open.svg +0 -1
  709. package/assets/material/folder-update.svg +0 -1
  710. package/assets/material/folder-upload-open.svg +0 -1
  711. package/assets/material/folder-upload.svg +0 -1
  712. package/assets/material/folder-utils-open.svg +0 -1
  713. package/assets/material/folder-utils.svg +0 -1
  714. package/assets/material/folder-vercel-open.svg +0 -1
  715. package/assets/material/folder-vercel.svg +0 -1
  716. package/assets/material/folder-verdaccio-open.svg +0 -1
  717. package/assets/material/folder-verdaccio.svg +0 -1
  718. package/assets/material/folder-video-open.svg +0 -1
  719. package/assets/material/folder-video.svg +0 -1
  720. package/assets/material/folder-views-open.svg +0 -1
  721. package/assets/material/folder-views.svg +0 -1
  722. package/assets/material/folder-vm-open.svg +0 -1
  723. package/assets/material/folder-vm.svg +0 -1
  724. package/assets/material/folder-vscode-open.svg +0 -1
  725. package/assets/material/folder-vscode.svg +0 -1
  726. package/assets/material/folder-vue-directives-open.svg +0 -1
  727. package/assets/material/folder-vue-directives.svg +0 -1
  728. package/assets/material/folder-vue-open.svg +0 -1
  729. package/assets/material/folder-vue.svg +0 -1
  730. package/assets/material/folder-vuepress-open.svg +0 -1
  731. package/assets/material/folder-vuepress.svg +0 -1
  732. package/assets/material/folder-vuex-store-open.svg +0 -1
  733. package/assets/material/folder-vuex-store.svg +0 -1
  734. package/assets/material/folder-wakatime-open.svg +0 -1
  735. package/assets/material/folder-wakatime.svg +0 -1
  736. package/assets/material/folder-webpack-open.svg +0 -1
  737. package/assets/material/folder-webpack.svg +0 -1
  738. package/assets/material/folder-wordpress-open.svg +0 -1
  739. package/assets/material/folder-wordpress.svg +0 -1
  740. package/assets/material/folder-yarn-open.svg +0 -1
  741. package/assets/material/folder-yarn.svg +0 -1
  742. package/assets/material/folder.svg +0 -1
  743. package/assets/material/font.svg +0 -1
  744. package/assets/material/forth.svg +0 -1
  745. package/assets/material/fortran.svg +0 -1
  746. package/assets/material/foxpro.svg +0 -1
  747. package/assets/material/fsharp.svg +0 -1
  748. package/assets/material/fusebox.svg +0 -1
  749. package/assets/material/gamemaker.svg +0 -4
  750. package/assets/material/gatsby.svg +0 -1
  751. package/assets/material/gcp.svg +0 -1
  752. package/assets/material/gemfile.svg +0 -1
  753. package/assets/material/gemini.svg +0 -1
  754. package/assets/material/git.svg +0 -1
  755. package/assets/material/gitlab.svg +0 -1
  756. package/assets/material/gitpod.svg +0 -1
  757. package/assets/material/gleam.svg +0 -1
  758. package/assets/material/go-mod.svg +0 -1
  759. package/assets/material/go.svg +0 -1
  760. package/assets/material/go_gopher.svg +0 -1
  761. package/assets/material/godot-assets.svg +0 -7
  762. package/assets/material/godot.svg +0 -7
  763. package/assets/material/gradle.svg +0 -1
  764. package/assets/material/grain.svg +0 -1
  765. package/assets/material/graphcool.svg +0 -1
  766. package/assets/material/graphql.svg +0 -1
  767. package/assets/material/gridsome.svg +0 -1
  768. package/assets/material/groovy.svg +0 -1
  769. package/assets/material/grunt.svg +0 -1
  770. package/assets/material/gulp.svg +0 -1
  771. package/assets/material/h.svg +0 -1
  772. package/assets/material/hack.svg +0 -1
  773. package/assets/material/haml.svg +0 -1
  774. package/assets/material/handlebars.svg +0 -1
  775. package/assets/material/hardhat.svg +0 -1
  776. package/assets/material/haskell.svg +0 -1
  777. package/assets/material/haxe.svg +0 -1
  778. package/assets/material/hcl.svg +0 -1
  779. package/assets/material/hcl_light.svg +0 -1
  780. package/assets/material/helm.svg +0 -1
  781. package/assets/material/heroku.svg +0 -1
  782. package/assets/material/hex.svg +0 -1
  783. package/assets/material/horusec.svg +0 -1
  784. package/assets/material/hpp.svg +0 -1
  785. package/assets/material/html.svg +0 -1
  786. package/assets/material/http.svg +0 -1
  787. package/assets/material/husky.svg +0 -1
  788. package/assets/material/i18n.svg +0 -1
  789. package/assets/material/idris.svg +0 -1
  790. package/assets/material/ifanr-cloud.svg +0 -10
  791. package/assets/material/image.svg +0 -1
  792. package/assets/material/imba.svg +0 -1
  793. package/assets/material/ionic.svg +0 -1
  794. package/assets/material/istanbul.svg +0 -1
  795. package/assets/material/jar.svg +0 -1
  796. package/assets/material/java.svg +0 -1
  797. package/assets/material/javaclass.svg +0 -1
  798. package/assets/material/javascript-map.svg +0 -1
  799. package/assets/material/javascript.svg +0 -1
  800. package/assets/material/jenkins.svg +0 -1
  801. package/assets/material/jest.svg +0 -1
  802. package/assets/material/jinja.svg +0 -1
  803. package/assets/material/jinja_light.svg +0 -1
  804. package/assets/material/jsconfig.svg +0 -1
  805. package/assets/material/json.svg +0 -1
  806. package/assets/material/julia.svg +0 -1
  807. package/assets/material/jupyter.svg +0 -1
  808. package/assets/material/karma.svg +0 -1
  809. package/assets/material/key.svg +0 -1
  810. package/assets/material/kivy.svg +0 -1
  811. package/assets/material/kl.svg +0 -1
  812. package/assets/material/kotlin.svg +0 -1
  813. package/assets/material/kusto.svg +0 -1
  814. package/assets/material/laravel.svg +0 -1
  815. package/assets/material/lerna.svg +0 -1
  816. package/assets/material/less.svg +0 -1
  817. package/assets/material/lib.svg +0 -1
  818. package/assets/material/lighthouse.svg +0 -1
  819. package/assets/material/lilypond.svg +0 -1
  820. package/assets/material/liquid.svg +0 -1
  821. package/assets/material/lisp.svg +0 -1
  822. package/assets/material/livescript.svg +0 -1
  823. package/assets/material/lock.svg +0 -1
  824. package/assets/material/log.svg +0 -1
  825. package/assets/material/lolcode.svg +0 -1
  826. package/assets/material/lua.svg +0 -1
  827. package/assets/material/makefile.svg +0 -1
  828. package/assets/material/markdown.svg +0 -1
  829. package/assets/material/markojs.svg +0 -1
  830. package/assets/material/mathematica.svg +0 -1
  831. package/assets/material/matlab.svg +0 -1
  832. package/assets/material/maven.svg +0 -1
  833. package/assets/material/mdsvex.svg +0 -1
  834. package/assets/material/mdx.svg +0 -1
  835. package/assets/material/mercurial.svg +0 -6
  836. package/assets/material/merlin.svg +0 -1
  837. package/assets/material/mermaid.svg +0 -4
  838. package/assets/material/meson.svg +0 -1
  839. package/assets/material/minecraft.svg +0 -1
  840. package/assets/material/mint.svg +0 -1
  841. package/assets/material/mjml.svg +0 -1
  842. package/assets/material/mocha.svg +0 -1
  843. package/assets/material/modernizr.svg +0 -1
  844. package/assets/material/moonscript.svg +0 -1
  845. package/assets/material/mxml.svg +0 -1
  846. package/assets/material/nano-staged.svg +0 -1
  847. package/assets/material/nano-staged_light.svg +0 -1
  848. package/assets/material/ndst.svg +0 -1
  849. package/assets/material/nest-controller.svg +0 -1
  850. package/assets/material/nest-decorator.svg +0 -1
  851. package/assets/material/nest-filter.svg +0 -1
  852. package/assets/material/nest-gateway.svg +0 -1
  853. package/assets/material/nest-guard.svg +0 -1
  854. package/assets/material/nest-middleware.svg +0 -1
  855. package/assets/material/nest-module.svg +0 -1
  856. package/assets/material/nest-pipe.svg +0 -1
  857. package/assets/material/nest-resolver.svg +0 -1
  858. package/assets/material/nest-service.svg +0 -1
  859. package/assets/material/nest.svg +0 -1
  860. package/assets/material/netlify.svg +0 -7
  861. package/assets/material/netlify_light.svg +0 -7
  862. package/assets/material/next.svg +0 -1
  863. package/assets/material/next_light.svg +0 -1
  864. package/assets/material/nginx.svg +0 -1
  865. package/assets/material/ngrx-actions.svg +0 -1
  866. package/assets/material/ngrx-effects.svg +0 -1
  867. package/assets/material/ngrx-entity.svg +0 -1
  868. package/assets/material/ngrx-reducer.svg +0 -1
  869. package/assets/material/ngrx-selectors.svg +0 -1
  870. package/assets/material/ngrx-state.svg +0 -1
  871. package/assets/material/nim.svg +0 -1
  872. package/assets/material/nix.svg +0 -1
  873. package/assets/material/nodejs.svg +0 -1
  874. package/assets/material/nodejs_alt.svg +0 -1
  875. package/assets/material/nodemon.svg +0 -1
  876. package/assets/material/npm.svg +0 -1
  877. package/assets/material/nrwl.svg +0 -1
  878. package/assets/material/nuget.svg +0 -1
  879. package/assets/material/nunjucks.svg +0 -1
  880. package/assets/material/nuxt.svg +0 -1
  881. package/assets/material/objective-c.svg +0 -4
  882. package/assets/material/objective-cpp.svg +0 -1
  883. package/assets/material/ocaml.svg +0 -1
  884. package/assets/material/odin.svg +0 -1
  885. package/assets/material/opa.svg +0 -1
  886. package/assets/material/opam.svg +0 -1
  887. package/assets/material/otne.svg +0 -1
  888. package/assets/material/parcel.svg +0 -1
  889. package/assets/material/pascal.svg +0 -6
  890. package/assets/material/pawn.svg +0 -1
  891. package/assets/material/pdf.svg +0 -1
  892. package/assets/material/percy.svg +0 -1
  893. package/assets/material/perl.svg +0 -1
  894. package/assets/material/php-cs-fixer.svg +0 -1
  895. package/assets/material/php.svg +0 -1
  896. package/assets/material/php_elephant.svg +0 -1
  897. package/assets/material/php_elephant_pink.svg +0 -1
  898. package/assets/material/phpunit.svg +0 -1
  899. package/assets/material/pinejs.svg +0 -1
  900. package/assets/material/pipeline.svg +0 -1
  901. package/assets/material/plastic.svg +0 -7
  902. package/assets/material/playwright.svg +0 -1
  903. package/assets/material/plop.svg +0 -1
  904. package/assets/material/pnpm.svg +0 -1
  905. package/assets/material/pnpm_light.svg +0 -1
  906. package/assets/material/poetry.svg +0 -1
  907. package/assets/material/postcss.svg +0 -1
  908. package/assets/material/posthtml.svg +0 -1
  909. package/assets/material/powerpoint.svg +0 -1
  910. package/assets/material/powershell.svg +0 -1
  911. package/assets/material/prettier.svg +0 -1
  912. package/assets/material/prisma.svg +0 -1
  913. package/assets/material/processing.svg +0 -1
  914. package/assets/material/prolog.svg +0 -1
  915. package/assets/material/proto.svg +0 -1
  916. package/assets/material/protractor.svg +0 -1
  917. package/assets/material/pug.svg +0 -1
  918. package/assets/material/puppet.svg +0 -1
  919. package/assets/material/purescript.svg +0 -1
  920. package/assets/material/python-misc.svg +0 -1
  921. package/assets/material/python.svg +0 -1
  922. package/assets/material/qsharp.svg +0 -1
  923. package/assets/material/quasar.svg +0 -1
  924. package/assets/material/qwik.svg +0 -2
  925. package/assets/material/r.svg +0 -1
  926. package/assets/material/racket.svg +0 -1
  927. package/assets/material/raml.svg +0 -1
  928. package/assets/material/razor.svg +0 -1
  929. package/assets/material/rc.svg +0 -2
  930. package/assets/material/react.svg +0 -1
  931. package/assets/material/react_ts.svg +0 -1
  932. package/assets/material/readme.svg +0 -1
  933. package/assets/material/reason.svg +0 -1
  934. package/assets/material/red.svg +0 -1
  935. package/assets/material/redux-action.svg +0 -1
  936. package/assets/material/redux-reducer.svg +0 -1
  937. package/assets/material/redux-selector.svg +0 -1
  938. package/assets/material/redux-store.svg +0 -1
  939. package/assets/material/remix.svg +0 -1
  940. package/assets/material/remix_light.svg +0 -1
  941. package/assets/material/renovate.svg +0 -1
  942. package/assets/material/replit.svg +0 -1
  943. package/assets/material/rescript-interface.svg +0 -1
  944. package/assets/material/rescript.svg +0 -1
  945. package/assets/material/restql.svg +0 -1
  946. package/assets/material/riot.svg +0 -1
  947. package/assets/material/roadmap.svg +0 -1
  948. package/assets/material/robot.svg +0 -1
  949. package/assets/material/robots.svg +0 -1
  950. package/assets/material/rollup.svg +0 -1
  951. package/assets/material/rome.svg +0 -1
  952. package/assets/material/routing.svg +0 -1
  953. package/assets/material/rubocop.svg +0 -1
  954. package/assets/material/rubocop_light.svg +0 -1
  955. package/assets/material/ruby.svg +0 -1
  956. package/assets/material/rust.svg +0 -1
  957. package/assets/material/salesforce.svg +0 -1
  958. package/assets/material/san.svg +0 -1
  959. package/assets/material/sas.svg +0 -1
  960. package/assets/material/sass.svg +0 -1
  961. package/assets/material/sbt.svg +0 -1
  962. package/assets/material/scala.svg +0 -1
  963. package/assets/material/scheme.svg +0 -1
  964. package/assets/material/search.svg +0 -1
  965. package/assets/material/semantic-release.svg +0 -1
  966. package/assets/material/semantic-release_light.svg +0 -1
  967. package/assets/material/sentry.svg +0 -1
  968. package/assets/material/sequelize.svg +0 -1
  969. package/assets/material/serverless.svg +0 -1
  970. package/assets/material/settings.svg +0 -1
  971. package/assets/material/shader.svg +0 -1
  972. package/assets/material/shaderlab.svg +0 -1
  973. package/assets/material/silverstripe.svg +0 -1
  974. package/assets/material/siyuan.svg +0 -1
  975. package/assets/material/sketch.svg +0 -1
  976. package/assets/material/slim.svg +0 -1
  977. package/assets/material/slug.svg +0 -1
  978. package/assets/material/smarty.svg +0 -1
  979. package/assets/material/sml.svg +0 -1
  980. package/assets/material/snowpack.svg +0 -1
  981. package/assets/material/snowpack_light.svg +0 -1
  982. package/assets/material/snyk.svg +0 -1
  983. package/assets/material/solidity.svg +0 -1
  984. package/assets/material/sonarcloud.svg +0 -4
  985. package/assets/material/steadybit.svg +0 -1
  986. package/assets/material/stencil.svg +0 -1
  987. package/assets/material/stitches.svg +0 -1
  988. package/assets/material/stitches_light.svg +0 -1
  989. package/assets/material/storybook.svg +0 -1
  990. package/assets/material/stryker.svg +0 -1
  991. package/assets/material/stylable.svg +0 -10
  992. package/assets/material/stylelint.svg +0 -1
  993. package/assets/material/stylelint_light.svg +0 -1
  994. package/assets/material/stylus.svg +0 -1
  995. package/assets/material/sublime.svg +0 -1
  996. package/assets/material/supabase.svg +0 -4
  997. package/assets/material/svelte.svg +0 -1
  998. package/assets/material/svg.svg +0 -1
  999. package/assets/material/svgo.svg +0 -1
  1000. package/assets/material/svgr.svg +0 -1
  1001. package/assets/material/swc.svg +0 -1
  1002. package/assets/material/swift.svg +0 -1
  1003. package/assets/material/table.svg +0 -1
  1004. package/assets/material/tailwindcss.svg +0 -1
  1005. package/assets/material/tauri.svg +0 -1
  1006. package/assets/material/tcl.svg +0 -1
  1007. package/assets/material/teal.svg +0 -1
  1008. package/assets/material/template.svg +0 -1
  1009. package/assets/material/terraform.svg +0 -1
  1010. package/assets/material/test-js.svg +0 -1
  1011. package/assets/material/test-jsx.svg +0 -1
  1012. package/assets/material/test-ts.svg +0 -1
  1013. package/assets/material/tex.svg +0 -1
  1014. package/assets/material/textlint.svg +0 -1
  1015. package/assets/material/tilt.svg +0 -1
  1016. package/assets/material/tldraw.svg +0 -4
  1017. package/assets/material/tldraw_light.svg +0 -4
  1018. package/assets/material/tobi.svg +0 -1
  1019. package/assets/material/tobimake.svg +0 -1
  1020. package/assets/material/todo.svg +0 -1
  1021. package/assets/material/travis.svg +0 -1
  1022. package/assets/material/tree.svg +0 -1
  1023. package/assets/material/tsconfig.svg +0 -1
  1024. package/assets/material/tune.svg +0 -1
  1025. package/assets/material/turborepo.svg +0 -1
  1026. package/assets/material/turborepo_light.svg +0 -1
  1027. package/assets/material/twig.svg +0 -1
  1028. package/assets/material/twine.svg +0 -1
  1029. package/assets/material/typescript-def.svg +0 -1
  1030. package/assets/material/typescript.svg +0 -1
  1031. package/assets/material/typst.svg +0 -2
  1032. package/assets/material/uml.svg +0 -1
  1033. package/assets/material/uml_light.svg +0 -1
  1034. package/assets/material/url.svg +0 -1
  1035. package/assets/material/vagrant.svg +0 -1
  1036. package/assets/material/vala.svg +0 -1
  1037. package/assets/material/velocity.svg +0 -1
  1038. package/assets/material/vercel.svg +0 -1
  1039. package/assets/material/vercel_light.svg +0 -1
  1040. package/assets/material/verdaccio.svg +0 -1
  1041. package/assets/material/verilog.svg +0 -1
  1042. package/assets/material/vfl.svg +0 -1
  1043. package/assets/material/video.svg +0 -1
  1044. package/assets/material/vim.svg +0 -1
  1045. package/assets/material/virtual.svg +0 -1
  1046. package/assets/material/visualstudio.svg +0 -1
  1047. package/assets/material/vite.svg +0 -1
  1048. package/assets/material/vitest.svg +0 -6
  1049. package/assets/material/vlang.svg +0 -1
  1050. package/assets/material/vscode.svg +0 -1
  1051. package/assets/material/vue-config.svg +0 -1
  1052. package/assets/material/vue.svg +0 -1
  1053. package/assets/material/vuex-store.svg +0 -1
  1054. package/assets/material/wakatime.svg +0 -1
  1055. package/assets/material/wakatime_light.svg +0 -1
  1056. package/assets/material/wallaby.svg +0 -1
  1057. package/assets/material/watchman.svg +0 -1
  1058. package/assets/material/webassembly.svg +0 -1
  1059. package/assets/material/webhint.svg +0 -1
  1060. package/assets/material/webpack.svg +0 -1
  1061. package/assets/material/wepy.svg +0 -1
  1062. package/assets/material/windicss.svg +0 -1
  1063. package/assets/material/wolframlanguage.svg +0 -1
  1064. package/assets/material/word.svg +0 -1
  1065. package/assets/material/xaml.svg +0 -1
  1066. package/assets/material/xml.svg +0 -1
  1067. package/assets/material/yaml.svg +0 -1
  1068. package/assets/material/yang.svg +0 -1
  1069. package/assets/material/yarn.svg +0 -1
  1070. package/assets/material/zig.svg +0 -1
  1071. package/assets/material/zip.svg +0 -1
  1072. package/assets/pop/LICENSE +0 -2
  1073. package/assets/pop/binary.svg +0 -1
  1074. package/assets/pop/compressed.svg +0 -1
  1075. package/assets/pop/database.svg +0 -1
  1076. package/assets/pop/exts/7z.svg +0 -1
  1077. package/assets/pop/exts/apk.svg +0 -1
  1078. package/assets/pop/exts/arc.svg +0 -1
  1079. package/assets/pop/exts/bz.svg +0 -1
  1080. package/assets/pop/exts/deb.svg +0 -1
  1081. package/assets/pop/exts/gz.svg +0 -1
  1082. package/assets/pop/exts/pdf.svg +0 -1
  1083. package/assets/pop/exts/rar.svg +0 -1
  1084. package/assets/pop/exts/rpm.svg +0 -1
  1085. package/assets/pop/exts/tar.svg +0 -1
  1086. package/assets/pop/exts/xar.svg +0 -1
  1087. package/assets/pop/exts/xz.svg +0 -1
  1088. package/assets/pop/exts/zip.svg +0 -1
  1089. package/assets/pop/folder-open.svg +0 -1
  1090. package/assets/pop/folder.svg +0 -1
  1091. package/assets/pop/generic.svg +0 -1
  1092. package/assets/pop/presentation.svg +0 -1
  1093. package/assets/pop/richtext.svg +0 -1
  1094. package/assets/pop/spreadsheet.svg +0 -1
  1095. package/assets/pop/text.svg +0 -1
  1096. package/components/dynamic-html/dynamic-html.component.d.ts +0 -15
  1097. package/components/dynamic-html/dynamic-html.module.d.ts +0 -10
  1098. package/components/dynamic-html/dynamic-html.service.d.ts +0 -18
  1099. package/components/dynamic-html/types.d.ts +0 -12
  1100. package/components/tabulator/tabulator.component.d.ts +0 -30
  1101. package/components/vscode/vscode.component.d.ts +0 -52
  1102. package/esm2022/assets/mat-icons.mjs +0 -5705
  1103. package/esm2022/components/command-palette/command-palette.component.mjs +0 -257
  1104. package/esm2022/components/dynamic-html/dynamic-html.component.mjs +0 -43
  1105. package/esm2022/components/dynamic-html/dynamic-html.module.mjs +0 -27
  1106. package/esm2022/components/dynamic-html/dynamic-html.service.mjs +0 -66
  1107. package/esm2022/components/dynamic-html/types.mjs +0 -7
  1108. package/esm2022/components/filemanager/file-grid/file-grid.component.mjs +0 -674
  1109. package/esm2022/components/filemanager/helpers.mjs +0 -26
  1110. package/esm2022/components/filemanager/icon-resolver.mjs +0 -155
  1111. package/esm2022/components/filemanager/textextensions.mjs +0 -294
  1112. package/esm2022/components/filemanager/toolbar/toolbar.component.mjs +0 -165
  1113. package/esm2022/components/lazy-loader/lazy-loader.component.mjs +0 -383
  1114. package/esm2022/components/lazy-loader/lazy-loader.module.mjs +0 -33
  1115. package/esm2022/components/lazy-loader/lazy-loader.service.mjs +0 -217
  1116. package/esm2022/components/lazy-loader/types.mjs +0 -26
  1117. package/esm2022/components/menu/menu.component.mjs +0 -433
  1118. package/esm2022/components/parallax-card/parallax-card.component.mjs +0 -138
  1119. package/esm2022/components/tabulator/tabulator.component.mjs +0 -93
  1120. package/esm2022/components/tooltip/tooltip.component.mjs +0 -205
  1121. package/esm2022/components/types.mjs +0 -3
  1122. package/esm2022/components/vscode/ts-type-resolver/dependency-parser.mjs +0 -91
  1123. package/esm2022/components/vscode/ts-type-resolver/dummy-source-cache.mjs +0 -15
  1124. package/esm2022/components/vscode/ts-type-resolver/import-resolver.mjs +0 -311
  1125. package/esm2022/components/vscode/ts-type-resolver/main.mjs +0 -112
  1126. package/esm2022/components/vscode/ts-type-resolver/recursion-depth.mjs +0 -21
  1127. package/esm2022/components/vscode/ts-type-resolver/types.mjs +0 -14
  1128. package/esm2022/components/vscode/ts-type-resolver/unpkg-source-resolver.mjs +0 -21
  1129. package/esm2022/components/vscode/ts-type-resolver/update-emitter.mjs +0 -37
  1130. package/esm2022/components/vscode/vscode.component.mjs +0 -232
  1131. package/esm2022/directives/image-cache.directive.mjs +0 -140
  1132. package/esm2022/directives/menu.directive.mjs +0 -159
  1133. package/esm2022/directives/tooltip.directive.mjs +0 -154
  1134. package/esm2022/directives/utils.mjs +0 -120
  1135. package/esm2022/pipes/html-bypass.pipe.mjs +0 -27
  1136. package/esm2022/pipes/resource-bypass.pipe.mjs +0 -27
  1137. package/esm2022/pipes/script-bypass.pipe.mjs +0 -27
  1138. package/esm2022/pipes/style-bypass.pipe.mjs +0 -27
  1139. package/esm2022/pipes/url-bypass.pipe.mjs +0 -27
  1140. package/esm2022/public-api.mjs +0 -59
  1141. package/esm2022/services/command-palette.service.mjs +0 -209
  1142. package/esm2022/services/dependency.service.mjs +0 -55
  1143. package/esm2022/services/dialog.service.mjs +0 -69
  1144. package/esm2022/services/fetch.service.mjs +0 -74
  1145. package/esm2022/services/file.service.mjs +0 -42
  1146. package/esm2022/services/keyboard.service.mjs +0 -128
  1147. package/esm2022/services/navigation.service.mjs +0 -52
  1148. package/esm2022/services/theme.service.mjs +0 -64
  1149. package/esm2022/types/menu.mjs +0 -2
  1150. package/esm2022/types/popup.mjs +0 -2
  1151. package/esm2022/types/tooltip.mjs +0 -2
  1152. package/esm2022/utils/index.mjs +0 -205
  1153. package/fesm2022/dotglitch-ngx-common-folder-rename.component-Bh1IiRvd.mjs.map +0 -1
  1154. package/utils/index.d.ts +0 -128
  1155. /package/{components → core/components}/lazy-loader/lazy-loader.component.d.ts +0 -0
  1156. /package/{components → core/components}/lazy-loader/lazy-loader.module.d.ts +0 -0
  1157. /package/{components → core/components}/lazy-loader/lazy-loader.service.d.ts +0 -0
  1158. /package/{components → core/components}/lazy-loader/types.d.ts +0 -0
  1159. /package/{components → core/components}/parallax-card/parallax-card.component.d.ts +0 -0
  1160. /package/{directives → core/directives}/image-cache.directive.d.ts +0 -0
  1161. /package/{directives → core/directives}/utils.d.ts +0 -0
  1162. /package/{pipes → core/pipes}/html-bypass.pipe.d.ts +0 -0
  1163. /package/{pipes → core/pipes}/resource-bypass.pipe.d.ts +0 -0
  1164. /package/{pipes → core/pipes}/script-bypass.pipe.d.ts +0 -0
  1165. /package/{pipes → core/pipes}/style-bypass.pipe.d.ts +0 -0
  1166. /package/{pipes → core/pipes}/url-bypass.pipe.d.ts +0 -0
  1167. /package/{services → core/services}/dependency.service.d.ts +0 -0
  1168. /package/{services → core/services}/dialog.service.d.ts +0 -0
  1169. /package/{services → core/services}/fetch.service.d.ts +0 -0
  1170. /package/{services → core/services}/file.service.d.ts +0 -0
  1171. /package/{services → core/services}/keyboard.service.d.ts +0 -0
  1172. /package/{services → core/services}/theme.service.d.ts +0 -0
  1173. /package/{types → core/types}/popup.d.ts +0 -0
  1174. /package/{components/filemanager → filemanager}/icon-resolver.d.ts +0 -0
  1175. /package/{assets → filemanager}/mat-icons.d.ts +0 -0
  1176. /package/{components/filemanager → filemanager}/textextensions.d.ts +0 -0
  1177. /package/{components/filemanager → filemanager}/toolbar/breadcrumb/breadcrumb.component.d.ts +0 -0
  1178. /package/{components/filemanager → filemanager}/toolbar/icon-button/icon-button.component.d.ts +0 -0
  1179. /package/{components/filemanager → filemanager}/tree-view/tree-view.component.d.ts +0 -0
  1180. /package/{components/vscode → monaco-editor}/ts-type-resolver/dependency-parser.d.ts +0 -0
  1181. /package/{components/vscode → monaco-editor}/ts-type-resolver/dummy-source-cache.d.ts +0 -0
  1182. /package/{components/vscode → monaco-editor}/ts-type-resolver/import-resolver.d.ts +0 -0
  1183. /package/{components/vscode → monaco-editor}/ts-type-resolver/main.d.ts +0 -0
  1184. /package/{components/vscode → monaco-editor}/ts-type-resolver/recursion-depth.d.ts +0 -0
  1185. /package/{components/vscode → monaco-editor}/ts-type-resolver/types.d.ts +0 -0
  1186. /package/{components/vscode → monaco-editor}/ts-type-resolver/unpkg-source-resolver.d.ts +0 -0
  1187. /package/{components/vscode → monaco-editor}/ts-type-resolver/update-emitter.d.ts +0 -0
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m11.5 15.97.41 2.44c-.26.14-.68.27-1.24.39-.57.13-1.24.2-2.01.2-2.21-.04-3.87-.7-4.98-1.96C2.56 15.77 2 14.16 2 12.21c.05-2.31.72-4.08 2-5.32C5.32 5.64 6.96 5 8.94 5c.75 0 1.4.07 1.94.19s.94.25 1.2.4l-.58 2.49-1.06-.34c-.4-.1-.86-.15-1.39-.15-1.16-.01-2.12.36-2.87 1.1-.76.73-1.15 1.85-1.18 3.34 0 1.36.37 2.42 1.08 3.2.71.77 1.71 1.17 2.99 1.18l1.33-.12c.43-.08.79-.19 1.1-.32M13.89 19l.61-4H13l.34-2h1.5l.32-2h-1.5L14 9h1.5l.61-4h2l-.61 4h1l.61-4h2l-.61 4H22l-.34 2h-1.5l-.32 2h1.5L21 15h-1.5l-.61 4h-2l.61-4h-1l-.61 4h-2m2.95-6h1l.32-2h-1l-.32 2z" fill="#0288d1"/>
4
- </svg>
@@ -1 +0,0 @@
1
- <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M18 8v2h2v10H10v-2H8v4h14V8z" style="fill:#42a5f5" transform="translate(-.233 -.5)"/><path d="m4.676 3-.489 2.51H14.4l-.33 1.623H3.865l-.496 2.502H13.58l-.571 2.863-4.118 1.36-3.569-1.36.248-1.232H3.06l-.593 3.005 5.898 2.254 6.8-2.254.902-4.53.18-.91L17.407 3z" style="fill:#42a5f5" transform="translate(-.233 -.5)"/></svg>
@@ -1 +0,0 @@
1
- <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m5 3-.65 3.34h13.59L17.5 8.5H3.92l-.66 3.33h13.59l-.76 3.81-5.48 1.81-4.75-1.81.33-1.64H2.85l-.79 4 7.85 3 9.05-3 1.2-6.03.24-1.21L21.94 3H5z" fill="#42a5f5"/></svg>
@@ -1 +0,0 @@
1
- <svg viewBox="0 0 33 33" xmlns="http://www.w3.org/2000/svg"><path d="M16.633 2.088c-7.028 0-12.714 5.686-12.714 12.714 0 6.187 4.435 11.327 10.288 12.471v3.64c7.609-1.148 14.346-7.187 14.848-15.117.303-4.772-2.076-9.644-6.09-12.01a10.575 10.575 0 0 0-1.455-.728l-.243-.097c-.223-.083-.448-.175-.68-.243a12.614 12.614 0 0 0-3.954-.63zm2.62 4.707a1.387 1.387 0 0 0-1.213.485c-.233.31-.379.611-.534.922-.466 1.087-.31 2.252.388 3.106 1.087-.233 2.01-.927 2.475-2.014a2.45 2.45 0 0 0 .243-1.02c.048-.824-.634-1.405-1.359-1.48zm-5.654.073c-.708.067-1.382.63-1.382 1.407 0 .31.087.708.243 1.019.466 1.087 1.46 1.78 2.546 2.014.621-.854.782-2.019.316-3.106-.155-.31-.3-.616-.534-.85a1.364 1.364 0 0 0-1.188-.484zM9.79 10.603c-1.224.063-1.77 1.602-.752 2.402.31.233.612.403.922.558 1.087.466 2.344.306 3.275-.315-.233-1.01-1.023-1.936-2.11-2.402-.388-.155-.703-.243-1.092-.243-.087-.01-.161-.004-.243 0zm11.961 4.707a3.551 3.551 0 0 0-2.013.583c.233 1.009 1.023 1.935 2.11 2.401.389.155.705.243 1.093.243 1.397.078 2.08-1.65.994-2.426-.31-.233-.611-.379-.922-.534a3.354 3.354 0 0 0-1.262-.267zm-10.603.073a3.376 3.376 0 0 0-1.261.267c-.389.155-.69.325-.923.558-1.009.854-.33 2.48 1.068 2.402a2.51 2.51 0 0 0 1.092-.243c1.087-.466 1.859-1.392 2.014-2.401a3.474 3.474 0 0 0-1.99-.583zm3.931 2.378c-1.087.233-2.009.927-2.475 2.014-.155.31-.243.684-.243.994-.077 1.32 1.724 2.03 2.5 1.02.233-.31.378-.612.534-.923.466-1.009.306-2.174-.316-3.105zm2.887.073c-.621.854-.781 2.018-.315 3.105.155.311.3.616.534.85.854.93 2.65.242 2.572-.923 0-.31-.088-.708-.243-1.019-.466-1.087-1.46-1.78-2.547-2.013z" fill="#4caf50" fill-rule="evenodd"/></svg>
@@ -1 +0,0 @@
1
- <svg xml:space="preserve" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M76.362 75.199V64.116c1.095-.068 2.19-.137 3.284-.137 30.377-.958 50.286 26.135 50.286 26.135s-21.483 29.83-44.539 29.83c-3.079 0-6.089-.48-8.962-1.438v-33.66c11.836 1.436 14.23 6.636 21.277 18.471l15.804-13.273s-11.562-15.12-30.992-15.12c-2.053-.068-4.105.069-6.158.274m0-36.67v16.556l3.284-.205c42.213-1.437 69.784 34.618 69.784 34.618s-31.608 38.45-64.516 38.45c-2.873 0-5.678-.274-8.483-.753v10.262c2.326.274 4.72.48 7.046.48 30.65 0 52.817-15.668 74.3-34.14 3.558 2.874 18.13 9.784 21.14 12.794-20.388 17.104-67.937 30.856-94.893 30.856-2.6 0-5.062-.137-7.525-.41v14.436h116.44V38.532zm0 79.977v8.757C48.038 122.2 40.17 92.712 40.17 92.712s13.615-15.05 36.192-17.514v9.579h-.068c-11.836-1.437-21.14 9.646-21.14 9.646s5.268 18.678 21.209 24.082M26.077 91.481S42.839 66.714 76.43 64.115v-9.03c-37.217 3.009-69.373 34.48-69.373 34.48s18.199 52.68 69.305 57.47v-9.579c-37.492-4.652-50.286-45.975-50.286-45.975z" fill="#8bc34a" style="fill:#76b900"/></svg>
@@ -1 +0,0 @@
1
- <svg fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M11.998 2A9.993 9.993 0 0 0 2 12a9.993 9.993 0 0 0 10 10c5.528 0 10-4.473 10-10-.001-5.527-4.51-10-10.002-10zm-4.69 12.146c.327.436.763.618 1.381.618.292 0 .583-.037.837-.146.255-.108.546-.255.908-.473l1.019 1.454c-.836.692-1.782 1.018-2.873 1.018-.873 0-1.6-.182-2.254-.545a3.66 3.66 0 0 1-1.454-1.599c-.327-.691-.509-1.491-.509-2.437 0-.908.182-1.745.508-2.436a3.853 3.853 0 0 1 1.457-1.672c.617-.4 1.38-.582 2.217-.582.583 0 1.128.072 1.564.254.49.19.944.46 1.345.8l-1.018 1.382a3.987 3.987 0 0 0-.836-.474c-.254-.108-.582-.145-.873-.145-1.236 0-1.854.945-1.854 2.872-.036.983.146 1.673.437 2.11zm10 2.254c-.363 1.128-.909 1.964-1.673 2.582-.763.619-1.782.946-3.054 1.055l-.254-1.708c.836-.11 1.454-.292 1.854-.583.145-.108.437-.436.437-.436l-3.019-9.673h2.508l1.746 7.236 1.855-7.236h2.436z" fill="#00bfa5"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" version="1.0" viewBox="0 0 300 300"><path fill="#f44336" d="M282.21 47.29a15.76 15.81 0 0 0-15.76 15.81 15.76 15.81 0 0 0 15.76 15.82 15.76 15.81 0 0 0 15.76-15.82 15.76 15.81 0 0 0-15.76-15.81zm-173.77 5.29-64.73.11c-.28 0-.55-.04-.82 0-3.17.46-5.65 3.45-5.66 7.06l.2 184.41c0 2.79.64 8.55 7.31 8.55l59.94-.28c17.13-.04 28.61-.38 35.45-1.4h.16c6.54-1.07 13.47-3.04 21-5.93 13.1-4.82 24.71-11.95 34.69-21.47 9.78-9.22 17.36-20.14 22.68-32.42 5.19-11.97 7.86-24.61 7.98-37.71a44 43.13 0 0 0 39.09-42.87 44 43.13 0 0 0-44-43.13 44 43.13 0 0 0-28.57 10.33c-6.04-5.25-12.74-9.7-20.06-13.32-16.49-8.24-37.99-11.99-64.66-11.93zm-2.8 38.01c13.04-.03 22.32.44 27.58 1.29 5.33.86 11.18 2.68 17.36 5.5 6.14 2.75 11.48 6.12 16.08 10.32 12.63 11.58 18.59 25.28 18.62 43.42.03 18.57-5.73 33.04-18.04 45.17-3.79 3.68-8 6.8-12.65 9.39-4.39 2.41-10.11 4.48-17.35 6.27-6.82 1.61-17.17 2.53-30.66 2.55l-28.71.05-.14-123.91 27.91-.05z"/></svg>
@@ -1 +0,0 @@
1
- <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12.618 1.566a.978.978 0 0 0-.682.281l-.01.007-6.388 3.692 6.372 6.372v.004l7.658 7.659 1.46-2.63-5.264-12.64-2.457-2.457a.972.972 0 0 0-.69-.288z" fill="#66C3FA"/><path d="m5.553 5.531-3.69 6.383-.007.01a.967.967 0 0 0 .006 1.371l3.058 3.061 11.963 4.706 2.705-1.502-.073-.073-.019.002-7.5-7.512h-.009L5.553 5.53z" fill="#215896"/><path d="m5.537 5.534 6.518 6.525h.01l7.501 7.51 2.856-.544.004-8.449-3.015-2.955c-.66-.647-1.675-1.064-2.695-1.202l.002-.032-11.18-.852z" fill="#235997"/><path d="m5.545 5.542 6.522 6.522v.009l7.506 7.506-.546 2.855h-8.449l-2.954-3.017c-.647-.66-1.063-1.676-1.2-2.696l-.033.003-.846-11.182z" fill="#58B6F0"/></svg>
@@ -1 +0,0 @@
1
- <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12.618 1.566a.978.978 0 0 0-.682.281l-.01.007-6.388 3.692 6.372 6.372v.004l7.658 7.659 1.46-2.63-5.264-12.64-2.457-2.457a.972.972 0 0 0-.69-.288z" fill="#90a4ae"/><path d="m5.553 5.531-3.69 6.383-.007.01a.967.967 0 0 0 .006 1.371l3.058 3.061 11.963 4.706 2.705-1.502-.073-.073-.019.002-7.5-7.512h-.009L5.553 5.53z" fill="#455a64"/><path d="m5.537 5.534 6.518 6.525h.01l7.501 7.51 2.856-.544.004-8.449-3.015-2.955c-.66-.647-1.675-1.064-2.695-1.202l.002-.032-11.18-.852z" fill="#455a64"/><path d="m5.545 5.542 6.522 6.522v.009l7.506 7.506-.546 2.855h-8.449l-2.954-3.017c-.647-.66-1.063-1.676-1.2-2.696l-.033.003z" fill="#90a4ae"/></svg>
@@ -1 +0,0 @@
1
- <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 3C7.58 3 4 4.79 4 7s3.58 4 8 4 8-1.79 8-4-3.58-4-8-4M4 9v3c0 2.21 3.58 4 8 4s8-1.79 8-4V9c0 2.21-3.58 4-8 4s-8-1.79-8-4m0 5v3c0 2.21 3.58 4 8 4s8-1.79 8-4v-3c0 2.21-3.58 4-8 4s-8-1.79-8-4z" style="fill:#ffca28"/></svg>
@@ -1 +0,0 @@
1
- <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><text x="2.91" y="20.739" fill="#ffd54f" font-family="sans-serif" font-size="24.416" letter-spacing="0" stroke-width="1.665" word-spacing="0" style="line-height:1.25" xml:space="preserve"><tspan x="2.91" y="20.739" font-family="Arial" font-weight="bold">D</tspan></text></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><path fill="#CFD8DC" fill-rule="evenodd" d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10ZM6.437 11.77c0-2.278 2.266-4.11 5.172-4.11 1.399 0 2.598.387 3.543 1.125a5.035 5.035 0 0 1 1.7 2.477l.007.023.008.027.016.051.023.094.063.219.066.25.113.414.18.656.29 1.078.327 1.227.528 1.972.199.743-.043.047a8.977 8.977 0 0 1-5.442 2.843l-.019-.129-.035-.258-.031-.187-.036-.246-.046-.3-.02-.118-.043-.285-.027-.168-.035-.219-.036-.21-.035-.204-.035-.2-.031-.195-.035-.187-.032-.18-.023-.133-.027-.128-.016-.082-.031-.165-.024-.117-.027-.144-.023-.102-.02-.097-.02-.094-.011-.063-.028-.117-.02-.086-.019-.086-.015-.054-.02-.079-.015-.074-.02-.074-.02-.07-.011-.043-.02-.067-.015-.062-.012-.043-.016-.04-.011-.034-.016-.055-.012-.04-.008-.023a2.628 2.628 0 0 0-.07-.183l-.012-.024.09-.234-.355.012-.098.004c-3.226.066-5.309-1.305-5.309-3.454Zm2.024 6.648a.486.486 0 0 1 .594-.332c.258.066.41.328.347.586l-.004.012-.472 1.761-.067-.027a8.932 8.932 0 0 1-.84-.363l.438-1.625.004-.012Zm2.719-1.191a.488.488 0 0 1 .902-.086l.016.07.023.113.016.082-.004.02-.012.055v.011l-.664 2.461-.004.012a.488.488 0 0 1-.941-.254v-.012l.664-2.46.004-.012Zm-4.063-2.793.031-.075c.247.215.532.41.844.575l-.601 2.234-.004.012a.488.488 0 0 1-.942-.258l.004-.012.664-2.46.004-.016ZM4.97 11.859a.495.495 0 0 1 .597-.332c.254.07.407.332.344.59v.012l-.664 2.46-.004.013a.488.488 0 0 1-.941-.258v-.012l.664-2.46.004-.013Zm14.89-.558a.488.488 0 0 1 .941.254v.015l-.667 2.461v.012a.49.49 0 0 1-.945-.258l.003-.012.665-2.46.003-.012Zm-16.785-.344a8.922 8.922 0 0 1 1.043-3.273.49.49 0 0 1 .465.605l-.004.012-.664 2.46-.004.012a.492.492 0 0 1-.836.184Zm15.102-2.926a.496.496 0 0 1 .597-.332c.254.07.41.332.348.59l-.004.012-.664 2.46-.004.012a.488.488 0 0 1-.941-.257l.004-.012.664-2.461v-.012ZM7.008 5.36a.492.492 0 0 0-.594.332l-.004.012-.664 2.461-.004.012a.488.488 0 0 0 .942.258l.003-.012.665-2.461.003-.016a.488.488 0 0 0-.347-.586Zm8.535.465a.495.495 0 0 0-.598.332l-.004.012-.445 1.656c.289.142.565.31.824.5l.043.035.524-1.933v-.012a.491.491 0 0 0-.344-.59Zm-4.344-2.773a8.982 8.982 0 0 0-.93.133l-.066.011-.617 2.293-.004.012a.488.488 0 0 0 .941.254l.004-.012.664-2.46.004-.012a.484.484 0 0 0 .004-.22Zm6.11 1.699-.13.484-.003.012a.488.488 0 0 0 .941.254l.004-.012.016-.05a9.03 9.03 0 0 0-.77-.645l-.058-.043Zm-3.864-1.617-.234.87-.004.013a.488.488 0 0 0 .941.254l.004-.012.246-.918a8.924 8.924 0 0 0-.882-.195l-.07-.012Zm-.769 6.355a.625.625 0 1 0-.884.884.625.625 0 0 0 .884-.884Z" clip-rule="evenodd"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><path fill="#455A64" fill-rule="evenodd" d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10ZM6.437 11.77c0-2.278 2.266-4.11 5.172-4.11 1.399 0 2.598.387 3.543 1.125a5.035 5.035 0 0 1 1.7 2.477l.007.023.008.027.016.051.023.094.063.219.066.25.113.414.18.656.29 1.078.327 1.227.528 1.972.199.743-.043.047a8.977 8.977 0 0 1-5.442 2.843l-.019-.129-.035-.258-.031-.187-.036-.246-.046-.3-.02-.118-.043-.285-.027-.168-.035-.219-.036-.21-.035-.204-.035-.2-.031-.195-.035-.187-.032-.18-.023-.133-.027-.128-.016-.082-.031-.165-.024-.117-.027-.144-.023-.102-.02-.097-.02-.094-.011-.063-.028-.117-.02-.086-.019-.086-.015-.054-.02-.079-.015-.074-.02-.074-.02-.07-.011-.043-.02-.067-.015-.062-.012-.043-.016-.04-.011-.034-.016-.055-.012-.04-.008-.023a2.628 2.628 0 0 0-.07-.183l-.012-.024.09-.234-.355.012-.098.004c-3.226.066-5.309-1.305-5.309-3.454Zm2.024 6.648a.486.486 0 0 1 .594-.332c.258.066.41.328.347.586l-.004.012-.472 1.761-.067-.027a8.932 8.932 0 0 1-.84-.363l.438-1.625.004-.012Zm2.719-1.191a.488.488 0 0 1 .902-.086l.016.07.023.113.016.082-.004.02-.012.055v.011l-.664 2.461-.004.012a.488.488 0 0 1-.941-.254v-.012l.664-2.46.004-.012Zm-4.063-2.793.031-.075c.247.215.532.41.844.575l-.601 2.234-.004.012a.488.488 0 0 1-.942-.258l.004-.012.664-2.46.004-.016ZM4.97 11.859a.495.495 0 0 1 .597-.332c.254.07.407.332.344.59v.012l-.664 2.46-.004.013a.488.488 0 0 1-.941-.258v-.012l.664-2.46.004-.013Zm14.89-.558a.488.488 0 0 1 .941.254v.015l-.667 2.461v.012a.49.49 0 0 1-.945-.258l.003-.012.665-2.46.003-.012Zm-16.785-.344a8.922 8.922 0 0 1 1.043-3.273.49.49 0 0 1 .465.605l-.004.012-.664 2.46-.004.012a.492.492 0 0 1-.836.184Zm15.102-2.926a.496.496 0 0 1 .597-.332c.254.07.41.332.348.59l-.004.012-.664 2.46-.004.012a.488.488 0 0 1-.941-.257l.004-.012.664-2.461v-.012ZM7.008 5.36a.492.492 0 0 0-.594.332l-.004.012-.664 2.461-.004.012a.488.488 0 0 0 .942.258l.003-.012.665-2.461.003-.016a.488.488 0 0 0-.347-.586Zm8.535.465a.495.495 0 0 0-.598.332l-.004.012-.445 1.656c.289.142.565.31.824.5l.043.035.524-1.933v-.012a.491.491 0 0 0-.344-.59Zm-4.344-2.773a8.982 8.982 0 0 0-.93.133l-.066.011-.617 2.293-.004.012a.488.488 0 0 0 .941.254l.004-.012.664-2.46.004-.012a.484.484 0 0 0 .004-.22Zm6.11 1.699-.13.484-.003.012a.488.488 0 0 0 .941.254l.004-.012.016-.05a9.03 9.03 0 0 0-.77-.645l-.058-.043Zm-3.864-1.617-.234.87-.004.013a.488.488 0 0 0 .941.254l.004-.012.246-.918a8.924 8.924 0 0 0-.882-.195l-.07-.012Zm-.769 6.355a.625.625 0 1 0-.884.884.625.625 0 0 0 .884-.884Z" clip-rule="evenodd"/></svg>
@@ -1 +0,0 @@
1
- <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M13.11 6.44v1.12H4.22c-.61 0-1.1.5-1.1 1.1v4.45h-.75c-.2 0-.37.17-.37.37v3.7c0 .21.17.38.37.38h.74v2.22c0 .61.5 1.1 1.11 1.1h15.56c.61 0 1.1-.49 1.1-1.1v-2.22h.75c.2 0 .37-.17.37-.37v-3.7c0-.21-.17-.38-.37-.38h-.74V8.67c0-.62-.5-1.11-1.11-1.11h-5.56V3.48c0-.2-.16-.37-.37-.37h-2.6c-.2 0-.36.17-.36.37v2.6c0 .2.16.36.37.36zm4.87 7.54-2.33 2.33a.45.45 0 0 1-.63 0l-1.4-1.4a.45.45 0 0 1 0-.63l.47-.48a.45.45 0 0 1 .63 0l.61.6 1.54-1.53a.45.45 0 0 1 .63 0l.48.48c.17.17.17.46 0 .63zm-9.74 2.33a.45.45 0 0 1-.63 0l-1.4-1.4a.45.45 0 0 1 0-.63l.47-.48a.45.45 0 0 1 .64 0l.6.6 1.54-1.53a.45.45 0 0 1 .63 0l.48.48c.18.17.18.46 0 .63z" fill="#448aff"/></svg>
@@ -1 +0,0 @@
1
- <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M15.81 2.853 21.148 8.2l-1.54 1.518-5.326-5.327 1.528-1.54M2.853 20.373l6.995-6.962a1.039 1.039 0 0 1 .247-1.033c.42-.42 1.109-.42 1.528 0 .42.43.42 1.108 0 1.528-.28.28-.7.355-1.033.248l-6.962 6.995 11.418-3.82 3.799-6.845-5.317-5.327-6.855 3.799z" style="fill:#78909c;stroke-width:1.0761"/></svg>
@@ -1 +0,0 @@
1
- <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M3.5 1.5c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h2v-2h-2v-11h11v2h2v-2c0-1.11-.89-2-2-2h-11m6 6c-1.11 0-2 .89-2 2v2h2v-2h2v-2h-2m4 0v2h1v1h2v-3h-3m5 0v2h2v11h-11v-2h-2v2c0 1.11.89 2 2 2h11c1.11 0 2-.89 2-2v-11c0-1.11-.89-2-2-2h-2m-4 5v2h-2v2h2c1.11 0 2-.89 2-2v-2h-2m-7 1v3h3v-2h-1v-1z" style="fill:#42a5f5"/></svg>
@@ -1 +0,0 @@
1
- <svg viewBox="0 0 1424.1 1368" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><g fill="#ff5252" stroke-width="1.05"><path class="st0" d="M1101.8 130.51c-12.441.289-30.445 1.731-55.957 5.878-32.232 5.25-56.168 11.548-61.523 12.914-39.16 10.394-67.506 22.153-93.018 32.757-14.383 5.984-33.282 13.859-56.589 25.932l-.734.42c-11.129 5.774-19.738 10.394-24.357 12.914l-2.414 1.258c-16.693 9.03-32.862 15.958-49.765 24.777 0 0-16.167 8.505-39.999 24.043-6.929 4.515-12.914 9.028-12.914 9.028a140.696 140.696 0 0 0-4.621 3.57c-5.67 4.514-10.917 9.554-15.641 15.118-4.515 5.25-11.025 12.81-15.33 23.518-7.034 17.113-4.723 32.86-3.673 40 1.47 9.133 4.513 28.66 19.841 41.68 11.758 10.182 25.618 11.864 33.807 12.704 50.079 4.62 98.163-5.354 129.03-9.344 41.47-5.249 73.071-2.31 98.269 0 45.984 4.305 96.587 9.028 148.87 42.1 12.388 7.873 45.67 30.446 74.436 72.021 12.598 18.163 31.811 45.985 39.16 85.985 7.244 39.895-.84 72.755 7.77 74.96 4.094 1.05 8.714-5.354 17.848-17.848a208.446 208.446 0 0 0 28.346-54.173c2.625-7.664 5.25-19.109 10.5-42.1 5.774-24.988 8.607-37.48 10.496-49.344 1.575-10.183 3.465-24.987 4.095-63.937.63-43.674.944-65.513-1.575-89.029-3.465-32.02-10.498-63.516-20.997-93.858-11.34-32.02-22.992-64.252-51.76-94.699-20.681-21.942-38.95-31.076-45.353-34.015-18.163-8.503-33.595-10.708-43.673-12.178-3.255-.472-10.133-1.338-22.574-1.05zm-100.67 82.398c12.105.117 20.275 2.825 22.244 9.046 5.25 16.588-23.937 48.503-74.436 64.46-50.499 15.854-117.38 7.034-122.62-9.554s41.47-31.39 91.969-47.243c31.562-9.908 62.671-16.905 82.847-16.709z"/><path class="st0" d="M925.47 442.64c1.785-5.354 27.401-1.47 37.27 0 27.926 4.2 55.433 8.399 88.189 25.932 23.517 12.493 59.107 36.85 85.774 80.105 5.25 8.399 30.026 49.869 33.176 110.03 2.94 54.908-13.858 95.748-22.677 116.53-37.06 87.349-106.04 132.7-139.42 154.02-22.887 14.593-81.575 48.714-161.05 57.953-40.735 4.724-94.698 3.884-96.798-6.72-.63-3.359 3.99-7.348 11.024-13.437 3.255-2.835 11.968-9.869 26.982-13.753 8.399-2.205 12.178-1.68 32.651-2.1 19.632-.42 29.396-.63 35.905-1.47 14.593-2.1 28.976-5.984 42.52-11.758 9.764-4.094 17.323-7.139 26.457-13.753a107.125 107.125 0 0 0 26.982-28.87c4.094-6.195 7.874-11.969 11.024-20.473 2.625-6.929 3.045-10.814 6.93-16.588 3.674-5.459 6.718-7.139 11.128-11.339 3.465-3.254 6.09-6.404 17.848-26.142 8.504-14.278 12.703-21.417 15.328-26.457 12.178-23.622 16.693-45.459 19.212-57.848 8.924-43.989 4.62-80.945 2.415-99.527-3.99-32.86-7.874-65.512-28.346-101.94-13.543-24.147-31.076-55.328-64.777-76.85-6.614-4.514-19.003-11.549-17.743-15.538z"/><path class="st0" d="M843.89 890.41s6.614-13.963 21.522-55.958c5.67-15.853 8.924-24.987 10.394-38.74 1.89-17.428-.21-31.286-4.41-58.687-1.05-7.244-2.624-14.383-4.829-21.417-1.575-5.04-3.044-8.294-7.664-18.898-12.073-27.192-14.803-32.336-20.052-38.635-8.084-9.659-13.018-11.024-14.803-11.339-7.979-1.575-17.848 2.205-20.787 8.924-2.624 5.984 1.05 12.388 5.04 20.052 0 0 5.774 11.234 19.108 46.089 7.139 18.793 7.769 34.646 8.189 47.559 1.574 46.719-17.953 82.099-24.462 93.438-17.848 31.286-40 49.134-56.273 61.942-34.121 26.772-70.761 41.47-89.448 48.924-29.921 11.968-44.724 14.173-57.428 30.76-9.87 12.914-11.758 26.038-15.013 48.19 0 0-5.46 38.005 9.343 82.099 2.73 8.294 5.88 15.433 12.913 20.262 10.08 6.824 22.572 4.62 32.756 2.834 13.858-2.414 26.982-8.084 39.265-13.333 9.764-4.199 16.588-7.769 24.672-5.354 3.465 1.05 6.72 3.045 11.34 7.77 10.603 11.023 16.272 24.356 19.841 37.584 5.985 21.837 9.24 34.121 2.415 40.84-7.349 7.244-23.937 5.67-34.016-.42-6.929-4.2-7.244-8.504-15.013-11.339-5.984-2.205-10.499-1.365-20.997-.42-8.714.735-17.533.84-26.247 1.26-22.887 1.155-34.33 1.68-44.094 1.26-13.438-.63-19.842-1.995-23.832 2.415-4.514 4.934-1.575 12.074-7.244 16.588-3.36 2.624-7.454 2.73-12.178 2.834-5.46.105-11.758-1.155-15.328-3.254-8.714-5.04-6.824-17.953-9.344-47.35-1.575-19.002-2.624-15.222-6.929-51.337-.84-7.98-2.1-15.853-3.884-23.622-1.68-7.454-2.835-10.08-4.62-18.058-1.575-7.034-2.834-14.278-3.674-21.417-1.26-10.29-4.305-29.081-11.34-65.932 0 0-13.752-59.002-4.409-78.53 3.045-6.3 7.664-8.084 7.664-8.084 1.26-.525 2.31-.525 6.93-.42 7.453.315 11.128.42 16.587 1.26 7.245 1.05 6.825 1.784 9.66 1.574 4.724-.315 9.133-2.204 12.492-5.354 5.46-5.354 4.935-13.438 5.145-20.262.104-3.15.21-.735 11.024-41.575 8.818-32.966 7.979-31.706 10.499-39.37 4.934-14.698 9.973-25.512 15.328-36.64 19.318-39.79 28.87-59.632 39.685-77.27 21.627-35.38 42.1-57.953 67.61-86.194 25.723-28.45 48.085-52.913 83.78-78.11 38.005-26.772 60.682-32.966 78.53-34.75 11.234-1.156 27.61-2.836 45.669 4.408 29.71 11.968 42.834 39.895 55.013 65.512 19.527 41.155 21.417 77.795 22.257 97.952 1.574 37.375-4.62 64.987-8.084 80.105-10.92 47.454-30.131 81.05-41.47 85.354-1.26.525-7.14 2.415-9.344 7.454-1.575 3.675-.525 7.245-.21 8.714 2.94 13.018-10.92 30.446-13.753 34.016-12.808 16.063-29.606 20.577-38.845 23.097-2.205.63-33.491 8.714-39.265-1.574-2.205-3.99.525-8.714 4.62-17.428z"/><path class="st0" d="M596.23 710.77c.105 4.095-.105 8.084-.42 12.178-1.785 21.207-8.819 33.806-17.953 54.803-9.974 22.992-15.853 36.43-20.787 55.853-3.15 12.388-7.244 24.462-9.554 37.06-2.73 14.908-2.624 21.627-8.189 25.092-6.089 3.78-10.814-1.68-29.396-2.1-9.658-.21-16.903 1.05-24.252 5.88-6.824 4.514-10.709 9.868-11.863 12.703a33.966 33.966 0 0 0-2.73 14.067c1.366 53.753.84 61.417-1.364 64.777-3.57 5.46-15.328 8.294-33.176 14.803-6.93 2.52-24.987 8.924-59.107 15.118-20.262 3.675-35.59 6.51-57.218 7.14-14.908.63-29.711 0-44.514-1.995-17.113-2.31-41.155-5.564-66.351-19.108-10.604-5.67-47.454-25.512-64.777-69.081-11.968-30.131-8.714-56.798-7.034-69.816a147.974 147.974 0 0 1 22.677-61.732c8.084-12.283 23.307-34.541 52.808-47.244 15.748-6.72 32.86-9.659 49.974-8.504 36.535 2.73 77.69 25.512 86.614 58.582 1.05 3.78 5.984 24.042-4.62 38.845-1.574 2.205-6.194 8.714-11.339 8.084-5.354-.63-7.139-8.294-14.593-22.152-6.194-11.549-9.343-17.323-14.803-22.677-14.488-14.068-34.54-14.068-36.64-14.068-21.207.315-34.75 13.858-40.42 19.422-4.304 4.304-21.522 21.837-20.997 49.134.105 3.465.735 25.827 17.848 43.674 18.268 19.213 43.15 20.472 57.218 20.997 32.231 1.26 58.162-10.919 85.774-26.982a334.14 334.14 0 0 0 8.084-4.83c48.4-30.235 88.19-64.566 112.34-87.558 16.588-15.853 21.522-21.942 41.89-40.42 15.853-14.383 18.268-15.643 27.296-25.092 7.98-8.4 13.543-15.223 24.252-23.832 4.83-3.99 9.974-7.664 15.328-11.024zM883.05 1024.2c1.995-1.47 6.194-1.47 15.013-1.575 6.194-.105-1.155 0 12.808-.105 9.659-.105 11.129.105 16.693 0 2.625-.105 3.36-.105 8.399-.315 3.36-.105 8.084-.21 11.339-.21 1.575 0 2.835 1.26 2.835 2.73v.105c-.105 6.09.21 12.283-.105 19.212-.105 3.045-.105 6.09 0 9.029a85.777 85.777 0 0 1 0 7.349c-.315 6.614-.42 23.202 4.094 47.874 1.155 6.3 2.205 11.444 6.51 15.958 6.298 6.614 15.537 7.139 21.521 7.559 12.493.84 22.572-3.045 34.121-7.56 15.433-6.088 18.478-10.078 26.247-8.923 2.835.42 9.239 1.785 17.218 10.814 5.88 6.614 8.61 12.913 13.858 25.302 2.835 6.404 5.145 12.913 7.034 19.738 3.36 12.388 4.935 18.583 2.94 22.677-5.67 11.338-37.06 4.724-43.254.84-2.835-1.785-6.09-4.2-6.09-4.2-1.89-1.364-3.464-2.624-4.514-3.464-3.884-3.045-6.719-5.144-7.664-5.984-.525-.42-1.155-.84-1.68-1.26-.314-.21-.63-.42-1.05-.63-1.364-.735-2.73-1.365-4.199-1.785-1.89-.735-3.884-1.365-5.984-1.68-1.575-.314-1.89-.105-9.449-.21h-4.724c-1.05 0-2.31.105-6.614.63-4.2.525-6.51.735-8.504 1.05l-6.615 1.155s-9.868 2.1-18.163 3.255c-3.57.525-4.094.42-7.139.945-4.41.84-6.614 1.154-7.559 1.89-4.41 3.359 1.68 12.177-1.574 18.582-4.725 8.924-26.877 11.13-35.695 1.575-3.465-3.674-3.885-8.189-4.41-12.703-2.415-20.577-5.984-40.945-7.874-61.522-.84-9.449-1.68-18.268-3.674-30.236-1.05-6.51-3.045-25.197-7.14-62.467-.524-3.674-1.05-10.394 3.045-13.438z"/></g></svg>
@@ -1 +0,0 @@
1
- <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 14.5A2.5 2.5 0 0 1 9.5 12c0-1.387 1.113-2.5 2.5-2.5s2.5 1.113 2.5 2.5a2.5 2.5 0 0 1-2.5 2.5M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2z" style="fill:#b0bec5;stroke-width:1.25"/></svg>
@@ -1 +0,0 @@
1
- <svg overflow="visible" version="1.0" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300"><g style="fill:#43a047"><path d="M88.273-104.42h40.946V85.11c-21.005 3.988-36.426 5.583-53.176 5.583C26.056 90.691 0 68.095 0 24.754c0-41.744 27.653-68.86 70.458-68.86 6.646 0 11.698.53 17.814 2.124zm0 95.401c-4.785-1.594-8.773-2.125-13.825-2.125-20.739 0-32.704 12.763-32.704 35.095 0 21.804 11.434 33.768 32.438 33.768 4.518 0 8.242-.266 14.091-1.062z" style="fill:#43a047;stroke-width:1.7152" transform="translate(52.981 129.25) scale(.99836)"/><path d="M194.36-41.187v94.918c0 32.704-2.393 48.39-9.571 61.951-6.648 13.031-15.423 21.271-33.502 30.312l-38.022-18.08c18.08-8.508 26.854-15.95 32.437-27.387 5.85-11.698 7.713-25.258 7.713-60.886v-80.827zm-40.944-63.014h40.944v42.009h-40.944z" style="fill:#43a047;stroke-width:1.7152" transform="translate(52.981 129.25) scale(.99836)"/></g></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.593 10.11c-.065-.043-.605-.464-1.77-.464-.303 0-.606.032-.908.086-.227-1.512-1.49-2.278-1.544-2.31l-.313-.184-.195.291a3.57 3.57 0 0 0-.55 1.285c-.216.864-.087 1.685.356 2.387-.53.302-1.393.378-1.577.378H1.87a.675.675 0 0 0-.67.68c0 1.242.195 2.483.627 3.65.486 1.285 1.22 2.235 2.16 2.818 1.058.648 2.797 1.015 4.773 1.015.853 0 1.738-.075 2.613-.237a10.655 10.655 0 0 0 3.445-1.253 8.962 8.962 0 0 0 2.343-1.933c1.134-1.263 1.803-2.7 2.29-3.941h.204c1.231 0 1.998-.497 2.42-.918.28-.26.485-.572.636-.94l.087-.259-.205-.15M3.199 11.178h1.9a.178.178 0 0 0 .173-.173V9.3a.178.178 0 0 0-.173-.173H3.2a.17.17 0 0 0-.173.173v1.706c.01.098.075.173.173.173m2.624 0h1.9a.178.178 0 0 0 .173-.173V9.3a.178.178 0 0 0-.173-.173h-1.9a.17.17 0 0 0-.173.173v1.706c.01.098.075.173.173.173m2.667 0h1.89c.108 0 .183-.075.183-.173V9.3a.174.174 0 0 0-.183-.173H8.49c-.087 0-.162.076-.162.173v1.706c0 .098.065.173.162.173m2.635 0h1.91a.169.169 0 0 0 .163-.173V9.3c0-.086-.065-.173-.162-.173h-1.911c-.087 0-.162.076-.162.173v1.706c0 .098.075.173.162.173M5.823 8.76h1.9c.087 0 .173-.097.173-.194V6.87a.17.17 0 0 0-.173-.172h-1.9c-.098 0-.173.064-.173.172v1.696c.01.097.075.194.173.194m2.667 0h1.89c.108 0 .183-.097.183-.194V6.87c0-.097-.065-.172-.183-.172H8.49c-.087 0-.162.064-.162.172v1.696c0 .097.065.194.162.194m2.635 0h1.91c.087 0 .163-.097.163-.194V6.87a.168.168 0 0 0-.162-.172h-1.911c-.087 0-.162.064-.162.172v1.696c0 .097.075.194.162.194m0-2.462h1.91a.169.169 0 0 0 .163-.173V4.441c0-.108-.076-.184-.162-.184h-1.911c-.087 0-.162.065-.162.184v1.684c0 .087.075.173.162.173m2.656 4.881h1.9a.17.17 0 0 0 .173-.173V9.3a.178.178 0 0 0-.172-.173H13.78c-.086 0-.162.076-.162.173v1.706c0 .097.076.173.162.173" fill="#0087c9"/></svg>
@@ -1 +0,0 @@
1
- <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M13 9h5.5L13 3.5V9M6 2h8l6 6v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4c0-1.11.89-2 2-2m9 16v-2H6v2h9m3-4v-2H6v2h12z" fill="#42a5f5"/></svg>
@@ -1 +0,0 @@
1
- <svg viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg"><g transform="translate(-6.66 100.49)" fill="#2196f3" fill-opacity=".604"><ellipse transform="matrix(-.3005 .95378 -.96071 -.27755 0 0)" cx="37.18" cy="-256.97" rx="110.14" ry="139.47"/><ellipse transform="matrix(-.3005 .95378 -.96071 -.27755 0 0)" cx="38.835" cy="-197.03" rx="110.14" ry="139.47"/><ellipse transform="matrix(-.95378 -.3005 .27755 -.96071 0 0)" cx="-224.78" cy="-5.066" rx="110.14" ry="139.47"/><ellipse transform="matrix(-.95378 -.3005 .27755 -.96071 0 0)" cx="-228.55" cy="-60.291" rx="110.14" ry="139.47"/></g></svg>
@@ -1 +0,0 @@
1
- <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g transform="translate(39.905 2.332) scale(.74832)" fill="#fb8c00"><path d="m-36.654 8.842 1.76-1.017 5.1 8.833-1.76 1.017zm-8.127 7.8 5.083-8.804 1.766 1.02-5.083 8.804z"/><rect x="-42.373" y="1.19" width="10.166" height="8.5" rx="1.35"/><rect x="-34.918" y="16.15" width="10.166" height="8.5" rx="1.35"/><rect x="-49.828" y="16.15" width="10.166" height="8.5" rx="1.35"/></g></svg>
@@ -1 +0,0 @@
1
- <svg viewBox="0 0 230 230" xmlns="http://www.w3.org/2000/svg"><path d="m57.01 36.707-.835.834 34.036 34.035c-4.813 7.514-7.584 16.742-7.584 27.239 0 29.18 21.422 48.557 48.557 48.557 10.14 0 19.48-2.706 27.205-7.618l34.21 34.21c-17.726 23.411-45.89 38.151-77.601 38.151-53.627 0-97.114-42.154-97.114-97.114 0-32.685 15.38-60.84 39.125-78.293zm16.188-9.611c12.66-5.927 26.836-9.21 41.799-9.21 53.626 0 97.114 42.155 97.114 97.114 0 15.117-3.29 29.265-9.176 41.833l-30.78-30.78c4.812-7.514 7.584-16.742 7.584-27.239 0-29.18-21.422-48.557-48.557-48.557-10.14 0-19.48 2.706-27.205 7.617zm57.985 100.853c-16.281 0-29.134-11.626-29.134-29.135 0-17.508 12.853-29.134 29.134-29.134s29.134 11.626 29.134 29.134c0 17.509-12.853 29.135-29.134 29.135z" fill="#cfd8dc"/></svg>
@@ -1 +0,0 @@
1
- <svg viewBox="0 0 230 230" xmlns="http://www.w3.org/2000/svg"><path d="m57.011 36.707-.834.834 34.036 34.035c-4.813 7.514-7.584 16.742-7.584 27.239 0 29.18 21.422 48.557 48.557 48.557 10.14 0 19.48-2.706 27.205-7.618l34.21 34.21c-17.726 23.411-45.89 38.151-77.601 38.151-53.627 0-97.114-42.154-97.114-97.114 0-32.685 15.38-60.84 39.125-78.293zm16.19-9.611c12.66-5.927 26.835-9.21 41.798-9.21 53.626 0 97.114 42.155 97.114 97.114 0 15.117-3.29 29.265-9.176 41.833l-30.78-30.78c4.813-7.514 7.584-16.742 7.584-27.239 0-29.18-21.422-48.557-48.557-48.557-10.14 0-19.48 2.706-27.205 7.617zm57.984 100.853c-16.281 0-29.134-11.626-29.134-29.135s12.853-29.134 29.134-29.134 29.134 11.626 29.134 29.134-12.853 29.135-29.134 29.135z" fill="#546e7a"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" version="1.0" viewBox="0 0 24 24"><path d="m14 6-3.75 5 2.85 3.8-1.6 1.2C9.81 13.75 7 10 7 10l-6 8h22L14 6z" fill="#f57c00"/></svg>
@@ -1 +0,0 @@
1
- <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 15c.81 0 1.5-.3 2.11-.89.59-.61.89-1.3.89-2.11s-.3-1.5-.89-2.11C13.5 9.3 12.81 9 12 9s-1.5.3-2.11.89C9.3 10.5 9 11.19 9 12s.3 1.5.89 2.11c.61.59 1.3.89 2.11.89m0-13c2.75 0 5.1 1 7.05 2.95S22 9.25 22 12v1.45c0 1-.35 1.85-1 2.55-.7.67-1.5 1-2.5 1-1.2 0-2.19-.5-2.94-1.5-1 1-2.18 1.5-3.56 1.5-1.37 0-2.55-.5-3.54-1.46C7.5 14.55 7 13.38 7 12c0-1.37.5-2.55 1.46-3.54C9.45 7.5 10.63 7 12 7c1.38 0 2.55.5 3.54 1.46C16.5 9.45 17 10.63 17 12v1.45c0 .41.16.77.46 1.08s.65.47 1.04.47c.42 0 .77-.16 1.07-.47s.43-.67.43-1.08V12c0-2.19-.77-4.07-2.35-5.65S14.19 4 12 4s-4.07.77-5.65 2.35S4 9.81 4 12s.77 4.07 2.35 5.65S9.81 20 12 20h5v2h-5c-2.75 0-5.1-1-7.05-2.95S2 14.75 2 12s1-5.1 2.95-7.05S9.25 2 12 2z" style="fill:#ef6c00"/></svg>
@@ -1 +0,0 @@
1
- <svg clip-rule="evenodd" fill-rule="evenodd" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" viewBox="0 0 3473 3473" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path class="fil0" d="M989.342 1977.409c41.146-26.835 75.137-93.922 54.564-141.33-56.353 24.151-53.67 79.61-54.564 141.33zm636.877 153.851c44.724-14.311 87.66-64.402 63.509-116.283-34.886 24.151-57.248 57.247-63.51 116.284z" fill="#e3e3f8"/><g fill="#fdfdfd"><path class="fil1" d="M374.827 2871.899c0 56.352 14.312 117.178 53.67 138.645 144.907 81.4 652.977 17.89 825.614-20.573 90.343-20.573 163.692-87.66 248.668-124.334 191.421-83.187 330.067-150.274 483.025-262.085 110.916-81.399 287.131-310.388 305.915-447.245l-151.169-33.991c-3.578 153.852-38.463 188.737-175.32 224.517-92.132 25.046-271.925 30.413-365.846 14.312-124.334-20.574-180.687-85.871-237.04-160.114-109.128-144.907 24.151-245.985-148.485-255.824-181.582 222.728-501.81 62.614-642.244 40.252-59.93 86.765-200.366 650.294-198.577 779.1 86.766-29.517 141.33 2.684 219.15 33.097 275.503 106.444 34.885 200.366-75.137 172.636-75.137-17.89-98.394-67.086-142.224-98.393zm360.48-1285.383c111.81 21.468 211.1 67.982 305.915 115.39 154.747 76.926 182.476 66.192 196.788 173.53 1.789 19.68-1.789 30.413 54.564 48.303 94.816 29.518-54.564-23.257 199.471-22.362 151.169.894 497.337 61.72 609.148 132.384 46.513 29.519 37.568 67.087 194.999 62.615-1.79-185.16-50.986-461.557-123.44-631.51-88.554-205.733-205.733-237.04-444.561-313.966-139.54-44.725-549.217-93.922-676.235-15.207-118.967 74.243-141.33 162.798-252.246 318.439-32.202 45.619-43.83 80.504-64.403 132.384z"/><path class="fil1" d="M1720.14 1966.675c89.45 36.674-4.472 273.714-128.806 216.466-40.252-113.6 55.458-178.003 81.398-228.99-53.67-8.05-206.627-32.2-252.246-15.206-59.036 22.363-72.454 148.486-42.041 207.522 143.118 280.87 775.523 220.94 708.436 2.684-26.835-88.555-51.88-102.867-142.224-133.28-72.454-24.15-144.907-49.196-224.517-49.196zm-1124.374-31.307c71.56 68.875 233.462 79.61 338.117 84.976 13.418-138.646 25.046-242.407 135.963-234.356 54.564 74.242 25.94 161.902-31.307 218.255 97.5-.894 153.852-74.242 139.54-180.687-82.293-59.036-331.856-177.109-457.084-194.104-34.885 37.569-120.756 243.301-125.229 305.916z"/></g><path d="M339 2838c66-6 238 44 252 100-107 13-243 3-252-100zm-59 57c49 35 75 90 159 110 123 31 392-74 84-193-87-34-148-70-245-37-2-144 155-774 222-871 157 25 515 204 718-45 193 11 44 124 166 286 63 83 126 156 265 179 105 18 306 12 409-16 153-40 192-79 196-251l169 38c-21 153-218 409-342 500-171 125-326 200-540 293-95 41-177 116-278 139-193 43-761 114-923 23-44-24-60-92-60-155zm1399-828c7-66 32-103 71-130 27 58-21 114-71 130zm105-184c89 0 170 28 251 55 101 34 129 50 159 149 75 244-632 311-792-3-34-66-19-207 47-232 51-19 222 8 282 17-29 57-136 129-91 256 139 64 244-201 144-242zm-817 12c1-69-2-131 61-158 23 53-15 128-61 158zm-440-47c5-70 101-300 140-342 140 19 419 151 511 217 16 119-47 201-156 202 64-63 96-161 35-244-124-9-137 107-152 262-117-6-298-18-378-95zm-100-80c-37-102-37-261 120-274l-80 223c-21 48-21 37-40 51zm256-310c23-58 36-97 72-148 124-174 149-273 282-356 142-88 600-33 756 17 267 86 398 121 497 351 81 190 136 499 138 706-176 5-166-37-218-70-125-79-512-147-681-148-284-1-117 58-223 25-63-20-59-32-61-54-16-120-47-108-220-194-106-53-217-105-342-129zm1770-49c-19-63 16-59 77-102 35-25 63-51 106-75 161-90 461-105 589 2 52 43 137 127 124 237-27 219-177 339-300 439-125 102-333 207-548 137-18-44-4-323-25-426-19-92-9-102 44-157 156-162 494-280 686-141 81 60 58 83 100 129 52-56-45-244-403-232-243 8-348 198-450 189zM997 840c5-139 133-427 261-527 155-120 317-233 555-98 59 33 56 50 62 132 5 79-2 108-22 172-158 510-290 217-796 338 19-166 163-314 243-391 137-133 236-219 442-191 57 95 63 155-6 266-92 148-115 139-101 240 72-18 94-88 127-158 201-420-91-471-270-394-120 51-334 287-404 429-14 28-29 64-42 95zm792 21c21-125 145-156 145-541 0-166-204-315-471-204-229 94-264 166-386 350-115 174-111 365-210 526-29 46-55 62-87 108-23 34-40 77-63 117-47 77-95 133-133 225-120 3-221 5-233 129-16 170 64 212 64 276-1 69-281 765-203 1180 22 114 97 115 217 129 289 35 664 23 923-81l470-225c119-67 319-194 408-287 63-65 96-120 150-197 74-108 76-106 92-253 98 18 281 61 342 114-7 69-41 36-41 98 39 1 104-48 120-102-41-60-84-50-143-98 47-37 132-54 197-81 140-58 379-234 438-394 47-129 12-344-64-428-80-88-266-133-418-133-181 0-368 130-514 186-56-49-60-105-101-159-47-64-353-224-499-255z" fill="#020202" style="fill:#020202" transform="translate(124.37 282.35) scale(.89449)"/><path d="M2453 1409c102 9 207-181 450-189 358-12 455 176 403 232-42-46-19-69-100-129-192-139-530-21-686 141-53 55-63 65-44 157 21 103 7 382 25 426 215 70 423-35 548-137 123-100 273-220 300-439 13-110-72-194-124-237-128-107-428-92-589-2-43 24-71 50-106 75-61 43-96 39-77 102z" fill="#fdf2f2" style="fill:#fdf2f2" transform="translate(124.37 282.35) scale(.89449)"/><path d="m997 840 49-87c13-31 28-67 42-95 70-142 284-378 404-429 179-77 471-26 270 394-33 70-55 140-127 158-14-101 9-92 101-240 69-111 63-171 6-266-206-28-305 58-442 191-80 77-224 225-243 391 506-121 638 172 796-338 20-64 27-93 22-172-6-82-3-99-62-132-238-135-400-22-555 98-128 100-256 388-261 527z" fill="#fef3f3" style="fill:#fef3f3" transform="translate(124.37 282.35) scale(.89449)"/><path d="M427 1768c19-14 19-3 40-51l80-223c-157 13-157 172-120 274z" fill="#efefef" style="fill:#efefef" transform="translate(124.37 282.35) scale(.89449)"/><path d="M591 2938c-14-56-186-106-252-100 9 103 145 113 252 100z" fill="#faf1f1" style="fill:#faf1f1" transform="translate(124.37 282.35) scale(.89449)"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.046 4.862.908 12l7.138 7.138 2.71-2.691L6.308 12l4.446-4.447z" fill="#ffca28"/><ellipse cx="14.543" cy="7.812" rx="2.101" ry="2.798" fill="none" stroke="#ffca28" stroke-width="1.455"/><path fill="#ffca28" d="m20.616 4.152 1.47.69-7.783 15.005-1.47-.69z"/><ellipse cx="20.35" cy="16.198" rx="2.101" ry="2.798" fill="none" stroke="#ffca28" stroke-width="1.455"/></svg>
@@ -1 +0,0 @@
1
- <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12.173 22.681c-3.86 0-6.99-3.64-6.99-8.13 0-3.678 2.773-8.172 4.916-10.91 1.014-1.296 2.93-2.322 2.93-2.322s-.982 5.239 1.683 7.319c2.366 1.847 4.106 4.25 4.106 6.363 0 4.232-2.784 7.68-6.645 7.68z" style="fill:#9575cd;stroke-width:1.2565"/></svg>
@@ -1 +0,0 @@
1
- <svg xml:space="preserve" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 323 323"><path fill="#f0ad00" d="m106.716 99.763 54.785 54.782 54.779-54.782z"/><path fill="#7fd13b" d="M96.881 89.93H216.83l-55.18-55.184H41.7zm131.546 11.593 59.705 59.704L228.16 221.2l-59.705-59.704z"/><path fill="#60b5cc" d="m175.552 34.746 112.703 112.695V34.746z"/><path fill="#5a6378" d="m34.746 281.3 119.8-119.8-119.8-119.8z"/><path fill="#f0ad00" d="m288.255 175.01-53.148 53.149 53.148 53.14z"/><path fill="#60b5cc" d="M281.3 288.254 161.5 168.455l-119.8 119.8z"/></svg>
@@ -1 +0,0 @@
1
- <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m20 8-8 5-8-5V6l8 5 8-5m0-2H4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2z" fill="#42a5f5"/></svg>
@@ -1 +0,0 @@
1
- <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12.78 4c1.79-.03 3.18.35 4.12 1.99 2.36 5.88-6.08 8.92-6.42 9.04h-.01s-.25 1.6 2.17 1.54c2.98 0 6.1-2.31 7.3-3.3.29-.23.71-.21.97.06l.89.93c.25.27.26.69.02.97-.77.87-2.59 2.65-5.33 3.79 0 0-4.57 2.13-7.65.12-1.83-1.2-2.34-2.64-2.55-4.13 0 0-2.23-.12-3.66-.67-1.44-.57.01-2.26.01-2.26s.44-.71 1.28 0c.83.71 2.4.39 2.4.39.14-1.11.37-2.57 1.06-4.11C8.81 5.14 11 4.04 12.78 4zm1.05 3.24c-.94-.91-3.67.91-3.78 5.09 0 0 .81.24 2.58-.98 1.79-1.23 2.13-3.19 1.19-4.11z" fill="#FF5722"/></svg>
@@ -1 +0,0 @@
1
- <svg viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"><path d="M5.207 4.33c-.047.051-.096.1-.143.153C2.688 7.145 1.5 10.76 1.5 15.33c0 4.418 1.155 7.862 3.459 10.34h19.415c2.553-1.152 4.127-3.43 4.127-3.43l-3.147-2.52L23.9 21.1c-.867.773-.845.931-2.315 1.78-1.495.674-3.04.966-4.634.966-2.515 0-4.423-.909-5.723-2.059-1.286-1.15-1.985-4.511-2.096-6.68l17.458.067-.183-1.472s-.847-7.129-2.541-9.372zm8.76.846c1.565 0 3.22.535 3.961 1.471.74.937.931 1.667.973 3.524H9.11c.112-1.955.436-2.81 1.373-3.698.936-.887 2.03-1.297 3.484-1.297z" fill="#f44336"/></svg>
@@ -1 +0,0 @@
1
- <svg xml:space="preserve" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300"><path d="m97.478 120.86 50.098-28.924a4.052 4.052 0 0 1 4.053 0l50.1 28.924a4.055 4.055 0 0 1 2.026 3.51v57.848a4.06 4.06 0 0 1-2.027 3.51l-50.099 28.924a4.052 4.052 0 0 1-4.053 0l-50.098-28.924a4.055 4.055 0 0 1-2.026-3.51V124.37a4.057 4.057 0 0 1 2.026-3.51" fill="#7986cb"/><path d="M279.863 147.21 220.005 43.077c-2.174-3.765-6.19-6.542-10.538-6.542H89.745c-4.349 0-8.366 2.777-10.54 6.542L19.347 146.983c-2.174 3.766-2.174 8.52 0 12.285L79.205 262.55c2.174 3.765 6.191 5.69 10.54 5.69h119.722c4.347 0 8.365-1.867 10.538-5.633l59.858-103.45c2.176-3.764 2.176-8.18 0-11.944m-49.565 50.075c0 1.53-.921 2.947-2.249 3.713l-76.245 43.99a4.338 4.338 0 0 1-4.314 0l-76.304-43.99c-1.326-.766-2.254-2.181-2.254-3.713v-87.981c0-1.532.914-2.947 2.241-3.714l76.243-43.99a4.33 4.33 0 0 1 4.311 0l76.31 43.99c1.327.767 2.261 2.182 2.261 3.714z" fill="#3f51b5"/></svg>
@@ -1 +0,0 @@
1
- <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M19 4a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h14m0 14V8H5v10h14z" fill="#e64a19"/></svg>
@@ -1 +0,0 @@
1
- <svg preserveAspectRatio="xMidYMid" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg"><path d="M216.43 65.967c-10.701 0-20.402 4.255-27.524 11.156l-45.162-32.339c.282-1.181.447-2.407.447-3.675 0-8.741-7.086-15.828-15.828-15.828-8.741 0-15.828 7.087-15.828 15.828 0 8.742 7.087 15.828 15.828 15.828 3.061 0 5.909-.884 8.331-2.388l55.284 40.232c4.31-8.99 13.816-15.99 24.452-15.99 14.771 0 26.746 11.974 26.746 26.745 0 11.804-7.647 21.822-18.257 25.37l3.629 12.309c15.926-5.118 27.451-20.052 27.451-37.679 0-21.853-17.715-39.569-39.569-39.569" style="fill:#0a7bff" transform="translate(15.753 20.294) scale(1.0488)"/><path d="M89.565 27.529c-3.231 10.172-2.116 20.68 2.293 29.535L47.478 90.23a15.802 15.802 0 0 0-3.359-1.534c-8.31-2.64-17.187 1.957-19.826 10.267-2.64 8.31 1.957 17.187 10.266 19.826 8.31 2.64 17.187-1.956 19.827-10.266a15.69 15.69 0 0 0 .245-8.64l54.942-40.407c-7.245-6.812-11.029-17.963-7.818-28.074 4.461-14.042 19.461-21.81 33.503-17.349 11.221 3.564 18.435 13.859 18.605 25.017l12.797.267c-.056-16.685-10.773-32.152-27.53-37.475-20.774-6.599-42.966 4.892-49.565 25.667" style="fill:#eb3d00" transform="translate(15.753 20.294) scale(1.0488)"/><path d="M16.264 134.49a39.444 39.444 0 0 0 28.644 7.258l17.508 52.324a15.55 15.55 0 0 0-2.499 2.67c-5.09 6.976-3.514 16.792 3.52 21.924 7.034 5.133 16.862 3.638 21.952-3.338 5.091-6.976 3.515-16.791-3.519-21.924a15.763 15.763 0 0 0-8.093-2.985l-21.059-64.567c-8.703 4.644-20.428 4.649-28.987-1.596-11.885-8.673-14.548-25.259-5.947-37.047 6.874-9.42 18.86-12.925 29.463-9.528l4.248-11.953c-15.795-5.267-33.766-.115-44.03 13.951-12.725 17.44-8.786 41.98 8.799 54.811" style="fill:#00bcd4" transform="translate(15.753 20.294) scale(1.0488)"/><path d="M218.85 195.98c-3.26-10.09-10.249-17.936-18.959-22.539l16.896-52.49a15.818 15.818 0 0 0 3.619-.704c8.286-2.677 12.844-11.53 10.182-19.772-2.663-8.244-11.539-12.756-19.825-10.079-8.286 2.676-12.845 11.529-10.182 19.772a15.54 15.54 0 0 0 4.801 7.124l-21.294 64.454c9.835 1.311 19.366 8.131 22.606 18.161 4.5 13.929-3.203 28.888-17.204 33.411-11.189 3.615-23.015-.528-29.61-9.447l-10.563 7.192c9.703 13.45 27.371 19.746 44.079 14.348 20.715-6.692 32.111-28.823 25.454-49.431" style="fill:#86c351" transform="translate(15.753 20.294) scale(1.0488)"/><path d="M96.273 238.32c8.584-6.281 13.87-15.388 15.533-25.105l55.212-.563a15.767 15.767 0 0 0 1.799 3.21c5.131 7.013 14.975 8.538 21.988 3.408 7.013-5.131 8.538-14.975 3.408-21.988-5.131-7.013-14.975-8.539-21.988-3.408a15.641 15.641 0 0 0-5.282 6.805l-67.966.173c1.819 9.742-1.698 20.937-10.231 27.18-11.85 8.67-28.485 6.092-37.155-5.758-6.928-9.47-6.673-21.995-.245-31.069L41.21 183.46c-9.772 13.453-10.252 32.199.093 46.34 12.827 17.533 37.438 21.347 54.97 8.52" style="fill:#9032e9" transform="translate(15.753 20.294) scale(1.0488)"/></svg>
@@ -1 +0,0 @@
1
- <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m12 17.77 6.18 3.73-1.64-7.03L22 9.74l-7.19-.62L12 2.5 9.19 9.12 2 9.74l5.45 4.73-1.63 7.03z" fill="#ffd54f"/></svg>
@@ -1 +0,0 @@
1
- <svg fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M8.818 21.61c1.757 0 3.183-1.435 3.183-3.203v-3.203H8.818c-1.755 0-3.181 1.434-3.181 3.203s1.426 3.204 3.181 3.204z" fill="#00e676"/><path d="M5.637 12c0-1.768 1.426-3.203 3.181-3.203h3.183v6.407H8.818c-1.755 0-3.181-1.435-3.181-3.204z" fill="#7c4dff"/><path d="M5.637 5.594c0-1.768 1.426-3.204 3.181-3.204h3.183v6.407H8.818c-1.755 0-3.181-1.435-3.181-3.203Z" fill="#f4511e"/><path d="M12 2.39h3.182c1.756 0 3.182 1.436 3.182 3.204s-1.426 3.203-3.182 3.203H12z" fill="#ff8a65"/><path d="M18.364 12c0 1.769-1.426 3.204-3.182 3.204S12 13.769 12 12s1.426-3.203 3.182-3.203 3.182 1.435 3.182 3.203z" fill="#29b6f6"/></svg>
@@ -1 +0,0 @@
1
- <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M13 9h5.5L13 3.5V9M6 2h8l6 6v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4c0-1.11.89-2 2-2m5 2H6v16h12v-9h-7V4z" fill="#90a4ae" /></svg>
@@ -1 +0,0 @@
1
- <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m19.389 18.237-6.742 3.74c-.462.24-.924.24-1.386 0l-6.65-3.74L16.664 6.092 16.988 6c.277 0 .434.12.461.37l1.94 11.867M9.553 6.277 5.35 13.248 7.105 2.212c.028-.25.185-.37.462-.37.185 0 .305.056.37.232l1.985 3.648-.37.554M13.71 7.44l-8.82 8.857 6.696-11.36c.092-.185.23-.268.415-.268s.305.083.37.268z" style="fill:#fbc02d;stroke-width:.9236"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" version="1.0" viewBox="0 0 24 24"><path d="M20.314 2c-2.957 0-5.341 1.104-7.122 3.252-1.427 1.752-2.354 3.93-3.164 6.034-1.663 4.283-2.781 6.741-6.342 6.741V22c2.958 0 5.342-1.03 7.122-3.194 1.133-1.383 1.957-3.135 2.634-4.827h4.665v-3.973h-3.061c1.207-2.575 2.546-3.973 5.268-3.973V2z" fill="#e53935"/></svg>
@@ -1 +0,0 @@
1
- <svg class="flow-logo" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300"><path d="m38.75 33.427 77.461 77.47H54.436l61.145 61.16H38.437l93.462 93.478v-77.158l.01-.01v-77.47h-.01V66.982h46.691l20.394 20.393H153.57v76.531h22.05l24.474 24.473h-15.806l-.01-.01v.01h-31.665l-.01-.01v.01h-.313l.313.313v77.148h109.149l-39.2-39.2v-15.806l8.465 8.466v-77.37h-15.682l.017-38.191 30.09 30.086V56.362h-64.874l-22.94-22.934H113.71z" fill="#fbc02d" fill-opacity=".976" class="flow-logo-mark"/></svg>
@@ -1 +0,0 @@
1
- <svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#e57373" style="fill:#546e7a"/><path d="m18.139 8.318-5.326 2.367v3.55c0 3.285 2.272 6.356 5.326 7.102 3.054-.746 5.326-3.817 5.326-7.101v-3.55l-5.326-2.368m0 2.367a1.775 1.775 0 0 1 1.775 1.775 1.775 1.775 0 0 1-1.775 1.776 1.775 1.775 0 0 1-1.775-1.776 1.775 1.775 0 0 1 1.775-1.775m3.036 7.101a5.734 5.734 0 0 1-3.036 2.32 5.734 5.734 0 0 1-3.036-2.32 6.016 6.016 0 0 1-.515-.905c0-.976 1.604-1.775 3.551-1.775s3.55.78 3.55 1.775c-.141.314-.313.61-.514.905z" style="fill:#cfd8dc;stroke-width:.59177"/></svg>
@@ -1 +0,0 @@
1
- <svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#e57373" fill-rule="nonzero" style="fill:#546e7a"/><path d="m18.139 8.318-5.326 2.367v3.55c0 3.285 2.272 6.356 5.326 7.102 3.054-.746 5.326-3.817 5.326-7.102v-3.55l-5.326-2.367m0 2.367a1.775 1.775 0 0 1 1.775 1.775 1.775 1.775 0 0 1-1.775 1.775 1.775 1.775 0 0 1-1.775-1.775 1.775 1.775 0 0 1 1.775-1.775m3.036 7.101a5.734 5.734 0 0 1-3.036 2.32 5.735 5.735 0 0 1-3.036-2.32 6.016 6.016 0 0 1-.515-.905c0-.977 1.604-1.776 3.551-1.776s3.55.782 3.55 1.776c-.141.313-.313.61-.514.905z" style="fill:#cfd8dc;stroke-width:.59177"/></svg>
@@ -1 +0,0 @@
1
- <svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#e57373" style="fill:#8bc34a"/><path d="M19.588 11.113h-.598v-.598h.598m-2.992.598h-.598v-.598h.598m3.31-1.101.783-.784a.307.307 0 0 0 0-.425.307.307 0 0 0-.425 0l-.885.886a3.615 3.615 0 0 0-1.586-.371c-.574 0-1.113.137-1.591.377l-.892-.892a.3.3 0 0 0-.419 0 .296.296 0 0 0 0 .425l.784.784a3.58 3.58 0 0 0-1.472 2.896h7.18a3.61 3.61 0 0 0-1.478-2.896m2.974 3.494a.897.897 0 0 0-.898.897v4.189a.897.897 0 0 0 .898.897.897.897 0 0 0 .897-.897v-4.189a.897.897 0 0 0-.897-.897m-10.172 0a.897.897 0 0 0-.898.897v4.189a.897.897 0 0 0 .898.897.897.897 0 0 0 .897-.897v-4.189a.897.897 0 0 0-.897-.897m1.496 5.983a.598.598 0 0 0 .598.598h.598v2.094a.897.897 0 0 0 .898.898.897.897 0 0 0 .897-.898V19.49h1.197v2.094a.897.897 0 0 0 .897.898.897.897 0 0 0 .898-.898V19.49h.598a.598.598 0 0 0 .598-.598v-5.983h-7.18z" style="fill:#dcedc8;stroke-width:.59831"/></svg>
@@ -1 +0,0 @@
1
- <svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#e57373" fill-rule="nonzero" style="fill:#8bc34a"/><path d="M19.589 11.113h-.598v-.598h.598m-2.992.598H16v-.598h.598m3.31-1.101.783-.784a.307.307 0 0 0 0-.425.307.307 0 0 0-.425 0l-.885.886a3.615 3.615 0 0 0-1.586-.371c-.574 0-1.113.137-1.591.377l-.892-.892a.3.3 0 0 0-.419 0 .296.296 0 0 0 0 .425l.784.784a3.58 3.58 0 0 0-1.472 2.896h7.18a3.61 3.61 0 0 0-1.478-2.896m2.974 3.494a.897.897 0 0 0-.898.897v4.189a.897.897 0 0 0 .898.897.897.897 0 0 0 .897-.897v-4.189a.897.897 0 0 0-.897-.897m-10.172 0a.897.897 0 0 0-.898.897v4.189a.897.897 0 0 0 .898.897.897.897 0 0 0 .897-.897v-4.189a.897.897 0 0 0-.897-.897m1.496 5.983a.598.598 0 0 0 .598.598h.598v2.094a.897.897 0 0 0 .898.898.897.897 0 0 0 .897-.898V19.49h1.197v2.094a.897.897 0 0 0 .897.898.897.897 0 0 0 .898-.898V19.49h.598a.598.598 0 0 0 .598-.598v-5.983h-7.18z" style="fill:#dcedc8;stroke-width:.59831"/></svg>
@@ -1 +0,0 @@
1
- <svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#ff5252"/><path d="m18.034 9.132 5.692 2.028-.863 7.534-4.829 2.672-4.83-2.672-.862-7.534 5.692-2.028m0 1.352-3.56 7.984H15.8l.714-1.79h3.027l.714 1.79h1.32l-3.541-7.984m1.043 5.087h-2.08l1.037-2.492z" fill="#ffcdd2"/></svg>
@@ -1 +0,0 @@
1
- <svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#ff5252" fill-rule="nonzero"/><path d="m18.034 9.132 5.692 2.028-.863 7.534-4.829 2.672-4.83-2.672-.862-7.534 5.692-2.028m0 1.352-3.56 7.984H15.8l.714-1.79h3.027l.714 1.79h1.32l-3.541-7.984m1.043 5.087h-2.08l1.037-2.492z" fill="#ffcdd2"/></svg>
@@ -1 +0,0 @@
1
- <svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#e57373" style="fill:#ec407a"/><path d="M21.944 12.474a4.868 4.868 0 0 1 0 6.885 4.878 4.878 0 0 1-4.918 1.2c-.959.3-1.992.3-2.95 0a4.878 4.878 0 0 1-4.919-1.2 4.868 4.868 0 0 1 0-6.885 4.878 4.878 0 0 1 4.918-1.2 4.95 4.95 0 0 1 2.951 0 4.878 4.878 0 0 1 4.918 1.2m-9.836 6.885a4.868 4.868 0 0 1 0-6.885 3.452 3.452 0 0 0-1.967.984 3.478 3.478 0 0 0 0 4.917c.556.556 1.244.88 1.967.984m2.951 0a4.868 4.868 0 0 1 0-6.885 3.452 3.452 0 0 0-1.967.984 3.478 3.478 0 0 0 0 4.918c.556.555 1.244.88 1.967.983m5.901-5.901a3.452 3.452 0 0 0-1.967-.984 4.868 4.868 0 0 1 0 6.885 3.452 3.452 0 0 0 1.967-.983 3.478 3.478 0 0 0 0-4.918m-4.917 0a3.478 3.478 0 0 0 0 4.918c.295.295.624.526.983.688a3.33 3.33 0 0 0 .984-.688 3.478 3.478 0 0 0 0-4.918 3.33 3.33 0 0 0-.984-.689 3.33 3.33 0 0 0-.983.689z" style="fill:#f8bbd0;stroke-width:.69549"/></svg>
@@ -1 +0,0 @@
1
- <svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#e57373" fill-rule="nonzero" style="fill:#ec407a"/><g style="fill:#f8bbd0"><path d="M16.648 10.292a3.436 3.436 0 0 1 0 4.859 3.443 3.443 0 0 1-3.47.847 3.493 3.493 0 0 1-2.083 0 3.443 3.443 0 0 1-3.47-.847 3.436 3.436 0 0 1 0-4.859 3.443 3.443 0 0 1 3.47-.847 3.493 3.493 0 0 1 2.082 0 3.443 3.443 0 0 1 3.471.847m-6.941 4.859a3.436 3.436 0 0 1 0-4.859c-.51.073-.996.302-1.389.694a2.454 2.454 0 0 0 0 3.47c.392.393.878.622 1.389.695m2.082 0a3.436 3.436 0 0 1 0-4.859c-.51.073-.996.302-1.388.694a2.454 2.454 0 0 0 0 3.47c.392.393.878.622 1.388.695m4.165-4.165a2.436 2.436 0 0 0-1.388-.694 3.436 3.436 0 0 1 0 4.859c.51-.073.996-.302 1.388-.694a2.454 2.454 0 0 0 0-3.47m-3.47 0a2.454 2.454 0 0 0 0 3.47c.207.208.44.371.693.486a2.35 2.35 0 0 0 .694-.486 2.454 2.454 0 0 0 0-3.47 2.35 2.35 0 0 0-.694-.487 2.35 2.35 0 0 0-.694.486z" style="fill:#f8bbd0;stroke-width:.49083" transform="translate(-1.646 -2.11) scale(1.417)"/></g></svg>
@@ -1 +0,0 @@
1
- <svg style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.4142" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4c-1.111 0-2-.9-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.011 1.5-1.93 1.5z" style="fill:#616161"/><path d="M259.79 152.92c0 58.585-48.208 106.79-106.79 106.79S46.21 211.502 46.21 152.92 94.418 46.13 153 46.13h.006c58.581 0 106.79 48.206 106.79 106.79v.006" style="fill-rule:nonzero;fill:#848992" transform="translate(8.788 6.594) scale(.05784)"/><path d="m154.8 112.89 27.639 68.209-41.746-32.881L154.8 112.89zm49.096 83.922-42.51-102.3a6.87 6.87 0 0 0-6.586-4.513 7.1 7.1 0 0 0-6.765 4.513l-46.657 112.21h15.961l18.468-46.268 55.117 44.53c2.219 1.794 3.816 2.605 5.897 2.605l.179.002c4.182 0 7.624-3.442 7.624-7.625v-.006a10.103 10.103 0 0 0-.728-3.149" style="fill-rule:nonzero;fill:#fff" transform="translate(8.788 6.594) scale(.05784)"/></svg>
@@ -1 +0,0 @@
1
- <svg style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.4142" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" style="fill-rule:nonzero;fill:#616161"/><path d="M259.79 152.92c0 58.585-48.208 106.79-106.79 106.79S46.21 211.502 46.21 152.92 94.418 46.13 153 46.13h.006c58.581 0 106.79 48.206 106.79 106.79v.006" style="fill-rule:nonzero;fill:#848992" transform="translate(8.788 6.594) scale(.05784)"/><path d="m154.8 112.89 27.639 68.209-41.746-32.881L154.8 112.89zm49.096 83.922-42.51-102.3a6.87 6.87 0 0 0-6.586-4.513 7.1 7.1 0 0 0-6.765 4.513l-46.657 112.21h15.961l18.468-46.268 55.117 44.53c2.219 1.794 3.816 2.605 5.897 2.605l.179.002c4.182 0 7.624-3.442 7.624-7.625v-.006a10.103 10.103 0 0 0-.728-3.149" style="fill-rule:nonzero;fill:#fff" transform="translate(8.788 6.594) scale(.05784)"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24"><path fill="#FBC02D" d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z"/><path fill="#FFFDE7" d="M11.915 19.79h2.465v2.464h1.642v-4.107h-4.107zm2.465-6.571h-2.465v1.642h4.107v-4.107H14.38zm4.928 9.035h1.643V19.79h2.464v-1.643h-4.107zm1.643-9.035v-2.465h-1.643v4.107h4.107V13.22z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24"><path fill="#FBC02D" d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill-rule="nonzero"/><path fill="#FFFDE7" d="M11.915 19.79h2.465v2.464h1.642v-4.107h-4.107zm2.465-6.571h-2.465v1.642h4.107v-4.107H14.38zm4.928 9.035h1.643V19.79h2.464v-1.643h-4.107zm1.643-9.035v-2.465h-1.643v4.107h4.107V13.22z"/></svg>
@@ -1 +0,0 @@
1
- <svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#7e57c2"/><path d="M17.265 8.493a6.433 6.433 0 1 0 6.197 4.698h-.002a.321.321 0 0 0-.015-.057c-.002-.007-.009-.02-.009-.02a.321.321 0 0 0-.29-.186.322.322 0 0 0-.323.321c0 .036.007.07.018.103l-.001.001a5.813 5.813 0 0 1 .214 1.573 5.752 5.752 0 0 1-1.695 4.094 5.752 5.752 0 0 1-4.094 1.695 5.752 5.752 0 0 1-4.095-1.695 5.753 5.753 0 0 1-1.696-4.094c0-1.546.603-3.001 1.696-4.094a5.752 5.752 0 0 1 4.095-1.695c1.38 0 2.687.48 3.73 1.361a.786.786 0 0 0-.054.288.786.786 0 1 0 .517-.738 6.408 6.408 0 0 0-4.193-1.555zm-.813 2.999-2.37 6.15h1.486l.387-1.042h2.239l-.405-1.153h-1.475l.96-2.645 1.705 4.84h1.484l-2.37-6.15z" fill="#d1c4e9"/></svg>
@@ -1 +0,0 @@
1
- <svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#7e57c2" fill-rule="nonzero"/><path d="M17.265 8.493a6.433 6.433 0 1 0 6.197 4.698h-.002a.321.321 0 0 0-.015-.057c-.002-.007-.009-.02-.009-.02a.321.321 0 0 0-.29-.186.322.322 0 0 0-.323.32.32.32 0 0 0 .018.104l-.001.001a5.813 5.813 0 0 1 .214 1.573 5.752 5.752 0 0 1-1.695 4.094 5.752 5.752 0 0 1-4.094 1.695 5.752 5.752 0 0 1-4.095-1.695 5.753 5.753 0 0 1-1.696-4.094c0-1.547.603-3.001 1.696-4.095a5.751 5.751 0 0 1 4.095-1.695c1.38 0 2.687.48 3.73 1.362a.786.786 0 0 0-.054.288.786.786 0 1 0 .517-.739 6.408 6.408 0 0 0-4.193-1.554zm-.813 2.999-2.37 6.15h1.486l.387-1.042h2.239l-.405-1.153h-1.475l.96-2.645 1.705 4.84h1.484l-2.37-6.15z" fill="#d1c4e9"/></svg>
@@ -1 +0,0 @@
1
- <svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#FFB300" style="fill:#ef5350"/><path d="M11.375 11.618h3.081V8.537h-3.081zm4.622 9.244h3.081V17.78h-3.081zm-4.622 0h3.081V17.78h-3.081zm0-4.622h3.081v-3.081h-3.081zm4.622 0h3.081v-3.081h-3.081zm4.622-7.703v3.081h3.08V8.537zm-4.622 3.081h3.081V8.537h-3.081zm4.622 4.622h3.08v-3.081h-3.08zm0 4.622h3.08V17.78h-3.08z" style="fill:#ffcdd2;stroke-width:.94806"/></svg>
@@ -1 +0,0 @@
1
- <svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#FFB300" fill-rule="nonzero" style="fill:#ef5350"/><path d="M11.375 11.618h3.081V8.537h-3.081zm4.622 9.244h3.081V17.78h-3.081zm-4.622 0h3.081V17.78h-3.081zm0-4.622h3.081v-3.081h-3.081zm4.622 0h3.081v-3.081h-3.081zm4.622-7.703v3.081H23.7V8.537zm-4.622 3.081h3.081V8.537h-3.081zm4.622 4.622H23.7v-3.081h-3.081zm0 4.622H23.7V17.78h-3.081z" style="fill:#ffcdd2;stroke-width:.94808"/></svg>
@@ -1 +0,0 @@
1
- <svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#0097a7" style="fill:#8d6e63"/><path d="M17.651 19.894a4.761 4.761 0 0 0 4.761-4.761 4.761 4.761 0 0 0-4.761-4.761 4.761 4.761 0 0 0-4.761 4.76 4.761 4.761 0 0 0 4.761 4.762m0-10.713a5.952 5.952 0 0 1 5.952 5.952 5.952 5.952 0 0 1-5.952 5.951 5.957 5.957 0 0 1-5.952-5.952 5.952 5.952 0 0 1 5.952-5.951m.298 2.976v3.124l2.678 1.59-.447.731-3.124-1.874v-3.571z" style="fill:#d7ccc8;stroke-miterlimit:4;stroke-width:.271;stroke:#d7ccc8"/></svg>
@@ -1 +0,0 @@
1
- <svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#0097a7" fill-rule="nonzero" style="fill:#8d6e63"/><path d="M17.651 19.894a4.761 4.761 0 0 0 4.761-4.761 4.761 4.761 0 0 0-4.761-4.761 4.761 4.761 0 0 0-4.761 4.76 4.761 4.761 0 0 0 4.761 4.762m0-10.713a5.952 5.952 0 0 1 5.952 5.952 5.952 5.952 0 0 1-5.952 5.951 5.957 5.957 0 0 1-5.952-5.952 5.952 5.952 0 0 1 5.952-5.951m.298 2.976v3.124l2.678 1.59-.447.731-3.124-1.874v-3.571z" fill="#b2ebf2" stroke="#b2ebf2" stroke-miterlimit="4" stroke-width=".271" style="fill:#d7ccc8;stroke:#d7ccc8"/></svg>
@@ -1 +0,0 @@
1
- <svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#ef5350"/><path d="M19.946 13.16v-1.329h-2.658v3.654a1.663 1.663 0 0 0-.996-.332 1.661 1.661 0 0 0-1.661 1.661 1.661 1.661 0 0 0 1.66 1.661 1.661 1.661 0 0 0 1.662-1.66V13.16h1.993m-2.658-4.65a6.644 6.644 0 0 1 6.644 6.643 6.644 6.644 0 0 1-6.644 6.644 6.644 6.644 0 0 1-6.644-6.644 6.644 6.644 0 0 1 6.644-6.644z" fill="#ffcdd2"/></svg>
@@ -1 +0,0 @@
1
- <svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#ef5350" fill-rule="nonzero"/><path d="M19.946 13.159V11.83h-2.658v3.654a1.663 1.663 0 0 0-.996-.332 1.661 1.661 0 0 0-1.661 1.661 1.661 1.661 0 0 0 1.66 1.661 1.661 1.661 0 0 0 1.662-1.66v-3.655h1.993m-2.658-4.65a6.644 6.644 0 0 1 6.644 6.643 6.644 6.644 0 0 1-6.644 6.644 6.644 6.644 0 0 1-6.644-6.644 6.644 6.644 0 0 1 6.644-6.644z" fill="#ffcdd2"/></svg>
@@ -1 +0,0 @@
1
- <svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs><linearGradient id="i" x1="-31.824" x2="19.682" y1="-11.741" y2="35.548" gradientTransform="scale(.95818 1.0436)" gradientUnits="userSpaceOnUse" xlink:href="#a"/><linearGradient id="a" x1="-3.881" x2="2.377" y1="-1.442" y2="4.304"><stop stop-color="#C06FBB" offset="0"/><stop stop-color="#6E4D9B" offset="1"/></linearGradient><linearGradient id="j" x1="12.022" x2="-15.716" y1="13.922" y2="-23.952" gradientTransform="scale(.96226 1.0392)" gradientUnits="userSpaceOnUse" xlink:href="#b"/><linearGradient id="b" x1=".729" x2="-.971" y1=".844" y2="-1.477"><stop stop-color="#6E4D9B" offset="0"/><stop stop-color="#77327A" offset=".14"/><stop stop-color="#B31777" offset=".29"/><stop stop-color="#CD0F7E" offset=".84"/><stop stop-color="#ED2C89" offset="1"/></linearGradient><linearGradient id="k" x1="-23.39" x2="23.931" y1="-57.289" y2="8.573" gradientTransform="scale(1.0429 .95884)" gradientUnits="userSpaceOnUse" xlink:href="#c"/><linearGradient id="c" x1="-2.839" x2="2.875" y1="-6.936" y2="1.017"><stop stop-color="#C06FBB" offset="0"/><stop stop-color="#6E4D9B" offset="1"/></linearGradient><linearGradient id="l" x1="-53.331" x2="6.771" y1="-30.517" y2="18.785" gradientTransform="scale(.99898 1.001)" gradientUnits="userSpaceOnUse" xlink:href="#d"/><linearGradient id="d" x1="-8.212" x2="1.02" y1="-4.691" y2="2.882"><stop stop-color="#C06FBB" offset="0"/><stop stop-color="#6E4D9B" offset="1"/></linearGradient><linearGradient id="m" x1="-14.029" x2="41.998" y1="-23.111" y2="26.259" gradientTransform="scale(1.0003 .99965)" gradientUnits="userSpaceOnUse" xlink:href="#e"/><linearGradient id="e" x1="-1.404" x2="4.19" y1="-2.309" y2="2.62"><stop stop-color="#C06FBB" offset="0"/><stop stop-color="#6E4D9B" offset="1"/></linearGradient><linearGradient id="n" x1="31.177" x2="3.37" y1="41.442" y2="3.402" gradientTransform="scale(.96254 1.0389)" gradientUnits="userSpaceOnUse" xlink:href="#f"/><linearGradient id="f" x1="1.911" x2=".204" y1="2.539" y2=".204"><stop stop-color="#6E4D9B" offset="0"/><stop stop-color="#77327A" offset=".14"/><stop stop-color="#B31777" offset=".29"/><stop stop-color="#CD0F7E" offset=".84"/><stop stop-color="#ED2C89" offset="1"/></linearGradient><linearGradient id="o" x1="-31.905" x2="19.599" y1="-14.258" y2="42.767" gradientTransform="scale(.95823 1.0436)" gradientUnits="userSpaceOnUse" xlink:href="#g"/><linearGradient id="g" x1="-3.881" x2="2.377" y1="-1.738" y2="5.19"><stop stop-color="#C06FBB" offset="0"/><stop stop-color="#6E4D9B" offset="1"/></linearGradient><linearGradient id="p" x1="4.301" x2="34.534" y1="34.41" y2="4.514" gradientTransform="scale(1.002 .99796)" gradientUnits="userSpaceOnUse" xlink:href="#h"/><linearGradient id="h" x1=".112" x2=".901" y1=".897" y2=".116"><stop stop-color="#6E4D9B" offset="0"/><stop stop-color="#77327A" offset=".14"/><stop stop-color="#B31777" offset=".53"/><stop stop-color="#CD0F7E" offset=".79"/><stop stop-color="#ED2C89" offset="1"/></linearGradient></defs><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#f06292" fill-rule="nonzero"/><g fill="none"><path d="M8.002 6.127 4.117 8.719.116 2.723 4 .13z" transform="translate(16.57 9.132) scale(.31633)" fill="url(#i)"/><path d="m9.179 1.887 6.637 9.946-7.906 5.276-6.637-9.946L.115 5.43 8.02.153z" transform="translate(17.197 16.172) scale(.31633)" fill="url(#j)"/><path d="m7.3 1.88 1.462 2.189-6.018 4.015L.124 4.16l1.315-.877L6.143.144z" transform="translate(14.642 18.276) scale(.31633)" fill="url(#k)"/><path d="M2.328 1.146 4.016.02l2.619 3.925L2.75 6.537l-1.46-2.19 2.197-1.466zm-1.04 3.201L.132 2.612l2.197-1.466 1.158 1.735z" transform="translate(20.405 14.919) scale(.31633)" fill="url(#l)"/><path d="m5.346 9.155-1.315.877L.03 4.035 6.047.019l2.805 4.204L4.15 7.36l4.703-3.138 1.197 1.793z" transform="translate(10.833 12.564) scale(.31633)" fill="url(#m)"/><path d="m14.533 9.934 1.197 1.793-7.907 5.276-1.196-1.793L.052 5.358 7.958.082z" transform="translate(12.186 8.655) scale(.31633)" fill="url(#n)"/><path d="M6.235 7.177 4.038 8.643 2.84 6.849.036 2.646 3.92.053 7.923 6.05z" transform="translate(16.596 9.156) scale(.31633)" fill="url(#o)"/><path d="m15.463 19.864-.366-.549 1.488-.993.366.549z" fill="#714896"/><path d="m20.812 16.294-.366-.548.695-.464.366.549z" fill="#6f4795"/><path d="m12.524 15.46-.379-.567 1.488-.993.379.567z" fill="#88519f"/><path d="m17.873 11.89-.378-.567.695-.464.378.567z" fill="#85509e"/><path d="m20.1 16.769-2.5 1.669-.366-.549 2.5-1.669z" fill="#8d166a"/><path d="m16.783 11.797.379.568-2.501 1.669-.379-.568z" fill="#a70d6f"/><path d="m11.815 11.344.472.707-.708.472-.472-.707z" fill="#9e61ad"/><path d="m14.364 19.824.472.708-.707.472-.472-.708z" fill="#8053a3"/><path d="M8.372 38.294.017 29.876 29.749.08l8.636 8.201z" transform="matrix(.31022 .0619 -.0619 .31022 12.276 8.139)" fill="url(#p)"/></g></svg>
@@ -1 +0,0 @@
1
- <svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs><linearGradient id="a" x1="-388.15%" x2="237.68%" y1="-144.18%" y2="430.41%"><stop stop-color="#C06FBB" offset="0"/><stop stop-color="#6E4D9B" offset="1"/></linearGradient><linearGradient id="b" x1="72.945%" x2="-97.052%" y1="84.424%" y2="-147.7%"><stop stop-color="#6E4D9B" offset="0"/><stop stop-color="#77327A" offset=".14"/><stop stop-color="#B31777" offset=".29"/><stop stop-color="#CD0F7E" offset=".84"/><stop stop-color="#ED2C89" offset="1"/></linearGradient><linearGradient id="c" x1="-283.88%" x2="287.54%" y1="-693.6%" y2="101.71%"><stop stop-color="#C06FBB" offset="0"/><stop stop-color="#6E4D9B" offset="1"/></linearGradient><linearGradient id="d" x1="-821.19%" x2="101.99%" y1="-469.05%" y2="288.24%"><stop stop-color="#C06FBB" offset="0"/><stop stop-color="#6E4D9B" offset="1"/></linearGradient><linearGradient id="e" x1="-140.36%" x2="419.01%" y1="-230.93%" y2="261.98%"><stop stop-color="#C06FBB" offset="0"/><stop stop-color="#6E4D9B" offset="1"/></linearGradient><linearGradient id="f" x1="191.08%" x2="20.358%" y1="253.95%" y2="20.403%"><stop stop-color="#6E4D9B" offset="0"/><stop stop-color="#77327A" offset=".14"/><stop stop-color="#B31777" offset=".29"/><stop stop-color="#CD0F7E" offset=".84"/><stop stop-color="#ED2C89" offset="1"/></linearGradient><linearGradient id="g" x1="-388.09%" x2="237.67%" y1="-173.85%" y2="518.99%"><stop stop-color="#C06FBB" offset="0"/><stop stop-color="#6E4D9B" offset="1"/></linearGradient><linearGradient id="i" x1="-31.824" x2="19.682" y1="-11.741" y2="35.548" gradientTransform="scale(.95818 1.0436)" gradientUnits="userSpaceOnUse" xlink:href="#a"/><linearGradient id="j" x1="12.022" x2="-15.716" y1="13.922" y2="-23.952" gradientTransform="scale(.96226 1.0392)" gradientUnits="userSpaceOnUse" xlink:href="#b"/><linearGradient id="k" x1="-23.39" x2="23.931" y1="-57.289" y2="8.573" gradientTransform="scale(1.0429 .95884)" gradientUnits="userSpaceOnUse" xlink:href="#c"/><linearGradient id="l" x1="-53.331" x2="6.771" y1="-30.517" y2="18.785" gradientTransform="scale(.99898 1.001)" gradientUnits="userSpaceOnUse" xlink:href="#d"/><linearGradient id="m" x1="-14.029" x2="41.998" y1="-23.111" y2="26.259" gradientTransform="scale(1.0003 .99965)" gradientUnits="userSpaceOnUse" xlink:href="#e"/><linearGradient id="n" x1="31.177" x2="3.37" y1="41.442" y2="3.402" gradientTransform="scale(.96254 1.0389)" gradientUnits="userSpaceOnUse" xlink:href="#f"/><linearGradient id="o" x1="-31.905" x2="19.599" y1="-14.258" y2="42.767" gradientTransform="scale(.95823 1.0436)" gradientUnits="userSpaceOnUse" xlink:href="#g"/><linearGradient id="p" x1="4.301" x2="34.534" y1="34.41" y2="4.514" gradientTransform="scale(1.002 .99796)" gradientUnits="userSpaceOnUse" xlink:href="#h"/><linearGradient id="h" x1=".112" x2=".901" y1=".897" y2=".116"><stop stop-color="#6E4D9B" offset="0"/><stop stop-color="#77327A" offset=".14"/><stop stop-color="#B31777" offset=".53"/><stop stop-color="#CD0F7E" offset=".79"/><stop stop-color="#ED2C89" offset="1"/></linearGradient></defs><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#f06292" fill-rule="nonzero"/><g fill="none"><path d="M8.002 6.127 4.117 8.719.116 2.723 4 .13z" transform="translate(16.57 9.132) scale(.31633)" fill="url(#i)"/><path d="m9.179 1.887 6.637 9.946-7.906 5.276-6.637-9.946L.115 5.43 8.02.153z" transform="translate(17.197 16.172) scale(.31633)" fill="url(#j)"/><path d="m7.3 1.88 1.462 2.189-6.018 4.015L.124 4.16l1.315-.877L6.143.144z" transform="translate(14.642 18.276) scale(.31633)" fill="url(#k)"/><path d="M2.328 1.146 4.016.02l2.619 3.925L2.75 6.537l-1.46-2.19 2.197-1.466zm-1.04 3.201L.132 2.612l2.197-1.466 1.158 1.735z" transform="translate(20.405 14.919) scale(.31633)" fill="url(#l)"/><path d="m5.346 9.155-1.315.877L.03 4.035 6.047.019l2.805 4.204L4.15 7.36l4.703-3.138 1.197 1.793z" transform="translate(10.833 12.564) scale(.31633)" fill="url(#m)"/><path d="m14.533 9.934 1.197 1.793-7.907 5.276-1.196-1.793L.052 5.358 7.958.082z" transform="translate(12.186 8.655) scale(.31633)" fill="url(#n)"/><path d="M6.235 7.177 4.038 8.643 2.84 6.849.036 2.646 3.92.053 7.923 6.05z" transform="translate(16.596 9.156) scale(.31633)" fill="url(#o)"/><path d="m15.463 19.864-.366-.549 1.488-.993.366.549z" fill="#714896"/><path d="m20.812 16.294-.366-.548.695-.464.366.549z" fill="#6f4795"/><path d="m12.524 15.46-.379-.567 1.488-.993.379.567z" fill="#88519f"/><path d="m17.873 11.89-.378-.567.695-.464.378.567z" fill="#85509e"/><path d="m20.1 16.769-2.5 1.669-.366-.549 2.5-1.669z" fill="#8d166a"/><path d="m16.783 11.797.379.568-2.501 1.669-.379-.568z" fill="#a70d6f"/><path d="m11.815 11.344.472.707-.708.472-.472-.707z" fill="#9e61ad"/><path d="m14.364 19.824.472.708-.707.472-.472-.708z" fill="#8053a3"/><path d="M8.372 38.294.017 29.876 29.749.08l8.636 8.201z" transform="matrix(.31022 .0619 -.0619 .31022 12.276 8.139)" fill="url(#p)"/></g></svg>
@@ -1 +0,0 @@
1
- <svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#ffb300"/><path d="M20.911 14.422a4.939 4.939 0 0 0-4.846-3.976 4.949 4.949 0 0 0-4.385 2.657 3.959 3.959 0 0 0-3.527 3.937 3.956 3.956 0 0 0 3.956 3.956h8.571a3.297 3.297 0 0 0 3.297-3.297c0-1.74-1.352-3.152-3.066-3.277z" fill="#ffecb3"/></svg>
@@ -1 +0,0 @@
1
- <svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#ffb300" fill-rule="nonzero"/><path d="M20.911 14.422a4.939 4.939 0 0 0-4.846-3.976 4.949 4.949 0 0 0-4.385 2.657 3.959 3.959 0 0 0-3.527 3.937 3.956 3.956 0 0 0 3.956 3.956h8.571a3.297 3.297 0 0 0 3.297-3.297c0-1.74-1.352-3.152-3.066-3.277z" fill="#ffecb3"/></svg>
@@ -1 +0,0 @@
1
- <svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#1e88e5"/><path d="M18.432 9.019a.988.988 0 0 0-.822.44l-1.689 2.528h-3.954a.494.494 0 0 0-.494.495v2.72l1.731 1.783.597-.639.742.742-.603.604.73.731.605-.604.747.748-.592.592 1.731 1.731h2.72a.494.494 0 0 0 .495-.494V16.44l2.528-1.687a.99.99 0 0 0 .44-.823V9.514a.494.494 0 0 0-.495-.495zm1.944 1.484a1.483 1.483 0 0 1 1.05 2.533 1.485 1.485 0 0 1-1.627.318 1.485 1.485 0 0 1-.79-.789 1.472 1.472 0 0 1-.086-.278v-.001a1.486 1.486 0 0 1 1.453-1.783zm-8.903 7.42v2.968h2.968V20h-2.078v-2.078z" fill="#bbdefb"/></svg>
@@ -1 +0,0 @@
1
- <svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#1e88e5" fill-rule="nonzero"/><path d="M18.432 9.02a.988.988 0 0 0-.822.44l-1.689 2.528h-3.954a.494.494 0 0 0-.494.494v2.72l1.731 1.784.597-.64.742.743-.603.603.73.732.605-.604.747.747-.592.593 1.731 1.731h2.72a.494.494 0 0 0 .495-.495v-3.954l2.528-1.688a.99.99 0 0 0 .44-.823V9.514a.494.494 0 0 0-.495-.495zm1.944 1.483a1.483 1.483 0 0 1 1.05 2.534 1.485 1.485 0 0 1-1.627.318 1.485 1.485 0 0 1-.79-.79 1.486 1.486 0 0 1 1.367-2.061zm-8.903 7.42v2.968h2.968v-.89h-2.078v-2.078z" fill="#bbdefb"/></svg>
@@ -1 +0,0 @@
1
- <svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#e57373" style="fill:#8d6e63"/><rect x="10.85" y="16.915" width="12.877" height="3.836" ry=".844" style="fill:#d7ccc8;paint-order:fill markers stroke;stroke-width:0"/></svg>
@@ -1 +0,0 @@
1
- <svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#e57373" fill-rule="nonzero" style="fill:#8d6e63"/><rect x="10.85" y="16.915" width="12.877" height="3.836" ry=".844" style="fill:#d7ccc8;paint-order:fill markers stroke;stroke-width:0"/></svg>
@@ -1 +0,0 @@
1
- <svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#424242" style="fill:#616161"/><path d="M11.83 14.525h8.4v1.4h-8.4zm0-2.8h8.4v1.4h-8.4zm0 5.6h5.6v1.4h-5.6zm7 0v4.2l3.5-2.1z" fill="#9E9E9E" style="fill:#bdbdbd"/></svg>
@@ -1 +0,0 @@
1
- <svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#424242" fill-rule="nonzero" style="fill:#616161"/><path d="M11.83 14.525h8.4v1.4h-8.4zm0-2.8h8.4v1.4h-8.4zm0 5.6h5.6v1.4h-5.6zm7 0v4.2l3.5-2.1z" fill="#9E9E9E" style="fill:#bdbdbd"/></svg>
@@ -1 +0,0 @@
1
- <svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#e57373" style="fill:#1e88e5"/><path d="M16.364 17.621a2.08 2.08 0 0 1-2.08-2.08c0-.777.423-1.456 1.04-1.81l6.733-3.897-3.835 6.643a2.084 2.084 0 0 1-1.858 1.144m0-9.014a7.06 7.06 0 0 1 3.446.915l-1.456.839a5.545 5.545 0 0 0-1.99-.367 5.547 5.547 0 0 0-5.547 5.547 5.5 5.5 0 0 0 1.622 3.918h.007c.27.27.27.707 0 .977s-.714.27-.984.007a6.912 6.912 0 0 1-2.032-4.902 6.934 6.934 0 0 1 6.934-6.934m6.934 6.934a6.912 6.912 0 0 1-2.032 4.902.697.697 0 0 1-.977-.007.69.69 0 0 1 0-.977 5.512 5.512 0 0 0 1.622-3.918c0-.694-.131-1.387-.374-2.011l.839-1.456c.575 1.04.922 2.205.922 3.467z" style="fill:#bbdefb;stroke-width:.69341"/></svg>
@@ -1 +0,0 @@
1
- <svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#e57373" fill-rule="nonzero" style="fill:#1e88e5"/><path d="M16.364 17.621a2.08 2.08 0 0 1-2.08-2.08c0-.777.423-1.456 1.04-1.81l6.733-3.897-3.835 6.643a2.084 2.084 0 0 1-1.858 1.144m0-9.014a7.06 7.06 0 0 1 3.446.915l-1.456.839a5.545 5.545 0 0 0-1.99-.367 5.547 5.547 0 0 0-5.547 5.547 5.5 5.5 0 0 0 1.622 3.918h.007c.27.27.27.707 0 .977s-.714.27-.984.007a6.912 6.912 0 0 1-2.032-4.902 6.934 6.934 0 0 1 6.934-6.934m6.934 6.934a6.912 6.912 0 0 1-2.032 4.902.697.697 0 0 1-.977-.007.69.69 0 0 1 0-.977 5.512 5.512 0 0 0 1.622-3.918c0-.694-.131-1.387-.374-2.011l.839-1.456c.575 1.04.922 2.205.922 3.467z" style="fill:#bbdefb;stroke-width:.69341"/></svg>
@@ -1 +0,0 @@
1
- <svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#8d6e63"/><path d="M23.64 15.288c-.77-.74-4.62-1.202-5.834-1.336.059-.139.109-.283.15-.43a4.86 4.86 0 0 1 .53-.197c.022.067.128.321.188.442 2.442.067 2.568-1.815 2.667-2.33.097-.505.092-.992.93-1.882-1.248-.364-3.043.563-3.644 1.943a3.75 3.75 0 0 0-.676-.185c-.16-.648-.996-2.451-3.189-2.451-2.776 0-5.802 2.29-5.802 6.167 0 3.26 2.225 6.116 3.482 6.116.55 0 1.021-.411 1.132-.78.093.253.378 1.038.472 1.238.139.296.779.552 1.059.245.36.2 1.021.32 1.382-.213.693.147 1.307-.267 1.32-.76.34-.019.508-.497.433-.878-.054-.28-.64-1.286-.868-1.633.452.368 1.597.472 1.736 0 .729.572 1.865.272 1.955-.193.885.23 1.901-.275 1.734-.887 1.423-.099 1.24-1.613.842-1.996z" fill="#543729"/><path d="M19.678 12.06c.306-.609.691-1.272 1.177-1.683-.535.216-1.063.86-1.376 1.55a4.82 4.82 0 0 0-.484-.27c.436-.931 1.449-1.708 2.565-1.769-.748.678-.482 2.087-1.097 2.834a8.052 8.052 0 0 0-.785-.663zm-.484.99c0-.024.01-.203.026-.285a2.585 2.585 0 0 0-.449-.06c-.01.175.074.472.156.65.568-.011.978-.181 1.22-.338-.206-.095-.556-.18-.823-.232-.03.062-.103.219-.13.264z" fill="#00acee"/><g stroke-width=".973" transform="translate(8.75 8.632) scale(.03326)"><path d="M250.54 277.39c.004.024.015.057.018.082-2.165-4.657-4.463-10.314-7.208-17.708 10.688 15.557 44.184 7.533 42.427-6.407 16.395 12.336 50.143-2.055 42.471-19.353 16.423 7.653 35.168-7.745 30.964-14.455 28 5.4 54.832 10.783 63.256 12.938-5.595 9.123-18.339 15.566-37.549 11.089 10.38 14.14-9.773 31.105-37.844 21.76 6.18 13.883-18.814 26.38-47.22 11.91.361 13.889-35.24 15.488-49.315.143zm55.543-70.194c32.497 2.495 86.238 7.34 119.51 11.997-2.102-10.828-7.844-13.921-25.905-18.772-19.425 2.072-68.706 6.913-93.604 6.776z" fill="#2baf2b"/><path d="M285.78 253.36c16.395 12.336 50.143-2.055 42.471-19.353 16.423 7.653 35.168-7.745 30.964-14.455-33.103-6.383-67.84-12.788-75.719-13.908 4.78.254 12.702.797 22.59 1.556 24.899.137 74.18-4.704 93.604-6.775-31.452-7.975-95.666-19.613-140.01-22.48-2.055 3.003-5.833 8.097-12.413 13.51-19.403 41.053-54.557 68.34-93.454 68.34-11.335 0-24.018-1.912-38.233-6.456-8.865 9.497-46.661 16.694-77.329 1.641 24.326 56.961 80.74 94.984 143.19 94.984 52.591 0 75.912-53.704 70.808-67.914-1.238-3.45-6.145-14.889-8.891-22.283 10.689 15.556 44.185 7.532 42.429-6.408z" fill="#ffcc2f"/><path d="M253.91 145.27c4.644-2.526 20.69-12.253 35.981-15.908a67.843 67.843 0 0 1-.536-5.12c-10.032 2.403-28.945 10.51-39.784-.661 22.866 6.9 34.283-6.149 51.09-6.149 10.014 0 24.305 2.798 35.57 7.22-9.061-8.37-38.772-33.63-75.558-33.717-8.213 9.957-17.09 31.526-6.764 54.334z" fill="#cecece"/><path d="M115.58 253.33c14.215 4.544 26.898 6.457 38.233 6.457 38.896 0 74.05-27.29 93.454-68.341-14.351 11.978-39.291 22.228-78.241 22.228 34.694-7.866 64.56-25.156 79.753-50.427-10.68-16.998-22.263-54.603 7.07-84.33-4.512-14.497-26.475-52.766-75.095-52.766-84.85 0-155.17 71.001-155.17 166.15 0 22.525 4.547 43.65 12.67 62.664 30.666 15.054 68.462 7.858 77.327-1.64z" fill="#ef5734"/><path d="M141.03 108.45c0 21.644 17.546 39.191 39.19 39.191s39.192-17.548 39.192-39.191c0-21.644-17.548-39.191-39.192-39.191s-39.19 17.547-39.19 39.191z" fill="#ffcc2f"/><path d="M156.76 108.45c0 12.958 10.507 23.463 23.463 23.463 12.96 0 23.464-10.506 23.464-23.463 0-12.959-10.504-23.464-23.464-23.464-12.957 0-23.463 10.506-23.463 23.464z" fill="#543729"/><ellipse cx="180.22" cy="98.044" rx="13.673" ry="8.501" fill="#fff"/></g></svg>
@@ -1 +0,0 @@
1
- <svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#8d6e63" fill-rule="nonzero"/><path d="M23.64 15.288c-.77-.74-4.62-1.202-5.834-1.336.059-.139.109-.283.15-.43a4.86 4.86 0 0 1 .53-.197c.022.067.128.321.188.442 2.442.067 2.568-1.815 2.667-2.33.097-.505.092-.992.93-1.882-1.248-.364-3.043.563-3.644 1.943a3.75 3.75 0 0 0-.676-.185c-.16-.648-.996-2.451-3.189-2.451-2.776 0-5.802 2.29-5.802 6.167 0 3.26 2.225 6.116 3.482 6.116.549 0 1.021-.411 1.132-.78.093.253.378 1.038.472 1.238.138.296.779.552 1.059.245.36.2 1.021.32 1.381-.213.694.147 1.308-.267 1.321-.76.34-.019.508-.497.433-.878-.055-.28-.64-1.286-.868-1.633.452.368 1.597.472 1.736 0 .729.572 1.864.272 1.955-.193.885.23 1.9-.275 1.734-.887 1.423-.099 1.24-1.613.842-1.996z" fill="#543729"/><path d="M19.678 12.06c.306-.609.691-1.272 1.177-1.683-.535.216-1.063.86-1.376 1.55a4.82 4.82 0 0 0-.484-.27c.436-.931 1.449-1.708 2.565-1.769-.748.678-.482 2.087-1.097 2.834a8.052 8.052 0 0 0-.785-.663zm-.484.99c0-.024.01-.203.026-.285a2.585 2.585 0 0 0-.449-.06c-.01.175.074.472.156.65.568-.011.978-.181 1.22-.338-.206-.095-.557-.18-.823-.232-.03.062-.103.219-.13.264z" fill="#00acee"/><g stroke-width=".973" transform="translate(8.75 8.632) scale(.03326)"><path d="M250.54 277.39c.004.024.015.057.018.082-2.165-4.657-4.463-10.314-7.208-17.708 10.688 15.557 44.184 7.533 42.427-6.407 16.395 12.336 50.143-2.055 42.471-19.353 16.423 7.653 35.168-7.745 30.964-14.455 28 5.4 54.832 10.783 63.256 12.938-5.595 9.123-18.339 15.566-37.549 11.089 10.38 14.14-9.773 31.105-37.844 21.76 6.18 13.883-18.814 26.38-47.22 11.91.361 13.889-35.24 15.488-49.315.143zm55.543-70.194c32.497 2.495 86.238 7.34 119.51 11.997-2.102-10.828-7.844-13.921-25.905-18.772-19.425 2.072-68.706 6.913-93.604 6.776z" fill="#2baf2b"/><path d="M285.78 253.36c16.395 12.336 50.143-2.055 42.471-19.353 16.423 7.653 35.168-7.745 30.964-14.455-33.103-6.383-67.84-12.788-75.719-13.908 4.78.254 12.702.797 22.59 1.556 24.899.137 74.18-4.704 93.604-6.775-31.452-7.975-95.666-19.613-140.01-22.48-2.055 3.003-5.833 8.097-12.413 13.51-19.403 41.053-54.557 68.34-93.454 68.34-11.335 0-24.018-1.912-38.233-6.456-8.865 9.497-46.661 16.694-77.329 1.641 24.326 56.961 80.74 94.984 143.19 94.984 52.591 0 75.912-53.704 70.808-67.914-1.238-3.45-6.145-14.889-8.891-22.283 10.689 15.556 44.185 7.532 42.429-6.408z" fill="#ffcc2f"/><path d="M253.91 145.27c4.644-2.526 20.69-12.253 35.981-15.908a67.843 67.843 0 0 1-.536-5.12c-10.032 2.403-28.945 10.51-39.784-.661 22.866 6.9 34.283-6.149 51.09-6.149 10.014 0 24.305 2.798 35.57 7.22-9.061-8.37-38.772-33.63-75.558-33.717-8.213 9.957-17.09 31.526-6.764 54.334z" fill="#cecece"/><path d="M115.58 253.33c14.215 4.544 26.898 6.457 38.233 6.457 38.896 0 74.05-27.29 93.454-68.341-14.351 11.978-39.291 22.228-78.241 22.228 34.694-7.866 64.56-25.156 79.753-50.427-10.68-16.998-22.263-54.603 7.07-84.33-4.512-14.497-26.475-52.766-75.095-52.766-84.85 0-155.17 71.001-155.17 166.15 0 22.525 4.547 43.65 12.67 62.664 30.666 15.054 68.462 7.858 77.327-1.64z" fill="#ef5734"/><path d="M141.03 108.45c0 21.644 17.546 39.191 39.19 39.191s39.192-17.548 39.192-39.191c0-21.644-17.548-39.191-39.192-39.191s-39.19 17.547-39.19 39.191z" fill="#ffcc2f"/><path d="M156.76 108.45c0 12.958 10.507 23.463 23.463 23.463 12.96 0 23.464-10.506 23.464-23.463 0-12.959-10.504-23.464-23.464-23.464-12.957 0-23.463 10.506-23.463 23.464z" fill="#543729"/><ellipse cx="180.22" cy="98.044" rx="13.673" ry="8.501" fill="#fff"/></g></svg>
@@ -1 +0,0 @@
1
- <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#4CAF50"/><path fill-rule="evenodd" clip-rule="evenodd" d="M14.53 14.22v4.53L10 16.53V12l4.53 2.22zm4.575 2.31V12l4.485 2.22-4.485 2.31z" fill="#C8E6C9"/><path fill-rule="evenodd" clip-rule="evenodd" d="M14.53 14.22v4.53l4.575-2.22V12l-4.575 2.22zm4.575 2.31v4.53l4.485-2.31v-4.53l-4.485 2.31z" fill="#A5D6A7"/></svg>
@@ -1 +0,0 @@
1
- <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#4CAF50"/><path fill-rule="evenodd" clip-rule="evenodd" d="M14.53 14.22v4.53L10 16.53V12l4.53 2.22zm4.575 2.31V12l4.485 2.22-4.485 2.31z" fill="#C8E6C9"/><path fill-rule="evenodd" clip-rule="evenodd" d="M14.53 14.22v4.53l4.575-2.22V12l-4.575 2.22zm4.575 2.31v4.53l4.485-2.31v-4.53l-4.485 2.31z" fill="#A5D6A7"/></svg>
@@ -1 +0,0 @@
1
- <svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#e57373" style="fill:#009688"/><path d="M21.275 18.517c-.678 0-1.222.544-1.222 1.222a1.222 1.222 0 0 0 1.222 1.222 1.222 1.222 0 0 0 1.222-1.222c0-.678-.55-1.222-1.222-1.222M11.5 8.742v1.222h1.222l2.2 4.637-.832 1.497a1.245 1.245 0 0 0-.146.586 1.222 1.222 0 0 0 1.222 1.222h7.33v-1.222h-7.074a.153.153 0 0 1-.153-.153.13.13 0 0 1 .019-.073l.55-.996h4.551a1.23 1.23 0 0 0 1.07-.629l2.186-3.953a.773.773 0 0 0 .074-.305.61.61 0 0 0-.611-.611h-9.036l-.574-1.222m1.668 9.775c-.679 0-1.222.544-1.222 1.222a1.222 1.222 0 0 0 1.222 1.222 1.222 1.222 0 0 0 1.222-1.222c0-.678-.55-1.222-1.222-1.222z" style="fill:#b2dfdb;stroke-width:.61094"/></svg>
@@ -1 +0,0 @@
1
- <svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#e57373" fill-rule="nonzero" style="fill:#009688"/><path d="M21.275 18.517c-.678 0-1.222.544-1.222 1.222a1.222 1.222 0 0 0 1.222 1.222 1.222 1.222 0 0 0 1.222-1.222c0-.678-.55-1.222-1.222-1.222M11.5 8.742v1.222h1.222l2.2 4.637-.832 1.497a1.245 1.245 0 0 0-.146.586 1.222 1.222 0 0 0 1.222 1.222h7.33v-1.222h-7.074a.153.153 0 0 1-.153-.153.13.13 0 0 1 .019-.073l.55-.996h4.551a1.23 1.23 0 0 0 1.07-.629l2.186-3.953a.773.773 0 0 0 .074-.305.61.61 0 0 0-.611-.611h-9.036l-.574-1.222m1.668 9.775c-.679 0-1.222.544-1.222 1.222a1.222 1.222 0 0 0 1.222 1.222 1.222 1.222 0 0 0 1.222-1.222c0-.678-.55-1.222-1.222-1.222z" style="fill:#b2dfdb;stroke-width:.61094"/></svg>
@@ -1,5 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5Z" fill="#2196f3"/>
4
- <path d="m10.845 11.106c0 2.6678 2.0308 4.8311 4.5355 4.8311h1.3609c-2.5057 0-4.5355 2.1633-4.5355 4.8311h0.90793c1.8725 0 3.4803-1.2085 4.1727-2.9335 0.69238 1.725 2.3002 2.9335 4.1727 2.9335h0.90793c0-2.6678-2.0297-4.8311-4.5355-4.8311h1.3609c2.5047 0 4.5355-2.1633 4.5355-4.8311h-2.2688c-1.8725 0-3.4803 1.2085-4.1727 2.9335-0.69238-1.725-2.3002-2.9335-4.1727-2.9335zm6.4415 2.9356c0.23358 0.58247 0.36275 1.2231 0.36275 1.8955s-0.12917 1.3131-0.36275 1.8955a5.0866 5.0866 0 0 1-0.36275-1.8955c0-0.67244 0.12917-1.3131 0.36275-1.8955z" fill="#bbdefb" stroke-width="1.0736"/>
5
- </svg>
@@ -1,2 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg version="1.1" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2Z" fill="#2196f3"/><path d="m10.845 11.106c0 2.6678 2.0308 4.8311 4.5355 4.8311h1.3609c-2.5057 0-4.5355 2.1633-4.5355 4.8311h0.90793c1.8725 0 3.4803-1.2085 4.1727-2.9335 0.69238 1.725 2.3002 2.9335 4.1727 2.9335h0.90793c0-2.6678-2.0297-4.8311-4.5355-4.8311h1.3609c2.5047 0 4.5355-2.1633 4.5355-4.8311h-2.2688c-1.8725 0-3.4803 1.2085-4.1727 2.9335-0.69238-1.725-2.3002-2.9335-4.1727-2.9335zm6.4415 2.9356c0.23358 0.58247 0.36275 1.2231 0.36275 1.8955s-0.12917 1.3131-0.36275 1.8955a5.0866 5.0866 0 0 1-0.36275-1.8955c0-0.67244 0.12917-1.3131 0.36275-1.8955z" fill="#bbdefb" stroke-width="1.0736"/></svg>
@@ -1 +0,0 @@
1
- <svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#0288d1"/><path d="M17.813 11.575v1.951l2.602-2.601-2.602-2.602v1.951a5.203 5.203 0 0 0-5.203 5.204c0 1.02.299 1.97.806 2.77l.95-.95a3.838 3.838 0 0 1-.456-1.82 3.903 3.903 0 0 1 3.903-3.903m4.397 1.132-.95.95a3.92 3.92 0 0 1 .456 1.82 3.903 3.903 0 0 1-3.903 3.903v-1.95l-2.602 2.602 2.602 2.601v-1.951a5.203 5.203 0 0 0 5.203-5.204c0-1.02-.299-1.97-.806-2.77z" fill="#b3e5fc" stroke="#b3e5fc" stroke-width=".29"/></svg>
@@ -1 +0,0 @@
1
- <svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#0288d1" fill-rule="nonzero"/><path d="M17.813 11.575v1.951l2.602-2.601-2.602-2.602v1.951a5.203 5.203 0 0 0-5.203 5.204c0 1.02.299 1.97.806 2.77l.95-.95a3.838 3.838 0 0 1-.456-1.82 3.903 3.903 0 0 1 3.903-3.903m4.397 1.132-.95.95a3.92 3.92 0 0 1 .456 1.82 3.903 3.903 0 0 1-3.903 3.903v-1.95l-2.602 2.602 2.602 2.601v-1.951a5.203 5.203 0 0 0 5.203-5.204c0-1.02-.299-1.97-.806-2.77z" fill="#b3e5fc" stroke="#b3e5fc" stroke-width=".29"/></svg>
@@ -1 +0,0 @@
1
- <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h6l2 2h7c1.1 0 2 .9 2 2H4v10l2.14-8h17.07l-2.28 8.5A2 2 0 0 1 19 20z" fill="#546e7a"/><path d="M15.81 14.8a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0zm1.5-6.3a6.3 6.3 0 0 0-6.11 4.74l-.01.06c0 .17.13.3.3.3h2.54a.3.3 0 0 0 .27-.18 3.3 3.3 0 1 1 0 2.75.3.3 0 0 0-.27-.18h-2.54a.3.3 0 0 0-.3.3v.06a6.3 6.3 0 1 0 6.12-7.85z" fill="#eceff1"/></svg>
@@ -1 +0,0 @@
1
- <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#546e7a"/><path d="M15.81 14.8a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0zm1.5-6.3a6.3 6.3 0 0 0-6.11 4.74l-.01.06c0 .17.13.3.3.3h2.54a.3.3 0 0 0 .27-.18 3.3 3.3 0 1 1 0 2.75.3.3 0 0 0-.27-.18h-2.54a.3.3 0 0 0-.3.3v.06a6.3 6.3 0 1 0 6.12-7.85z" fill="#eceff1"/></svg>
@@ -1 +0,0 @@
1
- <svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#ef5350"/><path d="M13.814 8.71a1.354 1.275 0 0 0-1.355 1.276v10.2a1.354 1.275 0 0 0 1.355 1.279h8.126a1.354 1.275 0 0 0 1.355-1.278V9.986A1.354 1.275 0 0 0 21.94 8.71zm0 4.465h8.126v3.188h-8.126zm0 4.462h8.126v2.55h-8.126v-2.55z" fill="#ffcdd2"/></svg>
@@ -1 +0,0 @@
1
- <svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#ef5350" fill-rule="nonzero"/><path d="M13.814 8.71a1.354 1.275 0 0 0-1.355 1.276v10.201a1.354 1.275 0 0 0 1.355 1.278h8.126a1.354 1.275 0 0 0 1.355-1.278v-10.2A1.354 1.275 0 0 0 21.94 8.71zm0 4.465h8.126v3.188h-8.126zm0 4.462h8.126v2.55h-8.126v-2.55z" fill="#ffcdd2"/></svg>
@@ -1 +0,0 @@
1
- <svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#e57373" style="fill:#039be5"/><path d="M21.985 18.967h-2.466v-4.316h2.466m.617-1.233h-3.7a.617.617 0 0 0-.616.617V20.2a.617.617 0 0 0 .616.617h3.7a.617.617 0 0 0 .616-.617v-6.165a.617.617 0 0 0-.616-.617m-11.714-1.233h11.097v-1.233H10.888a1.233 1.233 0 0 0-1.234 1.233v6.782H8.421v1.85h8.632v-1.85h-6.165z" style="fill:#b3e5fc;stroke-width:.61653"/></svg>
@@ -1 +0,0 @@
1
- <svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#e57373" fill-rule="nonzero" style="fill:#039be5"/><path d="M21.985 18.967h-2.466v-4.316h2.466m.617-1.233h-3.7a.617.617 0 0 0-.616.617V20.2a.617.617 0 0 0 .616.617h3.7a.617.617 0 0 0 .616-.617v-6.165a.617.617 0 0 0-.616-.617m-11.714-1.233h11.097v-1.233H10.888a1.233 1.233 0 0 0-1.234 1.233v6.782H8.421v1.85h8.632v-1.85h-6.165z" style="fill:#b3e5fc;stroke-width:.61653"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24"><path fill="#26A69A" d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z"/><g transform="translate(9.214 8.738) scale(.67949)" fill="#B2DFDB"><circle cx="7" cy="14" r="3"/><circle cx="11" cy="6" r="3"/><circle cx="16.6" cy="17.6" r="3"/></g></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24"><path fill="#26A69A" d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill-rule="nonzero"/><g transform="translate(9.214 8.738) scale(.67949)" fill="#B2DFDB"><circle cx="7" cy="14" r="3"/><circle cx="11" cy="6" r="3"/><circle cx="16.6" cy="17.6" r="3"/></g></svg>
@@ -1 +0,0 @@
1
- <svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#e57373" style="fill:#0288d1"/><g style="clip-rule:evenodd;fill-rule:evenodd;fill:#b3e5fc;stroke-linejoin:round;stroke-miterlimit:2"><g style="fill:#b3e5fc"><path d="M13.593 1.116a10.973 10.973 0 0 0-3.186 0L9.71 2.935a9.345 9.345 0 0 0-2.501 1.036L5.43 3.178A10.975 10.975 0 0 0 3.178 5.43l.793 1.779A9.345 9.345 0 0 0 2.935 9.71l-1.819.697a10.973 10.973 0 0 0 0 3.186l1.819.697a9.345 9.345 0 0 0 1.036 2.501l-.793 1.779a10.975 10.975 0 0 0 2.252 2.252l1.779-.793a9.345 9.345 0 0 0 2.501 1.036l.697 1.819c1.056.155 2.13.155 3.186 0l.697-1.819a9.345 9.345 0 0 0 2.501-1.036l1.779.793a10.975 10.975 0 0 0 2.252-2.252l-.793-1.779a9.345 9.345 0 0 0 1.036-2.501l1.819-.697c.155-1.056.155-2.13 0-3.186l-1.819-.697a9.345 9.345 0 0 0-1.036-2.501l.793-1.779a10.975 10.975 0 0 0-2.252-2.252l-1.779.793a9.345 9.345 0 0 0-2.501-1.036zM12 4.951c3.89 0 7.049 3.159 7.049 7.049S15.89 19.049 12 19.049 4.951 15.89 4.951 12 8.11 4.951 12 4.951z" style="fill:#b3e5fc" transform="translate(10.409 8.48) scale(.57906)"/><path d="M14.83 14.825A3.985 3.985 0 0 1 12 16c-2.208 0-4-1.792-4-4s1.792-4 4-4c1.105 0 2.106.449 2.83 1.175l-1.414 1.413a2 2 0 1 0 0 2.824z" style="fill:#b3e5fc" transform="translate(10.409 8.48) scale(.57906)"/></g></g></svg>