@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" 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"/><g style="clip-rule:evenodd;fill-rule:evenodd;fill:#b3e5fc;stroke-linejoin:round;stroke-miterlimit:2"><g style="fill:#b3e5fc"><path d="M13.593 1.116a10.973 10.973 0 0 0-3.186 0L9.71 2.935a9.345 9.345 0 0 0-2.501 1.036L5.43 3.178A10.975 10.975 0 0 0 3.178 5.43l.793 1.779A9.345 9.345 0 0 0 2.935 9.71l-1.819.697a10.973 10.973 0 0 0 0 3.186l1.819.697a9.345 9.345 0 0 0 1.036 2.501l-.793 1.779a10.975 10.975 0 0 0 2.252 2.252l1.779-.793a9.345 9.345 0 0 0 2.501 1.036l.697 1.819c1.056.155 2.13.155 3.186 0l.697-1.819a9.345 9.345 0 0 0 2.501-1.036l1.779.793a10.975 10.975 0 0 0 2.252-2.252l-.793-1.779a9.345 9.345 0 0 0 1.036-2.501l1.819-.697c.155-1.056.155-2.13 0-3.186l-1.819-.697a9.345 9.345 0 0 0-1.036-2.501l.793-1.779a10.975 10.975 0 0 0-2.252-2.252l-1.779.793a9.345 9.345 0 0 0-2.501-1.036zM12 4.951c3.89 0 7.049 3.159 7.049 7.049S15.89 19.049 12 19.049 4.951 15.89 4.951 12 8.11 4.951 12 4.951z" style="fill:#b3e5fc" transform="translate(10.409 8.48) scale(.57906)"/><path d="M14.83 14.825A3.985 3.985 0 0 1 12 16c-2.208 0-4-1.792-4-4s1.792-4 4-4c1.105 0 2.106.449 2.83 1.175l-1.414 1.413a2 2 0 1 0 0 2.824z" style="fill:#b3e5fc" transform="translate(10.409 8.48) scale(.57906)"/></g></g></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24"><path fill="#03A9F4" d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z"/><path fill="#B3E5FC" d="M21.706 11.619h-9.2c-.633 0-1.144.517-1.144 1.15l-.006 10.35 2.3-2.3h8.05c.632 0 1.15-.518 1.15-1.15v-6.9c0-.633-.518-1.15-1.15-1.15zm-4.025 6.9h-1.15v-1.15h1.15zm0-2.3h-1.15v-2.3h1.15z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24"><path fill="#03A9F4" d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill-rule="nonzero"/><path fill="#B3E5FC" d="M21.706 11.619h-9.2c-.633 0-1.144.517-1.144 1.15l-.006 10.35 2.3-2.3h8.05c.632 0 1.15-.518 1.15-1.15v-6.9c0-.633-.518-1.15-1.15-1.15zm-4.025 6.9h-1.15v-1.15h1.15zm0-2.3h-1.15v-2.3h1.15z"/></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="#c0ca33"/><path d="M11.097 9.613h5.346v2.9l3.782-3.775L24 12.513l-3.775 3.782h2.9v5.346h-5.346v-5.346h2.446l-3.782-3.782v2.446h-5.346V9.613m0 6.682h5.346v5.346h-5.346z" fill="#f0f4c3"/></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="#c0ca33" fill-rule="nonzero"/><path d="M11.097 9.613h5.346v2.9l3.782-3.775L24 12.513l-3.775 3.782h2.9v5.346h-5.346v-5.346h2.446l-3.782-3.782v2.446h-5.346V9.613m0 6.682h5.346v5.346h-5.346z" fill="#f0f4c3"/></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="#00acc1"/><path d="M17.293 17.786a2.308 2.308 0 0 1-2.308-2.308 2.308 2.308 0 0 1 2.308-2.307 2.308 2.308 0 0 1 2.308 2.307 2.308 2.308 0 0 1-2.308 2.308m4.899-1.668c.026-.211.046-.422.046-.64 0-.217-.02-.435-.046-.659l1.391-1.075a.333.333 0 0 0 .08-.422l-1.32-2.28c-.079-.146-.257-.205-.402-.146l-1.641.66a4.779 4.779 0 0 0-1.115-.647l-.244-1.747a.333.333 0 0 0-.33-.277h-2.637a.333.333 0 0 0-.33.277l-.243 1.747a4.78 4.78 0 0 0-1.114.646l-1.642-.659a.324.324 0 0 0-.402.145l-1.319 2.281a.325.325 0 0 0 .08.422l1.39 1.075c-.026.224-.046.442-.046.66s.02.428.046.639l-1.39 1.094a.325.325 0 0 0-.08.422l1.319 2.282a.332.332 0 0 0 .402.145l1.642-.666c.342.264.698.488 1.114.653l.244 1.747a.333.333 0 0 0 .33.277h2.637a.333.333 0 0 0 .33-.277l.243-1.747a4.802 4.802 0 0 0 1.115-.653l1.641.666c.145.052.323 0 .403-.145l1.318-2.282a.333.333 0 0 0-.079-.422z" fill="#80deea"/></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="#00acc1" fill-rule="nonzero"/><path d="M17.293 17.786a2.308 2.308 0 0 1-2.308-2.308 2.308 2.308 0 0 1 2.308-2.307 2.308 2.308 0 0 1 2.308 2.307 2.308 2.308 0 0 1-2.308 2.308m4.899-1.668c.026-.211.046-.422.046-.64 0-.217-.02-.435-.046-.659l1.391-1.075a.333.333 0 0 0 .08-.422l-1.32-2.28c-.079-.146-.257-.205-.402-.146l-1.641.66a4.779 4.779 0 0 0-1.115-.647l-.244-1.747a.333.333 0 0 0-.33-.277h-2.637a.333.333 0 0 0-.33.277l-.243 1.747a4.78 4.78 0 0 0-1.114.646l-1.642-.659a.324.324 0 0 0-.402.145l-1.319 2.281a.325.325 0 0 0 .08.422l1.39 1.075c-.026.224-.046.442-.046.66s.02.428.046.639l-1.39 1.094a.325.325 0 0 0-.08.422l1.319 2.282a.332.332 0 0 0 .402.145l1.642-.666c.342.264.698.488 1.114.653l.244 1.747a.333.333 0 0 0 .33.277h2.637a.333.333 0 0 0 .33-.277l.243-1.747a4.802 4.802 0 0 0 1.115-.653l1.641.666c.145.052.323 0 .403-.145l1.318-2.282a.333.333 0 0 0-.079-.422z" fill="#80deea"/></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:#00acc1"/><path d="M23.043 12.103c.458.458.458 1.202 0 1.603l-1.603 1.603-4.465-4.465 1.603-1.603c.458-.458 1.202-.458 1.603 0l1.03 1.03 1.717-1.717.802.801-1.717 1.718 1.03 1.03m-3.32 3.32-.802-.801-1.602 1.603-1.202-1.203 1.602-1.602-.801-.802-1.603 1.603-.859-.801-1.602 1.602c-.458.458-.458 1.203 0 1.603l1.03 1.03-2.29 2.29.802.802 2.29-2.29 1.03 1.03c.458.458 1.202.458 1.603 0l1.602-1.602-.801-.802z" style="fill:#b2ebf2;stroke-width:.57244"/></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:#00acc1"/><path d="M23.043 12.103c.458.458.458 1.202 0 1.603l-1.603 1.603-4.465-4.465 1.603-1.603c.458-.458 1.202-.458 1.603 0l1.03 1.03 1.717-1.717.802.801-1.717 1.718 1.03 1.03m-3.32 3.32-.802-.801-1.602 1.603-1.202-1.203 1.602-1.602-.801-.802-1.603 1.603-.859-.801-1.602 1.602c-.458.458-.458 1.203 0 1.603l1.03 1.03-2.29 2.29.802.802 2.29-2.29 1.03 1.03c.458.458 1.202.458 1.603 0l1.602-1.602-.801-.802z" style="fill:#b2ebf2;stroke-width:.57244"/></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="#607D8B"/><path d="M13.589 11.246h-2.02a.675.675 0 0 0-.672.673v8.082c0 .37.302.673.673.673h2.02a.675.675 0 0 0 .673-.673v-8.082a.675.675 0 0 0-.673-.673zm9.428 0h-2.02a.675.675 0 0 0-.674.673v8.082c0 .37.303.673.673.673h2.02A.675.675 0 0 0 23.69 20v-8.082a.675.675 0 0 0-.673-.673zm-4.714 0h-2.02a.675.675 0 0 0-.673.673v8.082c0 .37.302.673.673.673h2.02a.675.675 0 0 0 .673-.673v-8.082a.675.675 0 0 0-.673-.673z" style="fill:#cfd8dc;stroke-width:1.1126"/></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="#607D8B" fill-rule="nonzero"/><path d="M13.589 11.247h-2.02a.675.675 0 0 0-.672.673v8.082c0 .37.302.673.673.673h2.02a.675.675 0 0 0 .673-.673V11.92a.675.675 0 0 0-.673-.673zm9.428 0h-2.02a.675.675 0 0 0-.674.673v8.082c0 .37.303.673.673.673h2.02a.675.675 0 0 0 .674-.673V11.92a.675.675 0 0 0-.673-.673zm-4.714 0h-2.02a.675.675 0 0 0-.673.673v8.082c0 .37.302.673.673.673h2.02a.675.675 0 0 0 .673-.673V11.92a.675.675 0 0 0-.673-.673z" style="fill:#cfd8dc;stroke-width:1.1126"/></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="M23.288 18.015a.645.645 0 0 1-.345.573l-5.14 2.888c-.103.078-.234.117-.37.117s-.267-.039-.37-.117l-5.14-2.888a.645.645 0 0 1-.345-.573V12.16c0-.247.136-.462.345-.573l5.14-2.888c.103-.078.233-.117.37-.117s.267.039.37.117l5.14 2.888a.647.647 0 0 1 .345.573v5.855m-5.855-8.034-3.878 2.179 3.878 2.18 3.877-2.18-3.877-2.18m-4.554 7.651 3.903 2.199v-4.365l-3.903-2.193v4.36m9.108 0v-4.36l-3.904 2.193v4.365z" style="fill:#b3e5fc;stroke-width:.65056"/></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="M23.288 18.015a.645.645 0 0 1-.345.573l-5.14 2.888c-.103.078-.234.117-.37.117s-.267-.039-.37-.117l-5.14-2.888a.645.645 0 0 1-.345-.573V12.16c0-.247.136-.462.345-.573l5.14-2.888c.103-.078.233-.117.37-.117s.267.039.37.117l5.14 2.888a.647.647 0 0 1 .345.573v5.855m-5.855-8.034-3.878 2.179 3.878 2.18 3.877-2.18-3.877-2.18m-4.554 7.651 3.903 2.199v-4.365l-3.903-2.193v4.36m9.108 0v-4.36l-3.904 2.193v4.365z" style="fill:#b3e5fc;stroke-width:.65056"/></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="#00BCD4"/><path d="M17.51 14.937h3.932v.965H17.51zm0-1.608h3.932v.965H17.51zm0 3.216h3.932v.966H17.51zm4.494-6.754H11.89c-.618 0-1.123.58-1.123 1.287v8.363c0 .708.505 1.286 1.123 1.286h10.115c.617 0 1.124-.578 1.124-1.287v-8.363c0-.707-.506-1.286-1.125-1.286zm0 9.65h-5.056v-8.364h5.056z" style="fill:#b2ebf2;stroke-width:1.075"/></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="#00BCD4" fill-rule="nonzero"/><path d="M17.51 14.937h3.932v.965H17.51zm0-1.608h3.932v.965H17.51zm0 3.216h3.932v.965H17.51zm4.494-6.754H11.89c-.618 0-1.123.58-1.123 1.287v8.363c0 .707.505 1.286 1.123 1.286h10.115c.617 0 1.124-.579 1.124-1.287v-8.363c0-.707-.506-1.286-1.125-1.286zm0 9.649h-5.056v-8.363h5.056z" style="fill:#b2ebf2;stroke-width:1.075"/></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="#00897b"/><path d="M10.26 18.997c-.008-.97-.016-1.79-.008-1.83l.008-.071.604-.012c.33-.008.607-.016.61-.02 0 0 .005-.45.005-.99 0-.78.008-1.018.035-1.116.11-.414.43-.746.852-.884.075-.023.533-.031 2.047-.043l1.953-.012.008-.903.004-.907h-1.23V8.54h3.667v3.669h-1.207v1.818l1.95.008c2.153.012 2.038 0 2.318.166.154.09.21.138.34.307.134.178.217.36.244.56.012.087.024.58.024 1.1v.94h1.23v3.644h-3.656l-.016-3.668h.564c.312 0 .588-.008.62-.016l.05-.012v-1.794H17.61v1.822h1.207v3.668h-3.669v-3.668h.564c.308 0 .584-.008.616-.016l.05-.012v-1.794H12.71v1.822h1.207v3.668h-3.641z" fill="#b2dfdb"/></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="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="#00897b"/><path d="M10.26 18.996c-.008-.97-.016-1.79-.008-1.83l.008-.071.604-.012c.33-.008.607-.016.61-.02 0 0 .005-.45.005-.99 0-.78.008-1.018.035-1.116.11-.414.43-.746.852-.884.075-.023.533-.031 2.047-.043l1.953-.012.008-.903.004-.907h-1.23V8.539h3.667v3.669h-1.207v1.818l1.95.008c2.153.012 2.038 0 2.318.166.154.09.21.138.34.307.134.178.217.36.244.56.012.087.024.58.024 1.1v.94h1.23v3.644h-3.656l-.016-3.668h.564c.312 0 .588-.008.62-.016l.05-.012v-1.794H17.61v1.822h1.207v3.668h-3.669v-3.668h.564c.308 0 .584-.008.616-.016l.05-.012v-1.794H12.71v1.822h1.207v3.668h-3.641z" fill="#b2dfdb"/></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="M18.116 15.74a.644.644 0 0 0 0 .94.667.667 0 0 0 .94 0 3.312 3.312 0 0 0 0-4.68l-2.343-2.344a3.312 3.312 0 0 0-4.68 0 3.312 3.312 0 0 0 0 4.68l.985.987a4.574 4.574 0 0 1 .265-1.602l-.31-.318a1.974 1.974 0 0 1 0-2.807 1.974 1.974 0 0 1 2.806 0l2.337 2.337a1.974 1.974 0 0 1 0 2.807m-1.867-2.807a.667.667 0 0 0-.94 0 3.312 3.312 0 0 0 0 4.68l2.344 2.344a3.312 3.312 0 0 0 4.68 0 3.312 3.312 0 0 0 0-4.68l-.986-.987a4.635 4.635 0 0 1-.265 1.609l.311.311a1.974 1.974 0 0 1 0 2.807 1.974 1.974 0 0 1-2.807 0l-2.337-2.337a1.974 1.974 0 0 1 0-2.807.644.644 0 0 0 0-.94z" style="fill:#bbdefb;stroke-width:.66202"/></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="M18.116 15.74a.644.644 0 0 0 0 .94.667.667 0 0 0 .94 0 3.312 3.312 0 0 0 0-4.68l-2.343-2.344a3.312 3.312 0 0 0-4.68 0 3.312 3.312 0 0 0 0 4.68l.985.987a4.574 4.574 0 0 1 .265-1.602l-.31-.318a1.974 1.974 0 0 1 0-2.807 1.974 1.974 0 0 1 2.806 0l2.337 2.337a1.974 1.974 0 0 1 0 2.807m-1.867-2.807a.667.667 0 0 0-.94 0 3.312 3.312 0 0 0 0 4.68l2.344 2.344a3.312 3.312 0 0 0 4.68 0 3.312 3.312 0 0 0 0-4.68l-.986-.987a4.635 4.635 0 0 1-.265 1.609l.311.31a1.974 1.974 0 0 1 0 2.808 1.974 1.974 0 0 1-2.807 0l-2.337-2.337a1.974 1.974 0 0 1 0-2.807.644.644 0 0 0 0-.94z" style="fill:#bbdefb;stroke-width:.66202"/></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="#00acc1" style="fill:#ffc107"/><path d="M17.293 17.786a2.308 2.308 0 0 1-2.308-2.308 2.308 2.308 0 0 1 2.308-2.307 2.308 2.308 0 0 1 2.308 2.307 2.308 2.308 0 0 1-2.308 2.308m4.899-1.668c.026-.211.046-.422.046-.64 0-.217-.02-.435-.046-.659l1.391-1.075a.333.333 0 0 0 .08-.422l-1.32-2.28c-.079-.146-.257-.205-.402-.146l-1.641.66a4.779 4.779 0 0 0-1.115-.647l-.244-1.747a.333.333 0 0 0-.33-.277h-2.637a.333.333 0 0 0-.33.277l-.243 1.747a4.78 4.78 0 0 0-1.114.646l-1.642-.659a.324.324 0 0 0-.402.145l-1.319 2.281a.325.325 0 0 0 .08.422l1.39 1.075c-.026.224-.046.442-.046.66s.02.428.046.639l-1.39 1.094a.325.325 0 0 0-.08.422l1.319 2.282a.332.332 0 0 0 .402.145l1.642-.666c.342.264.698.488 1.114.653l.244 1.747a.333.333 0 0 0 .33.277h2.637a.333.333 0 0 0 .33-.277l.243-1.747a4.802 4.802 0 0 0 1.115-.653l1.641.666c.145.052.323 0 .403-.145l1.318-2.282a.333.333 0 0 0-.079-.422z" fill="#80deea" style="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="#00acc1" fill-rule="nonzero" style="fill:#ffc107"/><path d="M17.293 17.786a2.308 2.308 0 0 1-2.308-2.308 2.308 2.308 0 0 1 2.308-2.307 2.308 2.308 0 0 1 2.308 2.307 2.308 2.308 0 0 1-2.308 2.308m4.899-1.668c.026-.211.046-.422.046-.64 0-.217-.02-.435-.046-.659l1.391-1.075a.333.333 0 0 0 .08-.422l-1.32-2.28c-.079-.146-.257-.205-.402-.146l-1.641.66a4.779 4.779 0 0 0-1.115-.647l-.244-1.747a.333.333 0 0 0-.33-.277h-2.637a.333.333 0 0 0-.33.277l-.243 1.747a4.78 4.78 0 0 0-1.114.646l-1.642-.659a.324.324 0 0 0-.402.145l-1.319 2.281a.325.325 0 0 0 .08.422l1.39 1.075c-.026.224-.046.442-.046.66s.02.428.046.639l-1.39 1.094a.325.325 0 0 0-.08.422l1.319 2.282a.332.332 0 0 0 .402.145l1.642-.666c.342.264.698.488 1.114.653l.244 1.747a.333.333 0 0 0 .33.277h2.637a.333.333 0 0 0 .33-.277l.243-1.747a4.802 4.802 0 0 0 1.115-.653l1.641.666c.145.052.323 0 .403-.145l1.318-2.282a.333.333 0 0 0-.079-.422z" fill="#80deea" style="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" 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="#1976D2"/><path d="M11.47 10.422h1.29v-1.29c-.71 0-1.29.58-1.29 1.29zm0 5.158h1.29v-1.29h-1.29zm2.58 5.16h1.29v-1.29h-1.29zM11.47 13h1.29v-1.288h-1.29zm6.45-3.868h-1.291v1.29h1.29zm3.869 0v1.29h1.289c0-.71-.58-1.29-1.29-1.29zM12.76 20.74v-1.29h-1.29c0 .71.58 1.29 1.29 1.29zm-1.29-2.58h1.29v-1.288h-1.29zm3.87-9.028h-1.29v1.29h1.29zm1.289 11.608h1.29v-1.29h-1.29zm5.16-5.159h1.289v-1.29h-1.29zm0 5.159c.708 0 1.289-.58 1.289-1.29h-1.29zm0-7.739h1.289v-1.289h-1.29zm0 5.159h1.289v-1.288h-1.29zm-2.58 2.58h1.29v-1.29h-1.29zm0-10.318h1.29v-1.29h-1.29zM14.05 18.16h6.449v-6.448h-6.45zm1.29-5.158h3.869v3.869H15.34z" style="fill:#bbdefb;stroke-width:1.0094"/></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="#1976D2" fill-rule="nonzero"/><path d="M11.47 10.422h1.29v-1.29c-.71 0-1.29.58-1.29 1.29zm0 5.158h1.29v-1.29h-1.29zm2.58 5.16h1.29v-1.29h-1.29zM11.47 13h1.29v-1.288h-1.29zm6.45-3.868h-1.291v1.29h1.29zm3.869 0v1.29h1.289c0-.71-.58-1.29-1.29-1.29zM12.76 20.74v-1.29h-1.29c0 .71.58 1.29 1.29 1.29zm-1.29-2.58h1.29v-1.288h-1.29zm3.87-9.028h-1.29v1.29h1.29zm1.289 11.608h1.29v-1.29h-1.29zm5.16-5.159h1.289v-1.29h-1.29zm0 5.159c.708 0 1.289-.58 1.289-1.29h-1.29zm0-7.739h1.289v-1.289h-1.29zm0 5.159h1.289v-1.288h-1.29zm-2.58 2.58h1.29v-1.29h-1.29zm0-10.318h1.29v-1.29h-1.29zM14.05 18.16h6.449v-6.448h-6.45zm1.29-5.158h3.869v3.869H15.34z" style="fill:#bbdefb;stroke-width:1.0094"/></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:#26a69a"/><path d="m16.955 17.786-2.367-2.367.834-.834 1.533 1.526 3.9-3.9.834.84m-3.55-4.733-5.326 2.367v3.55c0 3.285 2.272 6.356 5.326 7.102 3.053-.746 5.325-3.817 5.325-7.102v-3.55z" style="fill:#b2dfdb;stroke-width:.59176"/></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:#26a69a"/><path d="m16.955 17.786-2.367-2.367.834-.834 1.533 1.526 3.9-3.9.834.84m-3.55-4.733-5.326 2.367v3.55c0 3.285 2.272 6.356 5.326 7.102 3.053-.746 5.325-3.817 5.325-7.102v-3.55z" style="fill:#b2dfdb;stroke-width:.59176"/></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="#42a5f5" fill-rule="nonzero"/><path d="m12.488 9.415-.44 2.259h9.188l-.298 1.46h-9.18l-.447 2.251H20.5l-.514 2.576-3.705 1.224-3.211-1.224.223-1.109h-2.258l-.534 2.704 5.307 2.029 6.118-2.029.812-4.076.162-.818 1.041-5.247H12.488z" fill-rule="nonzero" fill="#bbdefb"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#42a5f5" fill-rule="nonzero"/><path d="m12.488 9.415-.44 2.259h9.188l-.298 1.46h-9.18l-.447 2.251H20.5l-.514 2.576-3.705 1.224-3.211-1.224.223-1.109h-2.258l-.534 2.704 5.307 2.029 6.118-2.029.812-4.076.162-.818 1.041-5.247H12.488z" fill-rule="nonzero" fill="#bbdefb"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" 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" fill-rule="nonzero" style="fill:#ff7043"/><path d="M18.756 10.609a.518.518 0 0 0-.368.157l-7.167 7.166v2.574h2.574l7.176-7.157a.515.515 0 0 0 0-.74l-1.844-1.843a.525.525 0 0 0-.371-.157zm-.765 7.813-2.084 2.084h7.813v-2.084z" style="fill:#ffccbc;stroke-width:1.0416"/></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="#FF5722" fill-rule="nonzero" style="fill:#ff7043"/><path d="M18.755 10.609a.518.518 0 0 0-.368.157l-7.166 7.166v2.574h2.573l7.176-7.157a.515.515 0 0 0 0-.74l-1.844-1.843a.525.525 0 0 0-.371-.157zm-.765 7.813-2.084 2.084h7.813v-2.084z" style="fill:#ffccbc;stroke-width:1.0416"/></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="#009688"/><path d="M17.584 8.548a6.11 6.11 0 0 0-6.113 6.114 6.11 6.11 0 0 0 6.114 6.114 6.11 6.11 0 0 0 6.114-6.114c0-3.379-2.757-6.114-6.115-6.114zm-2.868 7.426c.2.267.467.378.844.378.179 0 .357-.023.513-.09.154-.065.333-.155.555-.289l.622.89a2.652 2.652 0 0 1-1.756.623c-.534 0-.978-.112-1.378-.334a2.238 2.238 0 0 1-.89-.978c-.2-.423-.31-.911-.31-1.49 0-.555.11-1.066.31-1.49.19-.42.5-.775.891-1.021.377-.246.844-.357 1.356-.357.356 0 .689.045.956.156.3.116.577.282.822.49l-.622.844a2.438 2.438 0 0 0-.512-.29 1.43 1.43 0 0 0-.533-.089c-.756 0-1.134.579-1.134 1.756-.021.602.09 1.024.267 1.29zm6.114 1.379c-.222.69-.555 1.2-1.022 1.578-.467.379-1.09.579-1.868.645l-.155-1.044c.51-.067.889-.178 1.134-.357.088-.065.266-.266.266-.266l-1.845-5.914h1.533l1.068 4.424 1.134-4.424h1.49z" fill="#b2dfdb"/></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="#009688"/><path d="M17.584 8.548a6.11 6.11 0 0 0-6.113 6.114 6.11 6.11 0 0 0 6.114 6.114 6.11 6.11 0 0 0 6.114-6.114c0-3.379-2.757-6.114-6.115-6.114zm-2.868 7.426c.2.267.467.378.844.378.179 0 .357-.023.513-.09.154-.065.333-.155.555-.289l.622.89a2.652 2.652 0 0 1-1.756.622c-.534 0-.978-.111-1.378-.333a2.238 2.238 0 0 1-.89-.978c-.2-.423-.31-.911-.31-1.49 0-.555.11-1.066.31-1.49.19-.42.5-.775.891-1.021.377-.246.844-.357 1.356-.357.356 0 .689.045.956.156.3.116.577.282.822.49l-.622.844a2.438 2.438 0 0 0-.512-.29 1.43 1.43 0 0 0-.533-.089c-.756 0-1.134.579-1.134 1.756-.021.602.09 1.024.267 1.29zm6.114 1.379c-.222.69-.555 1.2-1.022 1.578-.467.379-1.09.579-1.868.645l-.155-1.044c.51-.068.889-.179 1.134-.357.088-.065.266-.266.266-.266l-1.845-5.915h1.533l1.068 4.425 1.134-4.425h1.49z" fill="#b2dfdb"/></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="#ffca28"/><path d="M17.762 8.858c-3.156 0-5.712 1.278-5.712 2.856 0 1.578 2.556 2.856 5.712 2.856 3.156 0 5.712-1.278 5.712-2.856 0-1.578-2.556-2.856-5.712-2.856m-5.712 4.284v2.142c0 1.578 2.556 2.856 5.712 2.856 3.156 0 5.712-1.278 5.712-2.856v-2.142c0 1.578-2.556 2.856-5.712 2.856-3.156 0-5.712-1.278-5.712-2.856m0 3.57v2.142c0 1.578 2.556 2.856 5.712 2.856 3.156 0 5.712-1.278 5.712-2.856v-2.142c0 1.578-2.556 2.856-5.712 2.856-3.156 0-5.712-1.278-5.712-2.856z" fill="#ffecb3"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#ffca28" fill-rule="nonzero"/><path d="M17.761 8.859c-3.156 0-5.712 1.278-5.712 2.856 0 1.578 2.556 2.856 5.712 2.856 3.156 0 5.712-1.278 5.712-2.856 0-1.578-2.556-2.856-5.712-2.856m-5.712 4.284v2.142c0 1.578 2.556 2.856 5.712 2.856 3.156 0 5.712-1.278 5.712-2.856v-2.142c0 1.578-2.556 2.856-5.712 2.856-3.156 0-5.712-1.278-5.712-2.856m0 3.57v2.142c0 1.577 2.556 2.855 5.712 2.855 3.156 0 5.712-1.278 5.712-2.856v-2.141c0 1.578-2.556 2.856-5.712 2.856-3.156 0-5.712-1.278-5.712-2.856z" fill="#ffecb3"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#e57373" style="fill:#f9a825"/><path d="M19.262 15.092h-3.063v-1.531h3.063m0 4.594h-3.063v-1.531h3.063m4.594-4.595h-2.151a4.582 4.582 0 0 0-1.394-1.5l1.248-1.249-1.08-1.08-1.661 1.662a4.595 4.595 0 0 0-2.167 0l-1.67-1.661-1.08 1.08 1.241 1.247a4.64 4.64 0 0 0-1.386 1.501h-2.151v1.532h1.6a5.082 5.082 0 0 0-.069.765v.766h-1.531v1.531h1.531v.766c0 .26.03.513.069.766h-1.6v1.531h2.151c.797 1.37 2.275 2.297 3.975 2.297s3.177-.926 3.974-2.297h2.151v-1.531h-1.6c.038-.253.069-.506.069-.766v-.766h1.531v-1.531h-1.531v-.766c0-.26-.03-.513-.069-.765h1.6z" style="fill:#fff9c4;stroke-width:.76571"/></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.262 15.092h-3.063v-1.531h3.063m0 4.594h-3.063v-1.531h3.063m4.594-4.595h-2.151a4.582 4.582 0 0 0-1.394-1.5l1.248-1.249-1.08-1.08-1.661 1.662a4.595 4.595 0 0 0-2.167 0l-1.67-1.661-1.08 1.08 1.241 1.247a4.64 4.64 0 0 0-1.386 1.501h-2.151v1.532h1.6a5.082 5.082 0 0 0-.069.765v.766h-1.531v1.531h1.531v.766c0 .26.03.513.069.766h-1.6v1.531h2.151c.797 1.37 2.275 2.297 3.975 2.297s3.177-.926 3.974-2.297h2.151v-1.531h-1.6c.038-.253.069-.506.069-.766v-.766h1.531v-1.531h-1.531v-.766c0-.26-.03-.513-.069-.765h1.6z" style="fill:#fff9c4;stroke-width:.76571"/></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="M19 20H4C3.46957 20 2.96086 19.7893 2.58579 19.4142C2.21071 19.0391 2 18.5304 2 18V6C2 4.89 2.89 4 4 4H10L12 6H19C20.097 6 21 6.903 21 8H4V18L6.14 10H23.21L20.93 18.5C20.7 19.37 19.92 20 19 20Z" fill="#AB47BC"/><path d="m17.609 20.773c-0.83618 0-1.6264-0.16072-2.3707-0.48215-0.74435-0.32102-1.3943-0.75947-1.9499-1.3153-0.55587-0.55557-0.99442-1.2055-1.3153-1.9499-0.32143-0.74435-0.48215-1.5347-0.48215-2.3707 0-0.84636 0.16072-1.639 0.48215-2.3781 0.32092-0.73942 0.75947-1.387 1.3153-1.9425 0.55557-0.55598 1.2055-0.99462 1.9499-1.316 0.74435-0.321 1.5346-0.48149 2.3707-0.48149 0.84636 0 1.639 0.16049 2.3781 0.48149 0.73942 0.3214 1.3869 0.76004 1.9425 1.316 0.55598 0.55546 0.99442 1.2031 1.3154 1.9425 0.32133 0.73911 0.48205 1.5318 0.48205 2.3781v0.88708c0 0.60163-0.20637 1.1139-0.61911 1.5369-0.41326 0.42333-0.9206 0.63505-1.5222 0.63505-0.36709 0-0.70867-0.08164-1.0248-0.24472-0.31609-0.16318-0.57613-0.37727-0.78003-0.64245-0.27537 0.27537-0.59896 0.49212-0.97098 0.65037-0.37243 0.15784-0.77273 0.23681-1.201 0.23681-0.84636 0-1.5677-0.2984-2.164-0.8951-0.5967-0.59628-0.8951-1.3176-0.8951-2.164s0.2984-1.5679 0.8951-2.1646c0.59628-0.59639 1.3176-0.89448 2.164-0.89448s1.5679 0.29809 2.1646 0.89448c0.59628 0.5967 0.89448 1.3182 0.89448 2.1646v0.88708c0 0.29573 0.09182 0.5276 0.27537 0.69561 0.18354 0.16853 0.39763 0.25274 0.64235 0.25274 0.24472 0 0.45891-0.08422 0.64245-0.25274 0.18354-0.16802 0.27526-0.39989 0.27526-0.69561v-0.88708c0-1.3358-0.48194-2.4856-1.4457-3.4494-0.96337-0.96348-2.113-1.4451-3.4488-1.4451s-2.4856 0.48163-3.4494 1.4451c-0.96337 0.96378-1.4451 2.1136-1.4451 3.4494s0.48174 2.4854 1.4451 3.4488c0.96378 0.96378 2.1136 1.4457 3.4494 1.4457h3.0591v1.2236zm0-4.2827c0.50981 0 0.94322-0.1785 1.3001-0.53531 0.35691-0.35691 0.53531-0.79032 0.53531-1.3001 0-0.50991-0.1784-0.94322-0.53531-1.3001s-0.79032-0.53531-1.3001-0.53531c-0.50981 0-0.94322 0.1784-1.3001 0.53531-0.3568 0.35691-0.53531 0.79021-0.53531 1.3001 0 0.50981 0.1785 0.94322 0.53531 1.3001 0.35691 0.3568 0.79032 0.53531 1.3001 0.53531z" fill="#e1bee7" stroke-width="1.0282"/></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="M10 4H4C2.89 4 2 4.89 2 6V18C2 19.097 2.903 20 4 20H20C21.097 20 22 19.097 22 18V8C22 7.46957 21.7893 6.96086 21.4142 6.58579C21.0391 6.21071 20.5304 6 20 6H12L10 4Z" fill="#AB47BC"/>
|
|
4
|
-
<path d="m17.609 20.773c-0.83618 0-1.6264-0.16072-2.3707-0.48215-0.74435-0.32102-1.3943-0.75947-1.9499-1.3153-0.55587-0.55557-0.99442-1.2055-1.3153-1.9499-0.32143-0.74435-0.48215-1.5347-0.48215-2.3707 0-0.84636 0.16072-1.639 0.48215-2.3781 0.32092-0.73942 0.75947-1.387 1.3153-1.9425 0.55557-0.55598 1.2055-0.99462 1.9499-1.316 0.74435-0.321 1.5346-0.48149 2.3707-0.48149 0.84636 0 1.639 0.16049 2.3781 0.48149 0.73942 0.3214 1.3869 0.76004 1.9425 1.316 0.55598 0.55546 0.99442 1.2031 1.3154 1.9425 0.32133 0.73911 0.48205 1.5318 0.48205 2.3781v0.88708c0 0.60163-0.20637 1.1139-0.61911 1.5369-0.41326 0.42333-0.9206 0.63505-1.5222 0.63505-0.36709 0-0.70867-0.08164-1.0248-0.24472-0.31609-0.16318-0.57613-0.37727-0.78003-0.64245-0.27537 0.27537-0.59896 0.49212-0.97098 0.65037-0.37243 0.15784-0.77273 0.23681-1.201 0.23681-0.84636 0-1.5677-0.2984-2.164-0.8951-0.5967-0.59628-0.8951-1.3176-0.8951-2.164s0.2984-1.5679 0.8951-2.1646c0.59628-0.59639 1.3176-0.89448 2.164-0.89448s1.5679 0.29809 2.1646 0.89448c0.59628 0.5967 0.89448 1.3182 0.89448 2.1646v0.88708c0 0.29573 0.09182 0.5276 0.27537 0.69561 0.18354 0.16853 0.39763 0.25274 0.64235 0.25274 0.24472 0 0.45891-0.08422 0.64245-0.25274 0.18354-0.16802 0.27526-0.39989 0.27526-0.69561v-0.88708c0-1.3358-0.48194-2.4856-1.4457-3.4494-0.96337-0.96348-2.113-1.4451-3.4488-1.4451s-2.4856 0.48163-3.4494 1.4451c-0.96337 0.96378-1.4451 2.1136-1.4451 3.4494s0.48174 2.4854 1.4451 3.4488c0.96378 0.96378 2.1136 1.4457 3.4494 1.4457h3.0591v1.2236zm0-4.2827c0.50981 0 0.94322-0.1785 1.3001-0.53531 0.35691-0.35691 0.53531-0.79032 0.53531-1.3001 0-0.50991-0.1784-0.94322-0.53531-1.3001s-0.79032-0.53531-1.3001-0.53531c-0.50981 0-0.94322 0.1784-1.3001 0.53531-0.3568 0.35691-0.53531 0.79021-0.53531 1.3001 0 0.50981 0.1785 0.94322 0.53531 1.3001 0.35691 0.3568 0.79032 0.53531 1.3001 0.53531z" fill="#e1bee7" stroke-width="1.0282"/>
|
|
5
|
-
</svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24"><path fill="#EC407A" d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z"/><path fill="#F8BBD0" d="m17.661 13.679 3.834 6.138h-7.668l3.834-6.138m0-2.262-6 9.6h12z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24"><path fill="#EC407A" d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill-rule="nonzero"/><path fill="#F8BBD0" d="m17.661 13.679 3.834 6.138h-7.668l3.834-6.138m0-2.262-6 9.6h12z"/></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"/><path d="M18.575 11.113h-2.576V9.825h2.576m3.864 1.288h-2.576V9.825l-1.288-1.288h-2.576L14.71 9.825v1.288h-2.577c-.715 0-1.288.573-1.288 1.288v7.085a1.288 1.288 0 0 0 1.288 1.288H22.44a1.288 1.288 0 0 0 1.288-1.288V12.4c0-.715-.58-1.288-1.288-1.288z" fill="#ffcdd2" fill-rule="evenodd"/></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"/><path d="M18.575 11.113h-2.576V9.825h2.576m3.864 1.288h-2.576V9.825l-1.288-1.288h-2.576L14.71 9.825v1.288h-2.577c-.715 0-1.288.573-1.288 1.288v7.085a1.288 1.288 0 0 0 1.288 1.288H22.44a1.288 1.288 0 0 0 1.288-1.288V12.4c0-.715-.58-1.288-1.288-1.288z" fill="#ffcdd2"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs><clipPath id="a"><use width="100%" height="100%" xlink:href="#SVGID_2_"/></clipPath></defs><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#e57373" style="fill:#039be5"/><g style="fill:#b3e5fc"><path class="st0" d="M8.7 24c-1.1 0-2.1-.9-2.1-2s.9-2 2.1-2 2.1.9 2.1 2-1 2-2.1 2zm25.8-10.9c-.2-1.6-1.2-2.9-2.5-3.9l-.5-.4-.4.5c-.8.9-1.1 2.5-1 3.7.1.9.4 1.8.9 2.5-.4.2-.9.4-1.3.6-.9.3-1.8.4-2.7.4H1.1l-.1.6c-.2 1.9.1 3.9.9 5.7l.4.7v.1c2.4 4 6.7 5.8 11.4 5.8 9 0 16.4-3.9 19.9-12.3 2.3.1 4.6-.5 5.7-2.7l.3-.5-.5-.3c-1.3-.8-3.1-.9-4.6-.5zm-12.9-1.6h-3.9v3.9h3.9zm0-4.9h-3.9v3.9h3.9zm0-5h-3.9v3.9h3.9zm4.8 9.9h-3.9v3.9h3.9zm-14.5 0H8v3.9h3.9zm4.9 0h-3.9v3.9h3.9zm-9.7 0H3.2v3.9h3.9zm9.7-4.9h-3.9v3.9h3.9zm-4.9 0H8v3.9h3.9z" style="fill:#b3e5fc" transform="matrix(.3949 0 0 .39489 8.319 9.626)"/><g class="st1" clip-path="url(#a)" style="fill:#b3e5fc" transform="matrix(.3949 0 0 .39489 8.319 9.626)"><path class="st0" style="fill:#b3e5fc" d="M-48.8-21H1226v151.4H-48.8z"/></g></g></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs><path id="a" d="M8.7 24c-1.1 0-2.1-.9-2.1-2s.9-2 2.1-2 2.1.9 2.1 2-1 2-2.1 2zm25.8-10.9c-.2-1.6-1.2-2.9-2.5-3.9l-.5-.4-.4.5c-.8.9-1.1 2.5-1 3.7.1.9.4 1.8.9 2.5-.4.2-.9.4-1.3.6-.9.3-1.8.4-2.7.4H1.1l-.1.6c-.2 1.9.1 3.9.9 5.7l.4.7v.1c2.4 4 6.7 5.8 11.4 5.8 9 0 16.4-3.9 19.9-12.3 2.3.1 4.6-.5 5.7-2.7l.3-.5-.5-.3c-1.3-.8-3.1-.9-4.6-.5zm-12.9-1.6h-3.9v3.9h3.9zm0-4.9h-3.9v3.9h3.9zm0-5h-3.9v3.9h3.9zm4.8 9.9h-3.9v3.9h3.9zm-14.5 0H8v3.9h3.9zm4.9 0h-3.9v3.9h3.9zm-9.7 0H3.2v3.9h3.9zm9.7-4.9h-3.9v3.9h3.9zm-4.9 0H8v3.9h3.9z"/></defs><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#e57373" fill-rule="nonzero" style="fill:#039be5"/><g style="fill:#b3e5fc" transform="translate(8.319 9.626) scale(.39491)"><use class="st0" style="fill:#b3e5fc" xlink:href="#a"/><g style="fill:#b3e5fc"><clipPath id="b"><use width="100%" height="100%" xlink:href="#a"/></clipPath><g clip-path="url(#b)" style="fill:#b3e5fc;clip-path:url(#b)"><path class="st0" style="fill:#b3e5fc" d="M-48.8-21H1226v151.4H-48.8z"/></g></g></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="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="#0277bd" fill-rule="nonzero"/><path d="M18.575 12.859h3.713l-3.713-3.713v3.713M13.85 8.134h5.4l4.05 4.05v8.1c0 .74-.61 1.35-1.35 1.35h-8.1a1.35 1.35 0 0 1-1.35-1.35v-10.8c0-.75.6-1.35 1.35-1.35m6.075 10.8v-1.35H13.85v1.35h6.075m2.025-2.7v-1.35h-8.1v1.35h8.1z" fill-rule="nonzero" 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="#0277bd" fill-rule="nonzero"/><path d="M18.575 12.859h3.713l-3.713-3.713v3.713M13.85 8.134h5.4l4.05 4.05v8.1c0 .74-.61 1.35-1.35 1.35h-8.1a1.35 1.35 0 0 1-1.35-1.35v-10.8c0-.75.6-1.35 1.35-1.35m6.075 10.8v-1.35H13.85v1.35h6.075m2.025-2.7v-1.35h-8.1v1.35h8.1z" fill-rule="nonzero" 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:#4caf50"/><path d="M12.282 20.704h10.269v-1.467H12.282m10.269-6.602h-2.934v-4.4h-4.401v4.4h-2.934l5.134 5.135z" style="fill:#c8e6c9;stroke-width:.73351"/></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:#4caf50"/><path d="M12.282 20.704h10.269v-1.467H12.282m10.269-6.602h-2.934v-4.4h-4.401v4.4h-2.934l5.134 5.135z" style="fill:#c8e6c9;stroke-width:.73351"/></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="#616161" style="fill:#757575"/><path d="M20.182 9.703h-7.667c-.71 0-1.278.575-1.278 1.278v8.945c0 .702.569 1.277 1.278 1.277h8.945c.702 0 1.277-.575 1.277-1.277v-7.667zm-3.195 10.223a1.914 1.914 0 0 1-1.916-1.917c0-1.06.856-1.917 1.916-1.917s1.917.856 1.917 1.917c0 1.06-.856 1.917-1.917 1.917zm1.917-6.39h-6.389v-2.555h6.389z" fill="#9E9E9E" style="fill:#bdbdbd"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#616161" fill-rule="nonzero" style="fill:#757575"/><path d="M20.182 9.703h-7.667c-.71 0-1.278.575-1.278 1.278v8.945c0 .702.569 1.277 1.278 1.277h8.945c.702 0 1.277-.575 1.277-1.277v-7.667zm-3.195 10.223a1.914 1.914 0 0 1-1.916-1.917c0-1.06.856-1.917 1.916-1.917s1.917.856 1.917 1.917c0 1.06-.856 1.917-1.917 1.917zm1.917-6.39h-6.389v-2.555h6.389z" fill="#9E9E9E" style="fill:#bdbdbd"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="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="#9CCC65" style="fill:#66bb6a"/><path d="m17.008 12.191-2.672 3.564 2.031 2.709-1.14.857-3.208-4.279-4.278 5.704h15.683z" style="fill:#c8e6c9;stroke-width:1.0456"/></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="#9CCC65" fill-rule="nonzero" style="fill:#66bb6a"/><path d="m17.008 12.191-2.672 3.564 2.031 2.708-1.14.858-3.208-4.279-4.278 5.704h15.683z" style="fill:#c8e6c9;stroke-width:1.0455"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg style="enable-background:new 0 0 24 24" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h6l2 2h7c1.1 0 2 .9 2 2H4v10l2.1-8h17.1l-2.3 8.5c-.2.9-1 1.5-1.9 1.5z" style="fill:#ef5350"/><path d="M17.79 15.89h-1.18v-3.54h1.18m0 5.9h-1.18v-1.18h1.18M17.2 9.4a5.9 5.9 0 0 0-5.9 5.9 5.9 5.9 0 0 0 5.9 5.9 5.9 5.9 0 0 0 5.9-5.9 5.9 5.9 0 0 0-5.9-5.9z" style="fill:#ffcdd2;stroke-width:.59"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg style="enable-background:new 0 0 24 24" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-8l-2-2z" style="fill:#ef5350"/><path d="M17.79 15.89h-1.18v-3.54h1.18m0 5.9h-1.18v-1.18h1.18M17.2 9.4a5.9 5.9 0 0 0-5.9 5.9 5.9 5.9 0 0 0 5.9 5.9 5.9 5.9 0 0 0 5.9-5.9 5.9 5.9 0 0 0-5.9-5.9z" style="fill:#ffcdd2;stroke-width:.59"/></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="M23.626 20.067v.655H11.837v-.655l1.31-1.31v-3.93c0-2.03 1.33-3.818 3.275-4.394v-.19a1.31 1.31 0 0 1 1.31-1.31 1.31 1.31 0 0 1 1.31 1.31v.19a4.578 4.578 0 0 1 3.274 4.394v3.93l1.31 1.31m-4.585 1.31a1.31 1.31 0 0 1-1.31 1.31 1.31 1.31 0 0 1-1.31-1.31" style="fill:#fff9c4;stroke-width:.65496"/></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="M23.626 20.068v.655H11.837v-.655l1.31-1.31v-3.93c0-2.03 1.33-3.818 3.275-4.394v-.19a1.31 1.31 0 0 1 1.31-1.31 1.31 1.31 0 0 1 1.31 1.31v.19a4.578 4.578 0 0 1 3.274 4.394v3.93l1.31 1.31m-4.585 1.31a1.31 1.31 0 0 1-1.31 1.31 1.31 1.31 0 0 1-1.31-1.31" style="fill:#fff9c4;stroke-width:.65496"/></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="#009688"/><path d="M21.524 10.3h-8.556c-.672 0-1.222.55-1.222 1.222v8.556c0 .672.55 1.222 1.222 1.222h8.556c.672 0 1.222-.55 1.222-1.222v-8.556c0-.672-.55-1.222-1.222-1.222zm-8.556 1.216h1.834c0 1.015-.82 1.84-1.834 1.84zm0 4.284v-1.222a3.062 3.062 0 0 0 3.056-3.062h1.222a4.28 4.28 0 0 1-4.278 4.284zm0 3.667 2.14-2.75 1.527 1.84 2.139-2.757 2.75 3.667z" fill="#80CBC4" style="fill:#b2dfdb"/></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="#009688" fill-rule="nonzero"/><path d="M21.524 10.3h-8.556c-.672 0-1.222.55-1.222 1.222v8.556c0 .672.55 1.222 1.222 1.222h8.556c.672 0 1.222-.55 1.222-1.222v-8.556c0-.672-.55-1.222-1.222-1.222zm-8.556 1.216h1.834c0 1.015-.82 1.84-1.834 1.84zm0 4.284v-1.222a3.062 3.062 0 0 0 3.056-3.062h1.222a4.28 4.28 0 0 1-4.278 4.284zm0 3.667 2.14-2.75 1.527 1.84 2.139-2.757 2.75 3.667z" fill="#80CBC4" style="fill:#b2dfdb"/></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="#01579b" style="fill:#1976d2"/><path class="st0" d="M58.827-101.24c-.489-.745-.605-.844-1.6-.844h-.024c-.996 0-1.106.099-1.601.844-.46.699-5.024 9.058-5.024 9.291 0 .338.087.658.402 1.112.32.46.873.716 1.275.309.273-.274 3.201-5.321 4.616-7.23a.425.425 0 0 1 .693 0c1.414 1.909 4.343 6.956 4.616 7.23.402.407.955.15 1.275-.309.314-.454.402-.774.402-1.112-.006-.233-4.57-8.598-5.03-9.291z" fill="#1173b6" style="fill:#bbdefb" transform="translate(-40.252 111.06)" fill-rule="evenodd"/></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="#01579b" fill-rule="nonzero" style="fill:#1976d2"/><path d="M58.827-101.24c-.489-.745-.605-.844-1.6-.844h-.024c-.996 0-1.106.099-1.601.844-.46.699-5.024 9.058-5.024 9.291 0 .338.087.658.402 1.112.32.46.873.716 1.275.309.273-.274 3.201-5.321 4.616-7.23a.425.425 0 0 1 .693 0c1.414 1.909 4.343 6.956 4.616 7.23.402.407.955.15 1.275-.309.314-.454.402-.774.402-1.112-.006-.233-4.57-8.598-5.03-9.291z" fill="#1173b6" style="fill:#bbdefb" transform="translate(-40.252 111.06)"/></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"><g style="clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.4142"><path d="M47.881 15.627h-15a2 2 0 0 1-2-2v-12c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2h-17v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" style="fill:#ff8a65" transform="translate(-28.881 4.373)"/></g><path d="M20.62 15.706h-6.085v-1.217h6.085m-3.042-5.476a6.085 6.085 0 0 0-6.085 6.084 6.085 6.085 0 0 0 6.085 6.085 6.085 6.085 0 0 0 6.084-6.085 6.085 6.085 0 0 0-6.084-6.084z" style="clip-rule:evenodd;fill-opacity:.94902;fill-rule:evenodd;fill:#fbe9e7;stroke-linejoin:round;stroke-miterlimit:1.4142;stroke-width:.60845"/></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" style="fill:#ff8a65"/><path d="M20.62 15.706h-6.085v-1.217h6.085m-3.042-5.476a6.085 6.085 0 0 0-6.085 6.084 6.085 6.085 0 0 0 6.085 6.085 6.085 6.085 0 0 0 6.084-6.085 6.085 6.085 0 0 0-6.084-6.084z" style="clip-rule:evenodd;fill-opacity:.94902;fill-rule:evenodd;fill:#fbe9e7;stroke-linejoin:round;stroke-miterlimit:1.4142;stroke-width:.60845"/></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"/><g style="fill:#e3f2fd;stroke-miterlimit:1.4142;stroke-width:6.6527;stroke:#e3f2fd"><path transform="translate(.947 .717) scale(.95802)" d="M16.885 8.324a2.008 2.008 0 0 0-1.611 2.893l-2.256 1.685a.802.802 0 1 0 .363.49l2.793-2.052c-.368-.346-.56-.914-.396-1.428a1.357 1.357 0 0 1 2.648.389l.65.013a2.007 2.007 0 0 0-2.191-1.99zm.244 1.276a.805.805 0 1 0 .424 1.488l2.81 2.045c.22-.457.702-.813 1.243-.813a1.36 1.36 0 0 1 .431 2.65l.186.626a2.012 2.012 0 1 0-2.016-3.36l-2.295-1.644a.808.808 0 0 0-.783-.992zm-4.523 1.955a1.978 1.978 0 0 0-1.623.81 1.996 1.996 0 0 0 .447 2.787c.438.32.961.437 1.457.37l.89 2.66a.799.799 0 0 0 .05 1.25.8.8 0 0 0 1.119-.17.797.797 0 0 0-.18-1.114.804.804 0 0 0-.412-.152l-1.07-3.283c-.443.236-1.038.237-1.473-.08a1.35 1.35 0 0 1-.303-1.885c.35-.479.96-.657 1.498-.484l.215-.608c-.2-.067-.409-.1-.615-.101zm9.029 1.32a.802.802 0 0 0-.834 1.041.788.788 0 0 0 .244.361l-1.082 3.278c.5.066.984.414 1.149.924a1.35 1.35 0 0 1-.875 1.697 1.351 1.351 0 0 1-1.504-.479l-.537.366a2.002 2.002 0 0 0 2.24.728 1.997 1.997 0 0 0 1.293-2.512 1.981 1.981 0 0 0-.963-1.146l.86-2.668a.805.805 0 0 0 .7-1.041.797.797 0 0 0-.691-.549zM12.7 17.643a2 2 0 1 0 3.587 1.511l2.807-.027a.8.8 0 1 0-.004-.61l-3.455.009c.092.495-.086 1.065-.52 1.382a1.351 1.351 0 0 1-1.9-1.873z" style="fill:#e3f2fd;stroke-miterlimit:1.4142;stroke-width:.3382;stroke:#e3f2fd"/></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="#e57373" fill-rule="nonzero" style="fill:#1e88e5"/><g style="fill:#e3f2fd;stroke-miterlimit:1.4142;stroke-width:6.6527;stroke:#e3f2fd"><path transform="translate(.947 .717) scale(.95802)" d="M16.885 8.324a2.008 2.008 0 0 0-1.611 2.893l-2.256 1.685a.802.802 0 1 0 .363.49l2.793-2.052c-.368-.346-.56-.914-.396-1.428a1.357 1.357 0 0 1 2.648.389l.65.013a2.007 2.007 0 0 0-2.191-1.99zm.244 1.276a.805.805 0 1 0 .424 1.488l2.81 2.045c.22-.457.702-.813 1.243-.813a1.36 1.36 0 0 1 .431 2.65l.186.626a2.012 2.012 0 1 0-2.016-3.36l-2.295-1.644a.808.808 0 0 0-.783-.992zm-4.523 1.955a1.978 1.978 0 0 0-1.623.81 1.996 1.996 0 0 0 .447 2.787c.438.32.961.437 1.457.37l.89 2.66a.799.799 0 0 0 .05 1.25.8.8 0 0 0 1.119-.17.797.797 0 0 0-.18-1.114.804.804 0 0 0-.412-.152l-1.07-3.283c-.443.236-1.038.237-1.473-.08a1.35 1.35 0 0 1-.303-1.885c.35-.479.96-.657 1.498-.484l.215-.608c-.2-.067-.409-.1-.615-.101zm9.029 1.32a.802.802 0 0 0-.834 1.041.788.788 0 0 0 .244.361l-1.082 3.278c.5.066.984.414 1.149.924a1.35 1.35 0 0 1-.875 1.697 1.351 1.351 0 0 1-1.504-.479l-.537.366a2.002 2.002 0 0 0 2.24.728 1.997 1.997 0 0 0 1.293-2.512 1.981 1.981 0 0 0-.963-1.146l.86-2.668a.805.805 0 0 0 .7-1.041.797.797 0 0 0-.691-.549zM12.7 17.643a2 2 0 1 0 3.587 1.511l2.807-.027a.8.8 0 1 0-.004-.61l-3.455.009c.092.495-.086 1.065-.52 1.382a1.351 1.351 0 0 1-1.9-1.873z" style="fill:#e3f2fd;stroke-miterlimit:1.4142;stroke-width:.3382;stroke:#e3f2fd"/></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:#fbc02d"/><path d="m23.724 18.322-4.204 2.333a.887.887 0 0 1-.864 0l-4.147-2.333 7.516-7.574.202-.057c.172 0 .27.075.288.23l1.209 7.401m-6.134-7.459-2.62 4.349 1.094-6.883c.017-.155.115-.23.288-.23.115 0 .19.035.23.144l1.239 2.275-.23.346m2.591.725-5.5 5.524 4.175-7.085c.058-.115.144-.167.26-.167s.19.052.23.167z" style="fill:#fff9c4;stroke-width:.57594"/></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="m23.724 18.322-4.204 2.333a.887.887 0 0 1-.864 0l-4.147-2.333 7.516-7.574.202-.057c.172 0 .27.075.288.23l1.209 7.401m-6.134-7.459-2.62 4.349 1.094-6.883c.017-.155.115-.23.288-.23.115 0 .19.035.23.144l1.239 2.275-.23.346m2.591.725-5.5 5.524 4.175-7.085c.058-.115.144-.167.26-.167s.19.052.23.167z" style="fill:#fff9c4;stroke-width:.57594"/></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="#37474F" fill-rule="nonzero" style="fill:#546e7a"/><path d="m12.673 9.352 3.89 3.89h-3.102l3.07 3.071h-3.873l4.693 4.694v-9.97h2.344l1.025 1.024h-2.28v3.843h1.106l1.23 1.229h-2.401l.016.016v3.874h5.48l-1.968-1.969v-.793l.425.425V14.8h-.787v-1.917l1.511 1.51v-3.89h-3.257l-1.152-1.151h-2.205z" fill="#fbc02d" fill-opacity=".976"/></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="#37474F" fill-rule="nonzero" style="fill:#546e7a"/><path d="m12.673 9.352 3.89 3.89h-3.102l3.07 3.071h-3.873l4.693 4.694v-9.97h2.344l1.025 1.024h-2.28v3.843h1.106l1.23 1.229h-2.401l.016.016v3.874h5.48l-1.968-1.969v-.793l.425.425V14.8h-.787v-1.917l1.511 1.51v-3.89h-3.257l-1.152-1.151h-2.205z" fill="#fbc02d" fill-opacity=".976"/></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="m15.32 16.342 2.064-5.49 2.055 5.49m-2.922-7.805-4.77 12.14h1.951l.972-2.6h5.42l.98 2.6h1.951l-4.77-12.14z" style="fill:#ffcdd2;stroke-width:.86724"/></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="m15.32 16.342 2.064-5.49 2.055 5.49m-2.922-7.805-4.77 12.14h1.951l.972-2.6h5.42l.98 2.6h1.951l-4.77-12.14z" style="fill:#ffcdd2;stroke-width:.86724"/></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="#01579B" style="fill:#0288d1"/><path d="M17.66 10.789a1.287 1.287 0 0 0-1.398 1.172l-.16 1.862h1.816v1.288h-1.933l-.283 3.265a2.577 2.577 0 0 1-4.753 1.134l.966-.966a1.28 1.28 0 0 0 1.61.837c.502-.155.857-.6.902-1.12l.27-3.15h-1.932v-1.288h2.048l.174-1.978a2.583 2.583 0 0 1 2.789-2.35c.811.07 1.545.521 1.97 1.217l-.966.966a1.29 1.29 0 0 0-1.12-.889m6.17 5.384-.908-.908-1.823 1.823-1.823-1.823-.92.908 1.835 1.836-1.836 1.81.921.908 1.823-1.823 1.823 1.823.908-.908-1.823-1.81z" style="fill:#b3e5fc;stroke-width:.64406"/></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="#01579B" fill-rule="nonzero" style="fill:#0288d1"/><path d="M17.66 10.789a1.287 1.287 0 0 0-1.398 1.172l-.16 1.862h1.816v1.288h-1.933l-.283 3.265a2.577 2.577 0 0 1-4.753 1.134l.966-.966a1.28 1.28 0 0 0 1.61.837c.502-.155.857-.6.902-1.12l.27-3.15h-1.932v-1.288h2.048l.174-1.978a2.583 2.583 0 0 1 2.789-2.35c.811.07 1.546.521 1.97 1.217l-.965.966a1.29 1.29 0 0 0-1.121-.889m6.17 5.384-.908-.908-1.823 1.823-1.822-1.823-.921.908 1.835 1.836-1.835 1.81.92.908 1.823-1.823 1.823 1.823.908-.908-1.823-1.81z" style="fill:#b3e5fc;stroke-width:.64407"/></svg>
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" version="1.1" 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="#26a69a"/><path d="m17.612 8.537 6.1185 6.1185h-3.4963v3.5837c-0.87408 0.78667-1.7481 1.6607-2.6222 2.5348l-6.1185-6.1185zm-2.5348 6.1185 2.5348 2.5348v-2.5348h2.5348c-0.78667-0.87408-1.6607-1.7481-2.5348-2.5348-0.87408 0.78666-1.7481 1.6607-2.5348 2.5348z" fill="#b2dfdb" stroke-width=".87407"/></svg>
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" 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="#26a69a" fill-rule="nonzero"/><path d="m17.612 8.537 6.1185 6.1185h-3.4963v3.5837c-0.87408 0.78667-1.7481 1.6607-2.6222 2.5348l-6.1185-6.1185zm-2.5348 6.1185 2.5348 2.5348v-2.5348h2.5348c-0.78667-0.87408-1.6607-1.7481-2.5348-2.5348-0.87408 0.78666-1.7481 1.6607-2.5348 2.5348z" fill="#b2dfdb" stroke-width=".87407"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#0288d1" style="fill:#ef5350"/><path d="M17.813 11.575v1.951l2.602-2.601-2.602-2.602v1.951a5.203 5.203 0 0 0-5.203 5.204c0 1.02.299 1.97.806 2.77l.95-.95a3.838 3.838 0 0 1-.456-1.82 3.903 3.903 0 0 1 3.903-3.903m4.397 1.132-.95.95a3.92 3.92 0 0 1 .456 1.82 3.903 3.903 0 0 1-3.903 3.903v-1.95l-2.602 2.602 2.602 2.601v-1.951a5.203 5.203 0 0 0 5.203-5.204c0-1.02-.299-1.97-.806-2.77z" fill="#b3e5fc" stroke="#b3e5fc" stroke-width=".29" style="fill:#ffcdd2;stroke:#ffcdd2"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#0288d1" fill-rule="nonzero" style="fill:#ef5350"/><path d="M17.813 11.575v1.951l2.602-2.601-2.602-2.602v1.951a5.203 5.203 0 0 0-5.203 5.204c0 1.02.299 1.97.806 2.77l.95-.95a3.838 3.838 0 0 1-.456-1.82 3.903 3.903 0 0 1 3.903-3.903m4.397 1.132-.95.95a3.92 3.92 0 0 1 .456 1.82 3.903 3.903 0 0 1-3.903 3.903v-1.95l-2.602 2.602 2.602 2.601v-1.951a5.203 5.203 0 0 0 5.203-5.204c0-1.02-.299-1.97-.806-2.77z" fill="#b3e5fc" stroke="#b3e5fc" stroke-width=".29" style="fill:#ffcdd2;stroke:#ffcdd2"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.4142" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 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:#ff7043"/><g style="fill:#ffccbc"><path d="M2.6 10.59 8.38 4.8l1.69 1.7c-.24.85.15 1.78.93 2.23v5.54c-.6.34-1 .99-1 1.73 0 1.097.903 2 2 2s2-.903 2-2c0-.74-.4-1.39-1-1.73V9.41l2.07 2.09c-.07.15-.07.32-.07.5 0 1.097.903 2 2 2s2-.903 2-2-.903-2-2-2c-.18 0-.35 0-.5.07L13.93 7.5a1.98 1.98 0 0 0-1.15-2.34c-.43-.16-.88-.2-1.28-.09L9.8 3.38l.79-.78c.78-.79 2.04-.79 2.82 0l7.99 7.99c.79.78.79 2.04 0 2.82l-7.99 7.99c-.78.79-2.04.79-2.82 0L2.6 13.41c-.79-.78-.79-2.04 0-2.82z" style="fill-rule:nonzero;fill:#ffccbc" transform="translate(8.61 6.73) scale(.69978)"/></g></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.4142" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="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:#ff7043"/><g style="fill:#ffccbc"><path d="M2.6 10.59 8.38 4.8l1.69 1.7c-.24.85.15 1.78.93 2.23v5.54c-.6.34-1 .99-1 1.73 0 1.097.903 2 2 2s2-.903 2-2c0-.74-.4-1.39-1-1.73V9.41l2.07 2.09c-.07.15-.07.32-.07.5 0 1.097.903 2 2 2s2-.903 2-2-.903-2-2-2c-.18 0-.35 0-.5.07L13.93 7.5a1.98 1.98 0 0 0-1.15-2.34c-.43-.16-.88-.2-1.28-.09L9.8 3.38l.79-.78c.78-.79 2.04-.79 2.82 0l7.99 7.99c.79.78.79 2.04 0 2.82l-7.99 7.99c-.78.79-2.04.79-2.82 0L2.6 13.41c-.79-.78-.79-2.04 0-2.82z" style="fill-rule:nonzero;fill:#ffccbc" transform="translate(8.61 6.73) scale(.69978)"/></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="#546e7a"/><path d="M16.698 7.825a6.797 6.797 0 0 0-6.797 6.797 6.815 6.815 0 0 0 4.65 6.457c.34.054.448-.157.448-.34V19.59c-1.883.408-2.284-.91-2.284-.91-.312-.79-.754-1-.754-1-.619-.421.047-.408.047-.408.68.048 1.04.7 1.04.7.592 1.034 1.59.728 1.978.565.061-.442.238-.741.428-.911-1.509-.17-3.092-.755-3.092-3.344 0-.754.258-1.36.7-1.842-.068-.17-.306-.877.068-1.794 0 0 .57-.184 1.869.693.537-.15 1.121-.224 1.7-.224s1.161.074 1.698.224c1.298-.877 1.87-.693 1.87-.693.373.917.135 1.624.067 1.794.442.483.7 1.088.7 1.842 0 2.596-1.59 3.167-3.106 3.337.245.21.47.625.47 1.257v1.863c0 .183.108.4.455.34a6.816 6.816 0 0 0 4.642-6.457 6.797 6.797 0 0 0-6.797-6.797z" fill="#eceff1"/></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="M16.698 7.825a6.797 6.797 0 0 0-6.797 6.796 6.815 6.815 0 0 0 4.65 6.457c.34.054.448-.156.448-.34V19.59c-1.883.407-2.284-.911-2.284-.911-.312-.788-.754-1-.754-1-.619-.42.047-.407.047-.407.68.048 1.04.7 1.04.7.592 1.033 1.59.727 1.978.564.061-.442.238-.74.428-.91-1.509-.17-3.092-.755-3.092-3.344 0-.755.258-1.36.7-1.842-.068-.17-.306-.877.068-1.795 0 0 .57-.183 1.869.694.537-.15 1.121-.225 1.7-.225s1.161.075 1.698.225c1.298-.877 1.87-.694 1.87-.694.373.918.135 1.625.067 1.795.442.482.7 1.087.7 1.842 0 2.596-1.59 3.167-3.106 3.337.245.21.47.625.47 1.257v1.862c0 .184.108.401.455.34a6.816 6.816 0 0 0 4.642-6.457 6.797 6.797 0 0 0-6.797-6.796z" fill="#eceff1"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#757575"/><path d="m23.513 13.277-.017-.047-1.754-4.573a.455.455 0 0 0-.18-.218.463.463 0 0 0-.696.265l-1.183 3.623H14.89l-1.184-3.623a.464.464 0 0 0-.695-.265.455.455 0 0 0-.18.218l-1.753 4.574-.018.045a3.255 3.255 0 0 0 1.08 3.763l.007.005.015.011 2.667 2 1.323 1 .804.607a.543.543 0 0 0 .655 0l.804-.608 1.323-1 2.687-2.01.007-.006a3.255 3.255 0 0 0 1.081-3.761z" fill="#e53935"/><path d="m23.513 13.277-.017-.047a5.914 5.914 0 0 0-2.357 1.06l-3.85 2.912 2.451 1.852 2.686-2.01.008-.006a3.255 3.255 0 0 0 1.08-3.761z" fill="#ef6c00"/><path d="m14.829 19.054 1.323 1 .804.608a.543.543 0 0 0 .655 0l.804-.608 1.324-1-2.452-1.852z" fill="#f9a825"/><path d="M13.434 14.29a5.909 5.909 0 0 0-2.356-1.059l-.018.046a3.255 3.255 0 0 0 1.08 3.762l.007.005.015.012 2.667 1.999 2.453-1.853z" fill="#ef6c00"/></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="#757575" fill-rule="nonzero"/><path d="m23.513 13.277-.017-.047-1.754-4.573a.455.455 0 0 0-.18-.218.463.463 0 0 0-.696.265l-1.183 3.623H14.89l-1.184-3.623a.464.464 0 0 0-.695-.265.455.455 0 0 0-.18.218l-1.753 4.574-.018.045a3.255 3.255 0 0 0 1.08 3.763l.007.005.015.011 2.667 2 1.323 1 .804.607a.543.543 0 0 0 .655 0l.804-.608 1.323-1 2.687-2.01.007-.006a3.255 3.255 0 0 0 1.081-3.761z" fill="#e53935"/><path d="m23.513 13.277-.017-.047a5.914 5.914 0 0 0-2.357 1.06l-3.85 2.912 2.451 1.853 2.686-2.011.008-.006a3.255 3.255 0 0 0 1.08-3.761z" fill="#ef6c00"/><path d="m14.829 19.055 1.323 1 .804.607a.543.543 0 0 0 .655 0l.804-.607 1.324-1-2.452-1.853z" fill="#f9a825"/><path d="M13.434 14.29a5.909 5.909 0 0 0-2.356-1.059l-.018.046a3.255 3.255 0 0 0 1.08 3.762l.007.005.015.012 2.667 1.999 2.453-1.853z" fill="#ef6c00"/></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"/><path d="M21.133 18.585a1.22 1.22 0 0 0-1.156-.846h-.609v-1.825a.608.608 0 0 0-.608-.609h-3.65v-1.217h1.216a.608.608 0 0 0 .609-.608v-1.217h1.217a1.217 1.217 0 0 0 1.216-1.217v-.25a4.858 4.858 0 0 1 1.765 7.79m-4.198 1.545a4.86 4.86 0 0 1-4.26-4.826c0-.377.049-.742.128-1.089l2.915 2.915v.608a1.217 1.217 0 0 0 1.216 1.217m.609-9.735a6.085 6.085 0 0 0-6.085 6.084 6.085 6.085 0 0 0 6.085 6.085 6.085 6.085 0 0 0 6.085-6.085 6.085 6.085 0 0 0-6.085-6.084z" fill="#c5cae9"/></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="#5c6bc0" fill-rule="nonzero"/><path d="M21.132 18.585a1.22 1.22 0 0 0-1.156-.846h-.609v-1.825a.608.608 0 0 0-.608-.609h-3.65v-1.217h1.216a.608.608 0 0 0 .609-.608v-1.217h1.217a1.217 1.217 0 0 0 1.216-1.217v-.25a4.858 4.858 0 0 1 1.765 7.79m-4.198 1.545a4.86 4.86 0 0 1-4.26-4.826c0-.377.049-.742.128-1.089l2.915 2.915v.608a1.217 1.217 0 0 0 1.217 1.217m.608-9.735a6.085 6.085 0 0 0-6.085 6.084 6.085 6.085 0 0 0 6.085 6.085 6.085 6.085 0 0 0 6.085-6.085 6.085 6.085 0 0 0-6.085-6.084z" fill="#c5cae9"/></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="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="#42a5f5"/><g transform="matrix(.92681 0 0 .92681 2.4117 .28928)" fill="#bbdefb"><path d="m14.576 8.899c-0.64 0.142-1.272 0.34-1.865 0.639 0.014 0.524 0.047 1.026 0.116 1.535-0.23 0.147-0.473 0.274-0.688 0.447-0.219 0.168-0.442 0.329-0.64 0.526-0.4-0.266-0.816-0.508-1.245-0.725-0.464 0.5-0.899 1.04-1.254 1.644 0.267 0.432 0.546 0.837 0.847 1.221h8e-3v3.708l0.02 1e-3 2.273 0.219a0.244 0.244 0 0 1 0.221 0.227l0.07 1.003 1.983 0.141 0.137-0.926a0.245 0.245 0 0 1 0.242-0.209h2.398c0.121 0 0.224 0.089 0.242 0.209l0.137 0.926 1.983-0.141 0.07-1.003a0.247 0.247 0 0 1 0.221-0.227l2.272-0.219 0.02-1e-3v-0.296h1e-3v-3.411h8e-3c0.301-0.384 0.58-0.789 0.847-1.221a9.54 9.54 0 0 0-1.254-1.644c-0.431 0.217-0.85 0.463-1.245 0.724-0.198-0.197-0.421-0.358-0.64-0.526-0.215-0.173-0.457-0.299-0.687-0.447 0.068-0.51 0.102-1.012 0.116-1.535-0.593-0.299-1.226-0.496-1.866-0.639-0.256 0.429-0.489 0.894-0.693 1.349a4.646 4.646 0 0 0-0.726-0.058h-0.01c-0.243 0-0.486 0.02-0.726 0.058-0.204-0.455-0.437-0.92-0.693-1.349zm-1.798 5.424a1.3705 1.3705 0 1 1 0.074 2.74 1.3705 1.3705 0 0 1-0.074-2.74zm6.444 0a1.37 1.37 0 0 1 2e-3 2.74h-1e-3a1.37 1.37 0 0 1-1e-3 -2.74zm-3.222 0.801c0.244 0 0.441 0.18 0.441 0.401v1.261c0 0.221-0.198 0.401-0.441 0.401-0.244 0-0.441-0.179-0.441-0.401v-1.261c0-0.222 0.197-0.401 0.441-0.401z"/><path d="m20.104 18.582-0.07 1.009a0.243 0.243 0 0 1-0.227 0.227l-2.421 0.172-0.018 1e-3a0.245 0.245 0 0 1-0.242-0.209l-0.138-0.942h-1.976l-0.139 0.942a0.244 0.244 0 0 1-0.26 0.208l-2.421-0.173a0.247 0.247 0 0 1-0.227-0.227l-0.07-1.009-2.044-0.197 4e-3 0.508c0 2.159 2.738 3.196 6.14 3.208h8e-3c3.402-0.012 6.14-1.049 6.14-3.208l4e-3 -0.508z"/></g></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="M10 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-8l-2-2z" fill="#42a5f5"/>
|
|
4
|
-
<g transform="matrix(.92681 0 0 .92681 2.4119 .28928)" fill="#bbdefb">
|
|
5
|
-
<path d="m14.576 8.899c-0.64 0.142-1.272 0.34-1.865 0.639 0.014 0.524 0.047 1.026 0.116 1.535-0.23 0.147-0.473 0.274-0.688 0.447-0.219 0.168-0.442 0.329-0.64 0.526-0.4-0.266-0.816-0.508-1.245-0.725-0.464 0.5-0.899 1.04-1.254 1.644 0.267 0.432 0.546 0.837 0.847 1.221h8e-3v3.708l0.02 1e-3 2.273 0.219a0.244 0.244 0 0 1 0.221 0.227l0.07 1.003 1.983 0.141 0.137-0.926a0.245 0.245 0 0 1 0.242-0.209h2.398c0.121 0 0.224 0.089 0.242 0.209l0.137 0.926 1.983-0.141 0.07-1.003a0.247 0.247 0 0 1 0.221-0.227l2.272-0.219 0.02-1e-3v-0.296h1e-3v-3.411h8e-3c0.301-0.384 0.58-0.789 0.847-1.221a9.54 9.54 0 0 0-1.254-1.644c-0.431 0.217-0.85 0.463-1.245 0.724-0.198-0.197-0.421-0.358-0.64-0.526-0.215-0.173-0.457-0.299-0.687-0.447 0.068-0.51 0.102-1.012 0.116-1.535-0.593-0.299-1.226-0.496-1.866-0.639-0.256 0.429-0.489 0.894-0.693 1.349a4.646 4.646 0 0 0-0.726-0.058h-0.01c-0.243 0-0.486 0.02-0.726 0.058-0.204-0.455-0.437-0.92-0.693-1.349zm-1.798 5.424a1.3705 1.3705 0 1 1 0.074 2.74 1.3705 1.3705 0 0 1-0.074-2.74zm6.444 0a1.37 1.37 0 0 1 2e-3 2.74h-1e-3a1.37 1.37 0 0 1-1e-3 -2.74zm-3.222 0.801c0.244 0 0.441 0.18 0.441 0.401v1.261c0 0.221-0.198 0.401-0.441 0.401-0.244 0-0.441-0.179-0.441-0.401v-1.261c0-0.222 0.197-0.401 0.441-0.401z"/>
|
|
6
|
-
<path d="m20.104 18.582-0.07 1.009a0.243 0.243 0 0 1-0.227 0.227l-2.421 0.172-0.018 1e-3a0.245 0.245 0 0 1-0.242-0.209l-0.138-0.942h-1.976l-0.139 0.942a0.244 0.244 0 0 1-0.26 0.208l-2.421-0.173a0.247 0.247 0 0 1-0.227-0.227l-0.07-1.009-2.044-0.197 4e-3 0.508c0 2.159 2.738 3.196 6.14 3.208h8e-3c3.402-0.012 6.14-1.049 6.14-3.208l4e-3 -0.508z"/>
|
|
7
|
-
</g>
|
|
8
|
-
</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="M23.44 10.229c-.522-.94-1.456-1.22-2.115-1.233-.809-.016-1.473.432-1.347.726.026.063.178.393.271.529.135.196.376.045.46 0 .253-.134.523-.177.829-.141.292.033.68.214.941.714.613 1.179-1.28 3.604-3.65 1.925-2.369-1.68-4.673-1.123-5.717-.785-1.043.339-1.523.679-1.11 1.466.56 1.07.374.742.917 1.627.863 1.406 2.752-.647 2.752-.647-1.407 2.074-2.613 1.573-3.076.848a11.315 11.315 0 0 1-.74-1.407c-3.564 1.257-2.6 6.805-2.6 6.805h1.77c.45-2.043 2.064-1.967 2.34 0h1.35c1.195-3.99 4.222 0 4.222 0h1.76c-.493-2.72.99-3.576 1.925-5.171.935-1.596 1.82-3.547.818-5.256zm-4.54 5.254c-.931-.304-.598-1.23-.598-1.23s.813.263 1.912.621c-.063.288-.61.839-1.314.609z" 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="#e57373" fill-rule="nonzero" style="fill:#0097a7"/><path d="M23.441 10.229c-.522-.94-1.456-1.22-2.115-1.233-.809-.016-1.473.432-1.348.726.027.063.179.393.272.529.135.196.376.045.46 0 .253-.134.523-.177.829-.141.292.033.68.214.941.714.613 1.179-1.28 3.604-3.65 1.925-2.369-1.68-4.673-1.123-5.717-.785-1.043.339-1.523.679-1.11 1.466.56 1.07.374.742.917 1.627.863 1.406 2.752-.647 2.752-.647-1.407 2.074-2.613 1.573-3.076.848a11.315 11.315 0 0 1-.74-1.407c-3.564 1.257-2.6 6.805-2.6 6.805h1.77c.45-2.043 2.064-1.967 2.34 0h1.35c1.195-3.99 4.222 0 4.222 0h1.76c-.493-2.72.99-3.576 1.925-5.171.935-1.596 1.82-3.547.818-5.256zm-4.54 5.254c-.931-.304-.598-1.23-.598-1.23s.813.263 1.912.621c-.063.288-.61.839-1.314.609z" style="fill:#b2ebf2;stroke-width:.33551"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><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="#ec407a"/><path d="M17.496 8.158a1.382 1.382 0 0 0-1.355 1.643l-2.582 1.492a1.386 1.386 0 0 0-.213-.154.168.168 0 0 0-.002 0 1.382 1.382 0 0 0-1.381 2.394c.078.045.158.08.24.108v2.984c-.08.028-.16.061-.236.105a1.386 1.386 0 0 0-.506 1.887c.379.66 1.225.886 1.887.508a1.34 1.34 0 0 0 .21-.152l2.583 1.49a1.382 1.382 0 1 0 2.738.262c0-.104-.013-.204-.035-.301l2.558-1.479a1.384 1.384 0 0 0 2.129-.326h.002v-.002a1.381 1.381 0 0 0-.506-1.887 1.37 1.37 0 0 0-.236-.105v-2.986a1.38 1.38 0 0 0 .24-.106c.659-.382.885-1.23.506-1.888a1.383 1.383 0 0 0-1.887-.506.168.168 0 0 0-.002 0 1.386 1.386 0 0 0-.214.154l-2.58-1.488a1.384 1.384 0 0 0-1.357-1.646zm-1.246 2.637-3.135 5.426v-2.59c.3-.106.567-.31.737-.606.169-.294.21-.624.154-.935l2.244-1.295zm2.5.004 2.236 1.293c-.056.31-.012.64.157.933.17.296.436.5.736.606v2.586l-3.129-5.418zm-1.506.097a1.313 1.313 0 0 0 .508 0l3.539 6.131a1.373 1.373 0 0 0-.152.211 1.365 1.365 0 0 0-.106.235h-7.072a1.365 1.365 0 0 0-.106-.235.168.168 0 0 0-.001-.002 1.378 1.378 0 0 0-.15-.207l3.54-6.133zm-2.875 7.49h6.322L18.414 19.7a1.37 1.37 0 0 0-.918-.357c-.341 0-.651.13-.892.336l-2.235-1.291z" fill="#f8bbd0"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><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="#ec407a"/><path d="M17.496 8.158a1.382 1.382 0 0 0-1.355 1.643l-2.582 1.492a1.386 1.386 0 0 0-.213-.154.168.168 0 0 0-.002 0 1.382 1.382 0 0 0-1.381 2.394c.078.045.158.08.24.108v2.984c-.08.028-.16.061-.236.105a1.386 1.386 0 0 0-.506 1.887c.379.66 1.225.886 1.887.508a1.34 1.34 0 0 0 .21-.152l2.583 1.49a1.382 1.382 0 1 0 2.738.262c0-.104-.013-.204-.035-.301l2.558-1.479a1.384 1.384 0 0 0 2.129-.326h.002v-.002a1.381 1.381 0 0 0-.506-1.887 1.37 1.37 0 0 0-.236-.105v-2.986a1.38 1.38 0 0 0 .24-.106c.659-.382.885-1.23.506-1.888a1.383 1.383 0 0 0-1.887-.506.168.168 0 0 0-.002 0 1.386 1.386 0 0 0-.214.154l-2.58-1.488a1.384 1.384 0 0 0-1.357-1.646zm-1.246 2.637-3.135 5.426v-2.59c.3-.106.567-.31.737-.606.169-.294.21-.624.154-.935l2.244-1.295zm2.5.004 2.236 1.293c-.056.31-.012.64.157.933.17.296.436.5.736.606v2.586l-3.129-5.418zm-1.506.097a1.313 1.313 0 0 0 .508 0l3.539 6.131a1.373 1.373 0 0 0-.152.211 1.365 1.365 0 0 0-.106.235h-7.072a1.365 1.365 0 0 0-.106-.235.168.168 0 0 0-.001-.002 1.378 1.378 0 0 0-.15-.207l3.54-6.133zm-2.875 7.49h6.322L18.414 19.7a1.37 1.37 0 0 0-.918-.357c-.341 0-.651.13-.892.336l-2.235-1.291z" fill="#f8bbd0"/></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:#43a047"/><path d="m17.871 8.199-5.593 2.486v3.728c0 3.45 2.386 6.675 5.593 7.458 3.207-.783 5.593-4.008 5.593-7.458v-3.728l-5.593-2.486m0 3.728c.87 0 1.74.684 1.74 1.554v.932c.373 0 .746.373.746.808v2.175c0 .373-.373.746-.808.746h-3.418c-.373 0-.746-.373-.746-.808V15.16c0-.373.373-.746.746-.746v-.932c0-.87.87-1.554 1.74-1.554m0 .746c-.497 0-.932.311-.932.808v.932h1.864v-.932c0-.497-.435-.808-.932-.808z" style="fill:#c8e6c9;stroke-width:.62147"/></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:#43a047"/><path d="m17.871 8.199-5.593 2.486v3.729c0 3.449 2.386 6.674 5.593 7.457 3.207-.783 5.593-4.008 5.593-7.457v-3.73L17.871 8.2m0 3.729c.87 0 1.74.683 1.74 1.553v.933c.373 0 .746.372.746.808v2.175c0 .372-.373.745-.808.745h-3.418c-.373 0-.746-.373-.746-.808V15.16c0-.373.373-.745.746-.745v-.933c0-.87.87-1.553 1.74-1.553m0 .745c-.497 0-.932.311-.932.808v.933h1.864v-.933c0-.497-.435-.808-.932-.808z" style="fill:#c8e6c9;stroke-width:.62147"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#ff5252"/><path d="M14.27 17.241a457.81 457.81 0 0 1-.37-3.835c.001-.032-.174-.059-.389-.059h-.391V11.86h3.052V8.974l1.44-.866c.877-.527 1.522-.865 1.65-.865.307 0 .667.389.667.722 0 .146-.044.325-.098.399-.054.073-.556.407-1.116.743l-1.017.61-.022 1.071-.022 1.072h3.057v1.487h-.754l-.762 7.67h-4.552l-.373-3.776z" fill="#ffcdd2"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#ff5252" fill-rule="nonzero"/><path d="M14.27 17.241a458.302 458.302 0 0 1-.37-3.835c.001-.032-.174-.058-.389-.058h-.391V11.86h3.052V8.974l1.44-.865c.877-.528 1.522-.866 1.65-.866.307 0 .666.39.666.723 0 .145-.044.324-.098.398-.053.073-.555.407-1.115.743l-1.017.61-.022 1.071-.022 1.072h3.057v1.487h-.754l-.38 3.835-.382 3.835h-4.552l-.373-3.776z" fill="#ffcdd2"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#e57373" style="fill:#afb42b"/><path d="M20.671 9.434a1.22 1.22 0 0 0-.876.355l-3.559 3.565 3.461 3.461 3.565-3.559a1.239 1.239 0 0 0 0-1.733l-1.74-1.734a1.197 1.197 0 0 0-.851-.355m-5.023 4.502-3.65 3.65a1.231 1.231 0 0 0 .012 1.747c-.748.753-1.507 1.507-2.26 2.26h3.466l.527-.527a1.23 1.23 0 0 0 1.721-.012l3.645-3.65" style="fill:#f0f4c3;stroke-width:.61254"/></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:#afb42b"/><path d="M20.671 9.434a1.22 1.22 0 0 0-.876.355l-3.559 3.565 3.461 3.461 3.565-3.559a1.239 1.239 0 0 0 0-1.733l-1.74-1.734a1.197 1.197 0 0 0-.851-.355m-5.023 4.502-3.65 3.65a1.231 1.231 0 0 0 .012 1.747c-.748.753-1.507 1.507-2.26 2.26h3.466l.527-.527a1.23 1.23 0 0 0 1.721-.012l3.645-3.65" style="fill:#f0f4c3;stroke-width:.61254"/></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="M16.212 20.766v-3.862h2.575v3.862h3.219v-5.15h1.931l-6.438-5.794-6.437 5.794h1.931v5.15z" style="fill:#ffcdd2;stroke-width:.64375"/></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="M16.212 20.766v-3.862h2.575v3.862h3.219v-5.15h1.931l-6.438-5.794-6.437 5.794h1.931v5.15z" style="fill:#ffcdd2;stroke-width:.64375"/></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="#5E35B1" style="fill:#7e57c2"/><path d="M17.263 13.219c-3.537 0-6.407 1.435-6.407 3.204 0 1.435 1.884 2.646 4.485 3.056v2.069l2.563-2.563-2.563-2.563v1.75c-2.018-.36-3.204-1.218-3.204-1.75 0-.679 1.948-1.922 5.126-1.922s5.126 1.243 5.126 1.922c0 .468-.936 1.211-2.563 1.621v1.314c2.262-.494 3.844-1.621 3.844-2.935 0-1.768-2.87-3.203-6.407-3.203z" style="fill:#d1c4e9;stroke-width:1.0678"/></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="#5E35B1" fill-rule="nonzero" style="fill:#7e57c2"/><path d="M17.263 13.219c-3.537 0-6.407 1.435-6.407 3.203 0 1.435 1.884 2.646 4.485 3.056v2.07l2.563-2.563-2.563-2.563v1.75c-2.018-.36-3.204-1.218-3.204-1.75 0-.679 1.948-1.922 5.126-1.922 3.178 0 5.126 1.243 5.126 1.922 0 .468-.936 1.211-2.563 1.621v1.314c2.262-.494 3.844-1.621 3.844-2.935 0-1.768-2.87-3.203-6.407-3.203z" style="fill:#d1c4e9;stroke-width:1.0678"/></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:#607d8b"/><path d="M18.311 8.6c.67.269.935 1.324.585 2.366-.347 1.036-1.166 1.668-1.84 1.405-.667-.26-.937-1.317-.592-2.362.341-1.04 1.17-1.666 1.847-1.408m3.748 2.164c.567.46.435 1.488-.285 2.31-.738.818-1.783 1.116-2.348.664-.569-.454-.431-1.48.298-2.295.728-.824 1.773-1.122 2.335-.679m-7.945-1.372c.746.088 1.29 1.024 1.245 2.082-.08 1.058-.719 1.85-1.46 1.764-.74-.085-1.281-1.012-1.22-2.074.061-1.063.713-1.853 1.435-1.772m9.437 5.448c.431.585.072 1.545-.817 2.129-.89.584-1.963.58-2.407-.02-.444-.599-.078-1.548.799-2.146.893-.567 1.975-.565 2.425.037m-4.139 5.146c-.263.505-.955.832-1.524.776-1.187-.112-1.784-1.644-2.827-2.247-1.043-.602-2.7-.322-3.354-1.321-.376-.56-.344-1.45.05-1.977.546-.726 1.727-.604 2.612-.855 1.166-.312 2.492-1.399 3.546-.79 1.049.605.814 2.294 1.083 3.463.213.975.871 2.075.414 2.951z" style="fill:#cfd8dc;stroke-width:.60534"/></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:#607d8b"/><path d="M18.311 8.601c.67.268.935 1.323.585 2.365-.347 1.037-1.166 1.669-1.84 1.406-.667-.26-.937-1.318-.592-2.363.341-1.04 1.17-1.665 1.847-1.408m3.748 2.164c.567.46.435 1.488-.285 2.31-.738.818-1.783 1.116-2.348.665-.569-.455-.431-1.48.298-2.296.728-.824 1.773-1.122 2.335-.679m-7.945-1.371c.746.088 1.29 1.023 1.245 2.081-.08 1.059-.719 1.85-1.46 1.765-.74-.085-1.281-1.013-1.22-2.075.061-1.062.713-1.853 1.435-1.772m9.437 5.449c.431.584.072 1.544-.817 2.128-.89.584-1.963.58-2.407-.02-.444-.598-.078-1.547.799-2.146.893-.567 1.975-.564 2.425.038m-4.139 5.145c-.263.505-.955.833-1.524.777-1.187-.112-1.784-1.645-2.827-2.247-1.043-.603-2.7-.322-3.354-1.322-.376-.56-.344-1.45.05-1.976.546-.727 1.727-.605 2.612-.855 1.166-.313 2.492-1.4 3.546-.79 1.049.604.814 2.293 1.083 3.462.213.976.871 2.076.414 2.951z" style="fill:#cfd8dc;stroke-width:.60534"/></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"/><path d="m17.293 17.786-1.53-1.512.018-.018a10.555 10.555 0 0 0 2.235-3.934h1.765v-1.205h-4.217V9.912h-1.205v1.205h-4.217v1.205h6.73a9.5 9.5 0 0 1-1.91 3.223 9.424 9.424 0 0 1-1.392-2.018h-1.205c.44.982 1.042 1.91 1.795 2.747l-3.067 3.024.856.856 3.012-3.013 1.874 1.874.458-1.229m3.392-3.054H19.48l-2.711 7.23h1.205l.674-1.808h2.862l.68 1.807h1.206l-2.711-7.23m-1.579 4.218.976-2.609.976 2.609z" fill="#c5cae9"/></svg>
|