@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.
- package/README.md +37 -22
- package/{components/command-palette → command-palette}/breadcrumb/breadcrumb.component.d.ts +1 -1
- package/{components/command-palette → command-palette}/command-palette.component.d.ts +1 -1
- package/{services → command-palette}/command-palette.service.d.ts +2 -2
- package/command-palette/index.d.ts +2 -0
- package/{components/command-palette → command-palette}/shortcut/shortcut.component.d.ts +1 -1
- package/{components → core/components}/menu/menu.component.d.ts +2 -2
- package/{directives → core/components/menu}/menu.directive.d.ts +1 -1
- package/{types/menu.d.ts → core/components/menu/types.d.ts} +1 -1
- package/{components → core/components}/types.d.ts +0 -1
- package/{public-api.d.ts → core/index.d.ts} +12 -20
- package/{services → core/services}/navigation.service.d.ts +1 -1
- package/core/utils/index.d.ts +18 -0
- package/esm2022/{components/command-palette → command-palette}/breadcrumb/breadcrumb.component.mjs +1 -1
- package/esm2022/command-palette/command-palette.component.mjs +257 -0
- package/esm2022/command-palette/command-palette.service.mjs +207 -0
- package/esm2022/command-palette/dotglitch-ngx-common-command-palette.mjs +5 -0
- package/esm2022/command-palette/index.mjs +3 -0
- package/esm2022/{components/command-palette → command-palette}/shortcut/shortcut.component.mjs +1 -1
- package/esm2022/core/components/lazy-loader/lazy-loader.component.mjs +383 -0
- package/esm2022/core/components/lazy-loader/lazy-loader.module.mjs +33 -0
- package/esm2022/core/components/lazy-loader/lazy-loader.service.mjs +216 -0
- package/esm2022/core/components/lazy-loader/types.mjs +26 -0
- package/esm2022/core/components/menu/menu.component.mjs +433 -0
- package/esm2022/core/components/menu/menu.directive.mjs +159 -0
- package/esm2022/core/components/menu/types.mjs +2 -0
- package/esm2022/core/components/parallax-card/parallax-card.component.mjs +138 -0
- package/esm2022/core/components/types.mjs +3 -0
- package/esm2022/core/directives/image-cache.directive.mjs +143 -0
- package/esm2022/core/directives/utils.mjs +120 -0
- package/esm2022/core/dotglitch-ngx-common-core.mjs +5 -0
- package/esm2022/core/index.mjs +50 -0
- package/esm2022/core/pipes/html-bypass.pipe.mjs +27 -0
- package/esm2022/core/pipes/resource-bypass.pipe.mjs +27 -0
- package/esm2022/core/pipes/script-bypass.pipe.mjs +27 -0
- package/esm2022/core/pipes/style-bypass.pipe.mjs +27 -0
- package/esm2022/core/pipes/url-bypass.pipe.mjs +27 -0
- package/esm2022/core/services/dependency.service.mjs +55 -0
- package/esm2022/core/services/dialog.service.mjs +67 -0
- package/esm2022/core/services/fetch.service.mjs +74 -0
- package/esm2022/core/services/file.service.mjs +42 -0
- package/esm2022/core/services/keyboard.service.mjs +128 -0
- package/esm2022/core/services/navigation.service.mjs +50 -0
- package/esm2022/core/services/theme.service.mjs +64 -0
- package/esm2022/core/types/popup.mjs +2 -0
- package/esm2022/core/utils/index.mjs +69 -0
- package/esm2022/dotglitch-ngx-common.mjs +2 -2
- package/esm2022/filemanager/dotglitch-ngx-common-filemanager.mjs +5 -0
- package/esm2022/filemanager/file-grid/file-grid.component.mjs +676 -0
- package/esm2022/{components/filemanager → filemanager}/filemanager.component.mjs +13 -14
- package/esm2022/{components/filemanager → filemanager}/folder-rename/folder-rename.component.mjs +2 -2
- package/esm2022/filemanager/helpers.mjs +26 -0
- package/esm2022/filemanager/icon-resolver.mjs +155 -0
- package/esm2022/filemanager/index.mjs +2 -0
- package/esm2022/filemanager/mat-icons.mjs +5705 -0
- package/esm2022/filemanager/textextensions.mjs +294 -0
- package/esm2022/{components/filemanager → filemanager}/toolbar/breadcrumb/breadcrumb.component.mjs +1 -1
- package/esm2022/{components/filemanager → filemanager}/toolbar/icon-button/icon-button.component.mjs +1 -1
- package/esm2022/filemanager/toolbar/toolbar.component.mjs +165 -0
- package/esm2022/{components/filemanager → filemanager}/tree-view/tree-view.component.mjs +1 -1
- package/esm2022/filemanager/types.mjs +2 -0
- package/esm2022/index.mjs +3 -0
- package/esm2022/monaco-editor/dotglitch-ngx-common-monaco-editor.mjs +5 -0
- package/esm2022/monaco-editor/index.mjs +2 -0
- package/esm2022/monaco-editor/monaco-editor.component.mjs +234 -0
- package/esm2022/monaco-editor/ts-type-resolver/dependency-parser.mjs +91 -0
- package/esm2022/monaco-editor/ts-type-resolver/dummy-source-cache.mjs +15 -0
- package/esm2022/monaco-editor/ts-type-resolver/import-resolver.mjs +311 -0
- package/esm2022/monaco-editor/ts-type-resolver/main.mjs +112 -0
- package/esm2022/monaco-editor/ts-type-resolver/recursion-depth.mjs +21 -0
- package/esm2022/monaco-editor/ts-type-resolver/types.mjs +14 -0
- package/esm2022/monaco-editor/ts-type-resolver/unpkg-source-resolver.mjs +21 -0
- package/esm2022/monaco-editor/ts-type-resolver/update-emitter.mjs +37 -0
- package/esm2022/overlay-wrapper/dotglitch-ngx-common-overlay-wrapper.mjs +5 -0
- package/esm2022/overlay-wrapper/index.mjs +2 -0
- package/esm2022/overlay-wrapper/overlay-wrapper.component.mjs +247 -0
- package/esm2022/tooltip/dotglitch-ngx-common-tooltip.mjs +5 -0
- package/esm2022/tooltip/index.mjs +4 -0
- package/esm2022/tooltip/tooltip.component.mjs +204 -0
- package/esm2022/tooltip/tooltip.directive.mjs +153 -0
- package/esm2022/tooltip/types.mjs +2 -0
- package/fesm2022/dotglitch-ngx-common-command-palette.mjs +508 -0
- package/fesm2022/dotglitch-ngx-common-command-palette.mjs.map +1 -0
- package/fesm2022/dotglitch-ngx-common-core.mjs +2280 -0
- package/fesm2022/dotglitch-ngx-common-core.mjs.map +1 -0
- package/fesm2022/{dotglitch-ngx-common-folder-rename.component-Bh1IiRvd.mjs → dotglitch-ngx-common-filemanager-folder-rename.component-CnKuU8nn.mjs} +9 -30
- package/fesm2022/dotglitch-ngx-common-filemanager-folder-rename.component-CnKuU8nn.mjs.map +1 -0
- package/fesm2022/dotglitch-ngx-common-filemanager.mjs +7403 -0
- package/fesm2022/dotglitch-ngx-common-filemanager.mjs.map +1 -0
- package/fesm2022/dotglitch-ngx-common-monaco-editor.mjs +850 -0
- package/fesm2022/dotglitch-ngx-common-monaco-editor.mjs.map +1 -0
- package/fesm2022/dotglitch-ngx-common-overlay-wrapper.mjs +254 -0
- package/fesm2022/dotglitch-ngx-common-overlay-wrapper.mjs.map +1 -0
- package/fesm2022/dotglitch-ngx-common-tooltip.mjs +357 -0
- package/fesm2022/dotglitch-ngx-common-tooltip.mjs.map +1 -0
- package/fesm2022/dotglitch-ngx-common.mjs +3 -11686
- package/fesm2022/dotglitch-ngx-common.mjs.map +1 -1
- package/{components/filemanager → filemanager}/file-grid/file-grid.component.d.ts +7 -14
- package/{components/filemanager → filemanager}/filemanager.component.d.ts +4 -5
- package/{components/filemanager → filemanager}/folder-rename/folder-rename.component.d.ts +1 -1
- package/{components/filemanager → filemanager}/helpers.d.ts +1 -1
- package/filemanager/index.d.ts +1 -0
- package/{components/filemanager → filemanager}/toolbar/toolbar.component.d.ts +2 -2
- package/filemanager/types.d.ts +1 -0
- package/index.d.ts +1 -5
- package/monaco-editor/README.md +3 -0
- package/monaco-editor/index.d.ts +1 -0
- package/monaco-editor/monaco-editor.component.d.ts +53 -0
- package/overlay-wrapper/index.d.ts +1 -0
- package/overlay-wrapper/overlay-wrapper.component.d.ts +11 -0
- package/package.json +108 -47
- package/tooltip/index.d.ts +3 -0
- package/{components/tooltip → tooltip}/tooltip.component.d.ts +3 -3
- package/{directives → tooltip}/tooltip.directive.d.ts +2 -2
- package/{types/tooltip.d.ts → tooltip/types.d.ts} +1 -1
- package/assets/lib/vs/base/browser/ui/codicons/codicon/codicon.ttf +0 -0
- package/assets/lib/vs/base/common/worker/simpleWorker.nls.de.js +0 -8
- package/assets/lib/vs/base/common/worker/simpleWorker.nls.es.js +0 -8
- package/assets/lib/vs/base/common/worker/simpleWorker.nls.fr.js +0 -8
- package/assets/lib/vs/base/common/worker/simpleWorker.nls.it.js +0 -8
- package/assets/lib/vs/base/common/worker/simpleWorker.nls.ja.js +0 -8
- package/assets/lib/vs/base/common/worker/simpleWorker.nls.js +0 -8
- package/assets/lib/vs/base/common/worker/simpleWorker.nls.ko.js +0 -8
- package/assets/lib/vs/base/common/worker/simpleWorker.nls.ru.js +0 -8
- package/assets/lib/vs/base/common/worker/simpleWorker.nls.zh-cn.js +0 -8
- package/assets/lib/vs/base/common/worker/simpleWorker.nls.zh-tw.js +0 -8
- package/assets/lib/vs/base/worker/workerMain.js +0 -24
- package/assets/lib/vs/basic-languages/abap/abap.js +0 -10
- package/assets/lib/vs/basic-languages/apex/apex.js +0 -10
- package/assets/lib/vs/basic-languages/azcli/azcli.js +0 -10
- package/assets/lib/vs/basic-languages/bat/bat.js +0 -10
- package/assets/lib/vs/basic-languages/bicep/bicep.js +0 -11
- package/assets/lib/vs/basic-languages/cameligo/cameligo.js +0 -10
- package/assets/lib/vs/basic-languages/clojure/clojure.js +0 -10
- package/assets/lib/vs/basic-languages/coffee/coffee.js +0 -10
- package/assets/lib/vs/basic-languages/cpp/cpp.js +0 -10
- package/assets/lib/vs/basic-languages/csharp/csharp.js +0 -10
- package/assets/lib/vs/basic-languages/csp/csp.js +0 -10
- package/assets/lib/vs/basic-languages/css/css.js +0 -12
- package/assets/lib/vs/basic-languages/cypher/cypher.js +0 -10
- package/assets/lib/vs/basic-languages/dart/dart.js +0 -10
- package/assets/lib/vs/basic-languages/dockerfile/dockerfile.js +0 -10
- package/assets/lib/vs/basic-languages/ecl/ecl.js +0 -10
- package/assets/lib/vs/basic-languages/elixir/elixir.js +0 -10
- package/assets/lib/vs/basic-languages/flow9/flow9.js +0 -10
- package/assets/lib/vs/basic-languages/freemarker2/freemarker2.js +0 -12
- package/assets/lib/vs/basic-languages/fsharp/fsharp.js +0 -10
- package/assets/lib/vs/basic-languages/go/go.js +0 -10
- package/assets/lib/vs/basic-languages/graphql/graphql.js +0 -10
- package/assets/lib/vs/basic-languages/handlebars/handlebars.js +0 -10
- package/assets/lib/vs/basic-languages/hcl/hcl.js +0 -10
- package/assets/lib/vs/basic-languages/html/html.js +0 -10
- package/assets/lib/vs/basic-languages/ini/ini.js +0 -10
- package/assets/lib/vs/basic-languages/java/java.js +0 -10
- package/assets/lib/vs/basic-languages/javascript/javascript.js +0 -10
- package/assets/lib/vs/basic-languages/julia/julia.js +0 -10
- package/assets/lib/vs/basic-languages/kotlin/kotlin.js +0 -10
- package/assets/lib/vs/basic-languages/less/less.js +0 -11
- package/assets/lib/vs/basic-languages/lexon/lexon.js +0 -10
- package/assets/lib/vs/basic-languages/liquid/liquid.js +0 -10
- package/assets/lib/vs/basic-languages/lua/lua.js +0 -10
- package/assets/lib/vs/basic-languages/m3/m3.js +0 -10
- package/assets/lib/vs/basic-languages/markdown/markdown.js +0 -10
- package/assets/lib/vs/basic-languages/mips/mips.js +0 -10
- package/assets/lib/vs/basic-languages/msdax/msdax.js +0 -10
- package/assets/lib/vs/basic-languages/mysql/mysql.js +0 -10
- package/assets/lib/vs/basic-languages/objective-c/objective-c.js +0 -10
- package/assets/lib/vs/basic-languages/pascal/pascal.js +0 -10
- package/assets/lib/vs/basic-languages/pascaligo/pascaligo.js +0 -10
- package/assets/lib/vs/basic-languages/perl/perl.js +0 -10
- package/assets/lib/vs/basic-languages/pgsql/pgsql.js +0 -10
- package/assets/lib/vs/basic-languages/php/php.js +0 -10
- package/assets/lib/vs/basic-languages/pla/pla.js +0 -10
- package/assets/lib/vs/basic-languages/postiats/postiats.js +0 -10
- package/assets/lib/vs/basic-languages/powerquery/powerquery.js +0 -10
- package/assets/lib/vs/basic-languages/powershell/powershell.js +0 -10
- package/assets/lib/vs/basic-languages/protobuf/protobuf.js +0 -11
- package/assets/lib/vs/basic-languages/pug/pug.js +0 -10
- package/assets/lib/vs/basic-languages/python/python.js +0 -10
- package/assets/lib/vs/basic-languages/qsharp/qsharp.js +0 -10
- package/assets/lib/vs/basic-languages/r/r.js +0 -10
- package/assets/lib/vs/basic-languages/razor/razor.js +0 -10
- package/assets/lib/vs/basic-languages/redis/redis.js +0 -10
- package/assets/lib/vs/basic-languages/redshift/redshift.js +0 -10
- package/assets/lib/vs/basic-languages/restructuredtext/restructuredtext.js +0 -10
- package/assets/lib/vs/basic-languages/ruby/ruby.js +0 -10
- package/assets/lib/vs/basic-languages/rust/rust.js +0 -10
- package/assets/lib/vs/basic-languages/sb/sb.js +0 -10
- package/assets/lib/vs/basic-languages/scala/scala.js +0 -10
- package/assets/lib/vs/basic-languages/scheme/scheme.js +0 -10
- package/assets/lib/vs/basic-languages/scss/scss.js +0 -12
- package/assets/lib/vs/basic-languages/shell/shell.js +0 -10
- package/assets/lib/vs/basic-languages/solidity/solidity.js +0 -10
- package/assets/lib/vs/basic-languages/sophia/sophia.js +0 -10
- package/assets/lib/vs/basic-languages/sparql/sparql.js +0 -10
- package/assets/lib/vs/basic-languages/sql/sql.js +0 -10
- package/assets/lib/vs/basic-languages/st/st.js +0 -10
- package/assets/lib/vs/basic-languages/swift/swift.js +0 -13
- package/assets/lib/vs/basic-languages/systemverilog/systemverilog.js +0 -10
- package/assets/lib/vs/basic-languages/tcl/tcl.js +0 -10
- package/assets/lib/vs/basic-languages/twig/twig.js +0 -10
- package/assets/lib/vs/basic-languages/typescript/typescript.js +0 -10
- package/assets/lib/vs/basic-languages/vb/vb.js +0 -10
- package/assets/lib/vs/basic-languages/wgsl/wgsl.js +0 -307
- package/assets/lib/vs/basic-languages/xml/xml.js +0 -10
- package/assets/lib/vs/basic-languages/yaml/yaml.js +0 -10
- package/assets/lib/vs/editor/editor.main.css +0 -6
- package/assets/lib/vs/editor/editor.main.js +0 -752
- package/assets/lib/vs/editor/editor.main.nls.de.js +0 -31
- package/assets/lib/vs/editor/editor.main.nls.es.js +0 -31
- package/assets/lib/vs/editor/editor.main.nls.fr.js +0 -29
- package/assets/lib/vs/editor/editor.main.nls.it.js +0 -29
- package/assets/lib/vs/editor/editor.main.nls.ja.js +0 -31
- package/assets/lib/vs/editor/editor.main.nls.js +0 -29
- package/assets/lib/vs/editor/editor.main.nls.ko.js +0 -29
- package/assets/lib/vs/editor/editor.main.nls.ru.js +0 -31
- package/assets/lib/vs/editor/editor.main.nls.zh-cn.js +0 -31
- package/assets/lib/vs/editor/editor.main.nls.zh-tw.js +0 -29
- package/assets/lib/vs/language/css/cssMode.js +0 -13
- package/assets/lib/vs/language/css/cssWorker.js +0 -81
- package/assets/lib/vs/language/html/htmlMode.js +0 -13
- package/assets/lib/vs/language/html/htmlWorker.js +0 -453
- package/assets/lib/vs/language/json/jsonMode.js +0 -15
- package/assets/lib/vs/language/json/jsonWorker.js +0 -36
- package/assets/lib/vs/language/typescript/tsMode.js +0 -20
- package/assets/lib/vs/language/typescript/tsWorker.js +0 -37016
- package/assets/lib/vs/loader.js +0 -11
- package/assets/mat-icons.ts +0 -5704
- package/assets/material/3d.svg +0 -1
- package/assets/material/abc.svg +0 -1
- package/assets/material/actionscript.svg +0 -1
- package/assets/material/ada.svg +0 -1
- package/assets/material/adonis.svg +0 -1
- package/assets/material/advpl_include.svg +0 -1
- package/assets/material/advpl_prw.svg +0 -1
- package/assets/material/advpl_ptm.svg +0 -1
- package/assets/material/advpl_tlpp.svg +0 -1
- package/assets/material/android.svg +0 -1
- package/assets/material/angular-component.svg +0 -1
- package/assets/material/angular-directive.svg +0 -1
- package/assets/material/angular-guard.svg +0 -1
- package/assets/material/angular-pipe.svg +0 -1
- package/assets/material/angular-resolver.svg +0 -1
- package/assets/material/angular-service.svg +0 -1
- package/assets/material/angular.svg +0 -1
- package/assets/material/antlr.svg +0 -1
- package/assets/material/apiblueprint.svg +0 -1
- package/assets/material/apollo.svg +0 -1
- package/assets/material/applescript.svg +0 -1
- package/assets/material/appveyor.svg +0 -1
- package/assets/material/architecture.svg +0 -1
- package/assets/material/arduino.svg +0 -1
- package/assets/material/asciidoc.svg +0 -1
- package/assets/material/assembly.svg +0 -1
- package/assets/material/astro.svg +0 -1
- package/assets/material/astyle.svg +0 -1
- package/assets/material/audio.svg +0 -1
- package/assets/material/aurelia.svg +0 -1
- package/assets/material/authors.svg +0 -1
- package/assets/material/auto.svg +0 -1
- package/assets/material/auto_light.svg +0 -1
- package/assets/material/autohotkey.svg +0 -1
- package/assets/material/autoit.svg +0 -1
- package/assets/material/azure-pipelines.svg +0 -1
- package/assets/material/azure.svg +0 -1
- package/assets/material/babel.svg +0 -1
- package/assets/material/ballerina.svg +0 -1
- package/assets/material/bazel.svg +0 -1
- package/assets/material/bicep.svg +0 -1
- package/assets/material/bitbucket.svg +0 -13
- package/assets/material/bithound.svg +0 -1
- package/assets/material/blink.svg +0 -1
- package/assets/material/blink_light.svg +0 -1
- package/assets/material/blitz.svg +0 -1
- package/assets/material/bower.svg +0 -1
- package/assets/material/brainfuck.svg +0 -1
- package/assets/material/browserlist.svg +0 -1
- package/assets/material/browserlist_light.svg +0 -1
- package/assets/material/buck.svg +0 -1
- package/assets/material/bucklescript.svg +0 -1
- package/assets/material/buildkite.svg +0 -1
- package/assets/material/bun.svg +0 -2
- package/assets/material/bun_light.svg +0 -2
- package/assets/material/c.svg +0 -4
- package/assets/material/cabal.svg +0 -1
- package/assets/material/caddy.svg +0 -1
- package/assets/material/cadence.svg +0 -1
- package/assets/material/cake.svg +0 -1
- package/assets/material/capacitor.svg +0 -1
- package/assets/material/certificate.svg +0 -1
- package/assets/material/changelog.svg +0 -1
- package/assets/material/chess.svg +0 -1
- package/assets/material/chess_light.svg +0 -1
- package/assets/material/circleci.svg +0 -1
- package/assets/material/circleci_light.svg +0 -1
- package/assets/material/clojure.svg +0 -1
- package/assets/material/cloudfoundry.svg +0 -1
- package/assets/material/cmake.svg +0 -1
- package/assets/material/coala.svg +0 -1
- package/assets/material/cobol.svg +0 -1
- package/assets/material/coconut.svg +0 -1
- package/assets/material/code-climate.svg +0 -1
- package/assets/material/code-climate_light.svg +0 -1
- package/assets/material/codecov.svg +0 -1
- package/assets/material/codeowners.svg +0 -1
- package/assets/material/coffee.svg +0 -1
- package/assets/material/coldfusion.svg +0 -1
- package/assets/material/command.svg +0 -1
- package/assets/material/commitlint.svg +0 -1
- package/assets/material/conduct.svg +0 -1
- package/assets/material/console.svg +0 -1
- package/assets/material/contributing.svg +0 -1
- package/assets/material/cpp.svg +0 -4
- package/assets/material/craco.svg +0 -45
- package/assets/material/credits.svg +0 -1
- package/assets/material/crystal.svg +0 -1
- package/assets/material/crystal_light.svg +0 -1
- package/assets/material/csharp.svg +0 -4
- package/assets/material/css-map.svg +0 -1
- package/assets/material/css.svg +0 -1
- package/assets/material/cucumber.svg +0 -1
- package/assets/material/cuda.svg +0 -1
- package/assets/material/cypress.svg +0 -1
- package/assets/material/d.svg +0 -1
- package/assets/material/dart.svg +0 -1
- package/assets/material/dart_generated.svg +0 -1
- package/assets/material/database.svg +0 -1
- package/assets/material/denizenscript.svg +0 -1
- package/assets/material/deno.svg +0 -1
- package/assets/material/deno_light.svg +0 -1
- package/assets/material/dependabot.svg +0 -1
- package/assets/material/dhall.svg +0 -1
- package/assets/material/diff.svg +0 -1
- package/assets/material/dinophp.svg +0 -1
- package/assets/material/disc.svg +0 -1
- package/assets/material/django.svg +0 -1
- package/assets/material/docker.svg +0 -1
- package/assets/material/document.svg +0 -1
- package/assets/material/dotjs.svg +0 -1
- package/assets/material/drawio.svg +0 -1
- package/assets/material/drone.svg +0 -1
- package/assets/material/drone_light.svg +0 -1
- package/assets/material/dune.svg +0 -1
- package/assets/material/edge.svg +0 -1
- package/assets/material/editorconfig.svg +0 -1
- package/assets/material/ejs.svg +0 -1
- package/assets/material/elixir.svg +0 -1
- package/assets/material/elm.svg +0 -1
- package/assets/material/email.svg +0 -1
- package/assets/material/ember.svg +0 -1
- package/assets/material/erlang.svg +0 -1
- package/assets/material/eslint.svg +0 -1
- package/assets/material/exe.svg +0 -1
- package/assets/material/fastlane.svg +0 -1
- package/assets/material/favicon.svg +0 -1
- package/assets/material/figma.svg +0 -1
- package/assets/material/file.svg +0 -1
- package/assets/material/firebase.svg +0 -1
- package/assets/material/flash.svg +0 -1
- package/assets/material/flow.svg +0 -1
- package/assets/material/folder-admin-open.svg +0 -1
- package/assets/material/folder-admin.svg +0 -1
- package/assets/material/folder-android-open.svg +0 -1
- package/assets/material/folder-android.svg +0 -1
- package/assets/material/folder-angular-open.svg +0 -1
- package/assets/material/folder-angular.svg +0 -1
- package/assets/material/folder-animation-open.svg +0 -1
- package/assets/material/folder-animation.svg +0 -1
- package/assets/material/folder-ansible-open.svg +0 -1
- package/assets/material/folder-ansible.svg +0 -1
- package/assets/material/folder-api-open.svg +0 -1
- package/assets/material/folder-api.svg +0 -1
- package/assets/material/folder-apollo-open.svg +0 -1
- package/assets/material/folder-apollo.svg +0 -1
- package/assets/material/folder-app-open.svg +0 -1
- package/assets/material/folder-app.svg +0 -1
- package/assets/material/folder-archive-open.svg +0 -1
- package/assets/material/folder-archive.svg +0 -1
- package/assets/material/folder-audio-open.svg +0 -1
- package/assets/material/folder-audio.svg +0 -1
- package/assets/material/folder-aurelia-open.svg +0 -1
- package/assets/material/folder-aurelia.svg +0 -1
- package/assets/material/folder-aws-open.svg +0 -1
- package/assets/material/folder-aws.svg +0 -1
- package/assets/material/folder-azure-pipelines-open.svg +0 -1
- package/assets/material/folder-azure-pipelines.svg +0 -1
- package/assets/material/folder-base-open.svg +0 -1
- package/assets/material/folder-base.svg +0 -1
- package/assets/material/folder-batch-open.svg +0 -1
- package/assets/material/folder-batch.svg +0 -1
- package/assets/material/folder-benchmark-open.svg +0 -1
- package/assets/material/folder-benchmark.svg +0 -1
- package/assets/material/folder-bower-open.svg +0 -1
- package/assets/material/folder-bower.svg +0 -1
- package/assets/material/folder-buildkite-open.svg +0 -1
- package/assets/material/folder-buildkite.svg +0 -1
- package/assets/material/folder-cart-open.svg +0 -1
- package/assets/material/folder-cart.svg +0 -1
- package/assets/material/folder-changesets-open.svg +0 -5
- package/assets/material/folder-changesets.svg +0 -2
- package/assets/material/folder-ci-open.svg +0 -1
- package/assets/material/folder-ci.svg +0 -1
- package/assets/material/folder-circleci-open.svg +0 -1
- package/assets/material/folder-circleci.svg +0 -1
- package/assets/material/folder-class-open.svg +0 -1
- package/assets/material/folder-class.svg +0 -1
- package/assets/material/folder-client-open.svg +0 -1
- package/assets/material/folder-client.svg +0 -1
- package/assets/material/folder-cluster-open.svg +0 -1
- package/assets/material/folder-cluster.svg +0 -1
- package/assets/material/folder-cobol-open.svg +0 -1
- package/assets/material/folder-cobol.svg +0 -1
- package/assets/material/folder-command-open.svg +0 -1
- package/assets/material/folder-command.svg +0 -1
- package/assets/material/folder-components-open.svg +0 -1
- package/assets/material/folder-components.svg +0 -1
- package/assets/material/folder-config-open.svg +0 -1
- package/assets/material/folder-config.svg +0 -1
- package/assets/material/folder-connection-open.svg +0 -1
- package/assets/material/folder-connection.svg +0 -1
- package/assets/material/folder-constant-open.svg +0 -1
- package/assets/material/folder-constant.svg +0 -1
- package/assets/material/folder-container-open.svg +0 -1
- package/assets/material/folder-container.svg +0 -1
- package/assets/material/folder-content-open.svg +0 -1
- package/assets/material/folder-content.svg +0 -1
- package/assets/material/folder-context-open.svg +0 -1
- package/assets/material/folder-context.svg +0 -1
- package/assets/material/folder-contract-open.svg +0 -1
- package/assets/material/folder-contract.svg +0 -1
- package/assets/material/folder-controller-open.svg +0 -1
- package/assets/material/folder-controller.svg +0 -1
- package/assets/material/folder-core-open.svg +0 -1
- package/assets/material/folder-core.svg +0 -1
- package/assets/material/folder-coverage-open.svg +0 -1
- package/assets/material/folder-coverage.svg +0 -1
- package/assets/material/folder-css-open.svg +0 -1
- package/assets/material/folder-css.svg +0 -1
- package/assets/material/folder-custom-open.svg +0 -1
- package/assets/material/folder-custom.svg +0 -1
- package/assets/material/folder-cypress-open.svg +0 -1
- package/assets/material/folder-cypress.svg +0 -1
- package/assets/material/folder-database-open.svg +0 -1
- package/assets/material/folder-database.svg +0 -1
- package/assets/material/folder-debug-open.svg +0 -1
- package/assets/material/folder-debug.svg +0 -1
- package/assets/material/folder-decorators-open.svg +0 -2
- package/assets/material/folder-decorators.svg +0 -5
- package/assets/material/folder-delta-open.svg +0 -1
- package/assets/material/folder-delta.svg +0 -1
- package/assets/material/folder-dist-open.svg +0 -1
- package/assets/material/folder-dist.svg +0 -1
- package/assets/material/folder-docker-open.svg +0 -1
- package/assets/material/folder-docker.svg +0 -1
- package/assets/material/folder-docs-open.svg +0 -1
- package/assets/material/folder-docs.svg +0 -1
- package/assets/material/folder-download-open.svg +0 -1
- package/assets/material/folder-download.svg +0 -1
- package/assets/material/folder-dump-open.svg +0 -1
- package/assets/material/folder-dump.svg +0 -1
- package/assets/material/folder-environment-open.svg +0 -1
- package/assets/material/folder-environment.svg +0 -1
- package/assets/material/folder-error-open.svg +0 -1
- package/assets/material/folder-error.svg +0 -1
- package/assets/material/folder-event-open.svg +0 -1
- package/assets/material/folder-event.svg +0 -1
- package/assets/material/folder-examples-open.svg +0 -1
- package/assets/material/folder-examples.svg +0 -1
- package/assets/material/folder-expo-open.svg +0 -1
- package/assets/material/folder-expo.svg +0 -1
- package/assets/material/folder-export-open.svg +0 -1
- package/assets/material/folder-export.svg +0 -1
- package/assets/material/folder-fastlane-open.svg +0 -1
- package/assets/material/folder-fastlane.svg +0 -1
- package/assets/material/folder-firebase-open.svg +0 -1
- package/assets/material/folder-firebase.svg +0 -1
- package/assets/material/folder-flow-open.svg +0 -1
- package/assets/material/folder-flow.svg +0 -1
- package/assets/material/folder-font-open.svg +0 -1
- package/assets/material/folder-font.svg +0 -1
- package/assets/material/folder-functions-open.svg +0 -1
- package/assets/material/folder-functions.svg +0 -1
- package/assets/material/folder-gamemaker-open.svg +0 -2
- package/assets/material/folder-gamemaker.svg +0 -2
- package/assets/material/folder-generator-open.svg +0 -1
- package/assets/material/folder-generator.svg +0 -1
- package/assets/material/folder-git-open.svg +0 -1
- package/assets/material/folder-git.svg +0 -1
- package/assets/material/folder-github-open.svg +0 -1
- package/assets/material/folder-github.svg +0 -1
- package/assets/material/folder-gitlab-open.svg +0 -1
- package/assets/material/folder-gitlab.svg +0 -1
- package/assets/material/folder-global-open.svg +0 -1
- package/assets/material/folder-global.svg +0 -1
- package/assets/material/folder-godot-open.svg +0 -2
- package/assets/material/folder-godot.svg +0 -8
- package/assets/material/folder-gradle-open.svg +0 -1
- package/assets/material/folder-gradle.svg +0 -1
- package/assets/material/folder-graphql-open.svg +0 -1
- package/assets/material/folder-graphql.svg +0 -1
- package/assets/material/folder-guard-open.svg +0 -1
- package/assets/material/folder-guard.svg +0 -1
- package/assets/material/folder-gulp-open.svg +0 -1
- package/assets/material/folder-gulp.svg +0 -1
- package/assets/material/folder-helper-open.svg +0 -1
- package/assets/material/folder-helper.svg +0 -1
- package/assets/material/folder-home-open.svg +0 -1
- package/assets/material/folder-home.svg +0 -1
- package/assets/material/folder-hook-open.svg +0 -1
- package/assets/material/folder-hook.svg +0 -1
- package/assets/material/folder-husky-open.svg +0 -1
- package/assets/material/folder-husky.svg +0 -1
- package/assets/material/folder-i18n-open.svg +0 -1
- package/assets/material/folder-i18n.svg +0 -1
- package/assets/material/folder-images-open.svg +0 -1
- package/assets/material/folder-images.svg +0 -1
- package/assets/material/folder-import-open.svg +0 -1
- package/assets/material/folder-import.svg +0 -1
- package/assets/material/folder-include-open.svg +0 -1
- package/assets/material/folder-include.svg +0 -1
- package/assets/material/folder-intellij-open.svg +0 -1
- package/assets/material/folder-intellij-open_light.svg +0 -1
- package/assets/material/folder-intellij.svg +0 -1
- package/assets/material/folder-intellij_light.svg +0 -1
- package/assets/material/folder-interface-open.svg +0 -1
- package/assets/material/folder-interface.svg +0 -1
- package/assets/material/folder-ios-open.svg +0 -1
- package/assets/material/folder-ios.svg +0 -1
- package/assets/material/folder-java-open.svg +0 -1
- package/assets/material/folder-java.svg +0 -1
- package/assets/material/folder-javascript-open.svg +0 -1
- package/assets/material/folder-javascript.svg +0 -1
- package/assets/material/folder-jinja-open.svg +0 -1
- package/assets/material/folder-jinja-open_light.svg +0 -1
- package/assets/material/folder-jinja.svg +0 -1
- package/assets/material/folder-jinja_light.svg +0 -1
- package/assets/material/folder-job-open.svg +0 -1
- package/assets/material/folder-job.svg +0 -1
- package/assets/material/folder-json-open.svg +0 -1
- package/assets/material/folder-json.svg +0 -1
- package/assets/material/folder-keys-open.svg +0 -1
- package/assets/material/folder-keys.svg +0 -1
- package/assets/material/folder-kubernetes-open.svg +0 -1
- package/assets/material/folder-kubernetes.svg +0 -1
- package/assets/material/folder-layout-open.svg +0 -1
- package/assets/material/folder-layout.svg +0 -1
- package/assets/material/folder-less-open.svg +0 -1
- package/assets/material/folder-less.svg +0 -1
- package/assets/material/folder-lib-open.svg +0 -1
- package/assets/material/folder-lib.svg +0 -1
- package/assets/material/folder-log-open.svg +0 -1
- package/assets/material/folder-log.svg +0 -1
- package/assets/material/folder-lua-open.svg +0 -1
- package/assets/material/folder-lua.svg +0 -1
- package/assets/material/folder-mail-open.svg +0 -1
- package/assets/material/folder-mail.svg +0 -1
- package/assets/material/folder-mappings-open.svg +0 -1
- package/assets/material/folder-mappings.svg +0 -1
- package/assets/material/folder-markdown-open.svg +0 -1
- package/assets/material/folder-markdown.svg +0 -1
- package/assets/material/folder-mercurial-open.svg +0 -5
- package/assets/material/folder-mercurial.svg +0 -2
- package/assets/material/folder-messages-open.svg +0 -1
- package/assets/material/folder-messages.svg +0 -1
- package/assets/material/folder-meta-open.svg +0 -1
- package/assets/material/folder-meta.svg +0 -1
- package/assets/material/folder-middleware-open.svg +0 -1
- package/assets/material/folder-middleware.svg +0 -1
- package/assets/material/folder-mjml-open.svg +0 -1
- package/assets/material/folder-mjml.svg +0 -1
- package/assets/material/folder-mobile-open.svg +0 -1
- package/assets/material/folder-mobile.svg +0 -1
- package/assets/material/folder-mock-open.svg +0 -1
- package/assets/material/folder-mock.svg +0 -1
- package/assets/material/folder-netlify-open.svg +0 -5
- package/assets/material/folder-netlify.svg +0 -2
- package/assets/material/folder-next-open.svg +0 -1
- package/assets/material/folder-next.svg +0 -1
- package/assets/material/folder-ngrx-actions-open.svg +0 -1
- package/assets/material/folder-ngrx-actions.svg +0 -1
- package/assets/material/folder-ngrx-effects-open.svg +0 -1
- package/assets/material/folder-ngrx-effects.svg +0 -1
- package/assets/material/folder-ngrx-entities-open.svg +0 -1
- package/assets/material/folder-ngrx-entities.svg +0 -1
- package/assets/material/folder-ngrx-reducer-open.svg +0 -1
- package/assets/material/folder-ngrx-reducer.svg +0 -1
- package/assets/material/folder-ngrx-selectors-open.svg +0 -1
- package/assets/material/folder-ngrx-selectors.svg +0 -1
- package/assets/material/folder-ngrx-state-open.svg +0 -1
- package/assets/material/folder-ngrx-state.svg +0 -1
- package/assets/material/folder-ngrx-store-open.svg +0 -1
- package/assets/material/folder-ngrx-store.svg +0 -1
- package/assets/material/folder-node-open.svg +0 -1
- package/assets/material/folder-node.svg +0 -1
- package/assets/material/folder-nuxt-open.svg +0 -1
- package/assets/material/folder-nuxt.svg +0 -1
- package/assets/material/folder-open.svg +0 -1
- package/assets/material/folder-other-open.svg +0 -1
- package/assets/material/folder-other.svg +0 -1
- package/assets/material/folder-packages-open.svg +0 -1
- package/assets/material/folder-packages.svg +0 -1
- package/assets/material/folder-pdf-open.svg +0 -1
- package/assets/material/folder-pdf.svg +0 -1
- package/assets/material/folder-php-open.svg +0 -1
- package/assets/material/folder-php.svg +0 -1
- package/assets/material/folder-phpmailer-open.svg +0 -1
- package/assets/material/folder-phpmailer.svg +0 -1
- package/assets/material/folder-pipe-open.svg +0 -1
- package/assets/material/folder-pipe.svg +0 -1
- package/assets/material/folder-plastic-open.svg +0 -8
- package/assets/material/folder-plastic.svg +0 -2
- package/assets/material/folder-plugin-open.svg +0 -1
- package/assets/material/folder-plugin.svg +0 -1
- package/assets/material/folder-prisma-open.svg +0 -1
- package/assets/material/folder-prisma.svg +0 -1
- package/assets/material/folder-private-open.svg +0 -1
- package/assets/material/folder-private.svg +0 -1
- package/assets/material/folder-project-open.svg +0 -1
- package/assets/material/folder-project.svg +0 -1
- package/assets/material/folder-proto-open.svg +0 -1
- package/assets/material/folder-proto.svg +0 -1
- package/assets/material/folder-public-open.svg +0 -1
- package/assets/material/folder-public.svg +0 -1
- package/assets/material/folder-python-open.svg +0 -1
- package/assets/material/folder-python.svg +0 -1
- package/assets/material/folder-quasar-open.svg +0 -1
- package/assets/material/folder-quasar.svg +0 -1
- package/assets/material/folder-queue-open.svg +0 -1
- package/assets/material/folder-queue.svg +0 -1
- package/assets/material/folder-react-components-open.svg +0 -1
- package/assets/material/folder-react-components.svg +0 -1
- package/assets/material/folder-redux-actions-open.svg +0 -1
- package/assets/material/folder-redux-actions.svg +0 -1
- package/assets/material/folder-redux-reducer-open.svg +0 -1
- package/assets/material/folder-redux-reducer.svg +0 -1
- package/assets/material/folder-redux-selector-open.svg +0 -1
- package/assets/material/folder-redux-selector.svg +0 -1
- package/assets/material/folder-redux-store-open.svg +0 -1
- package/assets/material/folder-redux-store.svg +0 -1
- package/assets/material/folder-resolver-open.svg +0 -1
- package/assets/material/folder-resolver.svg +0 -1
- package/assets/material/folder-resource-open.svg +0 -1
- package/assets/material/folder-resource.svg +0 -1
- package/assets/material/folder-review-open.svg +0 -1
- package/assets/material/folder-review.svg +0 -1
- package/assets/material/folder-root-open.svg +0 -1
- package/assets/material/folder-root.svg +0 -1
- package/assets/material/folder-routes-open.svg +0 -1
- package/assets/material/folder-routes.svg +0 -1
- package/assets/material/folder-rules-open.svg +0 -1
- package/assets/material/folder-rules.svg +0 -1
- package/assets/material/folder-sass-open.svg +0 -1
- package/assets/material/folder-sass.svg +0 -1
- package/assets/material/folder-scala-open.svg +0 -1
- package/assets/material/folder-scala.svg +0 -1
- package/assets/material/folder-scripts-open.svg +0 -1
- package/assets/material/folder-scripts.svg +0 -1
- package/assets/material/folder-secure-open.svg +0 -1
- package/assets/material/folder-secure.svg +0 -1
- package/assets/material/folder-server-open.svg +0 -1
- package/assets/material/folder-server.svg +0 -1
- package/assets/material/folder-serverless-open.svg +0 -1
- package/assets/material/folder-serverless.svg +0 -1
- package/assets/material/folder-shader-open.svg +0 -1
- package/assets/material/folder-shader.svg +0 -1
- package/assets/material/folder-shared-open.svg +0 -1
- package/assets/material/folder-shared.svg +0 -1
- package/assets/material/folder-src-open.svg +0 -1
- package/assets/material/folder-src.svg +0 -1
- package/assets/material/folder-stack-open.svg +0 -1
- package/assets/material/folder-stack.svg +0 -1
- package/assets/material/folder-stencil-open.svg +0 -1
- package/assets/material/folder-stencil.svg +0 -1
- package/assets/material/folder-storybook-open.svg +0 -1
- package/assets/material/folder-storybook.svg +0 -1
- package/assets/material/folder-stylus-open.svg +0 -1
- package/assets/material/folder-stylus.svg +0 -1
- package/assets/material/folder-sublime-open.svg +0 -1
- package/assets/material/folder-sublime.svg +0 -1
- package/assets/material/folder-supabase-open.svg +0 -5
- package/assets/material/folder-supabase.svg +0 -2
- package/assets/material/folder-svelte-open.svg +0 -1
- package/assets/material/folder-svelte.svg +0 -1
- package/assets/material/folder-svg-open.svg +0 -1
- package/assets/material/folder-svg.svg +0 -1
- package/assets/material/folder-syntax-open.svg +0 -1
- package/assets/material/folder-syntax.svg +0 -1
- package/assets/material/folder-target-open.svg +0 -1
- package/assets/material/folder-target.svg +0 -1
- package/assets/material/folder-tasks-open.svg +0 -1
- package/assets/material/folder-tasks.svg +0 -1
- package/assets/material/folder-temp-open.svg +0 -1
- package/assets/material/folder-temp.svg +0 -1
- package/assets/material/folder-template-open.svg +0 -1
- package/assets/material/folder-template.svg +0 -1
- package/assets/material/folder-terraform-open.svg +0 -1
- package/assets/material/folder-terraform.svg +0 -1
- package/assets/material/folder-test-open.svg +0 -1
- package/assets/material/folder-test.svg +0 -1
- package/assets/material/folder-theme-open.svg +0 -1
- package/assets/material/folder-theme.svg +0 -1
- package/assets/material/folder-tools-open.svg +0 -1
- package/assets/material/folder-tools.svg +0 -1
- package/assets/material/folder-typescript-open.svg +0 -1
- package/assets/material/folder-typescript.svg +0 -1
- package/assets/material/folder-unity-open.svg +0 -1
- package/assets/material/folder-unity.svg +0 -1
- package/assets/material/folder-update-open.svg +0 -1
- package/assets/material/folder-update.svg +0 -1
- package/assets/material/folder-upload-open.svg +0 -1
- package/assets/material/folder-upload.svg +0 -1
- package/assets/material/folder-utils-open.svg +0 -1
- package/assets/material/folder-utils.svg +0 -1
- package/assets/material/folder-vercel-open.svg +0 -1
- package/assets/material/folder-vercel.svg +0 -1
- package/assets/material/folder-verdaccio-open.svg +0 -1
- package/assets/material/folder-verdaccio.svg +0 -1
- package/assets/material/folder-video-open.svg +0 -1
- package/assets/material/folder-video.svg +0 -1
- package/assets/material/folder-views-open.svg +0 -1
- package/assets/material/folder-views.svg +0 -1
- package/assets/material/folder-vm-open.svg +0 -1
- package/assets/material/folder-vm.svg +0 -1
- package/assets/material/folder-vscode-open.svg +0 -1
- package/assets/material/folder-vscode.svg +0 -1
- package/assets/material/folder-vue-directives-open.svg +0 -1
- package/assets/material/folder-vue-directives.svg +0 -1
- package/assets/material/folder-vue-open.svg +0 -1
- package/assets/material/folder-vue.svg +0 -1
- package/assets/material/folder-vuepress-open.svg +0 -1
- package/assets/material/folder-vuepress.svg +0 -1
- package/assets/material/folder-vuex-store-open.svg +0 -1
- package/assets/material/folder-vuex-store.svg +0 -1
- package/assets/material/folder-wakatime-open.svg +0 -1
- package/assets/material/folder-wakatime.svg +0 -1
- package/assets/material/folder-webpack-open.svg +0 -1
- package/assets/material/folder-webpack.svg +0 -1
- package/assets/material/folder-wordpress-open.svg +0 -1
- package/assets/material/folder-wordpress.svg +0 -1
- package/assets/material/folder-yarn-open.svg +0 -1
- package/assets/material/folder-yarn.svg +0 -1
- package/assets/material/folder.svg +0 -1
- package/assets/material/font.svg +0 -1
- package/assets/material/forth.svg +0 -1
- package/assets/material/fortran.svg +0 -1
- package/assets/material/foxpro.svg +0 -1
- package/assets/material/fsharp.svg +0 -1
- package/assets/material/fusebox.svg +0 -1
- package/assets/material/gamemaker.svg +0 -4
- package/assets/material/gatsby.svg +0 -1
- package/assets/material/gcp.svg +0 -1
- package/assets/material/gemfile.svg +0 -1
- package/assets/material/gemini.svg +0 -1
- package/assets/material/git.svg +0 -1
- package/assets/material/gitlab.svg +0 -1
- package/assets/material/gitpod.svg +0 -1
- package/assets/material/gleam.svg +0 -1
- package/assets/material/go-mod.svg +0 -1
- package/assets/material/go.svg +0 -1
- package/assets/material/go_gopher.svg +0 -1
- package/assets/material/godot-assets.svg +0 -7
- package/assets/material/godot.svg +0 -7
- package/assets/material/gradle.svg +0 -1
- package/assets/material/grain.svg +0 -1
- package/assets/material/graphcool.svg +0 -1
- package/assets/material/graphql.svg +0 -1
- package/assets/material/gridsome.svg +0 -1
- package/assets/material/groovy.svg +0 -1
- package/assets/material/grunt.svg +0 -1
- package/assets/material/gulp.svg +0 -1
- package/assets/material/h.svg +0 -1
- package/assets/material/hack.svg +0 -1
- package/assets/material/haml.svg +0 -1
- package/assets/material/handlebars.svg +0 -1
- package/assets/material/hardhat.svg +0 -1
- package/assets/material/haskell.svg +0 -1
- package/assets/material/haxe.svg +0 -1
- package/assets/material/hcl.svg +0 -1
- package/assets/material/hcl_light.svg +0 -1
- package/assets/material/helm.svg +0 -1
- package/assets/material/heroku.svg +0 -1
- package/assets/material/hex.svg +0 -1
- package/assets/material/horusec.svg +0 -1
- package/assets/material/hpp.svg +0 -1
- package/assets/material/html.svg +0 -1
- package/assets/material/http.svg +0 -1
- package/assets/material/husky.svg +0 -1
- package/assets/material/i18n.svg +0 -1
- package/assets/material/idris.svg +0 -1
- package/assets/material/ifanr-cloud.svg +0 -10
- package/assets/material/image.svg +0 -1
- package/assets/material/imba.svg +0 -1
- package/assets/material/ionic.svg +0 -1
- package/assets/material/istanbul.svg +0 -1
- package/assets/material/jar.svg +0 -1
- package/assets/material/java.svg +0 -1
- package/assets/material/javaclass.svg +0 -1
- package/assets/material/javascript-map.svg +0 -1
- package/assets/material/javascript.svg +0 -1
- package/assets/material/jenkins.svg +0 -1
- package/assets/material/jest.svg +0 -1
- package/assets/material/jinja.svg +0 -1
- package/assets/material/jinja_light.svg +0 -1
- package/assets/material/jsconfig.svg +0 -1
- package/assets/material/json.svg +0 -1
- package/assets/material/julia.svg +0 -1
- package/assets/material/jupyter.svg +0 -1
- package/assets/material/karma.svg +0 -1
- package/assets/material/key.svg +0 -1
- package/assets/material/kivy.svg +0 -1
- package/assets/material/kl.svg +0 -1
- package/assets/material/kotlin.svg +0 -1
- package/assets/material/kusto.svg +0 -1
- package/assets/material/laravel.svg +0 -1
- package/assets/material/lerna.svg +0 -1
- package/assets/material/less.svg +0 -1
- package/assets/material/lib.svg +0 -1
- package/assets/material/lighthouse.svg +0 -1
- package/assets/material/lilypond.svg +0 -1
- package/assets/material/liquid.svg +0 -1
- package/assets/material/lisp.svg +0 -1
- package/assets/material/livescript.svg +0 -1
- package/assets/material/lock.svg +0 -1
- package/assets/material/log.svg +0 -1
- package/assets/material/lolcode.svg +0 -1
- package/assets/material/lua.svg +0 -1
- package/assets/material/makefile.svg +0 -1
- package/assets/material/markdown.svg +0 -1
- package/assets/material/markojs.svg +0 -1
- package/assets/material/mathematica.svg +0 -1
- package/assets/material/matlab.svg +0 -1
- package/assets/material/maven.svg +0 -1
- package/assets/material/mdsvex.svg +0 -1
- package/assets/material/mdx.svg +0 -1
- package/assets/material/mercurial.svg +0 -6
- package/assets/material/merlin.svg +0 -1
- package/assets/material/mermaid.svg +0 -4
- package/assets/material/meson.svg +0 -1
- package/assets/material/minecraft.svg +0 -1
- package/assets/material/mint.svg +0 -1
- package/assets/material/mjml.svg +0 -1
- package/assets/material/mocha.svg +0 -1
- package/assets/material/modernizr.svg +0 -1
- package/assets/material/moonscript.svg +0 -1
- package/assets/material/mxml.svg +0 -1
- package/assets/material/nano-staged.svg +0 -1
- package/assets/material/nano-staged_light.svg +0 -1
- package/assets/material/ndst.svg +0 -1
- package/assets/material/nest-controller.svg +0 -1
- package/assets/material/nest-decorator.svg +0 -1
- package/assets/material/nest-filter.svg +0 -1
- package/assets/material/nest-gateway.svg +0 -1
- package/assets/material/nest-guard.svg +0 -1
- package/assets/material/nest-middleware.svg +0 -1
- package/assets/material/nest-module.svg +0 -1
- package/assets/material/nest-pipe.svg +0 -1
- package/assets/material/nest-resolver.svg +0 -1
- package/assets/material/nest-service.svg +0 -1
- package/assets/material/nest.svg +0 -1
- package/assets/material/netlify.svg +0 -7
- package/assets/material/netlify_light.svg +0 -7
- package/assets/material/next.svg +0 -1
- package/assets/material/next_light.svg +0 -1
- package/assets/material/nginx.svg +0 -1
- package/assets/material/ngrx-actions.svg +0 -1
- package/assets/material/ngrx-effects.svg +0 -1
- package/assets/material/ngrx-entity.svg +0 -1
- package/assets/material/ngrx-reducer.svg +0 -1
- package/assets/material/ngrx-selectors.svg +0 -1
- package/assets/material/ngrx-state.svg +0 -1
- package/assets/material/nim.svg +0 -1
- package/assets/material/nix.svg +0 -1
- package/assets/material/nodejs.svg +0 -1
- package/assets/material/nodejs_alt.svg +0 -1
- package/assets/material/nodemon.svg +0 -1
- package/assets/material/npm.svg +0 -1
- package/assets/material/nrwl.svg +0 -1
- package/assets/material/nuget.svg +0 -1
- package/assets/material/nunjucks.svg +0 -1
- package/assets/material/nuxt.svg +0 -1
- package/assets/material/objective-c.svg +0 -4
- package/assets/material/objective-cpp.svg +0 -1
- package/assets/material/ocaml.svg +0 -1
- package/assets/material/odin.svg +0 -1
- package/assets/material/opa.svg +0 -1
- package/assets/material/opam.svg +0 -1
- package/assets/material/otne.svg +0 -1
- package/assets/material/parcel.svg +0 -1
- package/assets/material/pascal.svg +0 -6
- package/assets/material/pawn.svg +0 -1
- package/assets/material/pdf.svg +0 -1
- package/assets/material/percy.svg +0 -1
- package/assets/material/perl.svg +0 -1
- package/assets/material/php-cs-fixer.svg +0 -1
- package/assets/material/php.svg +0 -1
- package/assets/material/php_elephant.svg +0 -1
- package/assets/material/php_elephant_pink.svg +0 -1
- package/assets/material/phpunit.svg +0 -1
- package/assets/material/pinejs.svg +0 -1
- package/assets/material/pipeline.svg +0 -1
- package/assets/material/plastic.svg +0 -7
- package/assets/material/playwright.svg +0 -1
- package/assets/material/plop.svg +0 -1
- package/assets/material/pnpm.svg +0 -1
- package/assets/material/pnpm_light.svg +0 -1
- package/assets/material/poetry.svg +0 -1
- package/assets/material/postcss.svg +0 -1
- package/assets/material/posthtml.svg +0 -1
- package/assets/material/powerpoint.svg +0 -1
- package/assets/material/powershell.svg +0 -1
- package/assets/material/prettier.svg +0 -1
- package/assets/material/prisma.svg +0 -1
- package/assets/material/processing.svg +0 -1
- package/assets/material/prolog.svg +0 -1
- package/assets/material/proto.svg +0 -1
- package/assets/material/protractor.svg +0 -1
- package/assets/material/pug.svg +0 -1
- package/assets/material/puppet.svg +0 -1
- package/assets/material/purescript.svg +0 -1
- package/assets/material/python-misc.svg +0 -1
- package/assets/material/python.svg +0 -1
- package/assets/material/qsharp.svg +0 -1
- package/assets/material/quasar.svg +0 -1
- package/assets/material/qwik.svg +0 -2
- package/assets/material/r.svg +0 -1
- package/assets/material/racket.svg +0 -1
- package/assets/material/raml.svg +0 -1
- package/assets/material/razor.svg +0 -1
- package/assets/material/rc.svg +0 -2
- package/assets/material/react.svg +0 -1
- package/assets/material/react_ts.svg +0 -1
- package/assets/material/readme.svg +0 -1
- package/assets/material/reason.svg +0 -1
- package/assets/material/red.svg +0 -1
- package/assets/material/redux-action.svg +0 -1
- package/assets/material/redux-reducer.svg +0 -1
- package/assets/material/redux-selector.svg +0 -1
- package/assets/material/redux-store.svg +0 -1
- package/assets/material/remix.svg +0 -1
- package/assets/material/remix_light.svg +0 -1
- package/assets/material/renovate.svg +0 -1
- package/assets/material/replit.svg +0 -1
- package/assets/material/rescript-interface.svg +0 -1
- package/assets/material/rescript.svg +0 -1
- package/assets/material/restql.svg +0 -1
- package/assets/material/riot.svg +0 -1
- package/assets/material/roadmap.svg +0 -1
- package/assets/material/robot.svg +0 -1
- package/assets/material/robots.svg +0 -1
- package/assets/material/rollup.svg +0 -1
- package/assets/material/rome.svg +0 -1
- package/assets/material/routing.svg +0 -1
- package/assets/material/rubocop.svg +0 -1
- package/assets/material/rubocop_light.svg +0 -1
- package/assets/material/ruby.svg +0 -1
- package/assets/material/rust.svg +0 -1
- package/assets/material/salesforce.svg +0 -1
- package/assets/material/san.svg +0 -1
- package/assets/material/sas.svg +0 -1
- package/assets/material/sass.svg +0 -1
- package/assets/material/sbt.svg +0 -1
- package/assets/material/scala.svg +0 -1
- package/assets/material/scheme.svg +0 -1
- package/assets/material/search.svg +0 -1
- package/assets/material/semantic-release.svg +0 -1
- package/assets/material/semantic-release_light.svg +0 -1
- package/assets/material/sentry.svg +0 -1
- package/assets/material/sequelize.svg +0 -1
- package/assets/material/serverless.svg +0 -1
- package/assets/material/settings.svg +0 -1
- package/assets/material/shader.svg +0 -1
- package/assets/material/shaderlab.svg +0 -1
- package/assets/material/silverstripe.svg +0 -1
- package/assets/material/siyuan.svg +0 -1
- package/assets/material/sketch.svg +0 -1
- package/assets/material/slim.svg +0 -1
- package/assets/material/slug.svg +0 -1
- package/assets/material/smarty.svg +0 -1
- package/assets/material/sml.svg +0 -1
- package/assets/material/snowpack.svg +0 -1
- package/assets/material/snowpack_light.svg +0 -1
- package/assets/material/snyk.svg +0 -1
- package/assets/material/solidity.svg +0 -1
- package/assets/material/sonarcloud.svg +0 -4
- package/assets/material/steadybit.svg +0 -1
- package/assets/material/stencil.svg +0 -1
- package/assets/material/stitches.svg +0 -1
- package/assets/material/stitches_light.svg +0 -1
- package/assets/material/storybook.svg +0 -1
- package/assets/material/stryker.svg +0 -1
- package/assets/material/stylable.svg +0 -10
- package/assets/material/stylelint.svg +0 -1
- package/assets/material/stylelint_light.svg +0 -1
- package/assets/material/stylus.svg +0 -1
- package/assets/material/sublime.svg +0 -1
- package/assets/material/supabase.svg +0 -4
- package/assets/material/svelte.svg +0 -1
- package/assets/material/svg.svg +0 -1
- package/assets/material/svgo.svg +0 -1
- package/assets/material/svgr.svg +0 -1
- package/assets/material/swc.svg +0 -1
- package/assets/material/swift.svg +0 -1
- package/assets/material/table.svg +0 -1
- package/assets/material/tailwindcss.svg +0 -1
- package/assets/material/tauri.svg +0 -1
- package/assets/material/tcl.svg +0 -1
- package/assets/material/teal.svg +0 -1
- package/assets/material/template.svg +0 -1
- package/assets/material/terraform.svg +0 -1
- package/assets/material/test-js.svg +0 -1
- package/assets/material/test-jsx.svg +0 -1
- package/assets/material/test-ts.svg +0 -1
- package/assets/material/tex.svg +0 -1
- package/assets/material/textlint.svg +0 -1
- package/assets/material/tilt.svg +0 -1
- package/assets/material/tldraw.svg +0 -4
- package/assets/material/tldraw_light.svg +0 -4
- package/assets/material/tobi.svg +0 -1
- package/assets/material/tobimake.svg +0 -1
- package/assets/material/todo.svg +0 -1
- package/assets/material/travis.svg +0 -1
- package/assets/material/tree.svg +0 -1
- package/assets/material/tsconfig.svg +0 -1
- package/assets/material/tune.svg +0 -1
- package/assets/material/turborepo.svg +0 -1
- package/assets/material/turborepo_light.svg +0 -1
- package/assets/material/twig.svg +0 -1
- package/assets/material/twine.svg +0 -1
- package/assets/material/typescript-def.svg +0 -1
- package/assets/material/typescript.svg +0 -1
- package/assets/material/typst.svg +0 -2
- package/assets/material/uml.svg +0 -1
- package/assets/material/uml_light.svg +0 -1
- package/assets/material/url.svg +0 -1
- package/assets/material/vagrant.svg +0 -1
- package/assets/material/vala.svg +0 -1
- package/assets/material/velocity.svg +0 -1
- package/assets/material/vercel.svg +0 -1
- package/assets/material/vercel_light.svg +0 -1
- package/assets/material/verdaccio.svg +0 -1
- package/assets/material/verilog.svg +0 -1
- package/assets/material/vfl.svg +0 -1
- package/assets/material/video.svg +0 -1
- package/assets/material/vim.svg +0 -1
- package/assets/material/virtual.svg +0 -1
- package/assets/material/visualstudio.svg +0 -1
- package/assets/material/vite.svg +0 -1
- package/assets/material/vitest.svg +0 -6
- package/assets/material/vlang.svg +0 -1
- package/assets/material/vscode.svg +0 -1
- package/assets/material/vue-config.svg +0 -1
- package/assets/material/vue.svg +0 -1
- package/assets/material/vuex-store.svg +0 -1
- package/assets/material/wakatime.svg +0 -1
- package/assets/material/wakatime_light.svg +0 -1
- package/assets/material/wallaby.svg +0 -1
- package/assets/material/watchman.svg +0 -1
- package/assets/material/webassembly.svg +0 -1
- package/assets/material/webhint.svg +0 -1
- package/assets/material/webpack.svg +0 -1
- package/assets/material/wepy.svg +0 -1
- package/assets/material/windicss.svg +0 -1
- package/assets/material/wolframlanguage.svg +0 -1
- package/assets/material/word.svg +0 -1
- package/assets/material/xaml.svg +0 -1
- package/assets/material/xml.svg +0 -1
- package/assets/material/yaml.svg +0 -1
- package/assets/material/yang.svg +0 -1
- package/assets/material/yarn.svg +0 -1
- package/assets/material/zig.svg +0 -1
- package/assets/material/zip.svg +0 -1
- package/assets/pop/LICENSE +0 -2
- package/assets/pop/binary.svg +0 -1
- package/assets/pop/compressed.svg +0 -1
- package/assets/pop/database.svg +0 -1
- package/assets/pop/exts/7z.svg +0 -1
- package/assets/pop/exts/apk.svg +0 -1
- package/assets/pop/exts/arc.svg +0 -1
- package/assets/pop/exts/bz.svg +0 -1
- package/assets/pop/exts/deb.svg +0 -1
- package/assets/pop/exts/gz.svg +0 -1
- package/assets/pop/exts/pdf.svg +0 -1
- package/assets/pop/exts/rar.svg +0 -1
- package/assets/pop/exts/rpm.svg +0 -1
- package/assets/pop/exts/tar.svg +0 -1
- package/assets/pop/exts/xar.svg +0 -1
- package/assets/pop/exts/xz.svg +0 -1
- package/assets/pop/exts/zip.svg +0 -1
- package/assets/pop/folder-open.svg +0 -1
- package/assets/pop/folder.svg +0 -1
- package/assets/pop/generic.svg +0 -1
- package/assets/pop/presentation.svg +0 -1
- package/assets/pop/richtext.svg +0 -1
- package/assets/pop/spreadsheet.svg +0 -1
- package/assets/pop/text.svg +0 -1
- package/components/dynamic-html/dynamic-html.component.d.ts +0 -15
- package/components/dynamic-html/dynamic-html.module.d.ts +0 -10
- package/components/dynamic-html/dynamic-html.service.d.ts +0 -18
- package/components/dynamic-html/types.d.ts +0 -12
- package/components/tabulator/tabulator.component.d.ts +0 -30
- package/components/vscode/vscode.component.d.ts +0 -52
- package/esm2022/assets/mat-icons.mjs +0 -5705
- package/esm2022/components/command-palette/command-palette.component.mjs +0 -257
- package/esm2022/components/dynamic-html/dynamic-html.component.mjs +0 -43
- package/esm2022/components/dynamic-html/dynamic-html.module.mjs +0 -27
- package/esm2022/components/dynamic-html/dynamic-html.service.mjs +0 -66
- package/esm2022/components/dynamic-html/types.mjs +0 -7
- package/esm2022/components/filemanager/file-grid/file-grid.component.mjs +0 -674
- package/esm2022/components/filemanager/helpers.mjs +0 -26
- package/esm2022/components/filemanager/icon-resolver.mjs +0 -155
- package/esm2022/components/filemanager/textextensions.mjs +0 -294
- package/esm2022/components/filemanager/toolbar/toolbar.component.mjs +0 -165
- package/esm2022/components/lazy-loader/lazy-loader.component.mjs +0 -383
- package/esm2022/components/lazy-loader/lazy-loader.module.mjs +0 -33
- package/esm2022/components/lazy-loader/lazy-loader.service.mjs +0 -217
- package/esm2022/components/lazy-loader/types.mjs +0 -26
- package/esm2022/components/menu/menu.component.mjs +0 -433
- package/esm2022/components/parallax-card/parallax-card.component.mjs +0 -138
- package/esm2022/components/tabulator/tabulator.component.mjs +0 -93
- package/esm2022/components/tooltip/tooltip.component.mjs +0 -205
- package/esm2022/components/types.mjs +0 -3
- package/esm2022/components/vscode/ts-type-resolver/dependency-parser.mjs +0 -91
- package/esm2022/components/vscode/ts-type-resolver/dummy-source-cache.mjs +0 -15
- package/esm2022/components/vscode/ts-type-resolver/import-resolver.mjs +0 -311
- package/esm2022/components/vscode/ts-type-resolver/main.mjs +0 -112
- package/esm2022/components/vscode/ts-type-resolver/recursion-depth.mjs +0 -21
- package/esm2022/components/vscode/ts-type-resolver/types.mjs +0 -14
- package/esm2022/components/vscode/ts-type-resolver/unpkg-source-resolver.mjs +0 -21
- package/esm2022/components/vscode/ts-type-resolver/update-emitter.mjs +0 -37
- package/esm2022/components/vscode/vscode.component.mjs +0 -232
- package/esm2022/directives/image-cache.directive.mjs +0 -140
- package/esm2022/directives/menu.directive.mjs +0 -159
- package/esm2022/directives/tooltip.directive.mjs +0 -154
- package/esm2022/directives/utils.mjs +0 -120
- package/esm2022/pipes/html-bypass.pipe.mjs +0 -27
- package/esm2022/pipes/resource-bypass.pipe.mjs +0 -27
- package/esm2022/pipes/script-bypass.pipe.mjs +0 -27
- package/esm2022/pipes/style-bypass.pipe.mjs +0 -27
- package/esm2022/pipes/url-bypass.pipe.mjs +0 -27
- package/esm2022/public-api.mjs +0 -59
- package/esm2022/services/command-palette.service.mjs +0 -209
- package/esm2022/services/dependency.service.mjs +0 -55
- package/esm2022/services/dialog.service.mjs +0 -69
- package/esm2022/services/fetch.service.mjs +0 -74
- package/esm2022/services/file.service.mjs +0 -42
- package/esm2022/services/keyboard.service.mjs +0 -128
- package/esm2022/services/navigation.service.mjs +0 -52
- package/esm2022/services/theme.service.mjs +0 -64
- package/esm2022/types/menu.mjs +0 -2
- package/esm2022/types/popup.mjs +0 -2
- package/esm2022/types/tooltip.mjs +0 -2
- package/esm2022/utils/index.mjs +0 -205
- package/fesm2022/dotglitch-ngx-common-folder-rename.component-Bh1IiRvd.mjs.map +0 -1
- package/utils/index.d.ts +0 -128
- /package/{components → core/components}/lazy-loader/lazy-loader.component.d.ts +0 -0
- /package/{components → core/components}/lazy-loader/lazy-loader.module.d.ts +0 -0
- /package/{components → core/components}/lazy-loader/lazy-loader.service.d.ts +0 -0
- /package/{components → core/components}/lazy-loader/types.d.ts +0 -0
- /package/{components → core/components}/parallax-card/parallax-card.component.d.ts +0 -0
- /package/{directives → core/directives}/image-cache.directive.d.ts +0 -0
- /package/{directives → core/directives}/utils.d.ts +0 -0
- /package/{pipes → core/pipes}/html-bypass.pipe.d.ts +0 -0
- /package/{pipes → core/pipes}/resource-bypass.pipe.d.ts +0 -0
- /package/{pipes → core/pipes}/script-bypass.pipe.d.ts +0 -0
- /package/{pipes → core/pipes}/style-bypass.pipe.d.ts +0 -0
- /package/{pipes → core/pipes}/url-bypass.pipe.d.ts +0 -0
- /package/{services → core/services}/dependency.service.d.ts +0 -0
- /package/{services → core/services}/dialog.service.d.ts +0 -0
- /package/{services → core/services}/fetch.service.d.ts +0 -0
- /package/{services → core/services}/file.service.d.ts +0 -0
- /package/{services → core/services}/keyboard.service.d.ts +0 -0
- /package/{services → core/services}/theme.service.d.ts +0 -0
- /package/{types → core/types}/popup.d.ts +0 -0
- /package/{components/filemanager → filemanager}/icon-resolver.d.ts +0 -0
- /package/{assets → filemanager}/mat-icons.d.ts +0 -0
- /package/{components/filemanager → filemanager}/textextensions.d.ts +0 -0
- /package/{components/filemanager → filemanager}/toolbar/breadcrumb/breadcrumb.component.d.ts +0 -0
- /package/{components/filemanager → filemanager}/toolbar/icon-button/icon-button.component.d.ts +0 -0
- /package/{components/filemanager → filemanager}/tree-view/tree-view.component.d.ts +0 -0
- /package/{components/vscode → monaco-editor}/ts-type-resolver/dependency-parser.d.ts +0 -0
- /package/{components/vscode → monaco-editor}/ts-type-resolver/dummy-source-cache.d.ts +0 -0
- /package/{components/vscode → monaco-editor}/ts-type-resolver/import-resolver.d.ts +0 -0
- /package/{components/vscode → monaco-editor}/ts-type-resolver/main.d.ts +0 -0
- /package/{components/vscode → monaco-editor}/ts-type-resolver/recursion-depth.d.ts +0 -0
- /package/{components/vscode → monaco-editor}/ts-type-resolver/types.d.ts +0 -0
- /package/{components/vscode → monaco-editor}/ts-type-resolver/unpkg-source-resolver.d.ts +0 -0
- /package/{components/vscode → monaco-editor}/ts-type-resolver/update-emitter.d.ts +0 -0
|
@@ -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:#00897b"/><path d="M23.285 16.95h-1.288v1.288h-3.864v-1.932h1.288v-1.288h-1.288v-3.22a1.288 1.288 0 0 0-1.288-1.288h-5.153V9.222h-1.288v5.152h1.288v-1.288h3.864v1.932h-1.288v1.288h1.288v3.22a1.288 1.288 0 0 0 1.289 1.288h5.152v1.288h1.288" style="fill:#b2dfdb;stroke-width:.64403"/></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:#00897b"/><path d="M23.284 16.949h-1.288v1.288h-3.864v-1.932h1.288v-1.288h-1.288v-3.22a1.288 1.288 0 0 0-1.288-1.288H11.69V9.22h-1.288v5.152h1.288v-1.288h3.864v1.932h-1.288v1.288h1.288v3.22a1.288 1.288 0 0 0 1.289 1.288h5.152V22.1h1.288" style="fill:#b2dfdb;stroke-width:.64403"/></svg>
|
|
@@ -1,8 +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,20H4c-1.105,0-2-0.895-2-2V6c0-1.11,0.89-2,2-2h6l2,2h7c1.097,0,2,0.903,2,2H4v10l2.14-8h17.07 l-2.28,8.5C20.7,19.37,19.92,20,19,20z" fill="#ff9800"/>
|
|
4
|
-
<g transform="matrix(.87402 0 0 .87402 2.8627 .76736)" fill="#fff3e0">
|
|
5
|
-
<path class="st1" d="m22.583 11.978-4.87-2.789c-0.441-0.253-0.983-0.253-1.424 0l-4.87 2.789c-0.281 0.161-0.494 0.409-0.614 0.7-0.07 0.17-0.107 0.354-0.107 0.544v5.557c0 0.514 0.266 0.941 0.712 1.197l0.69 0.393 0.021-6.519c0-0.138 0.03-0.281 0.077-0.406 0.092-0.226 0.262-0.432 0.481-0.557l3.771-2.159c0.342-0.196 0.761-0.196 1.103 0l3.771 2.159c0.263 0.151 0.45 0.401 0.523 0.687 0.023 0.089 0.035 0.181 0.035 0.276v4.303c0 0.398-0.213 0.765-0.558 0.963l-3.771 2.159c-0.172 0.099-0.364 0.147-0.556 0.146v1.579c0.246 0 0.494-0.063 0.714-0.189l4.87-2.789c0.446-0.255 0.721-0.73 0.721-1.244v-5.556c0-0.132-0.018-0.261-0.053-0.384-0.097-0.359-0.335-0.67-0.666-0.86z"/>
|
|
6
|
-
<path class="st1" d="m17.396 19.782 2.705-1.549c0.248-0.142 0.4-0.405 0.4-0.691v-3.085c0-0.065-8e-3 -0.128-0.023-0.19-0.051-0.209-0.186-0.391-0.377-0.501l-2.705-1.548c-0.245-0.14-0.546-0.14-0.791 0l-2.704 1.548c-0.17 0.098-0.296 0.253-0.358 0.432-0.026 0.081-0.043 0.172-0.043 0.259l-0.01 6.696 1.443 0.81v-3.138l1.672 0.957c0.12 0.069 0.254 0.104 0.388 0.105 0.139 2e-3 0.278-0.033 0.403-0.105zm-2.236-2.456c-0.147-0.084-0.238-0.241-0.238-0.41v-1.832c0-0.056 0.01-0.11 0.028-0.161 0.038-0.104 0.111-0.193 0.21-0.249l1.606-0.919c0.145-0.083 0.324-0.083 0.47 0l1.606 0.919c0.118 0.068 0.2 0.182 0.227 0.312 5e-3 0.028 0.01 0.069 0.01 0.098v1.832c0 0.169-0.091 0.326-0.238 0.41l-1.606 0.919c-0.073 0.042-0.154 0.063-0.235 0.063s-0.162-0.021-0.235-0.062z"/>
|
|
7
|
-
</g>
|
|
8
|
-
</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,4H4C2.89,4,2,4.89,2,6v12c0,1.097,0.903,2,2,2h16c1.097,0,2-0.903,2-2V8c0-1.105-0.895-2-2-2h-8L10,4z" fill="#ff9800"/><g transform="matrix(.87402 0 0 .87402 2.8627 .76743)" fill="#fff3e0"><path class="st1" d="m22.583 11.978-4.87-2.789c-0.441-0.253-0.983-0.253-1.424 0l-4.87 2.789c-0.281 0.161-0.494 0.409-0.614 0.7-0.07 0.17-0.107 0.354-0.107 0.544v5.557c0 0.514 0.266 0.941 0.712 1.197l0.69 0.393 0.021-6.519c0-0.138 0.03-0.281 0.077-0.406 0.092-0.226 0.262-0.432 0.481-0.557l3.771-2.159c0.342-0.196 0.761-0.196 1.103 0l3.771 2.159c0.263 0.151 0.45 0.401 0.523 0.687 0.023 0.089 0.035 0.181 0.035 0.276v4.303c0 0.398-0.213 0.765-0.558 0.963l-3.771 2.159c-0.172 0.099-0.364 0.147-0.556 0.146v1.579c0.246 0 0.494-0.063 0.714-0.189l4.87-2.789c0.446-0.255 0.721-0.73 0.721-1.244v-5.556c0-0.132-0.018-0.261-0.053-0.384-0.097-0.359-0.335-0.67-0.666-0.86z"/><path class="st1" d="m17.396 19.782 2.705-1.549c0.248-0.142 0.4-0.405 0.4-0.691v-3.085c0-0.065-8e-3 -0.128-0.023-0.19-0.051-0.209-0.186-0.391-0.377-0.501l-2.705-1.548c-0.245-0.14-0.546-0.14-0.791 0l-2.704 1.548c-0.17 0.098-0.296 0.253-0.358 0.432-0.026 0.081-0.043 0.172-0.043 0.259l-0.01 6.696 1.443 0.81v-3.138l1.672 0.957c0.12 0.069 0.254 0.104 0.388 0.105 0.139 2e-3 0.278-0.033 0.403-0.105zm-2.236-2.456c-0.147-0.084-0.238-0.241-0.238-0.41v-1.832c0-0.056 0.01-0.11 0.028-0.161 0.038-0.104 0.111-0.193 0.21-0.249l1.606-0.919c0.145-0.083 0.324-0.083 0.47 0l1.606 0.919c0.118 0.068 0.2 0.182 0.227 0.312 5e-3 0.028 0.01 0.069 0.01 0.098v1.832c0 0.169-0.091 0.326-0.238 0.41l-1.606 0.919c-0.073 0.042-0.154 0.063-0.235 0.063s-0.162-0.021-0.235-0.062z"/></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"/><path d="M12.276 14.245h.922v-2.46c0-.682.553-1.229 1.23-1.229h2.459v-.922a1.537 1.537 0 0 1 1.537-1.537 1.537 1.537 0 0 1 1.537 1.537v.922h2.459a1.23 1.23 0 0 1 1.23 1.23v2.336h-.923c-.922 0-1.66.738-1.66 1.66 0 .922.738 1.66 1.66 1.66h.922v2.336a1.23 1.23 0 0 1-1.23 1.23h-2.335v-.923c0-.922-.738-1.66-1.66-1.66-.923 0-1.66.738-1.66 1.66v.922h-2.336a1.23 1.23 0 0 1-1.23-1.23V17.32h-.922a1.537 1.537 0 0 1-1.537-1.537 1.537 1.537 0 0 1 1.537-1.537z" style="fill:#b3e5fc;stroke-width:.61477"/></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:#0288d1"/><path d="M12.276 14.245h.922v-2.46c0-.682.553-1.229 1.23-1.229h2.459v-.922a1.537 1.537 0 0 1 1.537-1.537 1.537 1.537 0 0 1 1.537 1.537v.922h2.459a1.23 1.23 0 0 1 1.23 1.23v2.336h-.923c-.922 0-1.66.738-1.66 1.66 0 .922.738 1.66 1.66 1.66h.922v2.336a1.23 1.23 0 0 1-1.23 1.23h-2.335v-.923c0-.922-.738-1.66-1.66-1.66-.923 0-1.66.738-1.66 1.66v.922h-2.336a1.23 1.23 0 0 1-1.23-1.23V17.32h-.922a1.537 1.537 0 0 1-1.537-1.537 1.537 1.537 0 0 1 1.537-1.537z" style="fill:#b3e5fc;stroke-width:.61477"/></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="#00BFA5"/><g style="fill:#a7ffeb"><path d="m23.036 18.979-6.134 1.768c-.187.054-.367-.104-.328-.288l2.191-10.225c.041-.191.312-.222.398-.045l4.058 8.395a.284.284 0 0 1-.185.395zm1.051-.417-4.698-9.72a.755.755 0 0 0-.642-.418.752.752 0 0 0-.687.347l-5.095 8.041a.735.735 0 0 0 .009.807l2.491 3.759a.807.807 0 0 0 .9.322l7.23-2.083a.784.784 0 0 0 .497-.419.735.735 0 0 0-.005-.636z" style="clip-rule:evenodd;fill-rule:evenodd;fill:#a7ffeb" transform="translate(-1.444)"/></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" 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="#00BFA5"/><g style="fill:#a7ffeb"><path d="m23.036 18.979-6.134 1.768c-.187.054-.367-.104-.328-.288l2.191-10.225c.041-.191.312-.222.398-.045l4.058 8.395a.284.284 0 0 1-.185.395zm1.051-.417-4.698-9.72a.755.755 0 0 0-.642-.418.752.752 0 0 0-.687.347l-5.095 8.041a.735.735 0 0 0 .009.807l2.491 3.759a.807.807 0 0 0 .9.322l7.23-2.083a.784.784 0 0 0 .497-.419.735.735 0 0 0-.005-.636z" style="clip-rule:evenodd;fill-rule:evenodd;fill:#a7ffeb" transform="translate(-1.444)"/></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:#ff5252"/><path d="M17.249 9.26a5.945 5.945 0 0 0-5.943 5.944 5.945 5.945 0 0 0 5.943 5.943 5.945 5.945 0 0 0 5.943-5.943 5.945 5.945 0 0 0-5.943-5.943zm0 10.698a4.753 4.753 0 0 1-4.754-4.755c0-1.1.374-2.11 1.004-2.912l6.662 6.662a4.696 4.696 0 0 1-2.912 1.005zm3.75-1.843-6.662-6.662a4.696 4.696 0 0 1 2.912-1.004 4.753 4.753 0 0 1 4.754 4.754c0 1.1-.374 2.11-1.004 2.912z" style="fill:#ffcdd2;stroke-width:.59431"/></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:#ff5252"/><path d="M17.249 9.26a5.945 5.945 0 0 0-5.943 5.944 5.945 5.945 0 0 0 5.943 5.943 5.945 5.945 0 0 0 5.943-5.943A5.945 5.945 0 0 0 17.25 9.26zm0 10.697a4.753 4.753 0 0 1-4.755-4.754c0-1.1.375-2.11 1.005-2.912l6.662 6.662a4.697 4.697 0 0 1-2.912 1.005zm3.75-1.842-6.662-6.662a4.697 4.697 0 0 1 2.912-1.005 4.753 4.753 0 0 1 4.754 4.755c0 1.1-.374 2.11-1.004 2.912z" style="fill:#ffcdd2;stroke-width:.59431"/></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="m20.283 15.319 3.45 3.425-2.035 2.01-3.425-3.425v-.564l1.446-1.446h.564m.558-1.55-.595-.588-2.935 2.94v1.208l-3.45 3.45-2.009-2.035 3.425-3.425h1.207l.478-.478-2.353-2.359h-.796l-1.722-1.74 1.605-1.605 1.716 1.715v.803l2.383 2.353 1.63-1.63-.588-.619.796-.803h-1.63l-.398-.398 2.028-2.034.405.404v1.63l.803-.809 2.01 2.01c.667.674.667 1.77 0 2.439l-1.208-1.232z" style="fill:#bbdefb;stroke-width:.61271"/></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="m20.283 15.319 3.45 3.425-2.035 2.01-3.425-3.425v-.564l1.446-1.446h.564m.558-1.55-.595-.588-2.935 2.94v1.208l-3.45 3.45-2.009-2.035 3.425-3.425h1.207l.478-.478-2.353-2.359h-.796l-1.722-1.74 1.605-1.605 1.716 1.715v.803l2.383 2.353 1.63-1.63-.588-.619.796-.803h-1.63l-.398-.398 2.028-2.034.405.404v1.63l.803-.809 2.01 2.01c.667.674.667 1.77 0 2.439l-1.208-1.232z" style="fill:#bbdefb;stroke-width:.61271"/></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="#ff7043"/><g fill="#ffccbc" stroke-width="1.786"><path d="m9.635 13.162 7.046-4.625v2.99l-7.046 4.625z"/><path d="m9.635 16.152 7.046 4.625v-2.99l-7.046-4.625zm14.093 0-7.046 4.625v-2.99l7.046-4.625z"/><path d="m23.728 13.162-7.046-4.625v2.99l7.046 4.625z"/></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="#ff7043" fill-rule="nonzero"/><g fill="#ffccbc" stroke-width="1.786"><path d="m9.635 13.162 7.046-4.625v2.99l-7.046 4.625z"/><path d="m9.635 16.152 7.046 4.625v-2.99l-7.046-4.625zm14.093 0-7.046 4.625v-2.99l7.046-4.625z"/><path d="m23.728 13.162-7.046-4.625v2.99l7.046 4.625z"/></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="#039be5"/><path d="M20.037 16.746c.05-.408.087-.817.087-1.237s-.037-.83-.087-1.238h2.091c.099.396.16.81.16 1.238a5.1 5.1 0 0 1-.16 1.237m-3.186 3.44c.371-.687.656-1.43.854-2.203h1.825a4.967 4.967 0 0 1-2.68 2.203m-.154-3.44h-2.895c-.062-.408-.099-.817-.099-1.237s.037-.835.099-1.238h2.895c.056.403.1.817.1 1.238s-.044.829-.1 1.237m-1.447 3.687a8.39 8.39 0 0 1-1.182-2.45h2.363a8.39 8.39 0 0 1-1.181 2.45m-2.475-7.399H13.06a4.902 4.902 0 0 1 2.672-2.202 10.63 10.63 0 0 0-.866 2.202m-1.806 4.95h1.806c.217.773.495 1.515.866 2.202a4.954 4.954 0 0 1-2.672-2.203m-.508-1.237a5.099 5.099 0 0 1-.16-1.237 5.1 5.1 0 0 1 .16-1.238h2.091c-.05.409-.086.817-.086 1.238s.037.829.086 1.237m2.698-6.168a8.425 8.425 0 0 1 1.181 2.456h-2.363a8.426 8.426 0 0 1 1.182-2.456m4.28 2.456h-1.824a9.682 9.682 0 0 0-.854-2.202 4.941 4.941 0 0 1 2.679 2.202M17.34 9.322a6.193 6.193 0 0 0-6.187 6.187 6.186 6.186 0 0 0 6.187 6.186 6.186 6.186 0 0 0 6.186-6.186 6.186 6.186 0 0 0-6.186-6.187z" fill="#b3e5fc"/></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="#039be5" fill-rule="nonzero"/><path d="M20.036 16.746c.05-.408.087-.817.087-1.237s-.037-.83-.087-1.238h2.091c.099.396.16.81.16 1.238a5.1 5.1 0 0 1-.16 1.237m-3.186 3.44c.371-.687.656-1.43.854-2.203h1.825a4.968 4.968 0 0 1-2.679 2.203m-.155-3.44h-2.895c-.062-.408-.099-.817-.099-1.237s.037-.835.1-1.238h2.894c.056.403.1.817.1 1.238s-.044.829-.1 1.237m-1.447 3.687a8.39 8.39 0 0 1-1.182-2.45h2.363a8.39 8.39 0 0 1-1.181 2.45m-2.475-7.399h-1.806a4.902 4.902 0 0 1 2.672-2.202c-.37.686-.65 1.429-.866 2.202m-1.806 4.95h1.806c.217.773.495 1.515.866 2.202a4.954 4.954 0 0 1-2.672-2.203m-.508-1.237a5.099 5.099 0 0 1-.16-1.237 5.1 5.1 0 0 1 .16-1.238h2.091c-.049.409-.086.817-.086 1.238s.037.829.086 1.237m2.698-6.168a8.425 8.425 0 0 1 1.181 2.456h-2.363a8.426 8.426 0 0 1 1.182-2.456m4.28 2.456h-1.824a9.682 9.682 0 0 0-.854-2.202 4.94 4.94 0 0 1 2.679 2.202m-4.281-3.712a6.193 6.193 0 0 0-6.187 6.187 6.186 6.186 0 0 0 6.187 6.186 6.186 6.186 0 0 0 6.186-6.186 6.186 6.186 0 0 0-6.186-6.187z" fill="#b3e5fc"/></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:#42a5f5"/><path d="M9.86 2A2.86 2.86 0 0 0 7 4.86v1.68h4.29c.39 0 .71.57.71.96H4.86A2.86 2.86 0 0 0 2 10.36v3.782C2 15.722 3.28 17 4.86 17h1.18v-2.68a2.85 2.85 0 0 1 2.85-2.86h5.25A2.85 2.85 0 0 0 17 8.61V4.86A2.86 2.86 0 0 0 14.14 2zm-.72 1.61c.4 0 .72.121.72.711s-.32.89-.72.89c-.39 0-.71-.3-.71-.89s.32-.71.71-.71z" style="fill:#3c78aa" transform="matrix(.6453 0 0 .64533 9.543 7.246)"/><path d="M17.959 7v2.68a2.85 2.85 0 0 1-2.85 2.86H9.86A2.85 2.85 0 0 0 7 15.388v3.75A2.86 2.86 0 0 0 9.86 22h4.28A2.86 2.86 0 0 0 17 19.139v-1.68h-4.291c-.39 0-.709-.569-.709-.959h7.14A2.86 2.86 0 0 0 22 13.639v-3.78A2.86 2.86 0 0 0 19.14 7zM8.32 11.514l-.004.004c.012-.003.025-.002.038-.004zm6.54 7.275c.39 0 .71.3.71.89a.71.71 0 0 1-.71.71c-.4 0-.72-.12-.72-.71s.32-.89.72-.89z" style="fill:#fdd835" transform="matrix(.6453 0 0 .64533 9.543 7.246)"/></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:#42a5f5"/><path d="M9.86 2A2.86 2.86 0 0 0 7 4.86v1.68h4.29c.39 0 .71.57.71.96H4.86A2.86 2.86 0 0 0 2 10.36v3.782C2 15.722 3.28 17 4.86 17h1.18v-2.68a2.85 2.85 0 0 1 2.85-2.86h5.25A2.85 2.85 0 0 0 17 8.61V4.86A2.86 2.86 0 0 0 14.14 2zm-.72 1.61c.4 0 .72.121.72.711s-.32.89-.72.89c-.39 0-.71-.3-.71-.89s.32-.71.71-.71z" style="fill:#3c78aa" transform="matrix(.6453 0 0 .64533 9.543 7.246)"/><path d="M17.959 7v2.68a2.85 2.85 0 0 1-2.85 2.86H9.86A2.85 2.85 0 0 0 7 15.388v3.75A2.86 2.86 0 0 0 9.86 22h4.28A2.86 2.86 0 0 0 17 19.139v-1.68h-4.291c-.39 0-.709-.569-.709-.959h7.14A2.86 2.86 0 0 0 22 13.639v-3.78A2.86 2.86 0 0 0 19.14 7zM8.32 11.514l-.004.004c.012-.003.025-.002.038-.004zm6.54 7.275c.39 0 .71.3.71.89a.71.71 0 0 1-.71.71c-.4 0-.72-.12-.72-.71s.32-.89.72-.89z" style="fill:#fdd835" transform="matrix(.6453 0 0 .64533 9.543 7.246)"/></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:#1976d2"/><path d="M19.018 14.626a1.198 1.198 0 0 1-1.198 1.198 1.198 1.198 0 0 1-1.197-1.198 1.198 1.198 0 0 1 1.197-1.198 1.198 1.198 0 0 1 1.198 1.198zm4.118-3.07a6.138 6.138 0 0 0-.94-1.229l-1.385.8a4.611 4.611 0 0 0-1.445-.838 5.682 5.682 0 0 0-1.119 1.596c1.541-.105 3.132.453 4.61 1.607l.871-.503a6.138 6.138 0 0 0-.592-1.432zm0 6.139a6.138 6.138 0 0 0 .595-1.43l-1.384-.8a4.611 4.611 0 0 0 .003-1.67 5.68 5.68 0 0 0-1.942-.17c.861 1.282 1.174 2.939.913 4.795l.871.503a6.138 6.138 0 0 0 .944-1.228zm-5.315 3.069a6.138 6.138 0 0 0 1.535-.2v-1.598a4.611 4.611 0 0 0 1.449-.833 5.68 5.68 0 0 0-.823-1.767c-.68 1.387-1.959 2.486-3.697 3.189v1.006a6.138 6.138 0 0 0 1.536.203zm-5.316-3.069a6.138 6.138 0 0 0 .941 1.23l1.384-.8c.432.37.922.652 1.446.838a5.682 5.682 0 0 0 1.118-1.596c-1.54.105-3.132-.453-4.61-1.607l-.87.503a6.138 6.138 0 0 0 .591 1.432zm0-6.138a6.138 6.138 0 0 0-.595 1.43l1.385.8a4.611 4.611 0 0 0-.003 1.67 5.68 5.68 0 0 0 1.942.17c-.862-1.282-1.174-2.939-.913-4.796l-.872-.503a6.138 6.138 0 0 0-.944 1.23zm5.315-3.069a6.138 6.138 0 0 0-1.535.2v1.598a4.611 4.611 0 0 0-1.448.833 5.68 5.68 0 0 0 .823 1.767c.68-1.387 1.958-2.486 3.697-3.189V8.691a6.138 6.138 0 0 0-1.537-.203z" fill="#263238" style="fill:#bbdefb;stroke-width:.0049288"/></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:#1976d2"/><path d="M19.018 14.626a1.198 1.198 0 0 1-1.198 1.198 1.198 1.198 0 0 1-1.197-1.198 1.198 1.198 0 0 1 1.197-1.198 1.198 1.198 0 0 1 1.198 1.198zm4.118-3.07a6.138 6.138 0 0 0-.94-1.229l-1.385.8a4.611 4.611 0 0 0-1.445-.838 5.682 5.682 0 0 0-1.119 1.596c1.541-.105 3.132.453 4.61 1.607l.871-.503a6.138 6.138 0 0 0-.592-1.432zm0 6.139a6.138 6.138 0 0 0 .595-1.43l-1.384-.8a4.611 4.611 0 0 0 .003-1.67 5.68 5.68 0 0 0-1.942-.17c.861 1.282 1.174 2.939.913 4.795l.871.503a6.138 6.138 0 0 0 .944-1.228zm-5.315 3.069a6.138 6.138 0 0 0 1.535-.2v-1.598a4.611 4.611 0 0 0 1.449-.833 5.68 5.68 0 0 0-.823-1.767c-.68 1.387-1.959 2.486-3.697 3.189v1.006a6.138 6.138 0 0 0 1.536.203zm-5.316-3.069a6.138 6.138 0 0 0 .941 1.23l1.384-.8c.432.37.922.652 1.446.838a5.682 5.682 0 0 0 1.118-1.596c-1.54.105-3.132-.453-4.61-1.607l-.87.503a6.138 6.138 0 0 0 .591 1.432zm0-6.138a6.138 6.138 0 0 0-.595 1.43l1.385.8a4.611 4.611 0 0 0-.003 1.67c.651.17 1.302.227 1.942.17-.862-1.282-1.174-2.939-.913-4.796l-.872-.503a6.138 6.138 0 0 0-.944 1.23zm5.315-3.069a6.138 6.138 0 0 0-1.535.2v1.598a4.611 4.611 0 0 0-1.448.833 5.68 5.68 0 0 0 .823 1.767c.68-1.387 1.958-2.486 3.697-3.189V8.691a6.138 6.138 0 0 0-1.537-.203z" fill="#263238" style="fill:#bbdefb;stroke-width:.0049288"/></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="#039be5"/><g color="#000" fill="#b3e5fc" stroke-miterlimit="3.7" stroke-width="190.6" style="paint-order:markers fill stroke"><path d="M2504 4949c-27-4-81-22-120-38-116-50-2226-1168-2266-1200-91-76-121-236-67-352 15-32 41-67 60-81 40-29 2245-1022 2334-1050 73-24 171-20 259 11 97 34 2268 1012 2302 1037 50 37 78 105 82 199 5 106-21 179-81 231-42 35-2191 1176-2297 1219-67 27-138 36-206 24zm1114.7-820.42c607-326 1104.1-625.72 1104.1-629.72 1-4-453.84-218.87-1059.8-474.87l-1103-464-1098 462c-604 255-1053.5 477.72-1054.5 482.72-1 6 446.5 266.28 1050.5 591.28 603 326 1098 593 1098 593s456.7-234.42 1062.7-560.42z" style="-inkscape-stroke:none" transform="matrix(.00246 0 0 -.00246 10.884 21.263)"/><path d="M2552.7 2116.4c-47.089-.1-93.309 6.604-136.9 20.863-16.756 5.31-26.646 9.92-48.068 18.894-21.697 9.09-50.214 21.316-84.869 36.352-69.311 30.072-163.04 71.336-273.11 120.14-220.12 97.601-505.44 225.3-789.25 353.04-283.81 127.74-566.06 255.5-780.05 353.23-106.99 48.863-196.89 90.201-261.61 120.38-32.361 15.091-58.381 27.367-77.471 36.588-9.545 4.61-17.306 8.427-23.746 11.715-6.44 3.288-5.366.735-22.568 13.207a95.311 95.311 0 0 0-.594.433c-46.64 34.367-68.13 71.133-89.758 117.27a95.311 95.311 0 0 0-.107.229c-73.85 158.64-41.291 353.79 92.309 465.37a95.311 95.311 0 0 0 1.555 1.272c14.72 11.776 14.567 10.094 20.73 13.737 6.163 3.643 13.627 7.914 22.799 13.08 18.344 10.333 43.34 24.126 74.414 41.1 62.146 33.947 148.43 80.505 251.17 135.62 205.49 110.22 476.7 254.58 750.31 399.52s549.58 290.42 764.56 402.88c107.49 56.232 199.71 104.2 268.94 139.79 69.226 35.598 109.33 56.356 134.89 67.371a95.311 95.311 0 0 0 1.55.653c44.127 18.104 91.93 36.515 141.43 43.967 86.631 14.907 175.09 3.009 256.36-29.742a95.311 95.311 0 0 0 .203-.082c29.301-11.886 65.677-31.208 135.08-66.803 69.401-35.595 162.35-83.907 271-140.76 217.3-113.7 497.28-261.51 775.28-409.07 278-147.57 553.98-294.87 763.29-407.58 104.65-56.354 192.6-104.04 256.04-138.92 31.721-17.441 57.268-31.651 76.096-42.371 9.414-5.36 17.098-9.81 23.516-13.668s6.653-2.222 21.893-14.922a95.311 95.311 0 0 0 1.407-1.196c83.017-71.948 119.57-183.8 113.79-307.31-4.76-110.83-39.366-211.27-120.51-271.32a95.311 95.311 0 0 0-.235-.171c-19.944-14.665-16.594-10.22-22.746-13.332s-13.61-6.757-22.842-11.19c-18.46-8.866-43.787-20.768-75.385-35.46-63.195-29.381-151.29-69.82-256.31-117.74-210.06-95.837-487.73-221.53-767.4-347.52-279.67-125.98-561.28-252.24-779.2-349.2-108.96-48.476-201.97-89.618-271.02-119.81-68.983-30.162-104.89-46.393-131.94-55.882-59.883-21.09-122.11-32.535-182.9-32.664zm-13.555 192.28c41.382-1.25 89.738 4.872 133.18 20.176a95.311 95.311 0 0 0 .14.051c-2.808-.985 50.336 20.778 118.71 50.676 68.379 29.898 161.15 70.936 269.9 119.32 217.49 96.764 498.94 222.95 778.39 348.84s556.97 251.51 766.57 347.14c104.8 47.815 192.65 88.149 255.07 117.17 31.21 14.51 56.108 26.216 73.23 34.439 8.033 3.857 13.992 6.789 18.105 8.857 17.97 15.445 37.229 50.854 40.328 123.68a95.311 95.311 0 0 0 .019.44c4.027 85.38-10.447 120.04-44.7 151.15-.075.047-.114.094-.189.139-4.185 2.515-10.964 6.462-19.623 11.393-17.318 9.86-42.352 23.795-73.619 40.986-62.535 34.382-150.2 81.916-254.58 138.12-208.76 112.42-484.53 259.61-762.28 407.04s-557.52 295.13-774.28 408.55c-108.38 56.712-201.04 104.87-269.62 140.04-68.513 35.139-122.38 60.832-119.68 59.746-52.114 20.974-104.93 27.092-153.67 18.49a95.311 95.311 0 0 0-2.595-.422c-4.19-.621-63.1-17.81-96.883-31.56-4.227-1.873-54.598-26.59-122.53-61.524-68.524-35.238-160.49-83.07-267.75-139.18-214.52-112.22-490.3-257.61-763.69-402.43-273.39-144.82-544.42-289.08-749.44-399.05-102.51-54.983-188.54-101.41-249.89-134.92-30.677-16.757-55.227-30.312-72.242-39.896-8.474-4.773-15.095-8.578-19.273-11.047-46.567-42.85-72.297-163.87-38.914-235.78 6.788-14.391 27.462-38.292 30.91-43.9 4.23-2.123 8.944-4.476 16.018-7.893 17.648-8.525 43.189-20.583 75.123-35.475 63.868-29.783 153.5-71 260.24-119.75 213.48-97.493 495.54-225.17 779.1-352.8 283.56-127.63 568.68-255.24 788.28-352.61 109.8-48.684 203.24-89.818 271.71-119.52 34.233-14.853 62.254-26.862 82.654-35.408s38.243-14.975 32.215-13.078a95.311 95.311 0 0 0 1.166-.373c17.24-5.668 39.559-9.074 64.389-9.824zm33.455 156.83a95.311 95.311 0 0 0-49.57 6.621l-1098 462a95.311 95.311 0 0 0-.106.045c-303.35 128.07-567.75 247.96-756.78 336.62-94.515 44.331-170.15 80.832-222.64 106.78-26.247 12.976-46.635 23.271-61.219 30.867-7.292 3.798-13.002 6.836-18.193 9.76-2.595 1.462-4.868 2.731-8.638 5.148-1.886 1.209-3.955 2.448-8.524 6.043-2.284 1.798-5.15 3.949-10.354 9.412s-16.952 9.244-24.54 47.188a95.311 95.311 0 0 0-.553 3.024c-6.504 39.02 6.793 55.66 12.389 64.965s9.315 13.07 12.152 16.117c5.673 6.092 8.318 8.019 10.617 9.885 4.597 3.73 7.098 5.398 9.879 7.308 5.561 3.821 11.259 7.458 18.53 12.004 14.546 9.091 34.688 21.238 60.69 36.623 52.005 30.77 127.05 74.211 221.03 127.63 187.91 106.82 451.27 253.41 753.9 416.25l.07.037.096.053c602.92 325.96 1097.9 592.95 1097.9 592.95a95.311 95.311 0 0 0 88.762.908s457.5-234.82 1064.3-561.24c304.67-163.63 581.51-320.51 782.44-437.14 100.47-58.315 181.93-106.55 238.58-140.64 28.325-17.045 50.39-30.518 65.898-40.188 7.753-4.834 13.767-8.643 18.795-11.953 2.513-1.655 4.615-3.039 7.77-5.322 1.576-1.141 3.205-2.244 7.056-5.53 1.925-1.642 4.287-3.485 9.248-8.997 2.48-2.756 5.695-6.247 10.414-13.92 3.949-6.422 11.127-15.654 13.385-36.533 9.25-50.052-14.784-66.708-21.557-74.791-7.192-8.584-10.852-11.106-13.697-13.385-5.692-4.558-7.91-5.762-9.973-7.053-4.127-2.583-6.374-3.773-8.984-5.188-5.221-2.83-10.867-5.708-18.131-9.337-14.528-7.26-34.918-17.136-61.242-29.65-52.648-25.03-128.71-60.427-223.76-103.71-190.11-86.568-456.02-204.6-759.95-332.99a95.311 95.311 0 0 0-.133-.057l-1103-464a95.311 95.311 0 0 0-24.344-6.618zm-12.606 197.86 1066 448.45c302.01 127.58 566.47 244.97 755 330.82a18053.263 18053.263 0 0 1 143.12 65.908 19227.079 19227.079 0 0 1-173.62 101.98c-199.38 115.73-474.61 271.7-776.94 434.07a95.311 95.311 0 0 0-.057.031c-521.7 280.65-913.15 483.26-1016.5 536.58-37.675-20.323-475.02-256.22-1053.7-569.07a95.311 95.311 0 0 0-.166-.09c-301.3-162.12-563.63-308.14-750.19-414.19a18225.996 18225.996 0 0 1-148.82-85.496c41.65-20.115 88.494-42.52 144.94-68.996 186.95-87.687 449.27-206.64 749.87-333.55l.105-.045zm2070.4 812.36a95.311 95.311 0 0 0-2.846 23.113c0-5.036.32-9.388.76-13.455a157.88 157.88 0 0 1 2.086-9.658z" style="-inkscape-stroke:none" transform="matrix(.00246 0 0 -.00246 10.884 21.263)"/><path d="M4 2568c14-143 49-247 99-299 27-27 255-134 1173-546 626-281 1157-516 1179-522 68-18 160-13 238 13s2241 995 2294 1028c48 29 98 139 117 257 27 158 39 152-131 67-82-40-658-308-1280-595l-1133-522-1132 522c-623 287-1200 555-1282 596l-149 74z" style="-inkscape-stroke:none" transform="matrix(.00246 0 0 -.00246 10.884 21.263)"/><path d="M2538.7 1094.3c-36.908.625-73.264 5.35-108.05 14.559a95.311 95.311 0 0 0-.69.185c-15.992 4.362-14.484 4.872-20.584 7.334-6.1 2.463-13.565 5.572-22.766 9.463-18.4 7.783-43.576 18.633-75.07 32.338-62.988 27.41-151.1 66.18-258.08 113.54-213.97 94.721-503.32 223.77-816.45 364.33-459.12 206.05-745.71 335.84-921.86 417.94-88.074 41.051-148.42 70.1-190.03 91.438-41.606 21.338-57.56 24.261-89.477 56.178a95.311 95.311 0 0 0-1.308 1.334c-78.601 81.746-110.09 201.9-125.15 355.77a95.311 95.311 0 0 0-.02.188l-7 73a95.311 95.311 0 0 0 137.26 94.453l149-74a95.311 95.311 0 0 0 .23-.115c70.636-35.317 656.42-307.76 1279.3-594.68a95.311 95.311 0 0 0 .034-.016l1092.1-503.61 1093.1 503.62c621.51 286.77 1202.7 557.32 1277.8 593.97 41.372 20.695 71.746 36.777 98.984 49.016 13.689 6.15 26.314 11.636 43.926 15.9 17.612 4.264 45.923 10.486 81.998-8.006s53.8-58.88 57.428-80.898c3.627-22.018 1.837-35.934.267-50.014-3.138-28.16-9.067-56.328-15.604-94.574l.15.902c-10.846-67.365-29.968-131.25-54.972-186.2-24.932-54.791-49.6-102.44-106.37-136.92-19.958-12.376-23.394-12.436-42.506-21.514-19.348-9.19-45.54-21.394-77.9-36.328-64.722-29.868-153.98-70.581-259.81-118.57-211.67-95.987-489.53-221.05-768.19-345.91-278.66-124.86-558.09-249.49-772.87-344.59-107.39-47.553-198.6-87.715-265.64-116.91-33.52-14.596-60.971-26.439-81.623-35.19-20.652-8.75-29.423-12.909-45.078-18.127-59.906-19.969-122.96-30.319-184.47-29.277zm1.906 192.07c39.307-.248 84.696 5.496 122.29 18.027-5.905-1.968 11.362 4.49 30.99 12.807s46.698 19.99 79.891 34.443c66.385 28.906 157.37 68.971 264.56 116.43 214.37 94.925 493.64 219.48 772.1 344.25 278.46 124.77 556.17 249.76 767.41 345.56 105.62 47.897 194.65 88.505 258.67 118.05 32.008 14.771 57.797 26.793 75.994 35.436 8.886 4.22 18.021 9.063 23.588 11.98.99 2.924 19.716 22.778 33.572 53.228 12.313 27.06 23.86 61.34 32.365 97.709-107.22-51.764-660.12-308.86-1269.1-589.84a95.311 95.311 0 0 0-.049-.023l-1133-522a95.311 95.311 0 0 0-79.787.014l-1132 522c-606.96 279.61-1158.3 535.31-1273 591.63 15.034-65.891 35.263-112.02 50.371-133.25 5.148-2.985 22.846-15.631 46.582-27.805 37.425-19.194 96.517-47.707 183.57-88.281 174.1-81.148 460.51-210.86 919.38-416.81a95.311 95.311 0 0 0 .01 0c312.87-140.44 602.02-269.39 815.55-363.92 106.77-47.264 194.66-85.934 256.98-113.05 31.162-13.561 55.971-24.25 73.266-31.564 8.647-3.657 15.46-6.487 19.86-8.264.715-.288 1.242-.412 2.052-.69 15.792-3.787 35.73-5.924 57.838-6.064zm2396.1 1036.5a95.311 95.311 0 0 0 1.092.67c-.124-.075-.1-.023-.211-.088-.511-.322-.224-.173-.88-.582z" style="-inkscape-stroke:none" transform="matrix(.00246 0 0 -.00246 10.884 21.263)"/><path d="M5 1544c14-149 61-275 118-318 35-25 2244-1020 2317-1043 63-20 164-19 235 2 67 19 2274 1007 2317 1037 59 41 107 169 123 326l7 73-173-86c-182-92-2374-1105-2389-1105S210 1509 101 1566l-103 55z" style="-inkscape-stroke:none" transform="matrix(.00246 0 0 -.00246 10.884 21.263)"/><path d="M2555.9 71.551c-49.476-.54-98.714 6.026-144.62 20.588-18.585 5.862-25.374 9.558-46.102 18.34-20.771 8.8-48.469 20.771-82.377 35.578-67.817 29.614-160.35 70.52-269.41 119.02-218.13 97.004-502.27 224.35-785.25 351.77-282.98 127.42-564.74 254.89-778.12 352.15-106.69 48.627-196.24 89.686-260.5 119.5-32.13 14.907-57.892 26.979-76.639 35.945-9.373 4.483-16.942 8.161-23.129 11.27-6.187 3.108-3.22-.772-22.129 12.734a95.311 95.311 0 0 0-2.002 1.47c-54.174 40.869-82.829 96.923-107.06 162.13-24.234 65.21-40.731 141.13-48.426 223.03a95.311 95.311 0 0 0-.027.288l-7 77a95.311 95.311 0 0 0 139.8 92.695l102.34-54.65c12.934-6.759 189.82-90.49 424.09-199.57 234.34-109.11 536.84-249.3 836.4-387.71 299.56-138.41 596.19-275.04 818.76-377.01 111.28-50.988 204.07-93.325 269.29-122.81 28.508-12.89 49.216-22.148 66.262-29.707a8703.667 8703.667 0 0 1 60.236 26.957c61.43 27.745 148.92 67.636 254.06 115.8 210.29 96.33 491.32 225.8 777.55 358.14 572.47 264.68 1174.9 545.51 1254.1 585.55a95.311 95.311 0 0 0 .572.285l173 86a95.311 95.311 0 0 0 137.29-94.436l-7-73a95.311 95.311 0 0 0-.057-.564c-8.71-85.464-25.88-163.74-51-230.43-25.114-66.676-54.692-124.03-112.38-164.14-15.266-10.643-15.207-9.115-21.668-12.381-6.48-3.276-14.316-7.098-23.936-11.71-19.238-9.222-45.416-21.488-77.92-36.546-65.01-30.116-155.14-71.303-262.26-119.93-214.25-97.253-496.34-224.2-779.21-350.81-282.87-126.61-566.46-252.88-783.71-348.75-108.62-47.937-200.63-88.264-267.88-117.33-33.627-14.535-61.025-26.24-81.545-34.805-20.387-8.51-24.033-11.552-46.928-18.07-46.7-13.747-96.21-21.341-145.49-21.88zm-2.762 194.15c34.49.21 70.743 3.559 94.852 10.689a95.311 95.311 0 0 0 1.03.297c-14.925-4.232 6.69 2.7 25.88 10.71 19.191 8.01 46.121 19.509 79.338 33.866 66.435 28.715 158.18 68.928 266.55 116.76 216.75 95.656 500.16 221.83 782.79 348.34 282.63 126.51 564.54 253.38 778.29 350.4 106.88 48.514 196.75 89.585 260.93 119.32 32.09 14.866 57.804 26.92 75.65 35.476 8.863 4.248 15.784 7.64 20.189 9.865 3.405 3.457 25.122 29.341 41.818 73.67 8.693 23.082 16.694 50.43 23.457 80.772l-11.902-5.916c-102.79-51.96-687.35-323.63-1260.1-588.45-286.39-132.41-567.54-261.94-778.16-358.42-105.31-48.24-192.96-88.21-254.98-116.22-31.013-14.007-55.571-25.005-73.055-32.693-8.742-3.844-15.635-6.832-21.262-9.183-2.814-1.176-5.191-2.157-8.25-3.32-1.53-.582-3.104-1.191-6.18-2.182s3.663-4.776-29.975-4.776c-35.822 0-27.486 3.961-30.496 4.95-3.01.988-4.558 1.591-6.082 2.177-3.048 1.172-5.494 2.187-8.414 3.414-5.84 2.455-13.111 5.617-22.352 9.692-18.481 8.15-44.531 19.836-77.418 34.707-65.775 29.74-158.72 72.146-270.15 123.21-222.87 102.12-519.61 238.8-819.31 377.27-299.69 138.47-602.31 278.71-836.91 387.95-171.62 79.907-299.74 139.55-373.18 174.66 6.19-27.517 13.496-52.696 21.516-74.275 15.319-41.222 34.986-67.252 40.975-73.816a1229.45 1229.45 0 0 1 16.926-8.239c17.493-8.366 42.85-20.256 74.615-34.994 63.53-29.475 152.86-70.432 259.33-118.96 212.94-97.058 494.55-224.46 777.32-351.79 282.77-127.33 566.75-254.61 784.44-351.41 108.84-48.404 201.14-89.202 268.24-118.5 33.549-14.65 60.829-26.438 80.453-34.752 19.624-8.314 38.679-15.093 29.129-12.084a95.311 95.311 0 0 0 .197-.062c17.064-5.417 49.793-8.345 84.283-8.135zm35.502 255.36c-.362.78 1.108 2.443-7.94 3.445 2.522-1.09 6.314-2.76 7.94-3.445zm-56.566.277c1.522.64 4.745 2.055 7.031 3.041-6.88-.913-6.67-2.271-7.03-3.04z" style="-inkscape-stroke:none" transform="matrix(.00246 0 0 -.00246 10.884 21.263)"/></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="#039be5" fill-rule="nonzero"/><g color="#000" fill="#b3e5fc" stroke-miterlimit="3.7" stroke-width="190.6" style="paint-order:markers fill stroke"><path d="M2504 4949c-27-4-81-22-120-38-116-50-2226-1168-2266-1200-91-76-121-236-67-352 15-32 41-67 60-81 40-29 2245-1022 2334-1050 73-24 171-20 259 11 97 34 2268 1012 2302 1037 50 37 78 105 82 199 5 106-21 179-81 231-42 35-2191 1176-2297 1219-67 27-138 36-206 24zm1114.7-820.42c607-326 1104.1-625.72 1104.1-629.72 1-4-453.84-218.87-1059.8-474.87l-1103-464-1098 462c-604 255-1053.5 477.72-1054.5 482.72-1 6 446.5 266.28 1050.5 591.28 603 326 1098 593 1098 593s456.7-234.42 1062.7-560.42z" style="-inkscape-stroke:none" transform="matrix(.00246 0 0 -.00246 10.884 21.263)"/><path d="M2552.7 2116.4c-47.089-.1-93.309 6.604-136.9 20.863-16.756 5.31-26.646 9.92-48.068 18.894-21.697 9.09-50.214 21.316-84.869 36.352-69.311 30.072-163.04 71.336-273.11 120.14-220.12 97.601-505.44 225.3-789.25 353.04-283.81 127.74-566.06 255.5-780.05 353.23-106.99 48.863-196.89 90.201-261.61 120.38-32.361 15.091-58.381 27.367-77.471 36.588-9.545 4.61-17.306 8.427-23.746 11.715-6.44 3.288-5.366.735-22.568 13.207a95.311 95.311 0 0 0-.594.433c-46.64 34.367-68.13 71.133-89.758 117.27a95.311 95.311 0 0 0-.107.229c-73.85 158.64-41.291 353.79 92.309 465.37a95.311 95.311 0 0 0 1.555 1.272c14.72 11.776 14.567 10.094 20.73 13.737 6.163 3.643 13.627 7.914 22.799 13.08 18.344 10.333 43.34 24.126 74.414 41.1 62.146 33.947 148.43 80.505 251.17 135.62 205.49 110.22 476.7 254.58 750.31 399.52s549.58 290.42 764.56 402.88c107.49 56.232 199.71 104.2 268.94 139.79 69.226 35.598 109.33 56.356 134.89 67.371a95.311 95.311 0 0 0 1.55.653c44.127 18.104 91.93 36.515 141.43 43.967 86.631 14.907 175.09 3.009 256.36-29.742a95.311 95.311 0 0 0 .203-.082c29.301-11.886 65.677-31.208 135.08-66.803 69.401-35.595 162.35-83.907 271-140.76 217.3-113.7 497.28-261.51 775.28-409.07 278-147.57 553.98-294.87 763.29-407.58 104.65-56.354 192.6-104.04 256.04-138.92 31.721-17.441 57.268-31.651 76.096-42.371 9.414-5.36 17.098-9.81 23.516-13.668s6.653-2.222 21.893-14.922a95.311 95.311 0 0 0 1.407-1.196c83.017-71.948 119.57-183.8 113.79-307.31-4.76-110.83-39.366-211.27-120.51-271.32a95.311 95.311 0 0 0-.235-.171c-19.944-14.665-16.594-10.22-22.746-13.332s-13.61-6.757-22.842-11.19c-18.46-8.866-43.787-20.768-75.385-35.46-63.195-29.381-151.29-69.82-256.31-117.74-210.06-95.837-487.73-221.53-767.4-347.52-279.67-125.98-561.28-252.24-779.2-349.2-108.96-48.476-201.97-89.618-271.02-119.81-68.983-30.162-104.89-46.393-131.94-55.882-59.883-21.09-122.11-32.535-182.9-32.664zm-13.555 192.28c41.382-1.25 89.738 4.872 133.18 20.176a95.311 95.311 0 0 0 .14.051c-2.808-.985 50.336 20.778 118.71 50.676 68.379 29.898 161.15 70.936 269.9 119.32 217.49 96.764 498.94 222.95 778.39 348.84s556.97 251.51 766.57 347.14c104.8 47.815 192.65 88.149 255.07 117.17 31.21 14.51 56.108 26.216 73.23 34.439 8.033 3.857 13.992 6.789 18.105 8.857 17.97 15.445 37.229 50.854 40.328 123.68a95.311 95.311 0 0 0 .019.44c4.027 85.38-10.447 120.04-44.7 151.15-.075.047-.114.094-.189.139-4.185 2.515-10.964 6.462-19.623 11.393-17.318 9.86-42.352 23.795-73.619 40.986-62.535 34.382-150.2 81.916-254.58 138.12-208.76 112.42-484.53 259.61-762.28 407.04s-557.52 295.13-774.28 408.55c-108.38 56.712-201.04 104.87-269.62 140.04-68.513 35.139-122.38 60.832-119.68 59.746-52.114 20.974-104.93 27.092-153.67 18.49a95.311 95.311 0 0 0-2.595-.422c-4.19-.621-63.1-17.81-96.883-31.56-4.227-1.873-54.598-26.59-122.53-61.524-68.524-35.238-160.49-83.07-267.75-139.18-214.52-112.22-490.3-257.61-763.69-402.43-273.39-144.82-544.42-289.08-749.44-399.05-102.51-54.983-188.54-101.41-249.89-134.92-30.677-16.757-55.227-30.312-72.242-39.896-8.474-4.773-15.095-8.578-19.273-11.047-46.567-42.85-72.297-163.87-38.914-235.78 6.788-14.391 27.462-38.292 30.91-43.9 4.23-2.123 8.944-4.476 16.018-7.893 17.648-8.525 43.189-20.583 75.123-35.475 63.868-29.783 153.5-71 260.24-119.75 213.48-97.493 495.54-225.17 779.1-352.8 283.56-127.63 568.68-255.24 788.28-352.61 109.8-48.684 203.24-89.818 271.71-119.52 34.233-14.853 62.254-26.862 82.654-35.408s38.243-14.975 32.215-13.078a95.311 95.311 0 0 0 1.166-.373c17.24-5.668 39.559-9.074 64.389-9.824zm33.455 156.83a95.311 95.311 0 0 0-49.57 6.621l-1098 462a95.311 95.311 0 0 0-.106.045c-303.35 128.07-567.75 247.96-756.78 336.62-94.515 44.331-170.15 80.832-222.64 106.78-26.247 12.976-46.635 23.271-61.219 30.867-7.292 3.798-13.002 6.836-18.193 9.76-2.595 1.462-4.868 2.731-8.638 5.148-1.886 1.209-3.955 2.448-8.524 6.043-2.284 1.798-5.15 3.949-10.354 9.412s-16.952 9.244-24.54 47.188a95.311 95.311 0 0 0-.553 3.024c-6.504 39.02 6.793 55.66 12.389 64.965s9.315 13.07 12.152 16.117c5.673 6.092 8.318 8.019 10.617 9.885 4.597 3.73 7.098 5.398 9.879 7.308 5.561 3.821 11.259 7.458 18.53 12.004 14.546 9.091 34.688 21.238 60.69 36.623 52.005 30.77 127.05 74.211 221.03 127.63 187.91 106.82 451.27 253.41 753.9 416.25l.07.037.096.053c602.92 325.96 1097.9 592.95 1097.9 592.95a95.311 95.311 0 0 0 88.762.908s457.5-234.82 1064.3-561.24c304.67-163.63 581.51-320.51 782.44-437.14 100.47-58.315 181.93-106.55 238.58-140.64 28.325-17.045 50.39-30.518 65.898-40.188 7.753-4.834 13.767-8.643 18.795-11.953 2.513-1.655 4.615-3.039 7.77-5.322 1.576-1.141 3.205-2.244 7.056-5.53 1.925-1.642 4.287-3.485 9.248-8.997 2.48-2.756 5.695-6.247 10.414-13.92 3.949-6.422 11.127-15.654 13.385-36.533 9.25-50.052-14.784-66.708-21.557-74.791-7.192-8.584-10.852-11.106-13.697-13.385-5.692-4.558-7.91-5.762-9.973-7.053-4.127-2.583-6.374-3.773-8.984-5.188-5.221-2.83-10.867-5.708-18.131-9.337-14.528-7.26-34.918-17.136-61.242-29.65-52.648-25.03-128.71-60.427-223.76-103.71-190.11-86.568-456.02-204.6-759.95-332.99a95.311 95.311 0 0 0-.133-.057l-1103-464a95.311 95.311 0 0 0-24.344-6.618zm-12.606 197.86 1066 448.45c302.01 127.58 566.47 244.97 755 330.82a18053.263 18053.263 0 0 1 143.12 65.908 19227.079 19227.079 0 0 1-173.62 101.98c-199.38 115.73-474.61 271.7-776.94 434.07a95.311 95.311 0 0 0-.057.031c-521.7 280.65-913.15 483.26-1016.5 536.58-37.675-20.323-475.02-256.22-1053.7-569.07a95.311 95.311 0 0 0-.166-.09c-301.3-162.12-563.63-308.14-750.19-414.19a18225.996 18225.996 0 0 1-148.82-85.496c41.65-20.115 88.494-42.52 144.94-68.996 186.95-87.687 449.27-206.64 749.87-333.55l.105-.045zm2070.4 812.36a95.311 95.311 0 0 0-2.846 23.113c0-5.036.32-9.388.76-13.455a157.88 157.88 0 0 1 2.086-9.658z" style="-inkscape-stroke:none" transform="matrix(.00246 0 0 -.00246 10.884 21.263)"/><path d="M4 2568c14-143 49-247 99-299 27-27 255-134 1173-546 626-281 1157-516 1179-522 68-18 160-13 238 13s2241 995 2294 1028c48 29 98 139 117 257 27 158 39 152-131 67-82-40-658-308-1280-595l-1133-522-1132 522c-623 287-1200 555-1282 596l-149 74z" style="-inkscape-stroke:none" transform="matrix(.00246 0 0 -.00246 10.884 21.263)"/><path d="M2538.7 1094.3c-36.908.625-73.264 5.35-108.05 14.559a95.311 95.311 0 0 0-.69.185c-15.992 4.362-14.484 4.872-20.584 7.334-6.1 2.463-13.565 5.572-22.766 9.463-18.4 7.783-43.576 18.633-75.07 32.338-62.988 27.41-151.1 66.18-258.08 113.54-213.97 94.721-503.32 223.77-816.45 364.33-459.12 206.05-745.71 335.84-921.86 417.94-88.074 41.051-148.42 70.1-190.03 91.438-41.606 21.338-57.56 24.261-89.477 56.178a95.311 95.311 0 0 0-1.308 1.334c-78.601 81.746-110.09 201.9-125.15 355.77a95.311 95.311 0 0 0-.02.188l-7 73a95.311 95.311 0 0 0 137.26 94.453l149-74a95.311 95.311 0 0 0 .23-.115c70.636-35.317 656.42-307.76 1279.3-594.68a95.311 95.311 0 0 0 .034-.016l1092.1-503.61 1093.1 503.62c621.51 286.77 1202.7 557.32 1277.8 593.97 41.372 20.695 71.746 36.777 98.984 49.016 13.689 6.15 26.314 11.636 43.926 15.9 17.612 4.264 45.923 10.486 81.998-8.006s53.8-58.88 57.428-80.898c3.627-22.018 1.837-35.934.267-50.014-3.138-28.16-9.067-56.328-15.604-94.574l.15.902c-10.846-67.365-29.968-131.25-54.972-186.2-24.932-54.791-49.6-102.44-106.37-136.92-19.958-12.376-23.394-12.436-42.506-21.514-19.348-9.19-45.54-21.394-77.9-36.328-64.722-29.868-153.98-70.581-259.81-118.57-211.67-95.987-489.53-221.05-768.19-345.91-278.66-124.86-558.09-249.49-772.87-344.59-107.39-47.553-198.6-87.715-265.64-116.91-33.52-14.596-60.971-26.439-81.623-35.19-20.652-8.75-29.423-12.909-45.078-18.127-59.906-19.969-122.96-30.319-184.47-29.277zm1.906 192.07c39.307-.248 84.696 5.496 122.29 18.027-5.905-1.968 11.362 4.49 30.99 12.807s46.698 19.99 79.891 34.443c66.385 28.906 157.37 68.971 264.56 116.43 214.37 94.925 493.64 219.48 772.1 344.25 278.46 124.77 556.17 249.76 767.41 345.56 105.62 47.897 194.65 88.505 258.67 118.05 32.008 14.771 57.797 26.793 75.994 35.436 8.886 4.22 18.021 9.063 23.588 11.98.99 2.924 19.716 22.778 33.572 53.228 12.313 27.06 23.86 61.34 32.365 97.709-107.22-51.764-660.12-308.86-1269.1-589.84a95.311 95.311 0 0 0-.049-.023l-1133-522a95.311 95.311 0 0 0-79.787.014l-1132 522c-606.96 279.61-1158.3 535.31-1273 591.63 15.034-65.891 35.263-112.02 50.371-133.25 5.148-2.985 22.846-15.631 46.582-27.805 37.425-19.194 96.517-47.707 183.57-88.281 174.1-81.148 460.51-210.86 919.38-416.81a95.311 95.311 0 0 0 .01 0c312.87-140.44 602.02-269.39 815.55-363.92 106.77-47.264 194.66-85.934 256.98-113.05 31.162-13.561 55.971-24.25 73.266-31.564 8.647-3.657 15.46-6.487 19.86-8.264.715-.288 1.242-.412 2.052-.69 15.792-3.787 35.73-5.924 57.838-6.064zm2396.1 1036.5a95.311 95.311 0 0 0 1.092.67c-.124-.075-.1-.023-.211-.088-.511-.322-.224-.173-.88-.582z" style="-inkscape-stroke:none" transform="matrix(.00246 0 0 -.00246 10.884 21.263)"/><path d="M5 1544c14-149 61-275 118-318 35-25 2244-1020 2317-1043 63-20 164-19 235 2 67 19 2274 1007 2317 1037 59 41 107 169 123 326l7 73-173-86c-182-92-2374-1105-2389-1105S210 1509 101 1566l-103 55z" style="-inkscape-stroke:none" transform="matrix(.00246 0 0 -.00246 10.884 21.263)"/><path d="M2555.9 71.551c-49.476-.54-98.714 6.026-144.62 20.588-18.585 5.862-25.374 9.558-46.102 18.34-20.771 8.8-48.469 20.771-82.377 35.578-67.817 29.614-160.35 70.52-269.41 119.02-218.13 97.004-502.27 224.35-785.25 351.77-282.98 127.42-564.74 254.89-778.12 352.15-106.69 48.627-196.24 89.686-260.5 119.5-32.13 14.907-57.892 26.979-76.639 35.945-9.373 4.483-16.942 8.161-23.129 11.27-6.187 3.108-3.22-.772-22.129 12.734a95.311 95.311 0 0 0-2.002 1.47c-54.174 40.869-82.829 96.923-107.06 162.13-24.234 65.21-40.731 141.13-48.426 223.03a95.311 95.311 0 0 0-.027.288l-7 77a95.311 95.311 0 0 0 139.8 92.695l102.34-54.65c12.934-6.759 189.82-90.49 424.09-199.57 234.34-109.11 536.84-249.3 836.4-387.71 299.56-138.41 596.19-275.04 818.76-377.01 111.28-50.988 204.07-93.325 269.29-122.81 28.508-12.89 49.216-22.148 66.262-29.707a8703.667 8703.667 0 0 1 60.236 26.957c61.43 27.745 148.92 67.636 254.06 115.8 210.29 96.33 491.32 225.8 777.55 358.14 572.47 264.68 1174.9 545.51 1254.1 585.55a95.311 95.311 0 0 0 .572.285l173 86a95.311 95.311 0 0 0 137.29-94.436l-7-73a95.311 95.311 0 0 0-.057-.564c-8.71-85.464-25.88-163.74-51-230.43-25.114-66.676-54.692-124.03-112.38-164.14-15.266-10.643-15.207-9.115-21.668-12.381-6.48-3.276-14.316-7.098-23.936-11.71-19.238-9.222-45.416-21.488-77.92-36.546-65.01-30.116-155.14-71.303-262.26-119.93-214.25-97.253-496.34-224.2-779.21-350.81-282.87-126.61-566.46-252.88-783.71-348.75-108.62-47.937-200.63-88.264-267.88-117.33-33.627-14.535-61.025-26.24-81.545-34.805-20.387-8.51-24.033-11.552-46.928-18.07-46.7-13.747-96.21-21.341-145.49-21.88zm-2.762 194.15c34.49.21 70.743 3.559 94.852 10.689a95.311 95.311 0 0 0 1.03.297c-14.925-4.232 6.69 2.7 25.88 10.71 19.191 8.01 46.121 19.509 79.338 33.866 66.435 28.715 158.18 68.928 266.55 116.76 216.75 95.656 500.16 221.83 782.79 348.34 282.63 126.51 564.54 253.38 778.29 350.4 106.88 48.514 196.75 89.585 260.93 119.32 32.09 14.866 57.804 26.92 75.65 35.476 8.863 4.248 15.784 7.64 20.189 9.865 3.405 3.457 25.122 29.341 41.818 73.67 8.693 23.082 16.694 50.43 23.457 80.772l-11.902-5.916c-102.79-51.96-687.35-323.63-1260.1-588.45-286.39-132.41-567.54-261.94-778.16-358.42-105.31-48.24-192.96-88.21-254.98-116.22-31.013-14.007-55.571-25.005-73.055-32.693-8.742-3.844-15.635-6.832-21.262-9.183-2.814-1.176-5.191-2.157-8.25-3.32-1.53-.582-3.104-1.191-6.18-2.182s3.663-4.776-29.975-4.776c-35.822 0-27.486 3.961-30.496 4.95-3.01.988-4.558 1.591-6.082 2.177-3.048 1.172-5.494 2.187-8.414 3.414-5.84 2.455-13.111 5.617-22.352 9.692-18.481 8.15-44.531 19.836-77.418 34.707-65.775 29.74-158.72 72.146-270.15 123.21-222.87 102.12-519.61 238.8-819.31 377.27-299.69 138.47-602.31 278.71-836.91 387.95-171.62 79.907-299.74 139.55-373.18 174.66 6.19-27.517 13.496-52.696 21.516-74.275 15.319-41.222 34.986-67.252 40.975-73.816a1229.45 1229.45 0 0 1 16.926-8.239c17.493-8.366 42.85-20.256 74.615-34.994 63.53-29.475 152.86-70.432 259.33-118.96 212.94-97.058 494.55-224.46 777.32-351.79 282.77-127.33 566.75-254.61 784.44-351.41 108.84-48.404 201.14-89.202 268.24-118.5 33.549-14.65 60.829-26.438 80.453-34.752 19.624-8.314 38.679-15.093 29.129-12.084a95.311 95.311 0 0 0 .197-.062c17.064-5.417 49.793-8.345 84.283-8.135zm35.502 255.36c-.362.78 1.108 2.443-7.94 3.445 2.522-1.09 6.314-2.76 7.94-3.445zm-56.566.277c1.522.64 4.745 2.055 7.031 3.041-6.88-.913-6.67-2.271-7.03-3.04z" style="-inkscape-stroke:none" transform="matrix(.00246 0 0 -.00246 10.884 21.263)"/></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="#00bcd4"/><path d="M16.473 13.928c.723 0 1.313.59 1.313 1.327 0 .703-.59 1.3-1.313 1.3a1.318 1.318 0 0 1-1.313-1.3c0-.737.59-1.327 1.313-1.327m-3.252 6.946c.443.267 1.412-.14 2.529-1.194a16.997 16.997 0 0 1-1.06-1.335 15.945 15.945 0 0 1-1.686-.252c-.358 1.502-.225 2.535.217 2.78m.499-4.03-.204-.359c-.077.204-.154.408-.203.604.19.042.4.078.618.113l-.211-.359m4.593-.533.569-1.054-.57-1.053c-.21-.372-.434-.702-.638-1.032-.38-.022-.78-.022-1.201-.022-.421 0-.822 0-1.2.022-.205.33-.43.66-.64 1.032l-.569 1.053.569 1.054c.21.372.435.702.64 1.032.378.021.779.021 1.2.021.421 0 .822 0 1.2-.02.205-.33.43-.661.64-1.033m-1.84-4.72c-.133.155-.274.316-.414.506h.828c-.14-.19-.28-.351-.414-.506m0 7.332c.133-.154.274-.316.414-.505h-.828c.14.19.28.35.414.505m3.244-9.284c-.435-.267-1.404.14-2.52 1.194.364.414.723.864 1.06 1.334.575.057 1.144.14 1.685.253.358-1.503.225-2.535-.225-2.78m-.491 4.03.203.358c.078-.203.155-.407.204-.604-.19-.042-.4-.077-.618-.112l.21.358m1.02-4.95c1.032.589 1.144 2.141.708 3.953 1.784.527 3.07 1.398 3.07 2.584 0 1.187-1.286 2.058-3.07 2.585.436 1.812.323 3.364-.709 3.954-1.025.59-2.423-.085-3.771-1.37-1.348 1.285-2.746 1.96-3.778 1.37-1.026-.59-1.138-2.142-.703-3.954-1.783-.527-3.069-1.398-3.069-2.585s1.286-2.057 3.07-2.584c-.436-1.812-.324-3.364.702-3.954 1.032-.59 2.43.084 3.778 1.37 1.348-1.286 2.746-1.96 3.771-1.37m-.204 6.538c.24.527.45 1.054.625 1.588 1.475-.443 2.304-1.075 2.304-1.588 0-.512-.829-1.144-2.304-1.587a15.81 15.81 0 0 1-.625 1.587m-7.135 0a15.808 15.808 0 0 1-.625-1.587c-1.475.443-2.303 1.075-2.303 1.587 0 .513.828 1.145 2.303 1.588.176-.534.386-1.06.625-1.588m6.32 1.588-.21.358c.218-.035.428-.07.618-.113a5.56 5.56 0 0 0-.204-.604l-.203.359m-2.03 2.837c1.117 1.053 2.086 1.46 2.521 1.194.45-.246.583-1.278.225-2.781-.54.112-1.11.196-1.685.253-.338.47-.696.92-1.06 1.334m-3.477-6.012.21-.358c-.217.035-.428.07-.617.112.049.197.126.4.203.604l.204-.358m2.03-2.837c-1.117-1.053-2.086-1.46-2.529-1.194-.442.246-.576 1.278-.217 2.781a16.25 16.25 0 0 1 1.685-.253c.337-.47.695-.92 1.06-1.334z" fill="#b2ebf2"/></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="#00bcd4" fill-rule="nonzero"/><path d="M16.473 13.927c.723 0 1.313.59 1.313 1.327 0 .703-.59 1.3-1.313 1.3a1.318 1.318 0 0 1-1.313-1.3c0-.737.59-1.327 1.313-1.327m-3.252 6.946c.443.267 1.412-.14 2.529-1.194a17.015 17.015 0 0 1-1.06-1.335 15.945 15.945 0 0 1-1.686-.252c-.358 1.502-.225 2.535.217 2.78m.499-4.03-.204-.359a5.558 5.558 0 0 0-.203.604c.19.042.4.078.618.113l-.211-.359m4.593-.533.569-1.054-.569-1.053c-.21-.372-.435-.702-.639-1.032-.38-.022-.78-.022-1.2-.022-.422 0-.823 0-1.202.022-.204.33-.428.66-.639 1.032l-.569 1.053.57 1.054c.21.372.434.702.638 1.032.38.021.78.021 1.201.021.421 0 .822 0 1.201-.02.204-.331.428-.661.639-1.033m-1.84-4.72c-.133.155-.274.316-.414.506h.828c-.14-.19-.28-.351-.414-.506m0 7.332c.133-.154.274-.316.414-.505h-.828c.14.19.28.35.414.505m3.245-9.284c-.436-.267-1.405.14-2.522 1.194a16.6 16.6 0 0 1 1.06 1.334c.577.057 1.146.14 1.686.253.359-1.503.225-2.535-.224-2.78m-.492 4.03.204.358c.077-.203.154-.407.203-.604-.19-.042-.4-.077-.618-.112l.211.358m1.018-4.95c1.033.589 1.145 2.141.71 3.953 1.784.527 3.069 1.398 3.069 2.584 0 1.187-1.285 2.058-3.07 2.585.436 1.812.324 3.364-.709 3.954-1.025.59-2.423-.085-3.77-1.37-1.35 1.285-2.747 1.96-3.78 1.37-1.025-.59-1.137-2.142-.702-3.954-1.783-.527-3.069-1.398-3.069-2.585s1.286-2.057 3.07-2.584c-.436-1.812-.324-3.364.702-3.954 1.032-.59 2.43.084 3.778 1.37 1.348-1.286 2.746-1.96 3.771-1.37m-.203 6.538c.239.527.45 1.054.625 1.588 1.475-.443 2.303-1.075 2.303-1.588 0-.512-.828-1.144-2.303-1.587a15.81 15.81 0 0 1-.625 1.587m-7.136 0a15.806 15.806 0 0 1-.625-1.587c-1.474.443-2.303 1.075-2.303 1.587 0 .513.829 1.145 2.303 1.588.176-.534.387-1.06.625-1.588m6.321 1.588-.21.358c.217-.035.428-.07.617-.113a5.643 5.643 0 0 0-.203-.604l-.204.359m-2.03 2.837c1.117 1.053 2.086 1.46 2.522 1.194.45-.246.583-1.278.224-2.781-.54.112-1.11.196-1.685.253-.337.47-.695.92-1.06 1.334m-3.477-6.012.21-.358c-.217.035-.428.07-.617.113.049.196.126.4.203.604l.204-.359m2.03-2.837c-1.117-1.053-2.086-1.46-2.529-1.194-.442.246-.576 1.278-.217 2.781a16.25 16.25 0 0 1 1.685-.253c.337-.47.695-.92 1.06-1.334z" fill="#b2ebf2"/></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="#ab47bc"/><g fill="#e1bee7" stroke="#e1bee7" stroke-miterlimit="4" stroke-width=".293"><path d="M19.68 17.704a.967.967 0 0 0-.104-1.93h-.034a.964.964 0 0 0-.93 1 .99.99 0 0 0 .275.637c-.586 1.154-1.482 1.998-2.825 2.704-.913.483-1.86.655-2.808.534-.776-.103-1.379-.447-1.758-1.016-.551-.844-.603-1.757-.138-2.67a4.055 4.055 0 0 1 1.172-1.379 9.294 9.294 0 0 1-.224-.878c-2.498 1.809-2.24 4.255-1.482 5.41.569.86 1.723 1.395 2.998 1.395.345 0 .69-.035 1.034-.12 2.205-.431 3.876-1.74 4.824-3.687z"/><path d="M22.712 15.567c-1.31-1.533-3.24-2.377-5.444-2.377h-.276a.947.947 0 0 0-.844-.517h-.035a.964.964 0 0 0 .035 1.93h.034a.97.97 0 0 0 .844-.586h.31c1.31 0 2.55.379 3.67 1.12.862.568 1.482 1.309 1.826 2.205.293.723.276 1.43-.034 2.033-.483.913-1.292 1.412-2.36 1.412a4.41 4.41 0 0 1-1.689-.361c-.19.172-.534.447-.775.62.74.344 1.499.534 2.222.534 1.654 0 2.877-.913 3.343-1.826.5-1 .465-2.722-.827-4.187z"/><path d="M13.96 17.996c.017.517.448.93.965.93h.034a.964.964 0 0 0-.034-1.929h-.035c-.034 0-.086 0-.12.017-.707-1.171-1-2.446-.896-3.824.069-1.034.413-1.93 1.016-2.67.5-.638 1.465-.948 2.12-.965 1.825-.035 2.6 2.24 2.652 3.152.224.052.603.173.862.259-.207-2.791-1.93-4.238-3.584-4.238-1.55 0-2.98 1.12-3.549 2.773-.792 2.206-.275 4.325.69 5.996a.774.774 0 0 0-.121.5z"/></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="#ab47bc" fill-rule="nonzero"/><g fill="#e1bee7" stroke="#e1bee7" stroke-miterlimit="4" stroke-width=".293"><path d="M19.68 17.703a.967.967 0 0 0-.103-1.93h-.035a.964.964 0 0 0-.93 1 .99.99 0 0 0 .275.637c-.585 1.155-1.481 1.999-2.825 2.705-.913.483-1.86.655-2.808.534-.775-.103-1.378-.448-1.757-1.016-.552-.844-.603-1.758-.138-2.67a4.055 4.055 0 0 1 1.171-1.379 9.294 9.294 0 0 1-.224-.878c-2.498 1.808-2.24 4.255-1.481 5.41.568.86 1.722 1.395 2.997 1.395.345 0 .69-.035 1.034-.121 2.205-.43 3.876-1.74 4.824-3.687z"/><path d="M22.712 15.567c-1.31-1.533-3.239-2.378-5.444-2.378h-.276a.947.947 0 0 0-.844-.516h-.034a.964.964 0 0 0 .034 1.93h.035a.97.97 0 0 0 .844-.587h.31c1.31 0 2.55.38 3.67 1.12.86.569 1.481 1.31 1.826 2.205.292.724.275 1.43-.035 2.033-.482.913-1.292 1.413-2.36 1.413-.69 0-1.344-.207-1.688-.362-.19.173-.535.448-.776.62.741.345 1.5.535 2.223.535 1.654 0 2.877-.914 3.342-1.827.5-.999.465-2.722-.827-4.186z"/><path d="M13.96 17.996c.017.517.448.93.965.93h.034a.964.964 0 0 0-.034-1.93h-.035c-.034 0-.086 0-.12.018-.706-1.171-1-2.446-.896-3.825.069-1.033.414-1.93 1.016-2.67.5-.637 1.465-.947 2.12-.965 1.826-.034 2.601 2.24 2.653 3.153.224.052.603.172.861.259-.207-2.791-1.93-4.239-3.583-4.239-1.55 0-2.98 1.12-3.55 2.774-.792 2.205-.275 4.324.69 5.995a.774.774 0 0 0-.12.5z"/></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="#ef5350"/><g fill="#ffcdd2" stroke="#ffcdd2" stroke-miterlimit="4" stroke-width=".293"><path d="M19.68 17.704a.967.967 0 0 0-.104-1.93h-.034a.964.964 0 0 0-.93 1 .99.99 0 0 0 .275.637c-.586 1.154-1.482 1.998-2.825 2.704-.913.483-1.86.655-2.808.534-.776-.103-1.379-.447-1.758-1.016-.551-.844-.603-1.757-.138-2.67a4.055 4.055 0 0 1 1.172-1.379 9.294 9.294 0 0 1-.224-.878c-2.498 1.809-2.24 4.255-1.482 5.41.569.86 1.723 1.395 2.998 1.395.345 0 .69-.035 1.034-.12 2.205-.431 3.876-1.74 4.824-3.687z"/><path d="M22.712 15.567c-1.31-1.533-3.24-2.377-5.444-2.377h-.276a.947.947 0 0 0-.844-.517h-.035a.964.964 0 0 0 .035 1.93h.034a.97.97 0 0 0 .844-.586h.31c1.31 0 2.55.379 3.67 1.12.862.568 1.482 1.309 1.826 2.205.293.723.276 1.43-.034 2.033-.483.913-1.292 1.412-2.36 1.412a4.41 4.41 0 0 1-1.689-.361c-.19.172-.534.447-.775.62.74.344 1.499.534 2.222.534 1.654 0 2.877-.913 3.343-1.826.5-1 .465-2.722-.827-4.187z"/><path d="M13.96 17.996c.017.517.448.93.965.93h.034a.964.964 0 0 0-.034-1.929h-.035c-.034 0-.086 0-.12.017-.707-1.171-1-2.446-.896-3.824.069-1.034.413-1.93 1.016-2.67.5-.638 1.465-.948 2.12-.965 1.825-.035 2.6 2.24 2.652 3.152.224.052.603.173.862.259-.207-2.791-1.93-4.238-3.584-4.238-1.55 0-2.98 1.12-3.549 2.773-.792 2.206-.275 4.325.69 5.996a.774.774 0 0 0-.121.5z"/></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="#ef5350" fill-rule="nonzero"/><g fill="#ffcdd2" stroke="#ffcdd2" stroke-miterlimit="4" stroke-width=".293"><path d="M19.68 17.703a.967.967 0 0 0-.103-1.93h-.035a.964.964 0 0 0-.93 1 .99.99 0 0 0 .275.637c-.585 1.155-1.481 1.999-2.825 2.705-.913.483-1.86.655-2.808.534-.775-.103-1.378-.448-1.757-1.016-.552-.844-.603-1.758-.138-2.67a4.055 4.055 0 0 1 1.171-1.379 9.294 9.294 0 0 1-.224-.878c-2.498 1.808-2.24 4.255-1.481 5.41.568.86 1.722 1.395 2.997 1.395.345 0 .69-.035 1.034-.121 2.205-.43 3.876-1.74 4.824-3.687z"/><path d="M22.712 15.567c-1.31-1.533-3.239-2.378-5.444-2.378h-.276a.947.947 0 0 0-.844-.516h-.034a.964.964 0 0 0 .034 1.93h.035a.97.97 0 0 0 .844-.587h.31c1.31 0 2.55.38 3.67 1.12.86.569 1.481 1.31 1.826 2.205.292.724.275 1.43-.035 2.033-.482.913-1.292 1.413-2.36 1.413-.69 0-1.344-.207-1.688-.362-.19.173-.535.448-.776.62.741.345 1.5.535 2.223.535 1.654 0 2.877-.914 3.342-1.827.5-.999.465-2.722-.827-4.186z"/><path d="M13.96 17.996c.017.517.448.93.965.93h.034a.964.964 0 0 0-.034-1.93h-.035c-.034 0-.086 0-.12.018-.706-1.171-1-2.446-.896-3.825.069-1.033.414-1.93 1.016-2.67.5-.637 1.465-.947 2.12-.965 1.826-.034 2.601 2.24 2.653 3.153.224.052.603.172.861.259-.207-2.791-1.93-4.239-3.583-4.239-1.55 0-2.98 1.12-3.55 2.774-.792 2.205-.275 4.324.69 5.995a.774.774 0 0 0-.12.5z"/></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="#ff6e40"/><g fill="#ffccbc" stroke="#ffccbc" stroke-miterlimit="4" stroke-width=".293"><path d="M19.68 17.704a.967.967 0 0 0-.104-1.93h-.034a.964.964 0 0 0-.93 1 .99.99 0 0 0 .275.637c-.586 1.154-1.482 1.998-2.825 2.704-.913.483-1.86.655-2.808.534-.776-.103-1.379-.447-1.758-1.016-.551-.844-.603-1.757-.138-2.67a4.055 4.055 0 0 1 1.172-1.379 9.294 9.294 0 0 1-.224-.878c-2.498 1.809-2.24 4.255-1.482 5.41.569.86 1.723 1.395 2.998 1.395.345 0 .69-.035 1.034-.12 2.205-.431 3.876-1.74 4.824-3.687z"/><path d="M22.712 15.567c-1.31-1.533-3.24-2.377-5.444-2.377h-.276a.947.947 0 0 0-.844-.517h-.035a.964.964 0 0 0 .035 1.93h.034a.97.97 0 0 0 .844-.586h.31c1.31 0 2.55.379 3.67 1.12.862.568 1.482 1.309 1.826 2.205.293.723.276 1.43-.034 2.033-.483.913-1.292 1.412-2.36 1.412a4.41 4.41 0 0 1-1.689-.361c-.19.172-.534.447-.775.62.74.344 1.499.534 2.222.534 1.654 0 2.877-.913 3.343-1.826.5-1 .465-2.722-.827-4.187z"/><path d="M13.96 17.996c.017.517.448.93.965.93h.034a.964.964 0 0 0-.034-1.929h-.035c-.034 0-.086 0-.12.017-.707-1.171-1-2.446-.896-3.824.069-1.034.413-1.93 1.016-2.67.5-.638 1.465-.948 2.12-.965 1.825-.035 2.6 2.24 2.652 3.152.224.052.603.173.862.259-.207-2.791-1.93-4.238-3.584-4.238-1.55 0-2.98 1.12-3.549 2.773-.792 2.206-.275 4.325.69 5.996a.774.774 0 0 0-.121.5z"/></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="#ff6e40" fill-rule="nonzero"/><g fill="#ffccbc" stroke="#ffccbc" stroke-miterlimit="4" stroke-width=".293"><path d="M19.68 17.703a.967.967 0 0 0-.103-1.93h-.035a.964.964 0 0 0-.93 1 .99.99 0 0 0 .275.637c-.585 1.155-1.481 1.999-2.825 2.705-.913.483-1.86.655-2.808.534-.775-.103-1.378-.448-1.757-1.016-.552-.844-.603-1.758-.138-2.67a4.055 4.055 0 0 1 1.171-1.379 9.294 9.294 0 0 1-.224-.878c-2.498 1.808-2.24 4.255-1.481 5.41.568.86 1.722 1.395 2.997 1.395.345 0 .69-.035 1.034-.121 2.205-.43 3.876-1.74 4.824-3.687z"/><path d="M22.712 15.567c-1.31-1.533-3.239-2.378-5.444-2.378h-.276a.947.947 0 0 0-.844-.516h-.034a.964.964 0 0 0 .034 1.93h.035a.97.97 0 0 0 .844-.587h.31c1.31 0 2.55.38 3.67 1.12.86.569 1.481 1.31 1.826 2.205.292.724.275 1.43-.035 2.033-.482.913-1.292 1.413-2.36 1.413-.69 0-1.344-.207-1.688-.362-.19.173-.535.448-.776.62.741.345 1.5.535 2.223.535 1.654 0 2.877-.914 3.342-1.827.5-.999.465-2.722-.827-4.186z"/><path d="M13.96 17.996c.017.517.448.93.965.93h.034a.964.964 0 0 0-.034-1.93h-.035c-.034 0-.086 0-.12.018-.706-1.171-1-2.446-.896-3.825.069-1.033.414-1.93 1.016-2.67.5-.637 1.465-.947 2.12-.965 1.826-.034 2.601 2.24 2.653 3.153.224.052.603.172.861.259-.207-2.791-1.93-4.239-3.583-4.239-1.55 0-2.98 1.12-3.55 2.774-.792 2.205-.275 4.324.69 5.995a.774.774 0 0 0-.12.5z"/></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="#8bc34a"/><g fill="#dcedc8" stroke="#dcedc8" stroke-miterlimit="4" stroke-width=".293"><path d="M19.68 17.704a.967.967 0 0 0-.104-1.93h-.034a.964.964 0 0 0-.93 1 .99.99 0 0 0 .275.637c-.586 1.154-1.482 1.998-2.825 2.704-.913.483-1.86.655-2.808.534-.776-.103-1.379-.447-1.758-1.016-.551-.844-.603-1.757-.138-2.67a4.055 4.055 0 0 1 1.172-1.379 9.294 9.294 0 0 1-.224-.878c-2.498 1.809-2.24 4.255-1.482 5.41.569.86 1.723 1.395 2.998 1.395.345 0 .69-.035 1.034-.12 2.205-.431 3.876-1.74 4.824-3.687z"/><path d="M22.712 15.567c-1.31-1.533-3.24-2.377-5.444-2.377h-.276a.947.947 0 0 0-.844-.517h-.035a.964.964 0 0 0 .035 1.93h.034a.97.97 0 0 0 .844-.586h.31c1.31 0 2.55.379 3.67 1.12.862.568 1.482 1.309 1.826 2.205.293.723.276 1.43-.034 2.033-.483.913-1.292 1.412-2.36 1.412a4.41 4.41 0 0 1-1.689-.361c-.19.172-.534.447-.775.62.74.344 1.499.534 2.222.534 1.654 0 2.877-.913 3.343-1.826.5-1 .465-2.722-.827-4.187z"/><path d="M13.96 17.996c.017.517.448.93.965.93h.034a.964.964 0 0 0-.034-1.929h-.035c-.034 0-.086 0-.12.017-.707-1.171-1-2.446-.896-3.824.069-1.034.413-1.93 1.016-2.67.5-.638 1.465-.948 2.12-.965 1.825-.035 2.6 2.24 2.652 3.152.224.052.603.173.862.259-.207-2.791-1.93-4.238-3.584-4.238-1.55 0-2.98 1.12-3.549 2.773-.792 2.206-.275 4.325.69 5.996a.774.774 0 0 0-.121.5z"/></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="#8bc34a" fill-rule="nonzero"/><g fill="#dcedc8" stroke="#dcedc8" stroke-miterlimit="4" stroke-width=".293"><path d="M19.68 17.703a.967.967 0 0 0-.103-1.93h-.035a.964.964 0 0 0-.93 1 .99.99 0 0 0 .275.637c-.585 1.155-1.481 1.999-2.825 2.705-.913.483-1.86.655-2.808.534-.775-.103-1.378-.448-1.757-1.016-.552-.844-.603-1.758-.138-2.67a4.055 4.055 0 0 1 1.171-1.379 9.294 9.294 0 0 1-.224-.878c-2.498 1.808-2.24 4.255-1.481 5.41.568.86 1.722 1.395 2.997 1.395.345 0 .69-.035 1.034-.121 2.205-.43 3.876-1.74 4.824-3.687z"/><path d="M22.712 15.567c-1.31-1.533-3.239-2.378-5.444-2.378h-.276a.947.947 0 0 0-.844-.516h-.034a.964.964 0 0 0 .034 1.93h.035a.97.97 0 0 0 .844-.587h.31c1.31 0 2.55.38 3.67 1.12.86.569 1.481 1.31 1.826 2.205.292.724.275 1.43-.035 2.033-.482.913-1.292 1.413-2.36 1.413-.69 0-1.344-.207-1.688-.362-.19.173-.535.448-.776.62.741.345 1.5.535 2.223.535 1.654 0 2.877-.914 3.342-1.827.5-.999.465-2.722-.827-4.186z"/><path d="M13.96 17.996c.017.517.448.93.965.93h.034a.964.964 0 0 0-.034-1.93h-.035c-.034 0-.086 0-.12.018-.706-1.171-1-2.446-.896-3.825.069-1.033.414-1.93 1.016-2.67.5-.637 1.465-.947 2.12-.965 1.826-.034 2.601 2.24 2.653 3.153.224.052.603.172.861.259-.207-2.791-1.93-4.239-3.583-4.239-1.55 0-2.98 1.12-3.55 2.774-.792 2.205-.275 4.324.69 5.995a.774.774 0 0 0-.12.5z"/></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="#43a047"/><path d="m21.999 10.665-5.893 5.893-2.61-2.61-1.905 1.905 4.515 4.924 7.797-7.797z" fill="#c8e6c9"/></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="#43a047" fill-rule="nonzero"/><path d="m21.999 10.665-5.893 5.893-2.61-2.61-1.904 1.905 4.514 4.924 7.797-7.797z" fill="#c8e6c9"/></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="#fbc02d"/><path d="M21.598 12.059h-6.085v-1.217h6.085m-2.434 6.085h-3.65V15.71h3.65m2.434-1.217h-6.085v-1.217h6.085m.608-4.26h-7.301a1.217 1.217 0 0 0-1.217 1.218v7.301a1.217 1.217 0 0 0 1.217 1.217h7.301a1.217 1.217 0 0 0 1.217-1.217v-7.301a1.217 1.217 0 0 0-1.217-1.217m-9.735 2.433h-1.217v8.519a1.217 1.217 0 0 0 1.217 1.217h8.519v-1.217h-8.52z" fill="#fff9c4"/></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="#fbc02d" fill-rule="nonzero"/><path d="M21.598 12.059h-6.085v-1.217h6.085m-2.434 6.085h-3.65V15.71h3.65m2.434-1.217h-6.085v-1.217h6.085m.608-4.26h-7.301a1.217 1.217 0 0 0-1.217 1.218v7.301a1.217 1.217 0 0 0 1.217 1.217h7.301a1.217 1.217 0 0 0 1.217-1.217v-7.301a1.217 1.217 0 0 0-1.217-1.217m-9.735 2.434h-1.217v8.518a1.217 1.217 0 0 0 1.217 1.217h8.519v-1.217h-8.52z" fill="#fff9c4"/></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:#2196f3"/><path d="M17.22 14.679a1.765 1.765 0 0 0-1.765 1.765 1.765 1.765 0 0 0 1.765 1.765 1.765 1.765 0 0 0 1.765-1.765 1.765 1.765 0 0 0-1.765-1.765m0 4.707a2.942 2.942 0 0 1-2.942-2.942 2.942 2.942 0 0 1 2.942-2.942 2.942 2.942 0 0 1 2.942 2.942 2.942 2.942 0 0 1-2.942 2.942m0-7.355a6.958 6.958 0 0 0-6.472 4.413 6.958 6.958 0 0 0 6.472 4.413 6.958 6.958 0 0 0 6.472-4.413 6.958 6.958 0 0 0-6.472-4.413z" style="fill:#bbdefb;stroke-width:.58837"/></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:#2196f3"/><path d="M17.22 14.68a1.765 1.765 0 0 0-1.765 1.765 1.765 1.765 0 0 0 1.765 1.765 1.765 1.765 0 0 0 1.765-1.765 1.765 1.765 0 0 0-1.765-1.765m0 4.707a2.942 2.942 0 0 1-2.942-2.942 2.942 2.942 0 0 1 2.942-2.942 2.942 2.942 0 0 1 2.942 2.942 2.942 2.942 0 0 1-2.942 2.942m0-7.355a6.958 6.958 0 0 0-6.472 4.413 6.958 6.958 0 0 0 6.472 4.413 6.958 6.958 0 0 0 6.472-4.413 6.958 6.958 0 0 0-6.472-4.413z" style="fill:#bbdefb;stroke-width:.58837"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 20a8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8 8 8 0 0 1-8 8m0-18A10 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" fill="#90a4ae" /></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 20a8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8 8 8 0 0 1-8 8m0-18A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m0 5a5 5 0 0 0-5 5 5 5 0 0 0 5 5 5 5 0 0 0 5-5 5 5 0 0 0-5-5z" fill="#90a4ae" /></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="#43a047"/><path d="M11.373 9.095v5.92l2.09-2.09 2.088 2.438c.697.696.697 1.393.697 1.393v4.178h2.785v-4.875s0-.696-.369-1.393-1.024-1.392-1.024-1.392l-2.089-2.382 1.741-1.797m4.527 0-3.106 3.113.32.37s.648.696 1.024 1.392c.146.279.23.55.278.787l3.573-3.572" fill="#c8e6c9"/></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="#43a047" fill-rule="nonzero"/><path d="M11.373 9.095v5.92l2.09-2.09 2.088 2.437c.697.697.697 1.393.697 1.393v4.179h2.785v-4.875s0-.696-.369-1.393-1.024-1.393-1.024-1.393l-2.089-2.381 1.741-1.797m4.527 0-3.106 3.113.32.369s.648.696 1.024 1.393c.146.278.23.55.278.787l3.573-3.573" fill="#c8e6c9"/></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:#ef5350"/><path d="m17.345 18.448-2.32-2.32.818-.818 1.502 1.497 3.822-3.822.818.824m-3.48-3.48a.58.58 0 0 1 .58.58.58.58 0 0 1-.58.58.58.58 0 0 1-.58-.58.58.58 0 0 1 .58-.58m4.06 0H20.14c-.243-.673-.881-1.16-1.635-1.16s-1.392.487-1.636 1.16h-2.424a1.16 1.16 0 0 0-1.16 1.16v8.119a1.16 1.16 0 0 0 1.16 1.16h8.12a1.16 1.16 0 0 0 1.16-1.16v-8.12a1.16 1.16 0 0 0-1.16-1.16z" style="fill:#ffcdd2;stroke-width:.57994"/></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:#ef5350"/><path d="m17.345 18.448-2.32-2.32.818-.818 1.502 1.497 3.822-3.822.818.824m-3.48-3.48a.58.58 0 0 1 .58.58.58.58 0 0 1-.58.58.58.58 0 0 1-.58-.58.58.58 0 0 1 .58-.58m4.06 0H20.14c-.243-.673-.881-1.16-1.635-1.16s-1.392.487-1.636 1.16h-2.424a1.16 1.16 0 0 0-1.16 1.16v8.119a1.16 1.16 0 0 0 1.16 1.16h8.12a1.16 1.16 0 0 0 1.16-1.16v-8.12a1.16 1.16 0 0 0-1.16-1.16z" style="fill:#ffcdd2;stroke-width:.57994"/></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="#455A64" style="fill:#f06292"/><path d="M434.3 278.93c-9.3-36.49-69.8-48.48-127.06-28.14-34.08 12.11-70.96 31.11-97.49 55.92-31.54 29.5-36.57 55.17-34.49 65.9 7.31 37.85 59.18 62.6 80.5 80.95v.11c-6.29 3.09-52.3 26.38-63.07 50.19-11.36 25.12 1.81 43.14 10.53 45.57 27.02 7.52 54.74-6 69.65-28.23 14.38-21.45 13.18-49.14 6.93-62.92 8.62-2.27 18.67-3.29 31.44-1.8 36.04 4.21 43.11 26.71 41.76 36.13s-8.91 14.6-11.44 16.16-3.3 2.11-3.09 3.27c.31 1.69 1.48 1.63 3.63 1.26 2.97-.5 18.92-7.66 19.61-25.04.87-22.07-20.28-46.76-57.73-46.11-15.42.27-25.12 1.73-32.13 4.34-.52-.59-1.04-1.18-1.59-1.76-23.15-24.7-65.95-42.17-64.14-75.38.66-12.07 4.86-43.86 82.24-82.42 63.39-31.59 114.14-22.89 122.91-3.63 12.53 27.52-27.12 78.67-92.95 86.05-25.08 2.81-38.29-6.91-41.57-10.53-3.46-3.81-3.97-3.98-5.27-3.27-2.1 1.17-.77 4.53 0 6.54 1.97 5.12 10.03 14.19 23.78 18.7 12.1 3.97 41.54 6.15 77.16-7.62 39.88-15.45 71.03-58.37 61.88-94.24zM264.61 464.87c2.99 11.06 2.66 21.37-.43 30.7a49.428 49.428 0 0 1-2.46 6.08c-2.38 4.94-5.58 9.56-9.49 13.83-11.94 13.02-28.61 17.95-35.76 13.8-7.72-4.48-3.85-22.84 9.98-37.46 14.89-15.74 36.31-25.86 36.31-25.86l-.03-.06 1.88-1.03z" style="fill:#fce4ec;stroke-miterlimit:4;stroke-width:12.423;stroke:#fce4ec" transform="translate(5.344 -1.203) scale(.04037)"/></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="#455A64" fill-rule="nonzero" style="fill:#f06292"/><path d="M434.3 278.93c-9.3-36.49-69.8-48.48-127.06-28.14-34.08 12.11-70.96 31.11-97.49 55.92-31.54 29.5-36.57 55.17-34.49 65.9 7.31 37.85 59.18 62.6 80.5 80.95v.11c-6.29 3.09-52.3 26.38-63.07 50.19-11.36 25.12 1.81 43.14 10.53 45.57 27.02 7.52 54.74-6 69.65-28.23 14.38-21.45 13.18-49.14 6.93-62.92 8.62-2.27 18.67-3.29 31.44-1.8 36.04 4.21 43.11 26.71 41.76 36.13s-8.91 14.6-11.44 16.16-3.3 2.11-3.09 3.27c.31 1.69 1.48 1.63 3.63 1.26 2.97-.5 18.92-7.66 19.61-25.04.87-22.07-20.28-46.76-57.73-46.11-15.42.27-25.12 1.73-32.13 4.34-.52-.59-1.04-1.18-1.59-1.76-23.15-24.7-65.95-42.17-64.14-75.38.66-12.07 4.86-43.86 82.24-82.42 63.39-31.59 114.14-22.89 122.91-3.63 12.53 27.52-27.12 78.67-92.95 86.05-25.08 2.81-38.29-6.91-41.57-10.53-3.46-3.81-3.97-3.98-5.27-3.27-2.1 1.17-.77 4.53 0 6.54 1.97 5.12 10.03 14.19 23.78 18.7 12.1 3.97 41.54 6.15 77.16-7.62 39.88-15.45 71.03-58.37 61.88-94.24zM264.61 464.87c2.99 11.06 2.66 21.37-.43 30.7a49.428 49.428 0 0 1-2.46 6.08c-2.38 4.94-5.58 9.56-9.49 13.83-11.94 13.02-28.61 17.95-35.76 13.8-7.72-4.48-3.85-22.84 9.98-37.46 14.89-15.74 36.31-25.86 36.31-25.86l-.03-.06 1.88-1.03z" style="fill:#fce4ec;stroke-miterlimit:4;stroke-width:12.423;stroke:#fce4ec" transform="translate(5.343 -1.204) scale(.04037)"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2" 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" style="fill-rule:nonzero;fill:#f44336"/><path d="m20.732 9 .001 2.79a.105.105 0 0 1-.022.064.787.787 0 0 1-.389.351c-.15.067-.865.484-3.126.794-1.956.268-3.017.41-3.519.487-.448.069-.409.133-.409.133v-2.736a.1.1 0 0 1 .077-.098c.136-.037.48-.116 1.232-.205 1.519-.18 3.36-.464 4.801-.817C20.741 9.43 20.732 9 20.732 9zm0 3.763.001 2.79a.103.103 0 0 1-.022.063.787.787 0 0 1-.389.351c-.15.067-.865.484-3.126.795-1.956.268-3.017.409-3.519.486-.448.069-.409.133-.409.133v-2.735a.1.1 0 0 1 .077-.098c.136-.038.48-.116 1.232-.205 1.519-.18 3.36-.465 4.801-.817 1.363-.333 1.354-.763 1.354-.763zm0 3.618.001 2.791a.103.103 0 0 1-.022.063.787.787 0 0 1-.389.351c-.15.067-.865.484-3.126.794-1.956.269-3.017.41-3.519.487-.448.069-.409.133-.409.133v-2.736a.1.1 0 0 1 .077-.098c.136-.037.48-.116 1.232-.205 1.519-.179 3.36-.464 4.801-.816 1.363-.334 1.354-.764 1.354-.764z" style="fill:#ffcdd2" transform="translate(.028 .028)"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2" 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:#f44336"/><path d="m20.732 9 .001 2.79a.105.105 0 0 1-.022.064.787.787 0 0 1-.389.351c-.15.067-.865.484-3.126.794-1.956.268-3.017.41-3.519.487-.448.069-.409.133-.409.133v-2.736a.1.1 0 0 1 .077-.098c.136-.037.48-.116 1.232-.205 1.519-.18 3.36-.464 4.801-.817C20.741 9.43 20.732 9 20.732 9zm0 3.763.001 2.79a.103.103 0 0 1-.022.063.787.787 0 0 1-.389.351c-.15.067-.865.484-3.126.795-1.956.268-3.017.409-3.519.486-.448.069-.409.133-.409.133v-2.735a.1.1 0 0 1 .077-.098c.136-.038.48-.116 1.232-.205 1.519-.18 3.36-.465 4.801-.817 1.363-.333 1.354-.763 1.354-.763zm0 3.618.001 2.791a.103.103 0 0 1-.022.063.787.787 0 0 1-.389.351c-.15.067-.865.484-3.126.794-1.956.269-3.017.41-3.519.487-.448.069-.409.133-.409.133v-2.736a.1.1 0 0 1 .077-.098c.136-.037.48-.116 1.232-.205 1.519-.179 3.36-.464 4.801-.816 1.363-.334 1.354-.764 1.354-.764z" style="fill:#ffcdd2" transform="translate(.028 .028)"/></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="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="#546e7a" fill-rule="nonzero"/><path d="M18.466 20.241c.69 0 1.259-.568 1.259-1.258v-8.18H15.32a.632.632 0 0 0-.63.63v6.292h-1.887v-6.922c0-1.036.852-1.888 1.888-1.888h6.921c1.036 0 1.888.852 1.888 1.888v.63h-2.517v8.18a1.896 1.896 0 0 1-1.888 1.887h-6.292a1.896 1.896 0 0 1-1.888-1.888v-.629h6.293c0 .69.568 1.258 1.258 1.258z" fill-rule="nonzero" fill="#cfd8dc"/></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="#546e7a" fill-rule="nonzero"/><path d="M18.466 20.241c.69 0 1.259-.568 1.259-1.258v-8.18H15.32a.632.632 0 0 0-.63.63v6.292h-1.887v-6.922c0-1.036.852-1.888 1.888-1.888h6.921c1.036 0 1.888.852 1.888 1.888v.63h-2.517v8.18a1.896 1.896 0 0 1-1.888 1.887h-6.292a1.896 1.896 0 0 1-1.888-1.888v-.629h6.293c0 .69.568 1.258 1.258 1.258z" fill-rule="nonzero" fill="#cfd8dc"/></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:#f9a825"/><path d="M19.017 17.773a1.196 1.196 0 0 0 1.196-1.196c0-.663-.538-1.195-1.196-1.195a1.196 1.196 0 0 0-1.196 1.196 1.196 1.196 0 0 0 1.196 1.195m3.587-5.38a1.196 1.196 0 0 1 1.195 1.196v5.977a1.196 1.196 0 0 1-1.196 1.196H15.43a1.196 1.196 0 0 1-1.195-1.196V13.59c0-.664.538-1.196 1.195-1.196h.598v-1.195a2.989 2.989 0 0 1 2.989-2.99 2.989 2.989 0 0 1 2.989 2.99v1.195h.598m-3.587-2.989a1.793 1.793 0 0 0-1.793 1.794v1.195h3.586v-1.195a1.793 1.793 0 0 0-1.793-1.794z" style="fill:#fff9c4;stroke-width:.59776"/></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:#f9a825"/><path d="M19.017 17.774a1.196 1.196 0 0 0 1.196-1.196c0-.663-.538-1.195-1.196-1.195a1.196 1.196 0 0 0-1.196 1.196 1.196 1.196 0 0 0 1.196 1.195m3.587-5.38a1.196 1.196 0 0 1 1.195 1.196v5.977a1.196 1.196 0 0 1-1.196 1.196H15.43a1.196 1.196 0 0 1-1.195-1.196V13.59c0-.664.538-1.196 1.195-1.196h.598V11.2a2.989 2.989 0 0 1 2.989-2.99 2.989 2.989 0 0 1 2.989 2.99v1.195h.598m-3.587-2.989a1.793 1.793 0 0 0-1.793 1.794v1.195h3.586V11.2a1.793 1.793 0 0 0-1.793-1.794z" style="fill:#fff9c4;stroke-width:.59776"/></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:#fbc02d"/><path d="M13.424 8.543h9.37a.586.586 0 0 1 .586.585v2.343a.586.586 0 0 1-.586.586h-9.37a.586.586 0 0 1-.586-.586V9.128a.586.586 0 0 1 .586-.585m0 4.685h9.37a.586.586 0 0 1 .586.586v2.342a.586.586 0 0 1-.586.586h-9.37a.586.586 0 0 1-.586-.586v-2.342a.586.586 0 0 1 .586-.586m0 4.685h9.37a.586.586 0 0 1 .586.586v2.342a.586.586 0 0 1-.586.586h-9.37a.586.586 0 0 1-.586-.586V18.5a.586.586 0 0 1 .586-.586m2.928-7.028h.586v-1.17h-.586v1.17m0 4.686h.586V14.4h-.586v1.172m0 4.685h.586v-1.171h-.586v1.17M14.01 9.715v1.171h1.17V9.714h-1.17m0 4.685v1.171h1.17V14.4h-1.17m0 4.684v1.172h1.17v-1.172z" style="fill:#fffde7;stroke-width:.58564"/></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:#fbc02d"/><path d="M13.424 8.543h9.37a.586.586 0 0 1 .586.585v2.343a.586.586 0 0 1-.586.586h-9.37a.586.586 0 0 1-.586-.586V9.128a.586.586 0 0 1 .586-.585m0 4.685h9.37a.586.586 0 0 1 .586.586v2.342a.586.586 0 0 1-.586.586h-9.37a.586.586 0 0 1-.586-.586v-2.342a.586.586 0 0 1 .586-.586m0 4.685h9.37a.586.586 0 0 1 .586.586v2.342a.586.586 0 0 1-.586.586h-9.37a.586.586 0 0 1-.586-.586V18.5a.586.586 0 0 1 .586-.586m2.928-7.028h.586v-1.17h-.586v1.17m0 4.686h.586V14.4h-.586v1.172m0 4.685h.586v-1.172h-.586v1.172M14.01 9.714v1.171h1.17V9.714h-1.17m0 4.685v1.171h1.17V14.4h-1.17m0 4.685v1.171h1.17v-1.17z" style="fill:#fffde7;stroke-width:.58564"/></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-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="M10.814 18.856h2.192l-.679 2.051h-1.513zm0-3.9h3.484l-.68 2.052h-2.804zm0-3.899h4.775l-.68 2.051h-4.095zm6.936 0h5.45v2.051h-6.13zm-1.292 3.9H23.2v2.05h-7.42zm-1.291 3.899H23.2v2.051h-8.712z" fill="#ffcdd2"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg 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="#EF5350"/><path d="M10.814 18.856h2.192l-.679 2.051h-1.513zm0-3.9h3.483l-.679 2.052h-2.804zm0-3.9h4.775l-.68 2.052h-4.095zm6.936 0h5.45v2.052h-6.13zm-1.292 3.9H23.2v2.052h-7.421zm-1.291 3.9H23.2v2.051h-8.712z" fill="#ffcdd2"/></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="#AB47BC"/><path d="M16.053 19.84a2.526 2.526 0 1 1-5.053 0 2.526 2.526 0 0 1 5.053 0zm3.136-5.98a2.526 2.526 0 1 0-3.37 2.04c1.937.761 2.393 1.53 2.151 3.605a2.526 2.526 0 1 0 3.37-2.038c-1.937-.762-2.394-1.532-2.15-3.607z" fill="#E1BEE7"/></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="#AB47BC"/><path d="M16.053 18.84a2.526 2.526 0 1 1-5.053 0 2.526 2.526 0 0 1 5.053 0zm3.136-5.98a2.526 2.526 0 1 0-3.37 2.04c1.937.761 2.393 1.53 2.151 3.605a2.526 2.526 0 1 0 3.37-2.038c-1.937-.762-2.394-1.532-2.15-3.607z" fill="#E1BEE7"/></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="#AB47BC"/><path d="M21.355 19.603c.61 0 1.103-.498 1.103-1.108l.006-5.542c0-.615-.499-1.108-1.109-1.108h-8.867c-.615 0-1.108.493-1.108 1.108v5.542c0 .61.493 1.108 1.108 1.108h-2.216v1.109h13.3v-1.109zm-3.88-1.956v-1.213c-1.54 0-2.554.47-3.325 1.507.31-1.48 1.17-2.954 3.326-3.253v-1.18l2.216 2.067z" fill="#E1BEE7"/></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="#AB47BC" fill-rule="nonzero"/><path d="M21.355 19.603c.61 0 1.103-.498 1.103-1.108l.006-5.542c0-.615-.499-1.108-1.109-1.108h-8.867c-.615 0-1.108.493-1.108 1.108v5.542c0 .61.493 1.108 1.108 1.108h-2.216v1.109h13.3v-1.109zm-3.88-1.956v-1.213c-1.54 0-2.554.47-3.325 1.507.31-1.48 1.17-2.954 3.326-3.253v-1.18l2.216 2.067z" fill="#E1BEE7"/></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="#4caf50"/><path d="M15.597 21.678a.637.637 0 0 1-.147-.018.739.739 0 0 1-.513-.857l1.915-10.2a.734.734 0 0 1 .314-.482.63.63 0 0 1 .494-.087.74.74 0 0 1 .514.858l-1.92 10.2a.73.73 0 0 1-.312.481.632.632 0 0 1-.345.105zm3.839-1.445h-.048a.658.658 0 0 1-.472-.267.78.78 0 0 1 .07-1.003l3.292-3.218L19 12.75a.78.78 0 0 1-.1-1 .663.663 0 0 1 .468-.283.636.636 0 0 1 .501.167l3.866 3.534a.78.78 0 0 1 .102 1 .743.743 0 0 1-.1.116l-3.85 3.763a.646.646 0 0 1-.451.187zm-5.764.002a.648.648 0 0 1-.452-.189l-3.853-3.765a.775.775 0 0 1 .006-1.108l3.867-3.533a.623.623 0 0 1 .495-.169c.19.022.361.125.47.283a.78.78 0 0 1-.1 1.002l-3.276 2.993 3.292 3.216c.267.27.297.699.071 1.003a.656.656 0 0 1-.473.267z" fill="#c8e6c9"/></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="#4caf50" fill-rule="nonzero"/><path d="M15.597 21.678a.637.637 0 0 1-.147-.018.739.739 0 0 1-.513-.857l1.915-10.2a.734.734 0 0 1 .314-.482.63.63 0 0 1 .495-.087.74.74 0 0 1 .513.858l-1.92 10.2a.73.73 0 0 1-.312.481.632.632 0 0 1-.345.105zm3.839-1.445h-.048a.658.658 0 0 1-.472-.267.78.78 0 0 1 .07-1.003l3.293-3.218L19 12.75a.78.78 0 0 1-.1-1 .663.663 0 0 1 .467-.283.636.636 0 0 1 .501.167l3.866 3.534a.78.78 0 0 1 .102 1 .743.743 0 0 1-.1.116l-3.85 3.763a.646.646 0 0 1-.451.187zm-5.764.002a.648.648 0 0 1-.451-.189l-3.854-3.765a.775.775 0 0 1 .006-1.108l3.867-3.533a.623.623 0 0 1 .495-.169c.19.022.361.125.47.283a.78.78 0 0 1-.099 1.002l-3.277 2.993 3.293 3.216c.266.27.297.699.07 1.003a.656.656 0 0 1-.472.267z" fill-rule="nonzero" fill="#c8e6c9"/></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="#FFA726"/><path d="M23.651 13.415v-1.223h-1.2V10.97c0-.672-.54-1.222-1.2-1.222h-8.4c-.66 0-1.2.55-1.2 1.222v8.556c0 .672.54 1.222 1.2 1.222h8.4c.66 0 1.2-.55 1.2-1.222v-1.222h1.2v-1.223h-1.2v-1.222h1.2v-1.221h-1.2v-1.222zm-2.4 6.11h-8.4V10.97h8.4zm-7.2-3.666h3v2.445h-3zm3.6-3.667h2.4v1.834h-2.4zm-3.6 0h3v3.056h-3zm3.6 2.445h2.4v3.667h-2.4z" style="fill:#ffe0b2"/></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="#FFA726" fill-rule="nonzero"/><path d="M23.651 13.415v-1.223h-1.2V10.97c0-.672-.54-1.222-1.2-1.222h-8.4c-.66 0-1.2.55-1.2 1.222v8.556c0 .672.54 1.222 1.2 1.222h8.4c.66 0 1.2-.55 1.2-1.222v-1.222h1.2v-1.223h-1.2v-1.222h1.2v-1.221h-1.2v-1.222zm-2.4 6.11h-8.4V10.97h8.4zm-7.2-3.666h3v2.445h-3zm3.6-3.667h2.4v1.834h-2.4zm-3.6 0h3v3.056h-3zm3.6 2.445h2.4v3.667h-2.4z" style="fill:#ffe0b2"/></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:#448aff"/><path d="M9.838 14.066h10.02L14.443 20H4.475zM26.25 7.033H5.664L.25 12.967h20.586zM12.041 0h9.984l-5.392 5.934H6.64z" style="fill:#bbdefb" transform="translate(8.874 9.409) scale(.56815)"/></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:#448aff"/><path d="M9.838 14.066h10.02L14.443 20H4.475zM26.25 7.033H5.664L.25 12.967h20.586zM12.041 0h9.984l-5.392 5.934H6.64z" style="fill:#bbdefb" transform="translate(8.873 9.41) scale(.56815)"/></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="#ff4081"/><path d="M17.9 12.47c0 .38 2.59.2 2.94-.07 0-2.62-1.41-4-3.99-4-2.57 0-4.01 1.4-4.01 3.5 0 3.65 4.93 3.72 4.93 5.71 0 .56-.28.9-.88.9-.79 0-1.1-.4-1.06-1.77 0-.3-3-.39-3.09 0-.23 3.3 1.83 4.26 4.19 4.26C19.2 21 21 19.78 21 17.58c0-3.92-5-3.81-5-5.75 0-.79.58-.9.93-.9.36 0 1.02.07.96 1.54zM5.5 6.35l.1-2.43h1.9l.08 2.35a.15.15 0 0 1-.24.12l-.73-.58-.87.66a.15.15 0 0 1-.24-.12z" fill="#ffcdd2"/></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="#ff4081"/><path d="M17.9 12.47c0 .38 2.59.2 2.94-.07 0-2.62-1.41-4-3.99-4-2.57 0-4.01 1.4-4.01 3.5 0 3.65 4.93 3.72 4.93 5.71 0 .56-.28.9-.88.9-.79 0-1.1-.4-1.06-1.77 0-.3-3-.39-3.09 0-.23 3.3 1.83 4.26 4.19 4.26C19.2 21 21 19.78 21 17.58c0-3.92-5-3.81-5-5.75 0-.79.58-.9.93-.9.36 0 1.02.07.96 1.54zM5.5 6.35l.1-2.43h1.9l.08 2.35a.15.15 0 0 1-.24.12l-.73-.58-.87.66a.15.15 0 0 1-.24-.12z" 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" 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" fill="#D4E157" fill-rule="nonzero" style="fill:#c0ca33"/><path d="M20.758 19.209c1.1-1.315 1.229-2.673.378-5.194-.539-1.595-1.433-2.823-.776-3.814.7-1.056 2.188-.032.948 1.38l.247.171c1.487.173 2.22-1.864 1.11-2.445-2.93-1.53-5.494 1.411-4.364 4.815.486 1.445 1.165 2.975.615 4.193-.474 1.044-1.39 1.659-2.004 1.68-1.282.064-.43-2.876 1.045-3.609.129-.064.313-.15.14-.366-1.82-.204-2.888.635-3.501 1.81-1.79 3.416 3.393 4.676 6.162 1.379z" style="fill:#f0f4c3;stroke-width:1.0725"/></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="#D4E157" fill-rule="nonzero" style="fill:#c0ca33"/><path d="M20.759 19.209c1.1-1.315 1.229-2.673.378-5.194-.539-1.595-1.433-2.823-.776-3.814.7-1.056 2.188-.032.948 1.38l.247.171c1.487.173 2.22-1.864 1.11-2.445-2.93-1.53-5.494 1.411-4.364 4.815.486 1.445 1.165 2.975.615 4.193-.474 1.044-1.39 1.659-2.004 1.68-1.282.064-.43-2.876 1.045-3.609.129-.064.313-.15.14-.366-1.82-.204-2.888.635-3.501 1.81-1.79 3.416 3.393 4.676 6.162 1.379z" style="fill:#f0f4c3;stroke-width:1.0725"/></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="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" fill="#616161"/><path d="m18.32 16.95-3.791-1.23a.297.297 0 0 1-.192-.262l-.037-2.914a.289.289 0 0 1 .188-.261l8.935-2.858c.106-.034.191.028.191.139v2.913a.296.296 0 0 1-.19.264l-3.687 1.229 3.748 1.17a.288.288 0 0 1 .191.26v2.872c0 .11-.084.228-.189.264l-8.958 3.039c-.105.036-.19-.025-.191-.135l-.018-2.998a.29.29 0 0 1 .189-.261l3.811-1.231z" fill="#FFA726"/></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="#616161" fill-rule="nonzero"/><path d="m18.32 16.95-3.791-1.23a.297.297 0 0 1-.192-.262l-.037-2.914a.289.289 0 0 1 .188-.261l8.935-2.858c.106-.034.191.028.191.139v2.913a.296.296 0 0 1-.19.264l-3.687 1.229 3.748 1.17a.288.288 0 0 1 .191.26v2.872c0 .11-.084.228-.189.264l-8.958 3.039c-.105.036-.19-.025-.191-.135l-.018-2.998a.29.29 0 0 1 .189-.261l3.811-1.231z" fill="#FFA726"/></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="#66bb6a"/>
|
|
4
|
-
<path d="m18.931 20.579c-0.30174 0.37873-0.91666 0.17064-0.92394-0.31214l-0.10613-3.5719-0.02185-3.496h4.8101c0.86672 0 1.3516 0.99469 0.81157 1.6689l-4.5698 5.7122zm-2.0112-11.83c0.3059-0.40891 0.92602-0.1852 0.93331 0.33503l0.04786 7.6121h-4.7789c-0.874 0-1.363-1.0717-0.81885-1.7969l4.6166-6.1513z" fill="#c8e6c9" stroke-width="1.0405"/>
|
|
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="#66bb6a"/><path d="m18.931 20.579c-0.30174 0.37873-0.91666 0.17064-0.92394-0.31214l-0.10613-3.5719-0.02185-3.496h4.8101c0.86672 0 1.3516 0.99469 0.81157 1.6689l-4.5698 5.7122zm-2.0112-11.83c0.3059-0.40891 0.92602-0.1852 0.93331 0.33503l0.04786 7.6121h-4.7789c-0.874 0-1.363-1.0717-0.81885-1.7969l4.6166-6.1513z" fill="#c8e6c9" stroke-width="1.0405"/></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="#ff5722"/><path d="M19.57 8.483a3.524 3.524 0 0 0-1.832.546l-2.863 1.825a3.283 3.283 0 0 0-1.484 2.195 3.462 3.462 0 0 0 .34 2.222 3.287 3.287 0 0 0-.49 1.228 3.498 3.498 0 0 0 .597 2.648c1.142 1.633 3.397 2.117 5.027 1.079l2.864-1.817a3.293 3.293 0 0 0 1.484-2.196 3.46 3.46 0 0 0-.342-2.22 3.308 3.308 0 0 0 .492-1.228 3.502 3.502 0 0 0-.598-2.648v-.009a3.826 3.826 0 0 0-3.195-1.625zm.251 1.402a2.274 2.274 0 0 1 1.765.976 2.101 2.101 0 0 1 .36 1.592 2.212 2.212 0 0 1-.068.267l-.055.165-.146-.11a3.708 3.708 0 0 0-1.12-.56l-.11-.032.01-.11a.643.643 0 0 0-.116-.425.684.684 0 0 0-.731-.265.628.628 0 0 0-.176.077l-2.864 1.82a.598.598 0 0 0-.27.399.641.641 0 0 0 .11.48.686.686 0 0 0 .73.273.659.659 0 0 0 .176-.077l1.098-.696a2.043 2.043 0 0 1 .582-.256 2.272 2.272 0 0 1 2.44.905 2.103 2.103 0 0 1 .36 1.592 1.976 1.976 0 0 1-.892 1.324l-2.864 1.824a2.106 2.106 0 0 1-.582.256 2.276 2.276 0 0 1-2.442-.906 2.101 2.101 0 0 1-.359-1.592 1.866 1.866 0 0 1 .068-.264l.054-.165.147.11a3.708 3.708 0 0 0 1.117.555l.11.032-.01.11a.648.648 0 0 0 .12.423.686.686 0 0 0 .735.272.642.642 0 0 0 .175-.077l2.86-1.825a.595.595 0 0 0 .268-.4.633.633 0 0 0-.11-.479.686.686 0 0 0-.735-.272.628.628 0 0 0-.176.077l-1.098.697a2.097 2.097 0 0 1-.58.254 2.275 2.275 0 0 1-2.438-.904 2.103 2.103 0 0 1-.356-1.592 1.976 1.976 0 0 1 .892-1.324l2.868-1.825a2.091 2.091 0 0 1 .577-.254 2.274 2.274 0 0 1 .676-.07z" fill="#ffccbc"/></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="#ff5722" fill-rule="nonzero"/><path d="M19.57 8.483a3.524 3.524 0 0 0-1.832.546l-2.863 1.825a3.283 3.283 0 0 0-1.484 2.196 3.462 3.462 0 0 0 .34 2.222 3.287 3.287 0 0 0-.49 1.227 3.498 3.498 0 0 0 .597 2.648c1.142 1.634 3.397 2.118 5.027 1.08l2.864-1.818a3.293 3.293 0 0 0 1.484-2.195 3.46 3.46 0 0 0-.342-2.221 3.308 3.308 0 0 0 .492-1.228 3.502 3.502 0 0 0-.598-2.648v-.008a3.826 3.826 0 0 0-3.195-1.626zm.251 1.402a2.274 2.274 0 0 1 1.765.977 2.101 2.101 0 0 1 .36 1.592 2.212 2.212 0 0 1-.068.266l-.055.165-.146-.11a3.708 3.708 0 0 0-1.12-.56l-.11-.031.01-.11a.643.643 0 0 0-.116-.426.684.684 0 0 0-.731-.265.628.628 0 0 0-.176.077l-2.864 1.821a.598.598 0 0 0-.27.399.641.641 0 0 0 .11.48.686.686 0 0 0 .73.273.659.659 0 0 0 .176-.077l1.098-.696a2.043 2.043 0 0 1 .582-.256 2.272 2.272 0 0 1 2.44.905 2.103 2.103 0 0 1 .36 1.592 1.976 1.976 0 0 1-.892 1.324l-2.864 1.824a2.106 2.106 0 0 1-.582.256 2.276 2.276 0 0 1-2.442-.906 2.101 2.101 0 0 1-.359-1.591 1.866 1.866 0 0 1 .068-.265l.054-.165.147.11a3.708 3.708 0 0 0 1.117.556l.11.031-.01.11a.648.648 0 0 0 .12.423.686.686 0 0 0 .735.272.642.642 0 0 0 .175-.077l2.86-1.824a.595.595 0 0 0 .268-.4.633.633 0 0 0-.11-.48.686.686 0 0 0-.735-.272.628.628 0 0 0-.176.077l-1.098.697a2.097 2.097 0 0 1-.58.255 2.275 2.275 0 0 1-2.438-.905 2.103 2.103 0 0 1-.356-1.592 1.976 1.976 0 0 1 .892-1.324l2.868-1.824a2.091 2.091 0 0 1 .577-.255 2.274 2.274 0 0 1 .676-.07z" fill="#ffccbc"/></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:#ffb300"/><path d="M12.91 14.24h2.402l-1.702-1.702a1.177 1.177 0 0 1-1.175-1.182 1.175 1.175 0 0 1 1.175-1.175c.655 0 1.182.527 1.182 1.175l1.702 1.702v-2.402a1.182 1.182 0 0 1 0-1.663 1.163 1.163 0 0 1 1.657 0 1.182 1.182 0 0 1 0 1.663v2.402l1.708-1.702a1.176 1.176 0 0 1 2.35 0c0 .655-.526 1.182-1.175 1.182l-1.702 1.702h2.402a1.182 1.182 0 0 1 1.664 0 1.163 1.163 0 0 1 0 1.657 1.182 1.182 0 0 1-1.664 0h-2.402l1.702 1.708c.65 0 1.176.52 1.176 1.176a1.175 1.175 0 0 1-1.176 1.175 1.172 1.172 0 0 1-1.175-1.175l-1.708-1.702v2.402a1.182 1.182 0 0 1 0 1.663 1.163 1.163 0 0 1-1.657 0 1.182 1.182 0 0 1 0-1.663v-2.402l-1.702 1.702c0 .648-.527 1.175-1.182 1.175a1.176 1.176 0 0 1 0-2.35l1.702-1.709H12.91a1.182 1.182 0 0 1-1.663 0 1.163 1.163 0 0 1 0-1.657 1.182 1.182 0 0 1 1.663 0z" style="fill:#fff9c4;stroke-width:.64225"/></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:#ffb300"/><path d="M12.91 14.24h2.402l-1.702-1.702a1.177 1.177 0 0 1-1.175-1.182 1.175 1.175 0 0 1 1.175-1.175c.655 0 1.182.527 1.182 1.175l1.702 1.702v-2.402a1.182 1.182 0 0 1 0-1.663 1.163 1.163 0 0 1 1.657 0 1.182 1.182 0 0 1 0 1.663v2.402l1.708-1.702a1.176 1.176 0 0 1 2.35 0c0 .655-.526 1.182-1.175 1.182l-1.702 1.702h2.402a1.182 1.182 0 0 1 1.664 0 1.163 1.163 0 0 1 0 1.657 1.182 1.182 0 0 1-1.664 0h-2.402l1.702 1.708c.65 0 1.176.52 1.176 1.176a1.175 1.175 0 0 1-1.176 1.175 1.172 1.172 0 0 1-1.175-1.175l-1.708-1.702v2.402a1.182 1.182 0 0 1 0 1.663 1.163 1.163 0 0 1-1.657 0 1.182 1.182 0 0 1 0-1.663v-2.402l-1.702 1.702c0 .648-.527 1.175-1.182 1.175a1.176 1.176 0 0 1 0-2.35l1.702-1.709H12.91a1.182 1.182 0 0 1-1.663 0 1.163 1.163 0 0 1 0-1.657 1.182 1.182 0 0 1 1.663 0z" style="fill:#fff9c4;stroke-width:.64225"/></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="#E53935" fill-rule="nonzero" style="fill:#ef5350"/><path d="M17.726 17.072h1.184l-2.894-7.36h-1.053l-2.894 7.36h1.184l.634-1.698h3.193zm-3.409-2.832 1.172-3.124 1.172 3.124zm8.585.335-4.58 4.58-2.079-2.083-.8.798 2.884 2.882 5.373-5.378z" style="fill:#ffcdd2;stroke-width:1.1672"/></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="#E53935" fill-rule="nonzero" style="fill:#ef5350"/><path d="M17.726 17.072h1.184l-2.894-7.36h-1.053l-2.894 7.36h1.184l.634-1.698h3.193zm-3.409-2.832 1.172-3.124 1.172 3.124zm8.585.335-4.58 4.58-2.078-2.083-.8.798 2.883 2.882 5.373-5.378z" style="fill:#ffcdd2;stroke-width:1.1673"/></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="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="#546e7a" fill-rule="nonzero"/><path d="M17.722 8.536a6.12 6.12 0 0 0-6.12 6.12 6.12 6.12 0 0 0 6.12 6.118 6.12 6.12 0 0 0 6.12-6.12 5.98 5.98 0 0 0-.374-2.074l-.98.98c.086.36.13.728.13 1.095a4.895 4.895 0 0 1-4.896 4.895 4.895 4.895 0 0 1-4.895-4.895 4.895 4.895 0 0 1 4.895-4.896c.368 0 .734.044 1.095.13l.986-.985a6.182 6.182 0 0 0-2.08-.368m4.283 0-2.448 2.448v.918l-1.562 1.56c-.091-.03-.182-.03-.275-.03a1.223 1.223 0 0 0-1.223 1.224 1.223 1.223 0 0 0 1.223 1.223 1.223 1.223 0 0 0 1.224-1.223c0-.093 0-.185-.03-.277l1.56-1.56h.918l2.448-2.447h-1.836V8.536m-4.284 2.448a3.672 3.672 0 0 0-3.67 3.67 3.672 3.672 0 0 0 3.67 3.672 3.672 3.672 0 0 0 3.672-3.671h-1.224a2.448 2.448 0 0 1-2.448 2.447 2.448 2.448 0 0 1-2.447-2.447 2.448 2.448 0 0 1 2.447-2.448z" fill="#cfd8dc"/></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="#546e7a" fill-rule="nonzero"/><path d="M17.721 8.536a6.12 6.12 0 0 0-6.12 6.12 6.12 6.12 0 0 0 6.12 6.118 6.12 6.12 0 0 0 6.12-6.12 5.98 5.98 0 0 0-.374-2.073l-.98.979c.086.36.13.728.13 1.095a4.895 4.895 0 0 1-4.896 4.895 4.895 4.895 0 0 1-4.895-4.895 4.895 4.895 0 0 1 4.895-4.895c.368 0 .734.043 1.095.129l.986-.985a6.181 6.181 0 0 0-2.08-.368m4.282 0-2.447 2.448v.918l-1.562 1.56c-.091-.03-.183-.03-.275-.03a1.223 1.223 0 0 0-1.223 1.224 1.223 1.223 0 0 0 1.223 1.223 1.223 1.223 0 0 0 1.224-1.223c0-.093 0-.185-.03-.277l1.56-1.56h.918l2.447-2.447h-1.836V8.536m-4.283 2.448a3.672 3.672 0 0 0-3.67 3.67 3.672 3.672 0 0 0 3.67 3.672 3.672 3.672 0 0 0 3.672-3.671h-1.224a2.447 2.447 0 0 1-2.448 2.447 2.447 2.447 0 0 1-2.447-2.447 2.447 2.447 0 0 1 2.447-2.448z" fill="#cfd8dc"/></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:#5c6bc0"/><path d="M21.981 19.546H13.36v-6.774h8.621m0-3.08h-.616v-1.23h-1.231v1.23h-4.927v-1.23h-1.232v1.23h-.615c-.684 0-1.232.555-1.232 1.232v8.622a1.232 1.232 0 0 0 1.232 1.232h8.621a1.232 1.232 0 0 0 1.232-1.232v-8.621a1.232 1.232 0 0 0-1.232-1.232m-1.521 4.963-.653-.652-3.005 3.005-1.306-1.306-.652.653 1.958 1.958z" style="fill:#c5cae9;stroke-width:.61582"/></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:#5c6bc0"/><path d="M21.981 19.546H13.36v-6.774h8.621m0-3.08h-.616v-1.23h-1.231v1.23h-4.927v-1.23h-1.232v1.23h-.615c-.684 0-1.232.555-1.232 1.232v8.622a1.232 1.232 0 0 0 1.232 1.232h8.621a1.232 1.232 0 0 0 1.232-1.232v-8.621a1.232 1.232 0 0 0-1.232-1.232m-1.521 4.963-.653-.652-3.005 3.005-1.306-1.306-.652.653 1.958 1.958z" style="fill:#c5cae9;stroke-width:.61582"/></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"/><path d="M17.651 19.893a4.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.951 5.952 5.952 0 0 1 5.952-5.952m.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"/></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"/><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"/></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="#A1887F" style="fill:#8d6e63"/><path d="M10.6 17.829h5.333v-1.286H10.6zm0 2.571h5.333v-1.286H10.6zm0-5.143h5.333v-1.286H10.6zm0-3.857v1.286h5.333V11.4zm6.667 0H22.6v9h-5.333z" fill="#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" 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="#A1887F" fill-rule="nonzero" style="fill:#8d6e63"/><path d="M10.6 17.829h5.333v-1.286H10.6zm0 2.571h5.333v-1.286H10.6zm0-5.143h5.333v-1.286H10.6zm0-3.857v1.286h5.333V11.4zm6.667 0H22.6v9h-5.333z" fill="#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="#5c6bc0"/><g fill="#c5cae9"><path class="rect-dark" d="m19.903 17.826 3.822-2.205v-4.416l-3.822 2.209"/><path class="rect-light" d="m15.66 11.205 3.823 2.209v4.412l-3.822-2.207m-4.242-2.464 3.822 2.207v-4.414L11.42 8.741m4.242 11.777 3.822 2.207v-4.414l-3.822-2.207"/></g></svg>
|