diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml
new file mode 100644
index 0000000..52728c3
--- /dev/null
+++ b/.github/workflows/jekyll.yml
@@ -0,0 +1,64 @@
+# This workflow uses actions that are not certified by GitHub.
+# They are provided by a third-party and are governed by
+# separate terms of service, privacy policy, and support
+# documentation.
+
+# Sample workflow for building and deploying a Jekyll site to GitHub Pages
+name: Deploy Jekyll site to Pages
+
+on:
+ # Runs on pushes targeting the default branch
+ push:
+ branches: ["main"]
+
+ # Allows you to run this workflow manually from the Actions tab
+ workflow_dispatch:
+
+# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
+permissions:
+ contents: read
+ pages: write
+ id-token: write
+
+# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
+# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
+concurrency:
+ group: "pages"
+ cancel-in-progress: false
+
+jobs:
+ # Build job
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v3
+ - name: Setup Ruby
+ uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0
+ with:
+ ruby-version: '3.1' # Not needed with a .ruby-version file
+ bundler-cache: true # runs 'bundle install' and caches installed gems automatically
+ cache-version: 0 # Increment this number if you need to re-download cached gems
+ - name: Setup Pages
+ id: pages
+ uses: actions/configure-pages@v3
+ - name: Build with Jekyll
+ # Outputs to the './_site' directory by default
+ run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
+ env:
+ JEKYLL_ENV: production
+ - name: Upload artifact
+ # Automatically uploads an artifact from the './_site' directory by default
+ uses: actions/upload-pages-artifact@v2
+
+ # Deployment job
+ deploy:
+ environment:
+ name: github-pages
+ url: ${{ steps.deployment.outputs.page_url }}
+ runs-on: ubuntu-latest
+ needs: build
+ steps:
+ - name: Deploy to GitHub Pages
+ id: deployment
+ uses: actions/deploy-pages@v2
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..a9cc8ab
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,6 @@
+_site
+.sass-cache
+.jekyll-cache
+.jekyll-metadata
+vendor
+Gemfile.lock
\ No newline at end of file
diff --git a/404.html b/404.html
new file mode 100644
index 0000000..a28b588
--- /dev/null
+++ b/404.html
@@ -0,0 +1,11 @@
+---
+layout: base
+permalink: /404.html
+---
+
+
+
+ Page not found :(
+ The requested page could not be found.
+
+
diff --git a/Gemfile b/Gemfile
new file mode 100644
index 0000000..e988e5b
--- /dev/null
+++ b/Gemfile
@@ -0,0 +1,26 @@
+source "https://rubygems.org"
+
+# Install dependencies
+gem 'webrick' # for HTTP
+gem "github-pages"
+
+# Plugins
+group :jekyll_plugins do
+ gem "jekyll-sitemap"
+ gem "jekyll-redirect-from"
+ gem "jekyll-scholar"
+end
+
+# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
+# and associated library.
+platforms :mingw, :x64_mingw, :mswin, :jruby do
+ gem "tzinfo", ">= 1", "< 3"
+ gem "tzinfo-data"
+end
+
+# Performance-booster for watching directories on Windows
+gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin]
+
+# Lock `http_parser.rb` gem to `v0.6.x` on JRuby builds since newer versions of the gem
+# do not have a Java counterpart.
+gem "http_parser.rb", "~> 0.6.0", :platforms => [:jruby]
diff --git a/Gemfile.lock b/Gemfile.lock
new file mode 100644
index 0000000..bf92800
--- /dev/null
+++ b/Gemfile.lock
@@ -0,0 +1,298 @@
+GEM
+ remote: https://rubygems.org/
+ specs:
+ activesupport (7.1.1)
+ base64
+ bigdecimal
+ concurrent-ruby (~> 1.0, >= 1.0.2)
+ connection_pool (>= 2.2.5)
+ drb
+ i18n (>= 1.6, < 2)
+ minitest (>= 5.1)
+ mutex_m
+ tzinfo (~> 2.0)
+ addressable (2.8.5)
+ public_suffix (>= 2.0.2, < 6.0)
+ base64 (0.1.1)
+ bibtex-ruby (4.4.7)
+ latex-decode (~> 0.0)
+ bigdecimal (3.1.4)
+ citeproc (1.0.10)
+ namae (~> 1.0)
+ citeproc-ruby (1.1.14)
+ citeproc (~> 1.0, >= 1.0.9)
+ csl (~> 1.6)
+ coffee-script (2.4.1)
+ coffee-script-source
+ execjs
+ coffee-script-source (1.11.1)
+ colorator (1.1.0)
+ commonmarker (0.23.10)
+ concurrent-ruby (1.2.2)
+ connection_pool (2.4.1)
+ csl (1.6.0)
+ namae (~> 1.0)
+ rexml
+ csl-styles (1.0.1.11)
+ csl (~> 1.0)
+ dnsruby (1.70.0)
+ simpleidn (~> 0.2.1)
+ drb (2.1.1)
+ ruby2_keywords
+ em-websocket (0.5.3)
+ eventmachine (>= 0.12.9)
+ http_parser.rb (~> 0)
+ ethon (0.16.0)
+ ffi (>= 1.15.0)
+ eventmachine (1.2.7)
+ execjs (2.9.1)
+ faraday (2.7.11)
+ base64
+ faraday-net_http (>= 2.0, < 3.1)
+ ruby2_keywords (>= 0.0.4)
+ faraday-net_http (3.0.2)
+ ffi (1.16.3)
+ forwardable-extended (2.6.0)
+ gemoji (3.0.1)
+ github-pages (228)
+ github-pages-health-check (= 1.17.9)
+ jekyll (= 3.9.3)
+ jekyll-avatar (= 0.7.0)
+ jekyll-coffeescript (= 1.1.1)
+ jekyll-commonmark-ghpages (= 0.4.0)
+ jekyll-default-layout (= 0.1.4)
+ jekyll-feed (= 0.15.1)
+ jekyll-gist (= 1.5.0)
+ jekyll-github-metadata (= 2.13.0)
+ jekyll-include-cache (= 0.2.1)
+ jekyll-mentions (= 1.6.0)
+ jekyll-optional-front-matter (= 0.3.2)
+ jekyll-paginate (= 1.1.0)
+ jekyll-readme-index (= 0.3.0)
+ jekyll-redirect-from (= 0.16.0)
+ jekyll-relative-links (= 0.6.1)
+ jekyll-remote-theme (= 0.4.3)
+ jekyll-sass-converter (= 1.5.2)
+ jekyll-seo-tag (= 2.8.0)
+ jekyll-sitemap (= 1.4.0)
+ jekyll-swiss (= 1.0.0)
+ jekyll-theme-architect (= 0.2.0)
+ jekyll-theme-cayman (= 0.2.0)
+ jekyll-theme-dinky (= 0.2.0)
+ jekyll-theme-hacker (= 0.2.0)
+ jekyll-theme-leap-day (= 0.2.0)
+ jekyll-theme-merlot (= 0.2.0)
+ jekyll-theme-midnight (= 0.2.0)
+ jekyll-theme-minimal (= 0.2.0)
+ jekyll-theme-modernist (= 0.2.0)
+ jekyll-theme-primer (= 0.6.0)
+ jekyll-theme-slate (= 0.2.0)
+ jekyll-theme-tactile (= 0.2.0)
+ jekyll-theme-time-machine (= 0.2.0)
+ jekyll-titles-from-headings (= 0.5.3)
+ jemoji (= 0.12.0)
+ kramdown (= 2.3.2)
+ kramdown-parser-gfm (= 1.1.0)
+ liquid (= 4.0.4)
+ mercenary (~> 0.3)
+ minima (= 2.5.1)
+ nokogiri (>= 1.13.6, < 2.0)
+ rouge (= 3.26.0)
+ terminal-table (~> 1.4)
+ github-pages-health-check (1.17.9)
+ addressable (~> 2.3)
+ dnsruby (~> 1.60)
+ octokit (~> 4.0)
+ public_suffix (>= 3.0, < 5.0)
+ typhoeus (~> 1.3)
+ html-pipeline (2.14.3)
+ activesupport (>= 2)
+ nokogiri (>= 1.4)
+ http_parser.rb (0.8.0)
+ i18n (1.14.1)
+ concurrent-ruby (~> 1.0)
+ jekyll (3.9.3)
+ addressable (~> 2.4)
+ colorator (~> 1.0)
+ em-websocket (~> 0.5)
+ i18n (>= 0.7, < 2)
+ jekyll-sass-converter (~> 1.0)
+ jekyll-watch (~> 2.0)
+ kramdown (>= 1.17, < 3)
+ liquid (~> 4.0)
+ mercenary (~> 0.3.3)
+ pathutil (~> 0.9)
+ rouge (>= 1.7, < 4)
+ safe_yaml (~> 1.0)
+ jekyll-avatar (0.7.0)
+ jekyll (>= 3.0, < 5.0)
+ jekyll-coffeescript (1.1.1)
+ coffee-script (~> 2.2)
+ coffee-script-source (~> 1.11.1)
+ jekyll-commonmark (1.4.0)
+ commonmarker (~> 0.22)
+ jekyll-commonmark-ghpages (0.4.0)
+ commonmarker (~> 0.23.7)
+ jekyll (~> 3.9.0)
+ jekyll-commonmark (~> 1.4.0)
+ rouge (>= 2.0, < 5.0)
+ jekyll-default-layout (0.1.4)
+ jekyll (~> 3.0)
+ jekyll-feed (0.15.1)
+ jekyll (>= 3.7, < 5.0)
+ jekyll-gist (1.5.0)
+ octokit (~> 4.2)
+ jekyll-github-metadata (2.13.0)
+ jekyll (>= 3.4, < 5.0)
+ octokit (~> 4.0, != 4.4.0)
+ jekyll-include-cache (0.2.1)
+ jekyll (>= 3.7, < 5.0)
+ jekyll-mentions (1.6.0)
+ html-pipeline (~> 2.3)
+ jekyll (>= 3.7, < 5.0)
+ jekyll-optional-front-matter (0.3.2)
+ jekyll (>= 3.0, < 5.0)
+ jekyll-paginate (1.1.0)
+ jekyll-readme-index (0.3.0)
+ jekyll (>= 3.0, < 5.0)
+ jekyll-redirect-from (0.16.0)
+ jekyll (>= 3.3, < 5.0)
+ jekyll-relative-links (0.6.1)
+ jekyll (>= 3.3, < 5.0)
+ jekyll-remote-theme (0.4.3)
+ addressable (~> 2.0)
+ jekyll (>= 3.5, < 5.0)
+ jekyll-sass-converter (>= 1.0, <= 3.0.0, != 2.0.0)
+ rubyzip (>= 1.3.0, < 3.0)
+ jekyll-sass-converter (1.5.2)
+ sass (~> 3.4)
+ jekyll-scholar (5.16.0)
+ bibtex-ruby (~> 4.0, >= 4.0.13)
+ citeproc-ruby (~> 1.0)
+ csl-styles (~> 1.0)
+ jekyll (~> 3.0)
+ jekyll-seo-tag (2.8.0)
+ jekyll (>= 3.8, < 5.0)
+ jekyll-sitemap (1.4.0)
+ jekyll (>= 3.7, < 5.0)
+ jekyll-swiss (1.0.0)
+ jekyll-theme-architect (0.2.0)
+ jekyll (> 3.5, < 5.0)
+ jekyll-seo-tag (~> 2.0)
+ jekyll-theme-cayman (0.2.0)
+ jekyll (> 3.5, < 5.0)
+ jekyll-seo-tag (~> 2.0)
+ jekyll-theme-dinky (0.2.0)
+ jekyll (> 3.5, < 5.0)
+ jekyll-seo-tag (~> 2.0)
+ jekyll-theme-hacker (0.2.0)
+ jekyll (> 3.5, < 5.0)
+ jekyll-seo-tag (~> 2.0)
+ jekyll-theme-leap-day (0.2.0)
+ jekyll (> 3.5, < 5.0)
+ jekyll-seo-tag (~> 2.0)
+ jekyll-theme-merlot (0.2.0)
+ jekyll (> 3.5, < 5.0)
+ jekyll-seo-tag (~> 2.0)
+ jekyll-theme-midnight (0.2.0)
+ jekyll (> 3.5, < 5.0)
+ jekyll-seo-tag (~> 2.0)
+ jekyll-theme-minimal (0.2.0)
+ jekyll (> 3.5, < 5.0)
+ jekyll-seo-tag (~> 2.0)
+ jekyll-theme-modernist (0.2.0)
+ jekyll (> 3.5, < 5.0)
+ jekyll-seo-tag (~> 2.0)
+ jekyll-theme-primer (0.6.0)
+ jekyll (> 3.5, < 5.0)
+ jekyll-github-metadata (~> 2.9)
+ jekyll-seo-tag (~> 2.0)
+ jekyll-theme-slate (0.2.0)
+ jekyll (> 3.5, < 5.0)
+ jekyll-seo-tag (~> 2.0)
+ jekyll-theme-tactile (0.2.0)
+ jekyll (> 3.5, < 5.0)
+ jekyll-seo-tag (~> 2.0)
+ jekyll-theme-time-machine (0.2.0)
+ jekyll (> 3.5, < 5.0)
+ jekyll-seo-tag (~> 2.0)
+ jekyll-titles-from-headings (0.5.3)
+ jekyll (>= 3.3, < 5.0)
+ jekyll-watch (2.2.1)
+ listen (~> 3.0)
+ jemoji (0.12.0)
+ gemoji (~> 3.0)
+ html-pipeline (~> 2.2)
+ jekyll (>= 3.0, < 5.0)
+ kramdown (2.3.2)
+ rexml
+ kramdown-parser-gfm (1.1.0)
+ kramdown (~> 2.0)
+ latex-decode (0.4.0)
+ liquid (4.0.4)
+ listen (3.8.0)
+ rb-fsevent (~> 0.10, >= 0.10.3)
+ rb-inotify (~> 0.9, >= 0.9.10)
+ mercenary (0.3.6)
+ minima (2.5.1)
+ jekyll (>= 3.5, < 5.0)
+ jekyll-feed (~> 0.9)
+ jekyll-seo-tag (~> 2.1)
+ minitest (5.20.0)
+ mutex_m (0.1.2)
+ namae (1.1.1)
+ nokogiri (1.15.4-x86_64-linux)
+ racc (~> 1.4)
+ octokit (4.25.1)
+ faraday (>= 1, < 3)
+ sawyer (~> 0.9)
+ pathutil (0.16.2)
+ forwardable-extended (~> 2.6)
+ public_suffix (4.0.7)
+ racc (1.7.1)
+ rb-fsevent (0.11.2)
+ rb-inotify (0.10.1)
+ ffi (~> 1.0)
+ rexml (3.2.6)
+ rouge (3.26.0)
+ ruby2_keywords (0.0.5)
+ rubyzip (2.3.2)
+ safe_yaml (1.0.5)
+ sass (3.7.4)
+ sass-listen (~> 4.0.0)
+ sass-listen (4.0.0)
+ rb-fsevent (~> 0.9, >= 0.9.4)
+ rb-inotify (~> 0.9, >= 0.9.7)
+ sawyer (0.9.2)
+ addressable (>= 2.3.5)
+ faraday (>= 0.17.3, < 3)
+ simpleidn (0.2.1)
+ unf (~> 0.1.4)
+ terminal-table (1.8.0)
+ unicode-display_width (~> 1.1, >= 1.1.1)
+ typhoeus (1.4.0)
+ ethon (>= 0.9.0)
+ tzinfo (2.0.6)
+ concurrent-ruby (~> 1.0)
+ unf (0.1.4)
+ unf_ext
+ unf_ext (0.0.8.2)
+ unicode-display_width (1.8.0)
+ webrick (1.8.1)
+
+PLATFORMS
+ x86_64-linux
+
+DEPENDENCIES
+ github-pages
+ http_parser.rb (~> 0.6.0)
+ jekyll-redirect-from
+ jekyll-scholar
+ jekyll-sitemap
+ tzinfo (>= 1, < 3)
+ tzinfo-data
+ wdm (~> 0.1.1)
+ webrick
+
+BUNDLED WITH
+ 2.4.21
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..9721ddc
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,28 @@
+BSD 3-Clause License
+
+Copyright (c) 2023, NukeHub
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+1. Redistributions of source code must retain the above copyright notice, this
+ list of conditions and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the above copyright notice,
+ this list of conditions and the following disclaimer in the documentation
+ and/or other materials provided with the distribution.
+
+3. Neither the name of the copyright holder nor the names of its
+ contributors may be used to endorse or promote products derived from
+ this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/_config.yml b/_config.yml
new file mode 100644
index 0000000..f95edec
--- /dev/null
+++ b/_config.yml
@@ -0,0 +1,16 @@
+title: NukeHub
+email: talk@nukehub.org
+description: >- # this means to ignore newlines until "baseurl:"
+ A pioneering platform dedicated to the exploration and
+ advancement of nuclear technology. Our mission is to foster
+ a community of innovators, enthusiasts, and professionals
+ who are passionate about nuclear technology.
+baseurl: "" # the subpath of your site, e.g. /blog
+url: "" # the base hostname & protocol for your site, e.g. http://example.com
+github_username: nukehub-dev
+
+# Build settings
+plugins:
+ - jekyll-sitemap
+ - jekyll-redirect-from
+ - jekyll-scholar
diff --git a/_data/people.yml b/_data/people.yml
new file mode 100644
index 0000000..d0a68de
--- /dev/null
+++ b/_data/people.yml
@@ -0,0 +1,10 @@
+- name: Ahnaf Tahmid Chowdhury
+ org: Military Institute of Science and Technology (MIST)
+ position: Research Assistant
+ email: tahmid@nse.mist.ac.bd
+ url: https://tahmid.pages.dev/
+ image: https://github.com/ahnaf-tahmid-chowdhury.png
+ github: ahnaf-tahmid-chowdhury
+ linkedin: ahnaf-tahmid-
+ scholar: https://scholar.google.com/citations?hl=en&user=U0TLOGQAAAAJ
+
\ No newline at end of file
diff --git a/_includes/footer.html b/_includes/footer.html
new file mode 100644
index 0000000..392ed06
--- /dev/null
+++ b/_includes/footer.html
@@ -0,0 +1,54 @@
+
+
\ No newline at end of file
diff --git a/_includes/header.html b/_includes/header.html
new file mode 100644
index 0000000..43bbd10
--- /dev/null
+++ b/_includes/header.html
@@ -0,0 +1,82 @@
+
+
\ No newline at end of file
diff --git a/_includes/people-box.html b/_includes/people-box.html
new file mode 100644
index 0000000..c12e51c
--- /dev/null
+++ b/_includes/people-box.html
@@ -0,0 +1,17 @@
+
+
\ No newline at end of file
diff --git a/_includes/project-box.html b/_includes/project-box.html
new file mode 100644
index 0000000..6c7f782
--- /dev/null
+++ b/_includes/project-box.html
@@ -0,0 +1,17 @@
+
+
\ No newline at end of file
diff --git a/_includes/svg.html b/_includes/svg.html
new file mode 100644
index 0000000..522457f
--- /dev/null
+++ b/_includes/svg.html
@@ -0,0 +1,48 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/_layouts/base.html b/_layouts/base.html
new file mode 100644
index 0000000..34ff044
--- /dev/null
+++ b/_layouts/base.html
@@ -0,0 +1,83 @@
+---
+nav:
+ - title: Home
+ icon: nuke-news
+ url: /#home
+ - title: Projects
+ icon: nuke-nuclear-equipment
+ url: /#projects
+ - title: Join
+ icon: nuke-profile
+ url: /#join
+ - title: About
+ icon: nuke-document
+ url: /about
+projects:
+ - title: NRMS
+ description: Nuclear Reactor Monitoring System (NRMS) provides the user with the ability to access the PRIS database and visualize the data in a user-friendly manner.
+ url: https://nrms.nukehub.org
+ newpage: true
+ - title: NukeAnalytics
+ description: Make use of the PRIS database to analyze the data using SQL Lab and generate charts and dashboards.
+ url: https://analytics.nukehub.org
+ newpage: true
+ - title: NukeLab
+ description: Run nuclear physics simulations and analyses effortlessly in the cloud. Access anytime, anywhere, and collaborate seamlessly with peers.
+ url: https://lab.nukehub.org
+ newpage: true
+ - title: NukeBox
+ description: A package manager specifically crafted to simplify the installation and management of vital packages and libraries required for nuclear physics simulations and analyses.
+ url: https://nukebox.readthedocs.io/
+ newpage: true
+social:
+ - title: GitHub
+ url: https://github.com/nukehub-dev/
+ newpage: true
+ - title: NukeTalk
+ url: https://talk.nukehub.org
+ newpage: true
+---
+
+
+
+
+
+
+ {{ site.title }} {% if page.title %}| {{ page.title }}{% endif %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {% include svg.html class="loading_image" %}
+
+ {% include header.html %}
+
+
+ {{ content }}
+
+ {% include footer.html %}
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/assests/images/NukeHub.svg b/assests/images/NukeHub.svg
deleted file mode 100644
index 2a8b5ae..0000000
--- a/assests/images/NukeHub.svg
+++ /dev/null
@@ -1,85 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/assests/images/atomic-nuclear-radiation.svg b/assests/images/atomic-nuclear-radiation.svg
deleted file mode 100644
index b7195b1..0000000
--- a/assests/images/atomic-nuclear-radiation.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/assests/images/nrms.svg b/assets/images/nukehub-black.svg
similarity index 100%
rename from assests/images/nrms.svg
rename to assets/images/nukehub-black.svg
diff --git a/assets/images/nukehub.svg b/assets/images/nukehub.svg
new file mode 100644
index 0000000..f7549dd
--- /dev/null
+++ b/assets/images/nukehub.svg
@@ -0,0 +1,75 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assests/images/nuketalk.png b/assets/images/nuketalk.png
similarity index 100%
rename from assests/images/nuketalk.png
rename to assets/images/nuketalk.png
diff --git a/assests/images/nuketalk.svg b/assets/images/nuketalk.svg
similarity index 100%
rename from assests/images/nuketalk.svg
rename to assets/images/nuketalk.svg
diff --git a/css/Read Me.txt b/css/Read Me.txt
new file mode 100644
index 0000000..f971d76
--- /dev/null
+++ b/css/Read Me.txt
@@ -0,0 +1 @@
+You can import *selection.json* back to the IcoMoon app using the *Import Icons* button (or via Main Menu → Manage Projects) to retrieve your icon selection.
diff --git a/css/fonts/NukeHub.eot b/css/fonts/NukeHub.eot
new file mode 100644
index 0000000..805d48a
Binary files /dev/null and b/css/fonts/NukeHub.eot differ
diff --git a/css/fonts/NukeHub.svg b/css/fonts/NukeHub.svg
new file mode 100644
index 0000000..3123d1e
--- /dev/null
+++ b/css/fonts/NukeHub.svg
@@ -0,0 +1,213 @@
+
+
+
+Generated by IcoMoon
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/css/fonts/NukeHub.ttf b/css/fonts/NukeHub.ttf
new file mode 100644
index 0000000..c0148ad
Binary files /dev/null and b/css/fonts/NukeHub.ttf differ
diff --git a/css/fonts/NukeHub.woff b/css/fonts/NukeHub.woff
new file mode 100644
index 0000000..74de651
Binary files /dev/null and b/css/fonts/NukeHub.woff differ
diff --git a/css/nukehub.css b/css/nukehub.css
new file mode 100644
index 0000000..ede11ab
--- /dev/null
+++ b/css/nukehub.css
@@ -0,0 +1,2092 @@
+/* TODO: GOOGLE FONTS */
+@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap");
+
+/* TODO: NukeHub icon */
+@import url("style.css");
+
+/* TODO: VARIABLES CSS */
+:root {
+ --header-height: 3rem;
+
+ /*== Colors ==*/
+
+ --hue-color: 5;
+
+ --color: hsl(var(--hue-color), 69%, 61%);
+ --color-2: hsl(var(--hue-color), 69%, 61%);
+ --color-svg: invert(67%) sepia(60%) saturate(4648%) hue-rotate(324deg)
+ brightness(93%) contrast(88%);
+ --color-alt: hsl(var(--hue-color), 57%, 53%);
+ --color-alt-svg: invert(35%) sepia(34%) saturate(1189%) hue-rotate(318deg)
+ brightness(108%) contrast(90%);
+ --color-lighter: hsl(var(--hue-color), 80%, 72%);
+ --color-lighter-svg: invert(90%) sepia(20%) saturate(1151%) hue-rotate(299deg)
+ brightness(95%) contrast(108%);
+ --color-danger: rgba(255, 0, 0, 0.8);
+ --title-color: hsl(var(--hue-color), 8%, 35%);
+ --text-color: hsl(var(--hue-color), 8%, 45%);
+ --text-color-light: hsl(var(--hue-color), 8%, 65%);
+ --input-color: hsl(var(--hue-color), 70%, 96%);
+ --body-color: hsl(var(--hue-color), 60%, 99%);
+ --container-color: #fff;
+ --logo-svg: invert(0%) sepia(3%) saturate(0%) hue-rotate(235deg)
+ brightness(105%) contrast(105%);
+ --svg-fill: #000;
+ --scroll-bar: hsl(var(--hue-color), 12%, 90%);
+ --scroll-thumb: hsl(var(--hue-color), 12%, 80%);
+ --chart-color: hsl(var(--hue-color), 69%, 61%);
+ --chart-color-border: #fff;
+ --chart-data-labels-color: var(--text-color);
+ --chart-hover-background-color: rgba(0, 0, 0, 0.1);
+ --theme-button: #444;
+ --opacity-color-01: rgba(0, 0, 0, 0.001);
+ --opacity-color-05: rgba(0, 0, 0, 0.005);
+ --opacity-color-08: rgba(0, 0, 0, 0.008);
+ --opacity-color-10: rgba(0, 0, 0, 0.01);
+ --opacity-color-12: rgba(0, 0, 0, 0.012);
+ --opacity-color-15: rgba(0, 0, 0, 0.015);
+ --opacity-color-20: rgba(0, 0, 0, 0.02);
+ --opacity-color-25: rgba(0, 0, 0, 0.025);
+ --opacity-color-100: rgba(0, 0, 0, 0.1);
+ --opacity-color-200: rgba(0, 0, 0, 0.2);
+ --opacity-color-300: rgba(0, 0, 0, 0.3);
+ --opacity-color-500: rgba(0, 0, 0, 0.5);
+ --opacity-color-05-invert: rgba(255, 255, 255, 0.005);
+ --opacity-color-08-invert: rgba(255, 255, 255, 0.008);
+ --opacity-color-10-invert: rgba(255, 255, 255, 0.01);
+ --opacity-color-12-invert: rgba(255, 255, 255, 0.012);
+ --opacity-color-15-invert: rgba(255, 255, 255, 0.015);
+ --opacity-color-20-invert: rgba(255, 255, 255, 0.02);
+ --opacity-color-25-invert: rgba(255, 255, 255, 0.025);
+
+ /*== Font and typography ==*/
+ --body-font: "Ubuntu", sans-serif;
+
+ /* 1rem = 16px */
+ --big-font: 2rem;
+ --h1-font: 1.5rem;
+ --h2-font: 1.25rem;
+ --h3-font: 1.125rem;
+ --normal-font: 0.938rem;
+ --small-font: 0.813rem;
+ --smallest-font: 0.75rem;
+
+ /*== Font weight ==*/
+ --font-medium: 500;
+ --font-semi-bold: 600;
+
+ /*== Margenes Bottom ==*/
+ --mb-0-25: 0.25rem;
+ --mb-0-5: 0.5rem;
+ --mb-0-75: 0.75rem;
+ --mb-1: 1rem;
+ --mb-1-5: 1.5rem;
+ --mb-2: 2rem;
+ --mb-2-5: 2.5rem;
+ --mb-3: 3rem;
+
+ /*== z index ==*/
+ --z-tooltip: 10;
+ --z-fixed: 100;
+ --z-model: 1000;
+}
+
+/*==Font size for large reactors==*/
+
+@media screen and (min-width: 968px) {
+ :root {
+ --big-font: 3rem;
+ --h1-font: 2.25rem;
+ --h2-font: 1.5rem;
+ --h3-font: 1.25rem;
+ --normal-font: 1rem;
+ --small-font: 0.875rem;
+ --smaller-font: 0.813rem;
+ }
+}
+
+/* TODO: Change Theme */
+body.dark-theme {
+ /*== Colors ==*/
+ --color: hsl(var(--hue-color), 69%, 61%);
+ --color-2: hsl(var(--hue-color), 30%, 8%);
+ --title-color: hsl(var(--hue-color), 8%, 95%);
+ --text-color: hsl(var(--hue-color), 8%, 75%);
+ --input-color: hsl(var(--hue-color), 29%, 16%);
+ --body-color: hsl(var(--hue-color), 28%, 12%);
+ --container-color: hsl(var(--hue-color), 29%, 16%);
+ --logo-svg: invert(100%) sepia(91%) saturate(38%) hue-rotate(321deg)
+ brightness(110%) contrast(110%);
+ --color-alt: hsl(var(--hue-color), 57%, 53%);
+ --color-alt-svg: invert(41%) sepia(65%) saturate(1248%) hue-rotate(329deg)
+ brightness(83%) contrast(89%);
+ --color-lighter: hsl(var(--hue-color), 92%, 85%);
+ --color-lighter-svg: invert(76%) sepia(21%) saturate(501%) hue-rotate(315deg)
+ brightness(101%) contrast(98%);
+ --text-color-light: hsl(var(--hue-color), 8%, 65%);
+ --svg-fill: #fff;
+ --scroll-bar: hsl(var(--hue-color), 29%, 16%);
+ --scroll-thumb: hsl(var(--hue-color), 12%, 36%);
+ --chart-color: #fff;
+ --chart-color-border: hsl(var(--hue-color), 30%, 8%);
+ --chart-data-labels-color: #fff;
+ --chart-hover-background-color: rgba(255, 255, 255, 0.5);
+ --theme-button: #fff;
+ --opacity-color-01: rgba(255, 255, 255, 0.01);
+ --opacity-color-05: rgba(255, 255, 255, 0.05);
+ --opacity-color-08: rgba(255, 255, 255, 0.08);
+ --opacity-color-10: rgba(255, 255, 255, 0.1);
+ --opacity-color-12: rgba(255, 255, 255, 0.12);
+ --opacity-color-15: rgba(255, 255, 255, 0.15);
+ --opacity-color-20: rgba(255, 255, 255, 0.2);
+ --opacity-color-25: rgba(255, 255, 255, 0.25);
+ --opacity-color-100: rgba(255, 255, 255, 0.1);
+ --opacity-color-200: rgba(255, 255, 255, 0.2);
+ --opacity-color-300: rgba(255, 255, 255, 0.3);
+ --opacity-color-500: rgba(255, 255, 255, 0.5);
+ --opacity-color-05-invert: rgba(0, 0, 0, 0.05);
+ --opacity-color-08-invert: rgba(0, 0, 0, 0.08);
+ --opacity-color-10-invert: rgba(0, 0, 0, 0.1);
+ --opacity-color-12-invert: rgba(0, 0, 0, 0.12);
+ --opacity-color-15-invert: rgba(0, 0, 0, 0.15);
+ --opacity-color-20-invert: rgba(0, 0, 0, 0.2);
+ --opacity-color-25-invert: rgba(0, 0, 0, 0.25);
+}
+
+hr {
+ border: 1px solid var(--color);
+ margin-top: var(--mb-0-25);
+ margin-bottom: var(--mb-0-25);
+}
+.horizontal-line {
+ width: 100%;
+ height: 2px;
+ border-radius: 2px;
+ background-color: var(--color);
+ margin-top: var(--mb-0-5);
+ margin-bottom: var(--mb-1);
+}
+.nav_btns {
+ display: flex;
+ align-items: center;
+}
+
+.change-theme {
+ font-size: 1.25;
+ color: var(--title-color);
+ margin-right: var(--mb-1);
+ cursor: pointer;
+ transition: 0.2s;
+}
+.change-theme:hover {
+ color: var(--color);
+ transition: 0.2s;
+}
+
+/* TODO: BASE */
+
+* {
+ box-sizing: border-box;
+ padding: 0;
+ margin: 0;
+ -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
+}
+*:before,
+*:after {
+ box-sizing: border-box;
+}
+html {
+ scroll-behavior: smooth;
+ overflow-x: hidden;
+ -webkit-font-smoothing: antialiased;
+}
+body {
+ font-family: var(--body-font);
+ font-size: var(--normal-font);
+ margin: 0 0 var(--header-height) 0;
+ background-color: var(--body-color);
+ color: var(--text-color);
+ user-select: none;
+ overflow: hidden;
+}
+h1,
+h2,
+h3,
+h4 {
+ color: var(--title-color);
+ font-weight: var(--font-semi-bold);
+}
+p {
+ user-select: text;
+}
+img {
+ max-width: 100%;
+ max-height: auto;
+}
+a {
+ text-decoration: none;
+ color: var(--text-color);
+ transition: 0.2s;
+}
+a:hover {
+ color: var(--color);
+ transition: 0.2s;
+}
+ul {
+ list-style: none;
+}
+:disabled {
+ cursor: not-allowed !important;
+}
+::selection {
+ background: var(--color);
+ color: #fff;
+ user-select: none;
+ cursor: default;
+}
+.flex {
+ display: flex;
+}
+.space-between {
+ justify-content: space-between;
+}
+
+/* TODO: REUSABLE CSS CLASSES */
+.section {
+ padding: 2rem 0 4rem;
+}
+.section_title {
+ font-size: var(--h1-font);
+}
+.section_subtitle {
+ display: block;
+ font-size: var(--small-font);
+ margin-bottom: var(--mb-2);
+}
+.section_title,
+.section_subtitle {
+ text-align: center;
+}
+
+/* TODO: LOADER */
+
+#loading {
+ position: fixed;
+ width: 100%;
+ height: 100vh;
+ background-color: var(--body-color);
+ z-index: var(--z-model);
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+.loading_image {
+ width: 40%;
+ max-height: 40%;
+ fill: var(--svg-fill);
+ justify-self: center;
+ animation: loading 1.5s;
+ animation-iteration-count: infinite;
+}
+@keyframes loading {
+ 0% {
+ opacity: 0;
+ }
+ 10% {
+ opacity: 0.2;
+ }
+ 20% {
+ opacity: 0.4;
+ }
+ 30% {
+ opacity: 0.6;
+ }
+ 40% {
+ opacity: 0.8;
+ }
+ 50% {
+ opacity: 1;
+ }
+ 60% {
+ opacity: 0.8;
+ }
+ 70% {
+ opacity: 0.6;
+ }
+ 80% {
+ opacity: 0.4;
+ }
+ 90% {
+ opacity: 0.2;
+ }
+ 100% {
+ opacity: 0;
+ }
+}
+
+/* TODO: LAYOUT */
+
+.container {
+ max-width: 768px;
+ margin-left: var(--mb-1-5);
+ margin-right: var(--mb-1-5);
+}
+.grid {
+ display: grid;
+ gap: 1.5rem;
+}
+.header {
+ width: 100%;
+ position: fixed;
+ left: 0;
+ bottom: 0;
+ z-index: var(--z-fixed);
+}
+.header_bg {
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ background-color: var(--body-color);
+ top: -15px;
+ left: 0;
+ z-index: -1;
+ filter: blur(10px);
+}
+.header_bg-mobile {
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ background-color: var(--body-color);
+ top: 0;
+ left: 0;
+ z-index: -1;
+ box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.15);
+}
+
+/*TODO: NAV */
+.nav {
+ max-width: 968;
+ height: var(--header-height);
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+}
+.nav_logo,
+.nav_toggle {
+ color: var(--title-color);
+ font-weight: var(--font-medium);
+}
+.nav_logo:hover {
+ color: var(--color);
+}
+.nav_toggle {
+ font-size: 1.1rem;
+ cursor: pointer;
+}
+.nav_toggle:hover {
+ color: var(--color);
+}
+
+@media screen and (max-width: 767px) {
+ .nav_menu {
+ position: fixed;
+ bottom: -100%;
+ left: 0;
+ width: 100%;
+ background-color: var(--body-color);
+ padding: 2rem 1.5rem 4rem;
+ box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.15);
+ border-radius: 1.5rem 1.5rem 0 0;
+ transition: 0.3s;
+ }
+}
+.nav_list {
+ grid-template-columns: repeat(3, 1fr);
+ gap: 2rem;
+}
+.grid_span {
+ text-align: center;
+ margin-left: auto;
+ margin-right: auto;
+ grid-column: auto / span 3;
+}
+.nav_link {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ font-size: var(--small-font);
+ color: var(--title-color);
+ font-weight: var(--font-medium);
+}
+.nav_link:hover {
+ color: var(--color);
+}
+.nav_icon {
+ font-size: 1.2rem;
+}
+.nav_close {
+ position: absolute;
+ right: 1.3rem;
+ bottom: 0.5rem;
+ font-size: 2rem;
+ cursor: pointer;
+ color: var(--color);
+}
+.nav_close:hover {
+ color: var(--color-alt);
+}
+.show_menu {
+ bottom: 0;
+}
+
+.active-link {
+ color: var(--color);
+}
+.scroll-header {
+ top: -3px;
+ filter: blur(2px);
+}
+/*== Active link ==*/
+.active {
+ color: var(--color);
+}
+select {
+ color: var(--color);
+}
+/*TODO: Buttons */
+button {
+ cursor: pointer;
+ border: none;
+ outline: none;
+ font-size: var(--normal-font);
+ font-weight: var(--font-medium);
+ font-family: var(--body-font);
+}
+.loader {
+ border: 2px solid var(--opacity-color-20);
+ border-top: 2px solid #fff;
+ border-radius: 50%;
+ width: 1.1rem;
+ height: 1.1rem;
+ animation: spin 2s linear infinite;
+}
+.loader_go {
+ border: 2px solid var(--opacity-color-20);
+ border-top: 10px solid #fff;
+ border-radius: 50%;
+ width: calc(var(--normal-font) * 9);
+ height: calc(var(--normal-font) * 9);
+ animation: spin 2s linear infinite;
+}
+@keyframes spin {
+ 0% {
+ transform: rotate(0deg);
+ }
+ 100% {
+ transform: rotate(360deg);
+ }
+}
+.button {
+ display: inline-block;
+ background-color: var(--color);
+ color: #fff;
+ padding: 1rem;
+ border-radius: 0.5rem;
+ font-weight: var(--font-medium);
+ transition: 0.3s;
+}
+.button_go {
+ display: inline-block;
+ background-color: rgba(55, 255, 200, 0.8);
+ color: #fff;
+ padding: 1rem;
+ border-radius: 1rem;
+ font-weight: var(--font-medium);
+ font-size: calc(var(--normal-font) * 7.5);
+ transition: 0.3s;
+}
+.button_go:hover {
+ background-color: rgba(55, 255, 200, 0.7);
+ transition: 0.3s;
+}
+.button:hover {
+ background-color: var(--color-alt);
+ transition: 0.3s;
+}
+.button_title {
+ color: #fff;
+ margin-bottom: 1rem;
+}
+.button_subtitle {
+ color: #fff;
+ font-size: var(--small-font);
+}
+.button_icon {
+ font-size: 1.25rem;
+ margin-left: var(--mb-0-5);
+ transition: 0.3s;
+}
+.button--flex {
+ display: inline-flex;
+ align-items: center;
+}
+/*TODO Color button */
+.theme-colors {
+ display: inline-flex;
+ margin-top: auto;
+ margin-bottom: auto;
+ gap: 0.25rem;
+}
+.theme-colors .color {
+ margin-top: auto;
+ margin-bottom: auto;
+ border-radius: 1rem;
+ height: var(--small-font);
+ width: var(--small-font);
+ transition: 0.1s;
+ cursor: pointer;
+}
+
+.theme-colors .color:hover {
+ border: 2px solid var(--body-color);
+ transition: 0.1s;
+}
+
+@media screen and (max-width: 767px) {
+ .theme-colors {
+ gap: 1rem;
+ }
+ .theme-colors .color {
+ border-radius: 1.2rem;
+ height: 1.2rem;
+ width: 1.2rem;
+ }
+}
+/*TODO: Box */
+.box_container {
+ gap: 1.5rem;
+ grid-template-columns: repeat(1, 1fr);
+}
+.box_bg {
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ background-color: var(--container-color);
+ opacity: 0.6;
+ top: 0;
+ left: 0;
+ z-index: -1;
+ border-radius: 1rem;
+}
+.box_content {
+ position: relative;
+ padding: 1rem;
+ border-radius: 1rem;
+ min-width: 280px;
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
+ transition: 0.3s;
+ overflow: hidden !important;
+}
+.box_content:hover {
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
+}
+.box_icon {
+ display: block;
+ font-size: 1.5rem;
+ color: var(--color);
+ margin-top: auto;
+ margin-bottom: auto;
+}
+.box_button_icon {
+ position: absolute;
+ bottom: 0;
+ right: 0;
+ font-size: calc(var(--normal-font) * 10);
+ color: #fff;
+ opacity: 0.3;
+}
+.box_header {
+ display: flex;
+ margin-bottom: 1rem;
+}
+.box_header_absolute {
+ background-color: var(--color);
+ color: #fff;
+ border-radius: 0 0 0.5rem 0.5rem;
+ border: 0;
+ width: 35%;
+ outline: 0;
+ position: absolute;
+ top: 0;
+ left: 50%;
+ transform: translateX(-50%);
+ padding: 0.2rem 0rem;
+ text-align: center;
+}
+.box_header-benchmark {
+ margin-bottom: 0.5rem;
+ margin-left: 1rem;
+ margin-right: 1rem;
+}
+.box_title {
+ font-size: var(--h3-font);
+ font-weight: var(--font-medium);
+ margin-top: auto;
+ margin-bottom: auto;
+}
+.box_subtitle-content {
+ font-size: x-small;
+}
+.box_content-container {
+ grid-template-columns: repeat(1, 1fr);
+ gap: 1rem;
+ display: grid;
+}
+.box_subtitle-header {
+ margin-top: auto;
+ margin-bottom: auto;
+}
+.box_subtitle-text {
+ font-size: var(--small-font);
+}
+.box_subtitle-header-icon {
+ font-size: 2.8rem;
+ color: var(--color);
+ margin-top: auto;
+ margin-bottom: auto;
+ margin-right: var(--mb-1);
+}
+.box_subtitle {
+ margin-bottom: var(--mb-1);
+ font-size: var(--small-font);
+}
+.box_subtitle_value {
+ background-color: var(--color);
+ border-radius: 1rem;
+ padding: 0.25rem 1.1rem 0.25rem 1.1rem;
+ text-align: center;
+ font-weight: var(--font-medium);
+ color: #fff;
+ margin-bottom: var(--mb-0-5);
+ white-space: nowrap;
+}
+.box_subtitle-gap {
+ display: flex;
+ justify-content: space-between;
+}
+.box_sub_content-container {
+ grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
+ column-gap: 3rem;
+ display: grid;
+}
+
+.box_sub_content-box {
+ margin-bottom: var(--mb-0-5);
+ white-space: nowrap !important;
+}
+.box_sub_content {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ font-size: var(--smallest-font);
+}
+.box_sub_content p {
+ margin-bottom: 0.2rem;
+}
+.box_sub_content-subject {
+ font-size: xx-small;
+ color: var(--color-lighter);
+}
+.box_button {
+ position: absolute;
+ bottom: 0;
+ right: 0;
+ cursor: pointer;
+ font-size: var(--small-font);
+ background-color: var(--color);
+ padding: 0.1rem 0.2rem;
+ border-radius: 0.25rem 0;
+ color: #fff;
+}
+.box_button:hover {
+ color: #fff;
+}
+.button--small {
+ padding: 0.75rem 1rem;
+}
+.button--link {
+ padding: 0;
+ background-color: transparent;
+ color: var(--color);
+}
+.button--link:hover {
+ background-color: transparent;
+ color: var(--color-alt);
+}
+.box_button:hover .button_icon {
+ transform: translateX(0.25rem);
+}
+.box_fullscreen {
+ position: fixed;
+ top: 1%;
+ bottom: calc(0.5% + var(--header-height));
+ left: 0.5%;
+ right: 0.5%;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ z-index: 1;
+ margin: 1%;
+ animation: fullscreen 0.5s;
+ animation-iteration-count: 1;
+}
+@keyframes fullscreen {
+ 0% {
+ right: 30%;
+ top: 100%;
+ left: 30%;
+ }
+ 100% {
+ right: 0.5%;
+ left: 0.5%;
+ top: 1%;
+ }
+}
+.box_model {
+ position: fixed;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 105%;
+ backdrop-filter: blur(8px);
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ z-index: 1;
+ transition: 0.3s;
+ opacity: 0;
+ visibility: hidden;
+}
+.box_model-content {
+ position: absolute;
+ top: 100%;
+ left: 100%;
+}
+.active-model-content {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+ width: 100%;
+ overflow-y: auto;
+ height: 95%;
+}
+.box_model-status {
+ max-width: 450px;
+ margin-left: auto;
+ margin-right: auto;
+ max-height: auto;
+ margin-top: 10%;
+ margin-bottom: auto;
+ padding: 1.25rem;
+ border-radius: 1rem;
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
+ transition: 0.3s;
+ background-color: var(--container-color);
+}
+.active-model-content::-webkit-scrollbar {
+ display: none;
+ width: 0;
+}
+.bg-color-table {
+ position: absolute;
+ width: 100%;
+ height: 85%;
+ background-color: var(--container-color);
+ opacity: 0.9;
+ top: 15%;
+ left: 0;
+ z-index: -1;
+}
+.box_model-services {
+ row-gap: 1rem;
+}
+.box_model-service {
+ display: flex;
+}
+.box_model-title {
+ font-size: var(--h3-font);
+ font-weight: var(--font-medium);
+ margin-bottom: var(--mb-1-5);
+}
+.box_model-close {
+ position: relative;
+ margin-top: 0;
+ margin-bottom: auto;
+ font-size: 1.5rem;
+ color: var(--color);
+ cursor: pointer;
+}
+.box_model-icon {
+ color: var(--color);
+ margin-right: var(--mb-0-25);
+}
+
+.active-model {
+ opacity: 1;
+ visibility: visible;
+}
+/* TODO: Swipe */
+.swipe_container {
+ overflow: initial;
+}
+.swipe_content {
+ padding: 0 1.5rem;
+}
+.swipe_img {
+ width: 265px;
+ border-radius: 0.5rem;
+ justify-self: center;
+}
+.swipe_title {
+ font-size: var(--h3-font);
+ margin-bottom: var(--mb-0-5);
+}
+.swipe_description {
+ margin-bottom: var(--mb-0-75);
+}
+.swipe_button:hover .button_icon {
+ transform: translateX(0.25rem);
+}
+.swiper-button-prev::after,
+.swiper-button-next::after {
+ content: "";
+}
+.swiper-portfolio-icon {
+ font-size: 2rem;
+ color: var(--color);
+}
+.swiper-button-prev {
+ left: -0.5rem;
+}
+.swiper-button-next {
+ right: -0.5rem;
+}
+.swiper-container-horizontal > .swiper-pagination-bullets {
+ bottom: -2.5rem;
+}
+.swiper-pagination-bullet-active {
+ background-color: var(--color);
+}
+.swiper-button-prev,
+.swiper-button-next,
+.swiper-pagination-bullet {
+ outline: none;
+}
+
+/* TODO: Scroll Up */
+.scroll_up {
+ position: fixed;
+ right: 1rem;
+ bottom: -20%;
+ background-color: var(--color);
+ opacity: 0.5;
+ padding: 0.3rem;
+ border-radius: 0.4rem;
+ z-index: var(--z-tooltip);
+ transition: 0.4s;
+}
+.scroll_up:hover {
+ background-color: var(--color-alt);
+ opacity: 0.8;
+}
+.scroll_up-icon {
+ font-size: 1.5rem;
+ color: var(--color-lighter);
+}
+.show-scroll {
+ bottom: 5rem;
+}
+
+/* TODO: Scroll Bar */
+::-webkit-scrollbar {
+ width: 0.4rem;
+ background-color: var(--scroll-bar);
+ border-radius: 0.5rem;
+ height: 0.3rem;
+}
+::-webkit-scrollbar-thumb {
+ background-color: var(--scroll-thumb);
+ border-radius: 0.5rem;
+}
+::-webkit-scrollbar-thumb:hover {
+ background-color: var(--text-color-light);
+}
+/*TODO: Notification */
+@keyframes awn-fade-in {
+ 0% {
+ opacity: 0;
+ }
+ to {
+ opacity: 1;
+ }
+}
+@keyframes awn-fade-out {
+ 0% {
+ opacity: 1;
+ }
+ to {
+ opacity: 0;
+ }
+}
+@keyframes awn-slide-right {
+ 0% {
+ left: 100%;
+ opacity: 0;
+ }
+ to {
+ left: 0;
+ opacity: 1;
+ }
+}
+@keyframes awn-slide-left {
+ 0% {
+ opacity: 0;
+ right: 100%;
+ }
+ to {
+ opacity: 1;
+ right: 0;
+ }
+}
+@keyframes awn-bar {
+ 0% {
+ right: 100%;
+ }
+ to {
+ right: 0;
+ }
+}
+.errorlist li {
+ margin-bottom: 0.5rem;
+}
+.awn-popup-loading-dots,
+.awn-popup-loading-dots:after,
+.awn-popup-loading-dots:before {
+ animation-fill-mode: both;
+ animation: awn-loading-dots 1s ease-in-out infinite;
+ background: #fff;
+ border-radius: 50%;
+ height: 6px;
+ width: 6px;
+}
+.awn-popup-loading-dots {
+ animation-delay: -0.16s;
+ color: #fff;
+ display: inline-block;
+ margin-left: 24px;
+ position: relative;
+}
+.awn-popup-loading-dots:after,
+.awn-popup-loading-dots:before {
+ content: "";
+ position: absolute;
+ top: 0;
+}
+.awn-popup-loading-dots:before {
+ animation-delay: -0.32s;
+ left: -16px;
+}
+.awn-popup-loading-dots:after {
+ left: 16px;
+}
+@keyframes awn-loading-dots {
+ 0%,
+ 80%,
+ to {
+ box-shadow: 0 0 0 0;
+ }
+ 40% {
+ box-shadow: 0 0 0 2px;
+ }
+}
+#awn-popup-wrapper {
+ align-items: center;
+ animation-fill-mode: both;
+ animation-name: awn-fade-in;
+ animation-timing-function: ease-out;
+ bottom: 0;
+ display: flex;
+ justify-content: center;
+ left: 0;
+ opacity: 0;
+ position: fixed;
+ right: 0;
+ top: 0;
+ z-index: 99999;
+ backdrop-filter: blur(8px);
+}
+#awn-popup-wrapper.awn-hiding {
+ animation-name: awn-fade-out;
+}
+#awn-popup-wrapper .awn-popup-body {
+ background: var(--color);
+ color: #fff;
+ border-radius: 0.5rem;
+ font-size: 1rem;
+ max-width: 500px;
+ min-width: 320px;
+ padding: 24px;
+ position: relative;
+ word-break: break-word;
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
+}
+#awn-popup-wrapper .awn-popup-body.awn-popup-confirm {
+ align-items: center;
+ display: flex;
+ flex-direction: column;
+}
+#awn-popup-wrapper .awn-popup-body.awn-popup-confirm .fa {
+ color: #c26700;
+ font-size: 44px;
+}
+#awn-popup-wrapper .awn-popup-body.awn-popup-async-block {
+ background: transparent;
+ color: #fff;
+ font-size: 32px;
+ font-weight: 700;
+ text-align: center;
+}
+#awn-popup-wrapper .awn-popup-title {
+ font-size: 14px;
+ font-weight: 700;
+ margin-top: 8px;
+ text-transform: uppercase;
+}
+#awn-popup-wrapper .awn-buttons {
+ display: flex;
+ justify-content: space-between;
+ margin-top: 24px;
+ width: 100%;
+}
+#awn-popup-wrapper .awn-buttons .awn-btn {
+ border: 0;
+ border-radius: 4px;
+ color: #fff;
+ font-size: 14px;
+ font-weight: 700;
+ line-height: 32px;
+ transition: background 0.2s linear;
+ width: 45%;
+}
+#awn-popup-wrapper .awn-buttons-1 .awn-btn {
+ width: 100%;
+}
+#awn-popup-wrapper .awn-buttons .awn-btn-success {
+ background: #40871d;
+}
+#awn-popup-wrapper .awn-buttons .awn-btn-success:hover {
+ background: #367218;
+}
+#awn-popup-wrapper .awn-buttons .awn-btn-cancel {
+ background: #1c76a6;
+}
+#awn-popup-wrapper .awn-buttons .awn-btn-cancel:hover {
+ background: #186690;
+}
+#awn-toast-container {
+ bottom: 24px;
+ box-sizing: border-box;
+ position: fixed;
+ right: 24px;
+ z-index: 99998;
+}
+#awn-toast-container.awn-top-left,
+#awn-toast-container.awn-top-right {
+ bottom: auto;
+ top: 4rem;
+}
+#awn-toast-container.awn-top-left .awn-toast:first-child,
+#awn-toast-container.awn-top-right .awn-toast:first-child {
+ margin-top: 1px;
+}
+#awn-toast-container.awn-bottom-left,
+#awn-toast-container.awn-top-left {
+ left: 24px;
+ right: auto;
+}
+#awn-toast-container.awn-bottom-left .awn-toast,
+#awn-toast-container.awn-top-left .awn-toast {
+ animation-name: awn-slide-left;
+ right: 100%;
+}
+#awn-toast-container.awn-bottom-left .awn-toast.awn-hiding,
+#awn-toast-container.awn-top-left .awn-toast.awn-hiding {
+ right: 0;
+}
+#awn-toast-container.awn-bottom-right .awn-toast,
+#awn-toast-container.awn-top-right .awn-toast {
+ animation-name: awn-slide-right;
+ left: 100%;
+}
+#awn-toast-container.awn-bottom-right .awn-toast.awn-hiding,
+#awn-toast-container.awn-top-right .awn-toast.awn-hiding {
+ left: 0;
+}
+.awn-toast {
+ animation-fill-mode: both;
+ animation-timing-function: linear;
+ border-radius: 0.5rem;
+ color: var(--color);
+ cursor: pointer;
+ font-size: var(--font-medium);
+ margin-top: 1rem;
+ opacity: 0;
+ overflow: hidden;
+ position: relative;
+ width: 320px;
+ border: 2px solid var(--text-color);
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
+}
+.awn-toast-content {
+ word-break: break-word;
+}
+.awn-toast-label {
+ color: #fff;
+ display: block;
+ font-size: var(--h3-font);
+ text-transform: uppercase;
+ margin-bottom: 0.2rem;
+}
+.awn-toast-icon {
+ align-items: center;
+ bottom: 0;
+ display: flex;
+ justify-content: flex-end;
+ position: absolute;
+ right: 16px;
+ top: 2px;
+ font-size: 42px;
+}
+.awn-toast-icon .fa {
+ color: #fff;
+ font-size: 44px;
+}
+.awn-toast-wrapper {
+ border-radius: 0.5rem;
+ padding: 10px 75px 10px 16px;
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
+}
+.awn-toast-progress-bar {
+ height: 3px;
+ left: 0;
+ position: absolute;
+ right: 0;
+ bottom: 0;
+}
+.awn-toast-progress-bar:after {
+ animation-duration: inherit;
+ animation-fill-mode: both;
+ animation-name: awn-bar;
+ animation-timing-function: linear;
+ background: #fff;
+ content: " ";
+ height: 3px;
+ position: absolute;
+ right: 100%;
+ top: 0;
+ width: 100%;
+}
+.awn-toast.awn-toast-progress-bar-paused .awn-toast-progress-bar:after {
+ animation-play-state: paused;
+}
+.awn-toast.awn-hiding {
+ animation-name: awn-fade-out !important;
+}
+.awn-toast.awn-toast-success {
+ background: var(--container-color);
+ color: var(--text-color);
+}
+.awn-toast.awn-toast-success .awn-toast-wrapper {
+ border-color: #a7d590;
+}
+.awn-toast.awn-toast-success .fa,
+.awn-toast.awn-toast-success b {
+ color: #a2ff73;
+}
+.awn-toast.awn-toast-success .awn-toast-progress-bar:after {
+ background: #a2ff73;
+}
+.awn-toast.awn-toast-info {
+ background: var(--container-color);
+ color: var(--text-color);
+}
+.awn-toast.awn-toast-info .awn-toast-wrapper {
+ border-color: #9fd3ef;
+}
+.awn-toast.awn-toast-info .fa,
+.awn-toast.awn-toast-info b {
+ color: #307ba3;
+}
+.awn-toast.awn-toast-info .awn-toast-progress-bar:after {
+ background: #307ba3;
+}
+.awn-toast.awn-toast-alert {
+ background: var(--container-color);
+ color: var(--text-color);
+}
+.awn-toast.awn-toast-alert .awn-toast-wrapper {
+ border-color: #f0a29d;
+}
+.awn-toast.awn-toast-alert .fa,
+.awn-toast.awn-toast-alert b {
+ color: #aa3731;
+}
+.awn-toast.awn-toast-alert .awn-toast-progress-bar:after {
+ background: #aa3731;
+}
+.awn-toast.awn-toast-warning {
+ background: var(--container-color);
+ color: var(--text-color);
+}
+.awn-toast.awn-toast-warning .awn-toast-wrapper {
+ border-color: #ffc480;
+}
+.awn-toast.awn-toast-warning .fa,
+.awn-toast.awn-toast-warning b {
+ color: #bb7a30;
+}
+.awn-toast.awn-toast-warning .awn-toast-progress-bar:after {
+ background: #bb7a30;
+}
+[class^="awn-"] {
+ box-sizing: border-box;
+}
+/*TODO: Context Menu */
+@-webkit-keyframes cm-spin {
+ 0% {
+ -webkit-transform: translateY(-50%) rotate(0deg);
+ transform: translateY(-50%) rotate(0deg);
+ }
+ 100% {
+ -webkit-transform: translateY(-50%) rotate(359deg);
+ transform: translateY(-50%) rotate(359deg);
+ }
+}
+@-o-keyframes cm-spin {
+ 0% {
+ -webkit-transform: translateY(-50%) rotate(0deg);
+ -o-transform: translateY(-50%) rotate(0deg);
+ transform: translateY(-50%) rotate(0deg);
+ }
+ 100% {
+ -webkit-transform: translateY(-50%) rotate(359deg);
+ -o-transform: translateY(-50%) rotate(359deg);
+ transform: translateY(-50%) rotate(359deg);
+ }
+}
+@keyframes cm-spin {
+ 0% {
+ -webkit-transform: translateY(-50%) rotate(0deg);
+ -o-transform: translateY(-50%) rotate(0deg);
+ transform: translateY(-50%) rotate(0deg);
+ }
+ 100% {
+ -webkit-transform: translateY(-50%) rotate(359deg);
+ -o-transform: translateY(-50%) rotate(359deg);
+ transform: translateY(-50%) rotate(359deg);
+ }
+}
+
+.context-menu-icon::before {
+ position: absolute;
+ top: 50%;
+ left: 0;
+ width: 2em;
+ font-size: 1em;
+ font-style: normal;
+ font-weight: normal;
+ line-height: 1;
+ color: #2980b9;
+ text-align: center;
+ -webkit-transform: translateY(-50%);
+ -ms-transform: translateY(-50%);
+ -o-transform: translateY(-50%);
+ transform: translateY(-50%);
+
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+.context-menu-icon.context-menu-hover:before {
+ color: #fff;
+}
+
+.context-menu-icon.context-menu-disabled::before {
+ color: #bbb;
+}
+
+.context-menu-icon.context-menu-icon-loading:before {
+ -webkit-animation: cm-spin 2s infinite;
+ -o-animation: cm-spin 2s infinite;
+ animation: cm-spin 2s infinite;
+}
+
+.context-menu-icon.context-menu-icon--fa {
+ display: list-item;
+ font-family: inherit;
+ line-height: inherit;
+}
+.context-menu-icon.context-menu-icon--fa::before {
+ position: absolute;
+ top: 50%;
+ left: 0;
+ width: 2em;
+ font-family: FontAwesome;
+ font-size: 1em;
+ font-style: normal;
+ font-weight: normal;
+ line-height: 1;
+ color: #2980b9;
+ text-align: center;
+ -webkit-transform: translateY(-50%);
+ -ms-transform: translateY(-50%);
+ -o-transform: translateY(-50%);
+ transform: translateY(-50%);
+
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+.context-menu-icon.context-menu-icon--fa.context-menu-hover:before {
+ color: #fff;
+}
+.context-menu-icon.context-menu-icon--fa.context-menu-disabled::before {
+ color: #bbb;
+}
+
+.context-menu-icon.context-menu-icon--fa5 {
+ display: list-item;
+ font-family: inherit;
+ line-height: inherit;
+}
+.context-menu-icon.context-menu-icon--fa5 i,
+.context-menu-icon.context-menu-icon--fa5 svg {
+ position: absolute;
+ top: 0.3em;
+ left: 0.5em;
+ color: #2980b9;
+}
+.context-menu-icon.context-menu-icon--fa5.context-menu-hover > i,
+.context-menu-icon.context-menu-icon--fa5.context-menu-hover > svg {
+ color: #fff;
+}
+.context-menu-icon.context-menu-icon--fa5.context-menu-disabled i,
+.context-menu-icon.context-menu-icon--fa5.context-menu-disabled svg {
+ color: #bbb;
+}
+
+.context-menu-list {
+ position: absolute;
+ display: inline-block;
+ min-width: 12rem;
+ max-width: 24rem;
+ padding: 0.5rem 0;
+ margin: 0.2rem;
+ font-family: inherit;
+ font-size: inherit;
+ list-style-type: none;
+ background: var(--container-color);
+ border-radius: 0.5rem;
+ -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
+}
+
+.context-menu-item {
+ position: relative;
+ -webkit-box-sizing: content-box;
+ -moz-box-sizing: content-box;
+ box-sizing: content-box;
+ padding: 0.5rem 1rem;
+ color: var(--text-color);
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+}
+.context_menu-icon {
+ margin-right: 0.25rem;
+ font-weight: 600;
+}
+
+.context-menu-separator {
+ padding: 0;
+ margin: 0.35em 0;
+ border-bottom: 1px solid rgba(0, 0, 0, 0.2);
+}
+
+.context-menu-item > label > input,
+.context-menu-item > label > textarea {
+ -webkit-user-select: text;
+ -moz-user-select: text;
+ -ms-user-select: text;
+ user-select: text;
+}
+
+.context-menu-item.context-menu-hover {
+ color: #fff;
+ cursor: pointer;
+ background-color: var(--color);
+}
+
+.context-menu-item.context-menu-disabled {
+ color: #bbb;
+ cursor: default;
+ background-color: #fff;
+}
+
+.context-menu-input.context-menu-hover {
+ color: #2f2f2f;
+ cursor: default;
+}
+
+.context-menu-submenu:after {
+ position: absolute;
+ top: 50%;
+ right: 0.5em;
+ z-index: 1;
+ width: 0;
+ height: 0;
+ content: "";
+ border-color: transparent transparent transparent var(--text-color);
+ border-style: solid;
+ border-width: 0.25em 0 0.25em 0.25em;
+ -webkit-transform: translateY(-50%);
+ -ms-transform: translateY(-50%);
+ -o-transform: translateY(-50%);
+ transform: translateY(-50%);
+}
+.context-menu-submenu.context-menu-hover:after {
+ border-color: transparent transparent transparent #fff;
+}
+/**
+ * Inputs
+ */
+.context-menu-item.context-menu-input {
+ padding: 0.3em 0.6em;
+}
+
+/* vertically align inside labels */
+.context-menu-input > label > * {
+ vertical-align: top;
+}
+
+/* position checkboxes and radios as icons */
+.context-menu-input > label > input[type="checkbox"],
+.context-menu-input > label > input[type="radio"] {
+ position: relative;
+ top: 0.12em;
+ margin-right: 0.4em;
+}
+
+.context-menu-input > label {
+ margin: 0;
+}
+
+.context-menu-input > label,
+.context-menu-input > label > input[type="text"],
+.context-menu-input > label > textarea,
+.context-menu-input > label > select {
+ display: block;
+ width: 100%;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+}
+
+.context-menu-input > label > textarea {
+ height: 7em;
+}
+
+.context-menu-item > .context-menu-list {
+ top: 0.3em;
+ /* re-positioned by js */
+ right: -0.3em;
+ display: none;
+}
+
+.context-menu-item.context-menu-visible > .context-menu-list {
+ display: block;
+}
+
+.context-menu-accesskey {
+ text-decoration: underline;
+}
+
+/*TODO: Home */
+.home_container {
+ gap: 1rem;
+}
+.home_content {
+ grid-template-columns: 0.5fr 3fr;
+ padding-top: 3.5rem;
+ align-items: center;
+}
+.home_social {
+ display: grid;
+ grid-template-columns: max-content;
+ row-gap: 1rem;
+}
+.home_social-icon {
+ font-size: 1.2rem;
+ color: var(--color);
+ cursor: pointer;
+}
+.home_social-icon:hover {
+ color: var(--color-alt);
+}
+.home_nukehub {
+ fill: var(--svg-fill);
+}
+.home_nukehub-circle-light {
+ fill: var(--color);
+}
+.home_nukehub-circle {
+ fill: var(--color-alt);
+}
+.home_nukehub:hover {
+ animation: shake 0.5s;
+}
+.home_nukehub:active {
+ animation: shake 0.5s;
+ animation-iteration-count: infinite;
+}
+@keyframes shake {
+ 0% {
+ transform: translate(1px, 1px) rotate(0deg);
+ }
+ 10% {
+ transform: translate(-1px, -2px) rotate(-1deg);
+ }
+ 20% {
+ transform: translate(-3px, 0px) rotate(1deg);
+ }
+ 30% {
+ transform: translate(3px, 2px) rotate(0deg);
+ }
+ 40% {
+ transform: translate(1px, -1px) rotate(1deg);
+ }
+ 50% {
+ transform: translate(-1px, 2px) rotate(-1deg);
+ }
+ 60% {
+ transform: translate(-3px, 1px) rotate(0deg);
+ }
+ 70% {
+ transform: translate(3px, 1px) rotate(-1deg);
+ }
+ 80% {
+ transform: translate(-1px, -1px) rotate(1deg);
+ }
+ 90% {
+ transform: translate(1px, 2px) rotate(0deg);
+ }
+ 100% {
+ transform: translate(1px, -2px) rotate(-1deg);
+ }
+}
+.home_data {
+ grid-column: 1/3;
+}
+.home_title {
+ font-size: var(--big-font);
+ margin-bottom: var(--mb-0-75);
+}
+.home_subtitle {
+ font-size: var(--h3-font);
+ color: var(--text-color);
+ font-weight: var(--font-medium);
+ margin-bottom: var(--mb-0-75);
+}
+.home_description {
+ margin-bottom: var(--mb-2);
+}
+
+/*TODO: About */
+.about_description {
+ text-align: justify;
+ line-height: 1.5;
+ margin-bottom: var(--mb-1);
+}
+.about_description a {
+ color: var(--color);
+}
+.about_description a:hover {
+ text-decoration: underline;
+}
+/*TODO: Join */
+.join_img {
+ width: 90%;
+ border-radius: 0.5rem;
+ justify-self: center;
+ align-self: center;
+ object-fit: cover;
+ transition: all 0.3s ease-out;
+ cursor: pointer;
+}
+.join_img:hover {
+ transform: scale(1.1);
+ transition: 0.3s;
+}
+
+.join_description {
+ text-align: center;
+ margin-bottom: var(--mb-2-5);
+}
+
+.join_buttons {
+ display: flex;
+ justify-content: center;
+}
+.button--white {
+ background-color: var(--color-lighter);
+ color: var(--color);
+}
+.button--white:hover {
+ background-color: #fff;
+ transition: 0.3s;
+}
+
+/*TODO: Contact */
+.contact_container {
+ row-gap: 3rem;
+}
+.contact_information {
+ display: flex;
+ margin-bottom: var(--mb-2);
+}
+.contact_icon {
+ font-size: 2rem;
+ color: var(--color);
+ margin-right: var(--mb-0-75);
+}
+.contact_title {
+ font-size: var(--h3-font);
+ font-weight: var(--font-medium);
+}
+.contact_subtitle {
+ font-size: var(--small-font);
+ color: var(--text-color-light);
+}
+.contact_content {
+ background-color: var(--input-color);
+ border: 0.1rem solid var(--text-color);
+ border-radius: 0.5rem;
+ padding: 0.75rem 1rem 0.25rem;
+}
+.contact_input {
+ width: 100%;
+ background-color: var(--input-color);
+ color: var(--text-color);
+ font-family: var(--body-font);
+ font-size: var(--normal-font);
+ border: none;
+ outline: none;
+ padding: 0.25rem 0.5rem 0.5rem 0;
+}
+.contact_label {
+ font-size: var(--smaller-font);
+ color: var(--title-color);
+}
+textarea {
+ resize: vertical;
+}
+
+/*TODO: Footer */
+.footer {
+ padding-top: 2rem;
+}
+.footer_container {
+ grid-template-columns: repeat(2, 1fr);
+}
+.footer_logo{
+ grid-area: auto / span 2;
+}
+.footer_bg {
+ background-color: var(--color);
+ padding: 2rem 0 1rem;
+}
+.footer_title {
+ font-size: var(--h1-font);
+ margin-bottom: var(--mb-0-25);
+}
+.footer_subtitle {
+ font-size: var(--small-font);
+}
+.footer_link_title{
+ font-size: var(--h4-font);
+ margin-bottom: var(--mb-0-25);
+}
+.footer_links {
+ display: flex;
+ flex-direction: column;
+ row-gap: 0.25rem;
+ font-size: var(--smallest-font);
+}
+.footer_link:hover {
+ color: var(--color-lighter);
+}
+.footer_copy {
+ font-size: var(--smaller-font);
+ text-align: center;
+ color: #fff;
+ margin-top: var(--mb-3);
+}
+.footer_title,
+.footer_subtitle,
+.footer_link_title,
+.footer_link,
+.footer_social {
+ color: #fff;
+}
+/* TODO: Responsive */
+@media screen and (max-width: 410px) {
+ .container {
+ margin-left: var(--mb-1);
+ margin-right: var(--mb-1);
+ }
+ .nav_menu {
+ padding: 2rem 0.25rem 4rem;
+ }
+ .nav_list {
+ column-gap: 0;
+ }
+
+ .list_title {
+ font-size: var(--normal-font);
+ }
+
+ .box_container {
+ justify-content: center;
+ gap: 0.5rem;
+ }
+
+ .box_model {
+ padding: 0 0.5rem;
+ }
+ .home_content {
+ grid-template-columns: 0.25fr 3fr;
+ }
+ .footer_social {
+ font-size: 1.2rem;
+ margin-right: var(--mb-0-75);
+ }
+}
+
+@media screen and (min-width: 600px) {
+ .home_content {
+ grid-template-columns: max-content 1fr 1fr;
+ }
+ .home_data {
+ grid-column: initial;
+ }
+ .home_nukehub {
+ width: 320px;
+ transform: translateX(0);
+ }
+ .home_img {
+ order: 1;
+ justify-self: center;
+ }
+ .swipe_content {
+ border-radius: 1rem;
+ grid-template-columns: 1fr;
+ backdrop-filter: blur(15px);
+ }
+ .join_container,
+ .join_container {
+ grid-template-columns: repeat(2, 1fr);
+ }
+ .box_container {
+ gap: 1rem;
+ }
+ .footer_container {
+ grid-template-columns: repeat(3, 1fr);
+ }
+ .footer_logo{
+ grid-area: auto / span 3;
+ }
+}
+
+@media screen and (min-width: 768px) {
+ .container {
+ margin-left: auto;
+ margin-right: auto;
+ }
+ body {
+ margin: 0;
+ }
+ .section {
+ padding: 5rem 0 2rem;
+ }
+ .header {
+ top: 0;
+ bottom: initial;
+ }
+ .header,
+ .main,
+ .footer_container {
+ padding: 0 1rem;
+ }
+ .nav {
+ height: calc(var(--header-height) + 1.5rem);
+ column-gap: 1rem;
+ }
+ .nav_icon,
+ .nav_close,
+ .nav_toggle {
+ display: none;
+ }
+ .nav_list {
+ display: flex;
+ column-gap: 2rem;
+ }
+ .nav_menu {
+ margin-left: auto;
+ }
+ .show-scroll {
+ bottom: 2rem;
+ right: 2rem;
+ }
+ .content {
+ margin-left: 4rem;
+ transition: 0.3s;
+ }
+ .content-gap {
+ margin-left: 14rem;
+ transition: 0.3s;
+ }
+ .change-theme {
+ margin: 0;
+ }
+ .box_subtitle-header-icon {
+ font-size: 3.8rem;
+ color: var(--color);
+ margin-top: auto;
+ margin-bottom: auto;
+ margin-right: var(--mb-1);
+ }
+ .box_container,
+ .box_content-container {
+ grid-template-columns: repeat(2, 1fr);
+ display: grid;
+ justify-content: left;
+ grid-gap: var(--mb-1);
+ }
+ .box_fullscreen {
+ bottom: 1%;
+ left: calc(0.5% + 4rem);
+ }
+ @keyframes fullscreen {
+ 0% {
+ right: 30%;
+ top: 100%;
+ left: 30%;
+ }
+ 100% {
+ right: 0.5%;
+ left: calc(0.5% + 4rem);
+ top: 1%;
+ }
+ }
+ .box_fullscreen-gap {
+ left: calc(0.5% + 14rem);
+ }
+ div.box_content-container div.box_subtitle-header {
+ grid-column: auto;
+ }
+ div.box_content-container div.box_sub_content-container {
+ grid-column: auto / span 2;
+ }
+ .sample_box_container {
+ grid-template-columns: 1fr 1fr 1fr;
+ grid-template-rows: 0.5fr 0.5fr 1fr 0.5fr;
+ justify-content: left;
+ grid-template-areas:
+ "box1 box3 box3"
+ "box2 box3 box3"
+ "box4 box3 box3"
+ "box4 box5 box5";
+ }
+ .sample_box_container2 {
+ grid-template-columns: repeat(2, 1fr);
+ display: grid;
+ justify-content: left;
+ grid-gap: var(--mb-1-5);
+ }
+ #project-box {
+ grid-column: auto / span 2;
+ }
+ #box1 {
+ grid-area: box1;
+ }
+ #box2 {
+ grid-area: box2;
+ }
+ #box3 {
+ grid-area: box3;
+ }
+ #box4 {
+ grid-area: box4;
+ }
+ #box5 {
+ grid-area: box5;
+ }
+ #box6 {
+ grid-area: box6;
+ }
+ #box7 {
+ grid-area: box7;
+ }
+ #box8 {
+ grid-area: box8;
+ }
+ #box9 {
+ grid-area: box9;
+ }
+ #box10 {
+ grid-area: box10;
+ }
+ .box_icon {
+ font-size: 2rem;
+ }
+ .box_content {
+ padding: 1rem;
+ }
+ .select_content {
+ padding: 0;
+ }
+ .swipe_img {
+ width: 320px;
+ }
+ .swipe_content {
+ align-items: center;
+ }
+ .home_container {
+ row-gap: 4rem;
+ }
+ .home_content {
+ padding-top: 5.5rem;
+ column-gap: 2rem;
+ }
+ .home_nukehub {
+ width: 360px;
+ }
+ .join_container {
+ column-gap: 5rem;
+ }
+
+ .join_description {
+ text-align: initial;
+ }
+ .join_buttons {
+ justify-content: initial;
+ }
+ .footer_bg {
+ padding: 3rem 0 1.5rem;
+ }
+ .footer_copy {
+ margin-top: 4.5rem;
+ }
+}
+
+@media screen and (min-width: 1024px) and (max-height: 1280px) {
+ .header,
+ .main,
+ .footer_container {
+ padding: 0;
+ }
+ .swipe_content {
+ column-gap: 5rem;
+ }
+ .swiper-portfolio-icon {
+ font-size: 3.5rem;
+ }
+ .swiper-button-prev {
+ left: -3.5rem;
+ }
+ .swiper-button-next {
+ right: -3.5rem;
+ }
+ .swiper-container-horizontal > .swiper-pagination-bullets {
+ bottom: -4.5rem;
+ }
+ .model_caption {
+ font-size: 1.25rem;
+ bottom: 1%;
+ left: 50%;
+ transform: translate(-50%, -1%);
+ }
+ .home_nukehub {
+ width: 390px;
+ }
+ .home_social {
+ transform: translateX(-6rem);
+ }
+ .join_img {
+ width: 95%;
+ }
+ .join_form {
+ width: 460px;
+ }
+ .join_inputs {
+ grid-template-columns: repeat(2, 1fr);
+ }
+}
+@media screen and (min-width: 1024px) and (min-height: 1280px) {
+ .header,
+ .main,
+ .footer_container {
+ padding: 0;
+ }
+}
+
+/*TODO: Responsive for 2K and 4K*/
+@media screen and (min-width: 1900px) {
+ body {
+ zoom: 1.1;
+ }
+ .no-zoom {
+ zoom: calc(1 / 1.1);
+ }
+}
+@media screen and (min-width: 2800px) {
+ body {
+ zoom: 1.65;
+ }
+ .no-zoom {
+ zoom: calc(1 / 1.65);
+ }
+}
+@media screen and (min-width: 3800px) {
+ body {
+ zoom: 2.2;
+ }
+ .no-zoom {
+ zoom: calc(1 / 2.2);
+ }
+}
+/*TODO: Particles JS*/
+#particles-js {
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ position: fixed;
+ z-index: -100;
+ background-color: var(--body-color);
+ background-image: url("");
+ background-repeat: no-repeat;
+ background-position: 50% 50%;
+ filter: blur(4px);
+}
diff --git a/css/nukehub.min.css b/css/nukehub.min.css
new file mode 100644
index 0000000..95dbdae
--- /dev/null
+++ b/css/nukehub.min.css
@@ -0,0 +1 @@
+@import url(https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap);@font-face{font-family:NukeHub;src:url(fonts/NukeHub.eot?69h7nt);src:url(fonts/NukeHub.eot?69h7nt#iefix) format('embedded-opentype'),url(fonts/NukeHub.ttf?69h7nt) format('truetype'),url(fonts/NukeHub.woff?69h7nt) format('woff'),url(fonts/NukeHub.svg?69h7nt#NukeHub) format('svg');font-weight:400;font-style:normal;font-display:block}.icomoon-liga,i{font-family:NukeHub!important;speak:never;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;letter-spacing:0;-webkit-font-feature-settings:"liga";-moz-font-feature-settings:"liga=1";-moz-font-feature-settings:"liga";-ms-font-feature-settings:"liga" 1;font-feature-settings:"liga";-webkit-font-variant-ligatures:discretionary-ligatures;font-variant-ligatures:discretionary-ligatures;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.nuke-nukehub:before{content:"\e9b6"}.nuke-zoom:before{content:"\e9b7"}.nuke-book-3:before{content:"\e9ae"}.nuke-book-2:before{content:"\e9af"}.nuke-book-1 .path1:before{content:"\e9b0";color:#000}.nuke-book-1 .path2:before{content:"\e9b1";margin-left:-1em;color:#000}.nuke-help-4:before{content:"\e9b2"}.nuke-help-3:before{content:"\e9b3"}.nuke-help-2:before{content:"\e9b4"}.nuke-help-1:before{content:"\e9b5"}.nuke-nuclear-power-plant-2-remove:before{content:"\e9ac"}.nuke-nuclear-power-plant-add:before{content:"\e9ad"}.nuke-clock-2:before{content:"\e9aa"}.nuke-bell-1:before{content:"\e9ab"}.nuke-edit-node:before{content:"\e900"}.nuke-edit-profile:before{content:"\e901"}.nuke-profile-1:before{content:"\e902"}.nuke-settings-1:before{content:"\e903"}.nuke-settings-2:before{content:"\e904"}.nuke-settings-3:before{content:"\e905"}.nuke-application:before{content:"\e92b"}.nuke-break:before{content:"\e92c"}.nuke-construction1:before{content:"\e92d"}.nuke-construction-traffic-monochrome:before{content:"\e93d"}.nuke-device-search:before{content:"\e93e"}.nuke-fail:before{content:"\e93f"}.nuke-filter-1:before{content:"\e969"}.nuke-filter-2:before{content:"\e96a"}.nuke-group:before{content:"\e96b"}.nuke-login-1:before{content:"\e96c"}.nuke-logout-1:before{content:"\e99f"}.nuke-merge-cells:before{content:"\e9a0"}.nuke-power-plant-3:before{content:"\e9a1"}.nuke-solit-cells:before{content:"\e9a2"}.nuke-ungroup:before{content:"\e9a3"}.nuke-signup:before{content:"\e920"}.nuke-update-1:before{content:"\e921"}.nuke-update:before{content:"\e922"}.nuke-map:before{content:"\e92a"}.nuke-arrow-circle-right-ou:before{content:"\e906"}.nuke-dashboard-1:before{content:"\e907"}.nuke-arrow-circle-up-ou:before{content:"\e908"}.nuke-arrow-ios-back:before{content:"\e909"}.nuke-arrow-ios-downward:before{content:"\e90a"}.nuke-arrow-ios-upward:before{content:"\e90b"}.nuke-arrow-ios-forward:before{content:"\e90c"}.nuke-expand:before{content:"\e90d"}.nuke-collapse:before{content:"\e90e"}.nuke-move:before{content:"\e90f"}.nuke-arrow-circle-down-ou:before{content:"\e910"}.nuke-arrow-circle-left-ou:before{content:"\e911"}.nuke-arrow-back:before{content:"\e912"}.nuke-arrow-forward:before{content:"\e913"}.nuke-shield-success:before{content:"\e914"}.nuke-shield-error:before{content:"\e915"}.nuke-share-1:before{content:"\e916"}.nuke-share:before{content:"\e917"}.nuke-log:before{content:"\e918"}.nuke-dashboard:before{content:"\e919"}.nuke-active:before{content:"\e91a"}.nuke-active--1:before{content:"\e91b"}.nuke-add:before{content:"\e91c"}.nuke-add-1:before{content:"\e91d"}.nuke-alert:before{content:"\e91e"}.nuke-alert-1:before{content:"\e91f"}.nuke-alert-2:before{content:"\e923"}.nuke-atom:before{content:"\e924"}.nuke-atom-1:before{content:"\e925"}.nuke-atom-2:before{content:"\e926"}.nuke-atomic-nuclear-radiation:before{content:"\e927"}.nuke-bell:before{content:"\e928"}.nuke-bomb:before{content:"\e929"}.nuke-bomb-1:before{content:"\e92e"}.nuke-bomb-grenade:before{content:"\e92f"}.nuke-bookmark:before{content:"\e930"}.nuke-bookmark-1:before{content:"\e931"}.nuke-bookmark-3:before{content:"\e932"}.nuke-bug:before{content:"\e933"}.nuke-bug-1:before{content:"\e934"}.nuke-call:before{content:"\e935"}.nuke-call-1:before{content:"\e936"}.nuke-cell-tower:before{content:"\e937"}.nuke-chart-1:before{content:"\e938"}.nuke-chart-2:before{content:"\e939"}.nuke-chart-3:before{content:"\e93a"}.nuke-chat-1:before{content:"\e93b"}.nuke-chat-2:before{content:"\e93c"}.nuke-clock:before{content:"\e940"}.nuke-clock-1:before{content:"\e941"}.nuke-code:before{content:"\e942"}.nuke-compass:before{content:"\e943"}.nuke-construction:before{content:"\e944"}.nuke-construction-1:before{content:"\e945"}.nuke-construction-2:before{content:"\e946"}.nuke-construction-3:before{content:"\e947"}.nuke-contacts:before{content:"\e948"}.nuke-cpu:before{content:"\e949"}.nuke-database:before{content:"\e94a"}.nuke-database-1:before{content:"\e94b"}.nuke-database-2:before{content:"\e94c"}.nuke-document:before{content:"\e94d"}.nuke-download-1:before{content:"\e94e"}.nuke-edit:before{content:"\e94f"}.nuke-electric-tower:before{content:"\e950"}.nuke-error:before{content:"\e951"}.nuke-error-1:before{content:"\e952"}.nuke-eye:before{content:"\e953"}.nuke-gallery:before{content:"\e954"}.nuke-gallery-1:before{content:"\e955"}.nuke-gauge:before{content:"\e956"}.nuke-gauge-1:before{content:"\e957"}.nuke-gear:before{content:"\e958"}.nuke-gear-1:before{content:"\e959"}.nuke-gear-2:before{content:"\e95a"}.nuke-gear-3:before{content:"\e95b"}.nuke-settings-4:before{content:"\e95c"}.nuke-github:before{content:"\e95d"}.nuke-github-1:before{content:"\e95e"}.nuke-idea:before{content:"\e95f"}.nuke-idea-1:before{content:"\e960"}.nuke-info-3:before{content:"\e961"}.nuke-internet:before{content:"\e962"}.nuke-internet-1:before{content:"\e963"}.nuke-internet-2:before{content:"\e964"}.nuke-loading-1:before{content:"\e965"}.nuke-location:before{content:"\e966"}.nuke-location-1:before{content:"\e967"}.nuke-location-2:before{content:"\e968"}.nuke-login:before{content:"\e96d"}.nuke-loguot:before{content:"\e96e"}.nuke-love:before{content:"\e96f"}.nuke-love-solid:before{content:"\e970"}.nuke-mail-1:before{content:"\e971"}.nuke-map-1:before{content:"\e972"}.nuke-map-2:before{content:"\e973"}.nuke-map-3:before{content:"\e974"}.nuke-map-4:before{content:"\e975"}.nuke-moon:before{content:"\e976"}.nuke-news:before{content:"\e977"}.nuke-notification-1:before{content:"\e978"}.nuke-nuclear-equipment:before{content:"\e979"}.nuke-nuclear-equipment-1:before{content:"\e97a"}.nuke-power-plant-1:before{content:"\e97b"}.nuke-power-plant-2:before{content:"\e97c"}.nuke-nuclear-symbol:before{content:"\e97d"}.nuke-oil-tower:before{content:"\e97e"}.nuke-paper-plane:before{content:"\e97f"}.nuke-pdf:before{content:"\e980"}.nuke-pen:before{content:"\e981"}.nuke-pie-chart:before{content:"\e982"}.nuke-pin:before{content:"\e983"}.nuke-plant:before{content:"\e984"}.nuke-plot:before{content:"\e985"}.nuke-power:before{content:"\e986"}.nuke-power-1:before{content:"\e987"}.nuke-power-2:before{content:"\e988"}.nuke-power-unit:before{content:"\e989"}.nuke-print:before{content:"\e98a"}.nuke-print-1:before{content:"\e98b"}.nuke-profile:before{content:"\e98c"}.nuke-qr-code:before{content:"\e98d"}.nuke-radio-tower-1:before{content:"\e98e"}.nuke-reload:before{content:"\e98f"}.nuke-researchgate:before{content:"\e990"}.nuke-researchgate-2:before{content:"\e991"}.nuke-send-1:before{content:"\e992"}.nuke-send-2:before{content:"\e993"}.nuke-shield:before{content:"\e994"}.nuke-shield-1:before{content:"\e995"}.nuke-shop:before{content:"\e996"}.nuke-sleep:before{content:"\e997"}.nuke-success:before{content:"\e998"}.nuke-success-1:before{content:"\e999"}.nuke-success-2:before{content:"\e99a"}.nuke-sun:before{content:"\e99b"}.nuke-target:before{content:"\e99c"}.nuke-thermometer:before{content:"\e99d"}.nuke-thermometer-1:before{content:"\e99e"}.nuke-tower-crane:before{content:"\e9a4"}.nuke-trash-1:before{content:"\e9a5"}.nuke-variable-power-plant:before{content:"\e9a6"}.nuke-iaea:before{content:"\e9a7"}.nuke-iaea1:before{content:"\e9a8"}.nuke-nuclear-radiation:before{content:"\e9a9"}.nuke-arrow-up-left-2:before{content:"\ea39"}.nuke-arrow-up-2:before{content:"\ea3a"}.nuke-arrow-up-right-2:before{content:"\ea3b"}.nuke-arrow-down-right-2:before{content:"\ea3d"}.nuke-arrow-down-2:before{content:"\ea3e"}.nuke-arrow-down-left-2:before{content:"\ea3f"}:root{--header-height:3rem;--hue-color:5;--color:hsl(var(--hue-color), 69%, 61%);--color-2:hsl(var(--hue-color), 69%, 61%);--color-svg:invert(67%) sepia(60%) saturate(4648%) hue-rotate(324deg) brightness(93%) contrast(88%);--color-alt:hsl(var(--hue-color), 57%, 53%);--color-alt-svg:invert(35%) sepia(34%) saturate(1189%) hue-rotate(318deg) brightness(108%) contrast(90%);--color-lighter:hsl(var(--hue-color), 80%, 72%);--color-lighter-svg:invert(90%) sepia(20%) saturate(1151%) hue-rotate(299deg) brightness(95%) contrast(108%);--color-danger:rgba(255, 0, 0, 0.8);--title-color:hsl(var(--hue-color), 8%, 35%);--text-color:hsl(var(--hue-color), 8%, 45%);--text-color-light:hsl(var(--hue-color), 8%, 65%);--input-color:hsl(var(--hue-color), 70%, 96%);--body-color:hsl(var(--hue-color), 60%, 99%);--container-color:#fff;--logo-svg:invert(0%) sepia(3%) saturate(0%) hue-rotate(235deg) brightness(105%) contrast(105%);--svg-fill:#000;--scroll-bar:hsl(var(--hue-color), 12%, 90%);--scroll-thumb:hsl(var(--hue-color), 12%, 80%);--chart-color:hsl(var(--hue-color), 69%, 61%);--chart-color-border:#fff;--chart-data-labels-color:var(--text-color);--chart-hover-background-color:rgba(0, 0, 0, 0.1);--theme-button:#444;--opacity-color-01:rgba(0, 0, 0, 0.001);--opacity-color-05:rgba(0, 0, 0, 0.005);--opacity-color-08:rgba(0, 0, 0, 0.008);--opacity-color-10:rgba(0, 0, 0, 0.01);--opacity-color-12:rgba(0, 0, 0, 0.012);--opacity-color-15:rgba(0, 0, 0, 0.015);--opacity-color-20:rgba(0, 0, 0, 0.02);--opacity-color-25:rgba(0, 0, 0, 0.025);--opacity-color-100:rgba(0, 0, 0, 0.1);--opacity-color-200:rgba(0, 0, 0, 0.2);--opacity-color-300:rgba(0, 0, 0, 0.3);--opacity-color-500:rgba(0, 0, 0, 0.5);--opacity-color-05-invert:rgba(255, 255, 255, 0.005);--opacity-color-08-invert:rgba(255, 255, 255, 0.008);--opacity-color-10-invert:rgba(255, 255, 255, 0.01);--opacity-color-12-invert:rgba(255, 255, 255, 0.012);--opacity-color-15-invert:rgba(255, 255, 255, 0.015);--opacity-color-20-invert:rgba(255, 255, 255, 0.02);--opacity-color-25-invert:rgba(255, 255, 255, 0.025);--body-font:"Ubuntu",sans-serif;--big-font:2rem;--h1-font:1.5rem;--h2-font:1.25rem;--h3-font:1.125rem;--normal-font:0.938rem;--small-font:0.813rem;--smallest-font:0.75rem;--font-medium:500;--font-semi-bold:600;--mb-0-25:0.25rem;--mb-0-5:0.5rem;--mb-0-75:0.75rem;--mb-1:1rem;--mb-1-5:1.5rem;--mb-2:2rem;--mb-2-5:2.5rem;--mb-3:3rem;--z-tooltip:10;--z-fixed:100;--z-model:1000}@media screen and (min-width:968px){:root{--big-font:3rem;--h1-font:2.25rem;--h2-font:1.5rem;--h3-font:1.25rem;--normal-font:1rem;--small-font:0.875rem;--smaller-font:0.813rem}}body.dark-theme{--color:hsl(var(--hue-color), 69%, 61%);--color-2:hsl(var(--hue-color), 30%, 8%);--title-color:hsl(var(--hue-color), 8%, 95%);--text-color:hsl(var(--hue-color), 8%, 75%);--input-color:hsl(var(--hue-color), 29%, 16%);--body-color:hsl(var(--hue-color), 28%, 12%);--container-color:hsl(var(--hue-color), 29%, 16%);--logo-svg:invert(100%) sepia(91%) saturate(38%) hue-rotate(321deg) brightness(110%) contrast(110%);--color-alt:hsl(var(--hue-color), 57%, 53%);--color-alt-svg:invert(41%) sepia(65%) saturate(1248%) hue-rotate(329deg) brightness(83%) contrast(89%);--color-lighter:hsl(var(--hue-color), 92%, 85%);--color-lighter-svg:invert(76%) sepia(21%) saturate(501%) hue-rotate(315deg) brightness(101%) contrast(98%);--text-color-light:hsl(var(--hue-color), 8%, 65%);--svg-fill:#fff;--scroll-bar:hsl(var(--hue-color), 29%, 16%);--scroll-thumb:hsl(var(--hue-color), 12%, 36%);--chart-color:#fff;--chart-color-border:hsl(var(--hue-color), 30%, 8%);--chart-data-labels-color:#fff;--chart-hover-background-color:rgba(255, 255, 255, 0.5);--theme-button:#fff;--opacity-color-01:rgba(255, 255, 255, 0.01);--opacity-color-05:rgba(255, 255, 255, 0.05);--opacity-color-08:rgba(255, 255, 255, 0.08);--opacity-color-10:rgba(255, 255, 255, 0.1);--opacity-color-12:rgba(255, 255, 255, 0.12);--opacity-color-15:rgba(255, 255, 255, 0.15);--opacity-color-20:rgba(255, 255, 255, 0.2);--opacity-color-25:rgba(255, 255, 255, 0.25);--opacity-color-100:rgba(255, 255, 255, 0.1);--opacity-color-200:rgba(255, 255, 255, 0.2);--opacity-color-300:rgba(255, 255, 255, 0.3);--opacity-color-500:rgba(255, 255, 255, 0.5);--opacity-color-05-invert:rgba(0, 0, 0, 0.05);--opacity-color-08-invert:rgba(0, 0, 0, 0.08);--opacity-color-10-invert:rgba(0, 0, 0, 0.1);--opacity-color-12-invert:rgba(0, 0, 0, 0.12);--opacity-color-15-invert:rgba(0, 0, 0, 0.15);--opacity-color-20-invert:rgba(0, 0, 0, 0.2);--opacity-color-25-invert:rgba(0, 0, 0, 0.25)}hr{border:1px solid var(--color);margin-top:var(--mb-0-25);margin-bottom:var(--mb-0-25)}.horizontal-line{width:100%;height:2px;border-radius:2px;background-color:var(--color);margin-top:var(--mb-0-5);margin-bottom:var(--mb-1)}.nav_btns{display:flex;align-items:center}.change-theme{font-size:1.25;color:var(--title-color);margin-right:var(--mb-1);cursor:pointer;transition:.2s}.change-theme:hover{color:var(--color);transition:.2s}*{box-sizing:border-box;padding:0;margin:0;-webkit-tap-highlight-color:rgba(255,255,255,0)}:after,:before{box-sizing:border-box}html{scroll-behavior:smooth;overflow-x:hidden;-webkit-font-smoothing:antialiased}body{font-family:var(--body-font);font-size:var(--normal-font);margin:0 0 var(--header-height) 0;background-color:var(--body-color);color:var(--text-color);user-select:none;overflow:hidden}h1,h2,h3,h4{color:var(--title-color);font-weight:var(--font-semi-bold)}p{user-select:text}img{max-width:100%;max-height:auto}a{text-decoration:none;color:var(--text-color);transition:.2s}a:hover{color:var(--color);transition:.2s}ul{list-style:none}:disabled{cursor:not-allowed!important}::selection{background:var(--color);color:#fff;user-select:none;cursor:default}.flex{display:flex}.space-between{justify-content:space-between}.section{padding:2rem 0 4rem}.section_title{font-size:var(--h1-font)}.section_subtitle{display:block;font-size:var(--small-font);margin-bottom:var(--mb-2)}.section_subtitle,.section_title{text-align:center}#loading{position:fixed;width:100%;height:100vh;background-color:var(--body-color);z-index:var(--z-model);display:flex;align-items:center;justify-content:center}.loading_image{width:40%;max-height:40%;fill:var(--svg-fill);justify-self:center;animation:loading 1.5s;animation-iteration-count:infinite}@keyframes loading{0%{opacity:0}10%{opacity:.2}20%{opacity:.4}30%{opacity:.6}40%{opacity:.8}50%{opacity:1}60%{opacity:.8}70%{opacity:.6}80%{opacity:.4}90%{opacity:.2}100%{opacity:0}}.container{max-width:768px;margin-left:var(--mb-1-5);margin-right:var(--mb-1-5)}.grid{display:grid;gap:1.5rem}.header{width:100%;position:fixed;left:0;bottom:0;z-index:var(--z-fixed)}.header_bg{position:absolute;width:100%;height:100%;background-color:var(--body-color);top:-15px;left:0;z-index:-1;filter:blur(10px)}.header_bg-mobile{position:absolute;width:100%;height:100%;background-color:var(--body-color);top:0;left:0;z-index:-1;box-shadow:0 -1px 4px rgba(0,0,0,.15)}.nav{max-width:968;height:var(--header-height);display:flex;justify-content:space-between;align-items:center}.nav_logo,.nav_toggle{color:var(--title-color);font-weight:var(--font-medium)}.nav_logo:hover{color:var(--color)}.nav_toggle{font-size:1.1rem;cursor:pointer}.nav_toggle:hover{color:var(--color)}@media screen and (max-width:767px){.nav_menu{position:fixed;bottom:-100%;left:0;width:100%;background-color:var(--body-color);padding:2rem 1.5rem 4rem;box-shadow:0 -1px 4px rgba(0,0,0,.15);border-radius:1.5rem 1.5rem 0 0;transition:.3s}}.nav_list{grid-template-columns:repeat(3,1fr);gap:2rem}.grid_span{text-align:center;margin-left:auto;margin-right:auto;grid-column:auto/span 3}.nav_link{display:flex;flex-direction:column;align-items:center;font-size:var(--small-font);color:var(--title-color);font-weight:var(--font-medium)}.nav_link:hover{color:var(--color)}.nav_icon{font-size:1.2rem}.nav_close{position:absolute;right:1.3rem;bottom:.5rem;font-size:2rem;cursor:pointer;color:var(--color)}.nav_close:hover{color:var(--color-alt)}.show_menu{bottom:0}.active-link{color:var(--color)}.scroll-header{top:-3px;filter:blur(2px)}.active{color:var(--color)}select{color:var(--color)}button{cursor:pointer;border:none;outline:0;font-size:var(--normal-font);font-weight:var(--font-medium);font-family:var(--body-font)}.loader{border:2px solid var(--opacity-color-20);border-top:2px solid #fff;border-radius:50%;width:1.1rem;height:1.1rem;animation:spin 2s linear infinite}.loader_go{border:2px solid var(--opacity-color-20);border-top:10px solid #fff;border-radius:50%;width:calc(var(--normal-font) * 9);height:calc(var(--normal-font) * 9);animation:spin 2s linear infinite}@keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}.button{display:inline-block;background-color:var(--color);color:#fff;padding:1rem;border-radius:.5rem;font-weight:var(--font-medium);transition:.3s}.button_go{display:inline-block;background-color:rgba(55,255,200,.8);color:#fff;padding:1rem;border-radius:1rem;font-weight:var(--font-medium);font-size:calc(var(--normal-font) * 7.5);transition:.3s}.button_go:hover{background-color:rgba(55,255,200,.7);transition:.3s}.button:hover{background-color:var(--color-alt);transition:.3s}.button_title{color:#fff;margin-bottom:1rem}.button_subtitle{color:#fff;font-size:var(--small-font)}.button_icon{font-size:1.25rem;margin-left:var(--mb-0-5);transition:.3s}.button--flex{display:inline-flex;align-items:center}.theme-colors{display:inline-flex;margin-top:auto;margin-bottom:auto;gap:.25rem}.theme-colors .color{margin-top:auto;margin-bottom:auto;border-radius:1rem;height:var(--small-font);width:var(--small-font);transition:.1s;cursor:pointer}.theme-colors .color:hover{border:2px solid var(--body-color);transition:.1s}@media screen and (max-width:767px){.theme-colors{gap:1rem}.theme-colors .color{border-radius:1.2rem;height:1.2rem;width:1.2rem}}.box_container{gap:1.5rem;grid-template-columns:repeat(1,1fr)}.box_bg{position:absolute;width:100%;height:100%;background-color:var(--container-color);opacity:.6;top:0;left:0;z-index:-1;border-radius:1rem}.box_content{position:relative;padding:1rem;border-radius:1rem;min-width:280px;box-shadow:0 2px 4px rgba(0,0,0,.15);transition:.3s;overflow:hidden!important}.box_content:hover{box-shadow:0 4px 8px rgba(0,0,0,.15)}.box_icon{display:block;font-size:1.5rem;color:var(--color);margin-top:auto;margin-bottom:auto}.box_button_icon{position:absolute;bottom:0;right:0;font-size:calc(var(--normal-font) * 10);color:#fff;opacity:.3}.box_header{display:flex;margin-bottom:1rem}.box_header_absolute{background-color:var(--color);color:#fff;border-radius:0 0 .5rem .5rem;border:0;width:35%;outline:0;position:absolute;top:0;left:50%;transform:translateX(-50%);padding:.2rem 0;text-align:center}.box_header-benchmark{margin-bottom:.5rem;margin-left:1rem;margin-right:1rem}.box_title{font-size:var(--h3-font);font-weight:var(--font-medium);margin-top:auto;margin-bottom:auto}.box_subtitle-content{font-size:x-small}.box_content-container{grid-template-columns:repeat(1,1fr);gap:1rem;display:grid}.box_subtitle-header{margin-top:auto;margin-bottom:auto}.box_subtitle-text{font-size:var(--small-font)}.box_subtitle-header-icon{font-size:2.8rem;color:var(--color);margin-top:auto;margin-bottom:auto;margin-right:var(--mb-1)}.box_subtitle{margin-bottom:var(--mb-1);font-size:var(--small-font)}.box_subtitle_value{background-color:var(--color);border-radius:1rem;padding:.25rem 1.1rem .25rem 1.1rem;text-align:center;font-weight:var(--font-medium);color:#fff;margin-bottom:var(--mb-0-5);white-space:nowrap}.box_subtitle-gap{display:flex;justify-content:space-between}.box_sub_content-container{grid-template-columns:repeat(auto-fit,minmax(180px,1fr));column-gap:3rem;display:grid}.box_sub_content-box{margin-bottom:var(--mb-0-5);white-space:nowrap!important}.box_sub_content{display:flex;justify-content:space-between;align-items:center;font-size:var(--smallest-font)}.box_sub_content p{margin-bottom:.2rem}.box_sub_content-subject{font-size:xx-small;color:var(--color-lighter)}.box_button{position:absolute;bottom:0;right:0;cursor:pointer;font-size:var(--small-font);background-color:var(--color);padding:.1rem .2rem;border-radius:.25rem 0;color:#fff}.box_button:hover{color:#fff}.button--small{padding:.75rem 1rem}.button--link{padding:0;background-color:transparent;color:var(--color)}.button--link:hover{background-color:transparent;color:var(--color-alt)}.box_button:hover .button_icon{transform:translateX(.25rem)}.box_fullscreen{position:fixed;top:1%;bottom:calc(.5% + var(--header-height));left:.5%;right:.5%;display:flex;align-items:center;justify-content:center;z-index:1;margin:1%;animation:fullscreen .5s;animation-iteration-count:1}@keyframes fullscreen{0%{right:30%;top:100%;left:30%}100%{right:.5%;left:.5%;top:1%}}.box_model{position:fixed;top:0;left:0;width:100%;height:105%;backdrop-filter:blur(8px);display:flex;align-items:center;justify-content:center;z-index:1;transition:.3s;opacity:0;visibility:hidden}.box_model-content{position:absolute;top:100%;left:100%}.active-model-content{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:100%;overflow-y:auto;height:95%}.box_model-status{max-width:450px;margin-left:auto;margin-right:auto;max-height:auto;margin-top:10%;margin-bottom:auto;padding:1.25rem;border-radius:1rem;box-shadow:0 2px 4px rgba(0,0,0,.15);transition:.3s;background-color:var(--container-color)}.active-model-content::-webkit-scrollbar{display:none;width:0}.bg-color-table{position:absolute;width:100%;height:85%;background-color:var(--container-color);opacity:.9;top:15%;left:0;z-index:-1}.box_model-services{row-gap:1rem}.box_model-service{display:flex}.box_model-title{font-size:var(--h3-font);font-weight:var(--font-medium);margin-bottom:var(--mb-1-5)}.box_model-close{position:relative;margin-top:0;margin-bottom:auto;font-size:1.5rem;color:var(--color);cursor:pointer}.box_model-icon{color:var(--color);margin-right:var(--mb-0-25)}.active-model{opacity:1;visibility:visible}.swipe_container{overflow:initial}.swipe_content{padding:0 1.5rem}.swipe_img{width:265px;border-radius:.5rem;justify-self:center}.swipe_title{font-size:var(--h3-font);margin-bottom:var(--mb-0-5)}.swipe_description{margin-bottom:var(--mb-0-75)}.swipe_button:hover .button_icon{transform:translateX(.25rem)}.swiper-button-next::after,.swiper-button-prev::after{content:""}.swiper-portfolio-icon{font-size:2rem;color:var(--color)}.swiper-button-prev{left:-.5rem}.swiper-button-next{right:-.5rem}.swiper-container-horizontal>.swiper-pagination-bullets{bottom:-2.5rem}.swiper-pagination-bullet-active{background-color:var(--color)}.swiper-button-next,.swiper-button-prev,.swiper-pagination-bullet{outline:0}.scroll_up{position:fixed;right:1rem;bottom:-20%;background-color:var(--color);opacity:.5;padding:.3rem;border-radius:.4rem;z-index:var(--z-tooltip);transition:.4s}.scroll_up:hover{background-color:var(--color-alt);opacity:.8}.scroll_up-icon{font-size:1.5rem;color:var(--color-lighter)}.show-scroll{bottom:5rem}::-webkit-scrollbar{width:.4rem;background-color:var(--scroll-bar);border-radius:.5rem;height:.3rem}::-webkit-scrollbar-thumb{background-color:var(--scroll-thumb);border-radius:.5rem}::-webkit-scrollbar-thumb:hover{background-color:var(--text-color-light)}@keyframes awn-fade-in{0%{opacity:0}to{opacity:1}}@keyframes awn-fade-out{0%{opacity:1}to{opacity:0}}@keyframes awn-slide-right{0%{left:100%;opacity:0}to{left:0;opacity:1}}@keyframes awn-slide-left{0%{opacity:0;right:100%}to{opacity:1;right:0}}@keyframes awn-bar{0%{right:100%}to{right:0}}.errorlist li{margin-bottom:.5rem}.awn-popup-loading-dots,.awn-popup-loading-dots:after,.awn-popup-loading-dots:before{animation-fill-mode:both;animation:awn-loading-dots 1s ease-in-out infinite;background:#fff;border-radius:50%;height:6px;width:6px}.awn-popup-loading-dots{animation-delay:-.16s;color:#fff;display:inline-block;margin-left:24px;position:relative}.awn-popup-loading-dots:after,.awn-popup-loading-dots:before{content:"";position:absolute;top:0}.awn-popup-loading-dots:before{animation-delay:-.32s;left:-16px}.awn-popup-loading-dots:after{left:16px}@keyframes awn-loading-dots{0%,80%,to{box-shadow:0 0}40%{box-shadow:0 0 0 2px}}#awn-popup-wrapper{align-items:center;animation-fill-mode:both;animation-name:awn-fade-in;animation-timing-function:ease-out;bottom:0;display:flex;justify-content:center;left:0;opacity:0;position:fixed;right:0;top:0;z-index:99999;backdrop-filter:blur(8px)}#awn-popup-wrapper.awn-hiding{animation-name:awn-fade-out}#awn-popup-wrapper .awn-popup-body{background:var(--color);color:#fff;border-radius:.5rem;font-size:1rem;max-width:500px;min-width:320px;padding:24px;position:relative;word-break:break-word;box-shadow:0 2px 4px rgba(0,0,0,.15)}#awn-popup-wrapper .awn-popup-body.awn-popup-confirm{align-items:center;display:flex;flex-direction:column}#awn-popup-wrapper .awn-popup-body.awn-popup-confirm .fa{color:#c26700;font-size:44px}#awn-popup-wrapper .awn-popup-body.awn-popup-async-block{background:0 0;color:#fff;font-size:32px;font-weight:700;text-align:center}#awn-popup-wrapper .awn-popup-title{font-size:14px;font-weight:700;margin-top:8px;text-transform:uppercase}#awn-popup-wrapper .awn-buttons{display:flex;justify-content:space-between;margin-top:24px;width:100%}#awn-popup-wrapper .awn-buttons .awn-btn{border:0;border-radius:4px;color:#fff;font-size:14px;font-weight:700;line-height:32px;transition:background .2s linear;width:45%}#awn-popup-wrapper .awn-buttons-1 .awn-btn{width:100%}#awn-popup-wrapper .awn-buttons .awn-btn-success{background:#40871d}#awn-popup-wrapper .awn-buttons .awn-btn-success:hover{background:#367218}#awn-popup-wrapper .awn-buttons .awn-btn-cancel{background:#1c76a6}#awn-popup-wrapper .awn-buttons .awn-btn-cancel:hover{background:#186690}#awn-toast-container{bottom:24px;box-sizing:border-box;position:fixed;right:24px;z-index:99998}#awn-toast-container.awn-top-left,#awn-toast-container.awn-top-right{bottom:auto;top:4rem}#awn-toast-container.awn-top-left .awn-toast:first-child,#awn-toast-container.awn-top-right .awn-toast:first-child{margin-top:1px}#awn-toast-container.awn-bottom-left,#awn-toast-container.awn-top-left{left:24px;right:auto}#awn-toast-container.awn-bottom-left .awn-toast,#awn-toast-container.awn-top-left .awn-toast{animation-name:awn-slide-left;right:100%}#awn-toast-container.awn-bottom-left .awn-toast.awn-hiding,#awn-toast-container.awn-top-left .awn-toast.awn-hiding{right:0}#awn-toast-container.awn-bottom-right .awn-toast,#awn-toast-container.awn-top-right .awn-toast{animation-name:awn-slide-right;left:100%}#awn-toast-container.awn-bottom-right .awn-toast.awn-hiding,#awn-toast-container.awn-top-right .awn-toast.awn-hiding{left:0}.awn-toast{animation-fill-mode:both;animation-timing-function:linear;border-radius:.5rem;color:var(--color);cursor:pointer;font-size:var(--font-medium);margin-top:1rem;opacity:0;overflow:hidden;position:relative;width:320px;border:2px solid var(--text-color);box-shadow:0 2px 4px rgba(0,0,0,.2)}.awn-toast-content{word-break:break-word}.awn-toast-label{color:#fff;display:block;font-size:var(--h3-font);text-transform:uppercase;margin-bottom:.2rem}.awn-toast-icon{align-items:center;bottom:0;display:flex;justify-content:flex-end;position:absolute;right:16px;top:2px;font-size:42px}.awn-toast-icon .fa{color:#fff;font-size:44px}.awn-toast-wrapper{border-radius:.5rem;padding:10px 75px 10px 16px;box-shadow:0 2px 4px rgba(0,0,0,.15)}.awn-toast-progress-bar{height:3px;left:0;position:absolute;right:0;bottom:0}.awn-toast-progress-bar:after{animation-duration:inherit;animation-fill-mode:both;animation-name:awn-bar;animation-timing-function:linear;background:#fff;content:" ";height:3px;position:absolute;right:100%;top:0;width:100%}.awn-toast.awn-toast-progress-bar-paused .awn-toast-progress-bar:after{animation-play-state:paused}.awn-toast.awn-hiding{animation-name:awn-fade-out!important}.awn-toast.awn-toast-success{background:var(--container-color);color:var(--text-color)}.awn-toast.awn-toast-success .awn-toast-wrapper{border-color:#a7d590}.awn-toast.awn-toast-success .fa,.awn-toast.awn-toast-success b{color:#a2ff73}.awn-toast.awn-toast-success .awn-toast-progress-bar:after{background:#a2ff73}.awn-toast.awn-toast-info{background:var(--container-color);color:var(--text-color)}.awn-toast.awn-toast-info .awn-toast-wrapper{border-color:#9fd3ef}.awn-toast.awn-toast-info .fa,.awn-toast.awn-toast-info b{color:#307ba3}.awn-toast.awn-toast-info .awn-toast-progress-bar:after{background:#307ba3}.awn-toast.awn-toast-alert{background:var(--container-color);color:var(--text-color)}.awn-toast.awn-toast-alert .awn-toast-wrapper{border-color:#f0a29d}.awn-toast.awn-toast-alert .fa,.awn-toast.awn-toast-alert b{color:#aa3731}.awn-toast.awn-toast-alert .awn-toast-progress-bar:after{background:#aa3731}.awn-toast.awn-toast-warning{background:var(--container-color);color:var(--text-color)}.awn-toast.awn-toast-warning .awn-toast-wrapper{border-color:#ffc480}.awn-toast.awn-toast-warning .fa,.awn-toast.awn-toast-warning b{color:#bb7a30}.awn-toast.awn-toast-warning .awn-toast-progress-bar:after{background:#bb7a30}[class^=awn-]{box-sizing:border-box}@-webkit-keyframes cm-spin{0%{-webkit-transform:translateY(-50%) rotate(0);transform:translateY(-50%) rotate(0)}100%{-webkit-transform:translateY(-50%) rotate(359deg);transform:translateY(-50%) rotate(359deg)}}@-o-keyframes cm-spin{0%{-webkit-transform:translateY(-50%) rotate(0);-o-transform:translateY(-50%) rotate(0);transform:translateY(-50%) rotate(0)}100%{-webkit-transform:translateY(-50%) rotate(359deg);-o-transform:translateY(-50%) rotate(359deg);transform:translateY(-50%) rotate(359deg)}}@keyframes cm-spin{0%{-webkit-transform:translateY(-50%) rotate(0);-o-transform:translateY(-50%) rotate(0);transform:translateY(-50%) rotate(0)}100%{-webkit-transform:translateY(-50%) rotate(359deg);-o-transform:translateY(-50%) rotate(359deg);transform:translateY(-50%) rotate(359deg)}}.context-menu-icon::before{position:absolute;top:50%;left:0;width:2em;font-size:1em;font-style:normal;font-weight:400;line-height:1;color:#2980b9;text-align:center;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);-o-transform:translateY(-50%);transform:translateY(-50%);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.context-menu-icon.context-menu-hover:before{color:#fff}.context-menu-icon.context-menu-disabled::before{color:#bbb}.context-menu-icon.context-menu-icon-loading:before{-webkit-animation:cm-spin 2s infinite;-o-animation:cm-spin 2s infinite;animation:cm-spin 2s infinite}.context-menu-icon.context-menu-icon--fa{display:list-item;font-family:inherit;line-height:inherit}.context-menu-icon.context-menu-icon--fa::before{position:absolute;top:50%;left:0;width:2em;font-family:FontAwesome;font-size:1em;font-style:normal;font-weight:400;line-height:1;color:#2980b9;text-align:center;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);-o-transform:translateY(-50%);transform:translateY(-50%);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.context-menu-icon.context-menu-icon--fa.context-menu-hover:before{color:#fff}.context-menu-icon.context-menu-icon--fa.context-menu-disabled::before{color:#bbb}.context-menu-icon.context-menu-icon--fa5{display:list-item;font-family:inherit;line-height:inherit}.context-menu-icon.context-menu-icon--fa5 i,.context-menu-icon.context-menu-icon--fa5 svg{position:absolute;top:.3em;left:.5em;color:#2980b9}.context-menu-icon.context-menu-icon--fa5.context-menu-hover>i,.context-menu-icon.context-menu-icon--fa5.context-menu-hover>svg{color:#fff}.context-menu-icon.context-menu-icon--fa5.context-menu-disabled i,.context-menu-icon.context-menu-icon--fa5.context-menu-disabled svg{color:#bbb}.context-menu-list{position:absolute;display:inline-block;min-width:12rem;max-width:24rem;padding:.5rem 0;margin:.2rem;font-family:inherit;font-size:inherit;list-style-type:none;background:var(--container-color);border-radius:.5rem;-webkit-box-shadow:0 4px 6px rgba(0,0,0,.25);box-shadow:0 4px 6px rgba(0,0,0,.25)}.context-menu-item{position:relative;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;padding:.5rem 1rem;color:var(--text-color);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.context_menu-icon{margin-right:.25rem;font-weight:600}.context-menu-separator{padding:0;margin:.35em 0;border-bottom:1px solid rgba(0,0,0,.2)}.context-menu-item>label>input,.context-menu-item>label>textarea{-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.context-menu-item.context-menu-hover{color:#fff;cursor:pointer;background-color:var(--color)}.context-menu-item.context-menu-disabled{color:#bbb;cursor:default;background-color:#fff}.context-menu-input.context-menu-hover{color:#2f2f2f;cursor:default}.context-menu-submenu:after{position:absolute;top:50%;right:.5em;z-index:1;width:0;height:0;content:"";border-color:transparent transparent transparent var(--text-color);border-style:solid;border-width:.25em 0 .25em .25em;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);-o-transform:translateY(-50%);transform:translateY(-50%)}.context-menu-submenu.context-menu-hover:after{border-color:transparent transparent transparent #fff}.context-menu-item.context-menu-input{padding:.3em .6em}.context-menu-input>label>*{vertical-align:top}.context-menu-input>label>input[type=checkbox],.context-menu-input>label>input[type=radio]{position:relative;top:.12em;margin-right:.4em}.context-menu-input>label{margin:0}.context-menu-input>label,.context-menu-input>label>input[type=text],.context-menu-input>label>select,.context-menu-input>label>textarea{display:block;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.context-menu-input>label>textarea{height:7em}.context-menu-item>.context-menu-list{top:.3em;right:-.3em;display:none}.context-menu-item.context-menu-visible>.context-menu-list{display:block}.context-menu-accesskey{text-decoration:underline}.home_container{gap:1rem}.home_content{grid-template-columns:.5fr 3fr;padding-top:3.5rem;align-items:center}.home_social{display:grid;grid-template-columns:max-content;row-gap:1rem}.home_social-icon{font-size:1.2rem;color:var(--color);cursor:pointer}.home_social-icon:hover{color:var(--color-alt)}.home_nukehub{fill:var(--svg-fill)}.home_nukehub-circle-light{fill:var(--color)}.home_nukehub-circle{fill:var(--color-alt)}.home_nukehub:hover{animation:shake .5s}.home_nukehub:active{animation:shake .5s;animation-iteration-count:infinite}@keyframes shake{0%{transform:translate(1px,1px) rotate(0)}10%{transform:translate(-1px,-2px) rotate(-1deg)}20%{transform:translate(-3px,0) rotate(1deg)}30%{transform:translate(3px,2px) rotate(0)}40%{transform:translate(1px,-1px) rotate(1deg)}50%{transform:translate(-1px,2px) rotate(-1deg)}60%{transform:translate(-3px,1px) rotate(0)}70%{transform:translate(3px,1px) rotate(-1deg)}80%{transform:translate(-1px,-1px) rotate(1deg)}90%{transform:translate(1px,2px) rotate(0)}100%{transform:translate(1px,-2px) rotate(-1deg)}}.home_data{grid-column:1/3}.home_title{font-size:var(--big-font);margin-bottom:var(--mb-0-75)}.home_subtitle{font-size:var(--h3-font);color:var(--text-color);font-weight:var(--font-medium);margin-bottom:var(--mb-0-75)}.home_description{margin-bottom:var(--mb-2)}.about_description{text-align:justify;line-height:1.5;margin-bottom:var(--mb-1)}.about_description a{color:var(--color)}.about_description a:hover{text-decoration:underline}.join_img{width:90%;border-radius:.5rem;justify-self:center;align-self:center;object-fit:cover;transition:all .3s ease-out;cursor:pointer}.join_img:hover{transform:scale(1.1);transition:.3s}.join_description{text-align:center;margin-bottom:var(--mb-2-5)}.join_buttons{display:flex;justify-content:center}.button--white{background-color:var(--color-lighter);color:var(--color)}.button--white:hover{background-color:#fff;transition:.3s}.contact_container{row-gap:3rem}.contact_information{display:flex;margin-bottom:var(--mb-2)}.contact_icon{font-size:2rem;color:var(--color);margin-right:var(--mb-0-75)}.contact_title{font-size:var(--h3-font);font-weight:var(--font-medium)}.contact_subtitle{font-size:var(--small-font);color:var(--text-color-light)}.contact_content{background-color:var(--input-color);border:.1rem solid var(--text-color);border-radius:.5rem;padding:.75rem 1rem .25rem}.contact_input{width:100%;background-color:var(--input-color);color:var(--text-color);font-family:var(--body-font);font-size:var(--normal-font);border:none;outline:0;padding:.25rem .5rem .5rem 0}.contact_label{font-size:var(--smaller-font);color:var(--title-color)}textarea{resize:vertical}.footer{padding-top:2rem}.footer_container{grid-template-columns:repeat(2,1fr)}.footer_logo{grid-area:auto/span 2}.footer_bg{background-color:var(--color);padding:2rem 0 1rem}.footer_title{font-size:var(--h1-font);margin-bottom:var(--mb-0-25)}.footer_subtitle{font-size:var(--small-font)}.footer_link_title{font-size:var(--h4-font);margin-bottom:var(--mb-0-25)}.footer_links{display:flex;flex-direction:column;row-gap:.25rem;font-size:var(--smallest-font)}.footer_link:hover{color:var(--color-lighter)}.footer_copy{font-size:var(--smaller-font);text-align:center;color:#fff;margin-top:var(--mb-3)}.footer_link,.footer_link_title,.footer_social,.footer_subtitle,.footer_title{color:#fff}@media screen and (max-width:410px){.container{margin-left:var(--mb-1);margin-right:var(--mb-1)}.nav_menu{padding:2rem .25rem 4rem}.nav_list{column-gap:0}.list_title{font-size:var(--normal-font)}.box_container{justify-content:center;gap:.5rem}.box_model{padding:0 .5rem}.home_content{grid-template-columns:.25fr 3fr}.footer_social{font-size:1.2rem;margin-right:var(--mb-0-75)}}@media screen and (min-width:600px){.home_content{grid-template-columns:max-content 1fr 1fr}.home_data{grid-column:initial}.home_nukehub{width:320px;transform:translateX(0)}.home_img{order:1;justify-self:center}.swipe_content{border-radius:1rem;grid-template-columns:1fr;backdrop-filter:blur(15px)}.join_container{grid-template-columns:repeat(2,1fr)}.box_container{gap:1rem}.footer_container{grid-template-columns:repeat(3,1fr)}.footer_logo{grid-area:auto/span 3}}@media screen and (min-width:768px){.container{margin-left:auto;margin-right:auto}body{margin:0}.section{padding:5rem 0 2rem}.header{top:0;bottom:initial}.footer_container,.header,.main{padding:0 1rem}.nav{height:calc(var(--header-height) + 1.5rem);column-gap:1rem}.nav_close,.nav_icon,.nav_toggle{display:none}.nav_list{display:flex;column-gap:2rem}.nav_menu{margin-left:auto}.show-scroll{bottom:2rem;right:2rem}.content{margin-left:4rem;transition:.3s}.content-gap{margin-left:14rem;transition:.3s}.change-theme{margin:0}.box_subtitle-header-icon{font-size:3.8rem;color:var(--color);margin-top:auto;margin-bottom:auto;margin-right:var(--mb-1)}.box_container,.box_content-container{grid-template-columns:repeat(2,1fr);display:grid;justify-content:left;grid-gap:var(--mb-1)}.box_fullscreen{bottom:1%;left:calc(.5% + 4rem)}@keyframes fullscreen{0%{right:30%;top:100%;left:30%}100%{right:.5%;left:calc(.5% + 4rem);top:1%}}.box_fullscreen-gap{left:calc(.5% + 14rem)}div.box_content-container div.box_subtitle-header{grid-column:auto}div.box_content-container div.box_sub_content-container{grid-column:auto/span 2}.sample_box_container{grid-template-columns:1fr 1fr 1fr;grid-template-rows:.5fr .5fr 1fr .5fr;justify-content:left;grid-template-areas:"box1 box3 box3" "box2 box3 box3" "box4 box3 box3" "box4 box5 box5"}.sample_box_container2{grid-template-columns:repeat(2,1fr);display:grid;justify-content:left;grid-gap:var(--mb-1-5)}#project-box{grid-column:auto/span 2}#box1{grid-area:box1}#box2{grid-area:box2}#box3{grid-area:box3}#box4{grid-area:box4}#box5{grid-area:box5}#box6{grid-area:box6}#box7{grid-area:box7}#box8{grid-area:box8}#box9{grid-area:box9}#box10{grid-area:box10}.box_icon{font-size:2rem}.box_content{padding:1rem}.select_content{padding:0}.swipe_img{width:320px}.swipe_content{align-items:center}.home_container{row-gap:4rem}.home_content{padding-top:5.5rem;column-gap:2rem}.home_nukehub{width:360px}.join_container{column-gap:5rem}.join_description{text-align:initial}.join_buttons{justify-content:initial}.footer_bg{padding:3rem 0 1.5rem}.footer_copy{margin-top:4.5rem}}@media screen and (min-width:1024px) and (max-height:1280px){.footer_container,.header,.main{padding:0}.swipe_content{column-gap:5rem}.swiper-portfolio-icon{font-size:3.5rem}.swiper-button-prev{left:-3.5rem}.swiper-button-next{right:-3.5rem}.swiper-container-horizontal>.swiper-pagination-bullets{bottom:-4.5rem}.model_caption{font-size:1.25rem;bottom:1%;left:50%;transform:translate(-50%,-1%)}.home_nukehub{width:390px}.home_social{transform:translateX(-6rem)}.join_img{width:95%}.join_form{width:460px}.join_inputs{grid-template-columns:repeat(2,1fr)}}@media screen and (min-width:1024px) and (min-height:1280px){.footer_container,.header,.main{padding:0}}@media screen and (min-width:1900px){body{zoom:1.1}.no-zoom{zoom:calc(1 / 1.1)}}@media screen and (min-width:2800px){body{zoom:1.65}.no-zoom{zoom:calc(1 / 1.65)}}@media screen and (min-width:3800px){body{zoom:2.2}.no-zoom{zoom:calc(1 / 2.2)}}#particles-js{top:0;left:0;width:100%;height:100%;position:fixed;z-index:-100;background-color:var(--body-color);background-image:url("");background-repeat:no-repeat;background-position:50% 50%;filter:blur(4px)}
\ No newline at end of file
diff --git a/css/selection.json b/css/selection.json
new file mode 100644
index 0000000..c0c73ef
--- /dev/null
+++ b/css/selection.json
@@ -0,0 +1 @@
+{"IcoMoonType":"selection","icons":[{"icon":{"paths":["M87.438 373.428c-13.918 42.77-79.368 34.786-77.048-15.334q1.379-29.876 14.827-64.789c50.843-131.985 136.041-213.28 259.763-275.027 20.594-10.233 50.153-13.94 68.647 0.792 18.4 14.669 16.143 46.477 0.345 62.761q-6.301 6.495-24.983 14.732c-99.022 43.594-188.138 128.817-225.753 231.18q-8.307 22.684-15.798 45.685z","M700.469 95.676c-26.801-16.633-20.249-59.276 3.542-73.089 19.466-11.31 38.336-5.861 57.081 4.752 115.415 65.422 219.327 175.737 254.058 305.663 5.078 18.977 1.975 44.164-13.447 57.534-20.281 17.52-52.504 15.144-65.419-11.437q-3.918-8.047-13.009-36.275c-30.186-93.461-91.248-164.712-174.722-217.113q-24.011-15.049-48.085-30.034z","M294.477 471.641c-44.919-0.539-90.182-2.946-134.975-0.19q-1.536 0.095-1.411-1.457c5.329-61.177 23.98-124.255 60.278-173.995 38.117-52.211 89.837-98.403 149.708-123.178q50.31-20.846 104.35-29.876 1.599-0.253 1.567 1.362l-0.909 141.395c-0.017 1.137-0.915 2.056-2.034 2.091h-0.003q-11.002 0.444-21.252 3.833c-82.032 27.405-138.11 91.496-153.469 178.43q-0.282 1.584-1.849 1.584z","M550.573 288.585c-0.758-0.167-1.317-0.839-1.317-1.643 0-0.013 0-0.026 0-0.038v0.002l0.533-139.747q0.031-1.521 1.536-1.394 121.716 11.659 207.478 98.371 33.916 34.311 59.839 74.99c30.468 47.807 40.248 96.312 45.953 153.117q0.188 1.742-1.536 1.616-70.998-5.037-142.091-1.996-1.661 0.063-1.943-1.584c-6.175-35.705-16.645-70.428-38.179-99.1q-47.708-63.458-130.273-82.594z","M405.066 628.686c-93.317-87.948-57.896-235.457 61.438-273.285 49.495-15.682 106.701-0.634 145.507 33.424 62.19 54.651 67.738 140.856 22.694 210.049-51.407 79.014-160.052 95.393-229.64 29.812zM528.474 487.64c0-30.795-24.7-55.759-55.169-55.759v0c-30.469 0-55.169 24.964-55.169 55.759v0c0 30.795 24.7 55.759 55.169 55.759v0c30.469 0 55.169-24.964 55.169-55.759v0z","M865.944 548.5c0.615 0.032 1.101 0.544 1.101 1.171 0 0.034-0.001 0.068-0.004 0.101v-0.004c-15.61 178.367-141.401 308.293-316.468 329.805q-0.878 0.095-0.878-0.824l-0.376-142.947c0-0.001 0-0.002 0-0.003 0-1.034 0.7-1.902 1.646-2.148l0.015-0.003c88.834-22.399 152.842-91.338 165.224-183.563 0.109-0.876 0.836-1.544 1.717-1.584h0.007q74.008-3.39 148.015 0z","M405.943 862.274c-137.577-46.382-234.53-164.332-246.378-311.936q-0.125-1.521 1.379-1.552 58.648-1.204 117.328-1.077 8.338 0 16.582 1.109 1.536 0.222 1.661 1.742c9.247 91.623 92.063 164.364 175.537 184.323q1.191 0.285 1.222 1.552l1.034 141.585q0 1.457-1.411 1.141-44.919-9.473-66.955-16.886z","M269.996 998.283c-111.873-61.43-211.773-161.259-254.873-282.694-5.391-15.207-11.285-33.107-7.116-48.726q7.774-29.052 37.333-32.188c24.544-2.598 37.615 12.261 44.699 34.374q13.761 42.96 45.953 91.623c52.88 79.932 119.459 128.785 203.497 171.587 48.429 24.648 25.202 88.55-24.418 81.992q-21.096-2.82-45.075-15.967z","M722.975 1014.218c-17.24-2.535-35.107-15.556-38.242-33.899-5.203-30.319 8.996-41.946 34.355-56.488 96.545-55.348 176.446-132.492 208.544-242.871q6.896-23.634 11.88-30.097c10.501-13.528 27.522-18.154 44.198-14.415 44.010 9.948 33.101 55.538 21.597 88.677-42.442 122.386-126.136 206.405-234.059 272.493-15.422 9.409-30.813 19.199-48.273 16.601z"],"attrs":[{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["NukeHub"]},"attrs":[{},{},{},{},{},{},{},{},{}],"properties":{"order":756,"id":351,"name":"nukehub","prevSize":32,"code":59830},"setIdx":0,"setId":1,"iconIdx":0},{"icon":{"paths":["M959.37 909.993l-261.437-261.529c-3.111-3.111-6.621-5.577-10.367-7.419 53.481-62.834 85.788-144.221 85.788-232.998 0-198.459-161.506-359.965-360.006-359.965-198.459 0-359.965 161.506-359.965 359.965 0 198.5 161.506 360.006 359.965 360.006 83.444 0 160.35-28.541 221.475-76.383 1.883 4.288 4.585 8.299 8.095 11.81l261.488 261.488c7.593 7.583 17.54 11.38 27.487 11.38s19.884-3.797 27.477-11.38c15.228-15.187 15.228-39.788 0-54.975zM413.349 725.851c-175.239 0-317.772-142.564-317.772-317.803s142.533-317.772 317.772-317.772 317.803 142.533 317.803 317.772-142.564 317.803-317.803 317.803z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["zoom"],"colorPermutations":{"11":[{}]}},"attrs":[{}],"properties":{"order":748,"id":350,"name":"zoom","prevSize":32,"code":59831},"setIdx":0,"setId":1,"iconIdx":1},{"icon":{"paths":["M917.333 1002.667c-46.817-24.542-101.893-40.015-160.314-42.637l-0.838-0.030c-65.846 3.082-127.344 18.483-183.303 43.938l3.121-1.271c-25.54-0.064-48.416-11.418-63.909-29.333l-0.091-0.107c-15.584 18.022-38.46 29.376-63.989 29.44l-0.011 0c-52.837-24.183-114.336-39.584-179.067-42.625l-1.114-0.042c-59.258 2.651-114.334 18.125-163.306 43.69l2.154-1.024c-47.128 0-85.333-38.205-85.333-85.333l0-0v-789.333c-0-84.096 149.333-107.904 234.667-106.667 96 1.408 206.933 26.731 256 88.085 49.067-61.355 160-86.677 256-88.085 85.333-1.237 234.667 22.571 234.667 106.667v789.333c0 47.128-38.205 85.333-85.333 85.333h-0zM490.667 149.333c-52.736-59.157-152.107-84.075-234.667-85.333-142.229-2.133-192 37.717-192 64v789.333c-0 23.564 19.103 42.667 42.667 42.667v0c47.164-25.773 103.114-41.425 162.607-42.66l0.379-0.006c65.35 4.333 126.044 19.61 181.827 44.024l-3.48-1.358c23.564 0 42.667-19.103 42.667-42.667v0-768zM960 128c0-26.283-49.771-66.133-192-64-82.56 1.259-181.931 26.176-234.667 85.333v768c0 23.564 19.103 42.667 42.667 42.667v0c52.303-23.057 112.997-38.333 176.71-42.579l1.637-0.087c59.872 1.242 115.822 16.893 164.877 43.609l-1.89-0.942c23.564 0 42.667-19.103 42.667-42.667v0-789.333z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["book-3"],"colorPermutations":{"11":[{}]}},"attrs":[{}],"properties":{"order":746,"id":349,"name":"book-3","prevSize":32,"code":59822},"setIdx":0,"setId":1,"iconIdx":2},{"icon":{"paths":["M884.866 120.938c20.708 0 37.722 6.659 51.045 19.973 13.312 13.315 19.969 30.329 19.969 51.040v568.107c0 20.712-6.657 37.726-19.969 51.040-13.322 13.312-30.337 19.969-51.045 19.969l-284.053-0c-20.717 0-37.722 6.666-51.045 19.978-13.312 13.312-19.969 30.328-19.969 51.035h-35.507c0-20.708-6.657-37.722-19.969-51.035-13.322-13.312-30.337-19.978-51.045-19.978h-284.053c-20.717 0-37.722-6.657-51.045-19.969-13.312-13.314-19.969-30.329-19.969-51.040v-568.107c0-20.712 6.657-37.725 19.969-51.040 13.322-13.314 30.328-19.973 51.045-19.973h284.053c36.983 0 66.572 16.275 88.768 48.822 22.193-32.547 51.782-48.822 88.766-48.822h284.053zM423.279 795.565c26.625 0 50.297 8.876 71.013 26.631v-594.737c0-20.712-6.657-37.725-19.969-51.040-13.322-13.314-30.337-19.973-51.045-19.973l-284.053 0c-23.671 0-35.507 11.836-35.507 35.507v568.107c0 23.671 11.836 35.507 35.507 35.507l284.053 0zM920.373 191.952c0-23.671-11.836-35.507-35.507-35.507l-284.053-0c-20.717 0-37.722 6.659-51.045 19.973-13.312 13.315-19.969 30.329-19.969 51.040v594.737c20.708-17.754 44.379-26.631 71.013-26.631h284.053c23.671 0 35.507-11.836 35.507-35.507l0-568.107z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["book-2"],"colorPermutations":{"11":[{}]}},"attrs":[{}],"properties":{"order":745,"id":348,"name":"book-2","prevSize":32,"code":59823},"setIdx":0,"setId":1,"iconIdx":3},{"icon":{"paths":["M230 687.2c-9.4 0-17-7.6-17-17v-315.2c0-30 24.8-54.4 55.3-54.4h42.4c32.7 0 63.1 13 89.9 24.5 8.6 3.7 12.6 13.7 8.9 22.3s-13.7 12.6-22.3 8.9c-23.8-10.2-50.8-21.7-76.5-21.7h-42.4c-11.7 0-21.3 9.2-21.3 20.4v315.2c0 9.4-7.6 17-17 17z","M835.1 234.9c27.3 0 49.5 21.4 49.5 47.7v433.5c0 26.3-22.2 47.7-49.5 47.7h-82.4c-66.2 0-130.6 13.2-191.3 39.2l-46.9 20.1-46.9-20.1c-60.7-26-125-39.2-191.3-39.2h-82.4c-27.3 0-49.5-21.4-49.5-47.7v-433.5c0-26.3 22.2-47.7 49.5-47.7h82.4c52.6 0 103.7 10.5 151.9 31.1l46.9 20.1c12.5 5.4 25.7 8.1 39.3 8.1s26.8-2.7 39.3-8.1l46.9-20.1c48.2-20.7 99.3-31.1 151.9-31.1h82.6zM835.1 184.9h-82.4c-59 0-117.4 12-171.6 35.2l-46.9 20.1c-6.3 2.7-12.9 4-19.6 4s-13.4-1.3-19.6-4l-47-20.1c-54.1-23.2-112.5-35.2-171.6-35.2h-82.4c-55 0-99.5 43.8-99.5 97.7v433.5c0 54 44.6 97.7 99.5 97.7h82.4c59 0 117.5 12 171.6 35.2l46.9 20.1c6.3 2.7 12.9 4 19.6 4s13.4-1.3 19.6-4l46.9-20.1c54.1-23.2 112.5-35.2 171.6-35.2h82.4c55 0 99.5-43.7 99.5-97.7v-433.5c0.1-53.9-44.5-97.7-99.4-97.7z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":false,"grid":16,"tags":["book-1"],"colorPermutations":{"11":[{"f":0},{"f":0}]}},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":744,"id":347,"name":"book-1","prevSize":32,"code":59824,"codes":[59824,59825]},"setIdx":0,"setId":1,"iconIdx":4},{"icon":{"paths":["M512 64c-247.424 0-448 200.576-448 448s200.576 448 448 448 448-200.576 448-448-200.576-448-448-448zM512 736c-123.712 0-224-100.288-224-224s100.288-224 224-224v0c123.712 0 224 100.288 224 224s-100.288 224-224 224v0zM685.12 292.224c-39.92-31.858-89.605-53.097-143.927-58.716l-1.193-0.1v-112c85.408 6.048 163.2 39.168 224.768 91.2l-79.616 79.616zM484 233.408c-55.526 5.715-105.223 26.954-145.714 59.249l0.562-0.433-79.648-79.584c60.754-51.597 138.365-85.048 223.544-91.16l1.256-0.072v112zM298.496 331.104c-33.876 39.703-56.898 89.618-63.919 144.536l-0.145 1.384h-112.64c7.954-87.241 43.534-164.937 97.8-225.556l-0.328 0.372 79.2 79.232zM233.056 533.024c4.391 58.079 25.984 110.399 59.636 152.696l-0.436-0.568-79.616 79.616c-53.050-62.502-86.867-142.807-91.48-230.848l-0.040-0.96 111.936 0.032zM331.104 725.504c41.432 35.426 93.954 59.010 151.706 64.957l1.19 0.099v112c-89.823-6.482-170.181-42.476-232.503-98.218l0.375 0.33 79.232-79.168zM540 790.592c58.943-6.040 111.466-29.625 153.278-65.375l-0.382 0.319 79.2 79.168c-61.945 55.422-142.303 91.426-230.863 97.846l-1.265 0.074v-112h0.032zM731.776 685.152c33.213-41.742 54.806-94.071 59.143-151.222l0.057-0.938h112c-4.677 89.007-38.515 169.31-92.048 232.368l0.464-0.56-79.616-79.648zM789.6 476.992c-7.18-56.299-30.199-106.211-64.388-146.309l0.324 0.389 79.168-79.168c53.955 60.221 89.556 137.894 97.423 223.593l0.113 1.527h-112.64z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["help-4"],"colorPermutations":{"11":[{}]}},"attrs":[{}],"properties":{"order":743,"id":346,"name":"help-4","prevSize":32,"code":59826},"setIdx":0,"setId":1,"iconIdx":5},{"icon":{"paths":["M512 958.293c-246.481 0-446.293-199.812-446.293-446.293s199.812-446.293 446.293-446.293c246.481 0 446.293 199.812 446.293 446.293l-0-0c-0.243 246.383-199.91 446.051-446.27 446.293l-0.023 0zM512 108.373c-222.917 0-403.627 180.71-403.627 403.627s180.71 403.627 403.627 403.627c222.917 0 403.627-180.71 403.627-403.627v0c-0.243-222.819-180.808-403.384-403.604-403.627l-0.023-0z","M512 704.853c-106.51 0-192.853-86.343-192.853-192.853s86.343-192.853 192.853-192.853c106.51 0 192.853 86.343 192.853 192.853v0c-0.242 106.412-86.441 192.611-192.83 192.853l-0.023 0zM512 363.52c-82.942 0.006-150.177 67.244-150.177 150.187 0 82.946 67.241 150.187 150.187 150.187s150.187-67.241 150.187-150.187c0-0.6-0.004-1.199-0.011-1.798l0.001 0.091c-0.242-82.848-67.338-149.945-150.163-150.187l-0.023-0z","M512 361.813c-11.782 0-21.333-9.551-21.333-21.333v0-255.147c-0-11.782 9.551-21.333 21.333-21.333s21.333 9.551 21.333 21.333v0 256c-0.471 11.409-9.834 20.48-21.316 20.48-0.006 0-0.012-0-0.018-0l0.001 0zM512 958.293c-11.782 0-21.333-9.551-21.333-21.333v0-254.293c-0-11.782 9.551-21.333 21.333-21.333s21.333 9.551 21.333 21.333v0 256c-0.911 11.025-10.084 19.627-21.265 19.627-0.024 0-0.048-0-0.072-0l0.004 0zM341.333 533.333h-256c-11.782 0-21.333-9.551-21.333-21.333s9.551-21.333 21.333-21.333v0h256c11.782-0 21.333 9.551 21.333 21.333s-9.551 21.333-21.333 21.333v0zM938.667 533.333h-256c-11.782 0-21.333-9.551-21.333-21.333s9.551-21.333 21.333-21.333v0h256c11.782-0 21.333 9.551 21.333 21.333s-9.551 21.333-21.333 21.333v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["help-3"],"colorPermutations":{"11":[]}},"attrs":[],"properties":{"order":742,"id":345,"name":"help-3","prevSize":32,"code":59827},"setIdx":0,"setId":1,"iconIdx":6},{"icon":{"paths":["M240.971 482.909h442.841c13.585 0 24.564-10.978 24.564-24.564s-10.978-24.564-24.564-24.564h-442.841c-13.585 0-24.564 10.978-24.564 24.564-0.137 13.585 10.978 24.564 24.564 24.564zM782.205 581.301h-541.235c-13.585 0-24.564 10.978-24.564 24.564s10.978 24.564 24.564 24.564h541.235c13.585 0 24.564-10.978 24.564-24.564 0-13.446-10.978-24.564-24.564-24.564zM782.205 728.961h-541.235c-13.585 0-24.564 10.978-24.564 24.564s10.978 24.564 24.564 24.564h541.235c13.585 0 24.564-10.978 24.564-24.564s-10.978-24.564-24.564-24.564z","M929.728 339.779c-13.585 0-24.564 10.978-24.564 24.564v438.45c0 67.791-55.166 122.958-122.958 122.958h-541.235c-67.791 0-122.958-55.166-122.958-122.958v-512.279c0-67.791 55.166-122.958 122.958-122.958h295.181c13.585 0 24.564-10.978 24.564-24.564s-10.978-24.564-24.564-24.564h-295.181c-94.963 0-172.221 77.26-172.221 172.221v512.142c0 94.963 77.26 172.221 172.221 172.221h541.235c94.963 0 172.221-77.26 172.221-172.221v-438.45c0-13.585-11.116-24.564-24.701-24.564z","M672.559 179.219c13.446-1.647 23.055-13.86 21.545-27.446-4.254-34.719 20.035-70.124 44.6-78.633 40.071-13.86 76.574-10.841 111.291 9.194 16.88 9.741 27.72 27.171 29.916 47.756 2.331 21.545-5.352 42.541-20.31 56.127-2.745 2.331-14.135 9.194-23.329 14.821-10.018 6.175-21.681 13.174-32.661 20.31-35.541 23.329-46.932 35.817-46.932 51.736-0.137 4.666-0.411 13.86-0.549 23.192-0.137 7.41 0 3.156 0 0.961-1.098 12.486 6.861 23.878 19.487 26.211 1.509 0.275 3.019 0.411 4.528 0.411 11.664 0 23.055-8.234 25.251-20.173 0.549-2.882 0.549-2.882 0-6.725 0.137-6.175 0.137-12.351 0.275-16.33 3.291-3.019 10.43-8.646 24.976-18.251 10.43-6.861 21.545-13.585 31.151-19.487 16.605-10.018 25.386-15.507 30.74-20.31 26.76-24.29 40.206-60.793 36.366-97.982-3.98-36.501-23.74-67.517-54.343-85.22-47.207-27.171-98.256-31.7-151.911-13.174-49.401 17.016-84.122 75.751-77.398 131.055 1.509 13.998 13.723 23.74 27.306 21.957zM779.873 368.869c-18.936 0.411-33.484 15.782-32.796 35.131 0.549 18.114 15.644 31.974 34.17 31.7 18.663-0.275 32.661-14.546 32.661-33.072 0.137-17.703-13.723-34.17-34.033-33.756z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["help-2"],"colorPermutations":{"11":[]}},"attrs":[],"properties":{"order":741,"id":344,"name":"help-2","prevSize":32,"code":59828,"codes":[59828]},"setIdx":0,"setId":1,"iconIdx":7},{"icon":{"paths":["M627.68 664.793l14.924-0.087c-5.978 0-10.996 0.327-16.211 0.567-16.407 6.131-33.426 10.996-50.967 14.444-15.076 12.698-19.789 34.756-19.789 72.284l0.218-68.727c-0.087 0-0.153 0.022-0.218 0.022v134.16c0 24.109-19.527 43.636-43.636 43.636s-43.636-19.527-43.636-43.636v-174.546c0-24.109 19.527-43.636 43.636-43.636 132.546 0 240-107.454 240-240s-107.454-240-240-240c-132.546 0-240 107.454-240 240 0 24.087-19.549 43.636-43.636 43.636-24.109 0-43.636-19.549-43.636-43.636 0-180.742 146.531-327.273 327.273-327.273s327.273 146.531 327.273 327.273c0 139.92-88.036 258.807-211.593 305.52zM512 904.727c24.109 0 43.636 19.527 43.636 43.636s-19.527 43.636-43.636 43.636c-24.109 0-43.636-19.527-43.636-43.636s19.527-43.636 43.636-43.636z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["help-1"],"colorPermutations":{"11":[{}]}},"attrs":[{}],"properties":{"order":740,"id":343,"name":"help-1","prevSize":32,"code":59829},"setIdx":0,"setId":1,"iconIdx":8},{"icon":{"paths":["M238.924 27.195c-12.221 3.717-20.318 10.61-24.654 20.987-2.255 5.397-2.645 17.998-2.665 86.164-0.033 106.975-2.404 145.293-12.063 194.914-1.905 9.785-22.653 100.41-46.107 201.387-23.454 100.979-44.462 192.045-46.684 202.37-9.969 46.309-15.344 93.663-17.291 152.321l-1.204 36.267-13.834 0.010c-18.172 0.012-24.533 1.978-34.341 10.611-18.555 16.333-19.125 37.674-1.456 54.576 13.27 12.693-31.196 11.603 473.38 11.603s460.11 1.090 473.38-11.603c13.621-13.030 16.525-28.659 8.33-44.836-7.766-15.329-18.438-20.335-43.384-20.351l-14.798-0.010-0.9-10.667c-0.494-5.866-1.683-20.65-2.641-32.853-2.268-28.878-11.141-94.702-16.564-122.881-10.624-55.199-39.432-163.437-78.358-294.402-5.998-20.181-14.817-55.509-19.599-78.508-22.59-108.655-22.514-107.913-23.318-226.988-0.549-81.46-1.059-97.546-3.281-103.634-3.218-8.813-17.169-21.866-25.989-24.316-7.401-2.055-519.214-2.215-525.958-0.163zM703.152 122.028v19.626h-29.068c-31.461 0-35.612 0.859-45.843 9.485-6.942 5.854-13.803 19.801-13.803 28.062 0 8.654 7.035 22.434 14.68 28.757 10.191 8.428 19.798 10.496 48.743 10.496h25.291v37.547h-27.362c-29.872 0-34.786 1.087-43.283 9.574-7.208 7.201-11.195 17.15-11.238 28.048-0.051 12.805 7.586 25.82 19.448 33.143l8.393 5.182 67.695 1.052v4.909c0 6.896 4.133 25.728 9.18 41.825 2.354 7.51 9.658 36.31 16.231 64 6.573 27.691 22.313 93.356 34.978 145.921 29.64 123.020 30.486 126.851 38.559 174.688 3.746 22.194 7.297 42.081 7.89 44.193l1.080 3.84h-652.558l0.958-7.68c-1.953 19.879-1.269 14.471-0.593 9.061l2.531-24.847c0.539-4.459 3.193-16.952 5.898-27.763 3.865-15.445 74.537-317.875 93.116-398.48 2.164-9.387 4.773-19.947 5.799-23.467l1.865-6.4h124.574c138.424 0 131.122 0.589 143.868-11.603 19.484-18.638 16.398-48.4-6.276-60.519l-7.154-3.825-248.322-0.939v-37.461h118.304c130.326 0 128.941 0.103 141.758-10.496 7.645-6.323 14.68-20.103 14.68-28.757 0-8.261-6.861-22.208-13.803-28.062-11.662-9.832-6.577-9.485-138.857-9.485h-122.082v-39.253h414.723v19.627zM338.775 539.084c-9.642 4.396-17.236 11.257-22.646 20.46-4.089 6.954-4.66 9.706-4.66 22.433 0 10.634 0.834 16.183 3.124 20.787 4.566 9.179 14.157 18.325 24.044 22.929l8.672 4.038 147.255 0.016c160.391 0.018 151.564 0.528 166.21-9.586 12.336-8.518 18.615-21.488 18.645-38.513 0.032-18.198-10.84-34.638-28.088-42.47-6.736-3.058-13.922-3.206-156.395-3.206-140.88 0-149.72 0.176-156.161 3.112zM837.979 902.833v18.773h-670.725v-37.547h670.725v18.774z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["nuclear-power-plant-2-remove"],"colorPermutations":{"11":[{}]}},"attrs":[{}],"properties":{"order":737,"id":342,"name":"nuclear-power-plant-2-remove","prevSize":32,"code":59820},"setIdx":0,"setId":1,"iconIdx":9},{"icon":{"paths":["M238.924 27.195c-12.221 3.717-20.318 10.61-24.654 20.987-2.255 5.397-2.645 17.998-2.665 86.164-0.033 106.975-2.404 145.293-12.063 194.914-1.905 9.785-22.653 100.41-46.107 201.387-23.454 100.979-44.462 192.045-46.684 202.37-9.969 46.309-15.344 93.663-17.291 152.321l-1.204 36.267-13.834 0.010c-18.172 0.012-24.533 1.978-34.341 10.611-18.555 16.333-19.125 37.674-1.456 54.576 13.27 12.693-31.196 11.603 473.38 11.603s460.11 1.090 473.38-11.603c13.621-13.030 16.525-28.659 8.33-44.836-7.766-15.329-18.438-20.335-43.384-20.351l-14.798-0.010-0.9-10.667c-0.494-5.866-1.683-20.65-2.641-32.853-2.268-28.878-11.141-94.702-16.564-122.881-10.624-55.199-39.432-163.437-78.358-294.402-5.998-20.181-14.817-55.509-19.599-78.508-22.59-108.655-22.514-107.913-23.318-226.988-0.549-81.46-1.059-97.546-3.281-103.634-3.218-8.813-17.169-21.866-25.989-24.316-7.401-2.055-519.214-2.215-525.958-0.163zM703.152 122.028v19.626h-29.068c-31.461 0-35.612 0.859-45.843 9.485-6.942 5.854-13.803 19.801-13.803 28.062 0 8.654 7.035 22.434 14.68 28.757 10.191 8.428 19.798 10.496 48.743 10.496h25.291v37.547h-27.362c-29.872 0-34.786 1.087-43.283 9.574-7.208 7.201-11.195 17.15-11.238 28.048-0.051 12.805 7.586 25.82 19.448 33.143l8.393 5.182 67.695 1.052v4.909c0 6.896 4.133 25.728 9.18 41.825 2.354 7.51 9.658 36.31 16.231 64 6.573 27.691 22.313 93.356 34.978 145.921 29.64 123.020 30.486 126.851 38.559 174.688 3.746 22.194 7.297 42.081 7.89 44.193l1.080 3.84h-652.558l0.958-7.68c-1.953 19.879-1.269 14.471-0.593 9.061l2.531-24.847c0.539-4.459 3.193-16.952 5.898-27.763 3.865-15.445 74.537-317.875 93.116-398.48 2.164-9.387 4.773-19.947 5.799-23.467l1.865-6.4h124.574c138.424 0 131.122 0.589 143.868-11.603 19.484-18.638 16.398-48.4-6.276-60.519l-7.154-3.825-248.322-0.939v-37.461h118.304c130.326 0 128.941 0.103 141.758-10.496 7.645-6.323 14.68-20.103 14.68-28.757 0-8.261-6.861-22.208-13.803-28.062-11.662-9.832-6.577-9.485-138.857-9.485h-122.082v-39.253h414.723v19.627zM473.603 399.137c-9.642 4.395-17.237 11.256-22.647 20.459l-4.66 7.927-1.706 107.521-102.68 1.707-8.335 5.156c-16.263 10.062-23.914 25.054-22.612 44.31 1.198 17.712 11.018 31.72 27.674 39.476 8.482 3.949 9.744 4.038 57.667 4.054l48.994 0.017 0.499 50.773c0.559 56.939 0.635 57.335 13.499 70.2 8.877 8.876 17.266 12.666 29.937 13.521 14.334 0.969 25.771-3.033 35.391-12.383 14.655-14.243 16.36-22.646 16.378-80.725l0.013-41.387h50.402c54.323 0 55.731-0.195 69.355-9.603 12.336-8.518 18.615-21.488 18.645-38.513 0.032-18.198-10.84-34.638-28.088-42.47-6.402-2.907-11.862-3.209-58.537-3.243l-51.477-0.038-0.595-51.626c-0.572-49.525-0.755-51.974-4.504-60.16-8.433-18.412-23.609-28.141-43.841-28.106-7.889 0.014-14.265 1.078-18.773 3.133zM837.979 902.833v18.773h-670.725v-37.547h670.725v18.774z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["nuclear-power-plant-add"],"colorPermutations":{"11":[{}]}},"attrs":[{}],"properties":{"order":736,"id":341,"name":"nuclear-power-plant-add","prevSize":32,"code":59821},"setIdx":0,"setId":1,"iconIdx":10},{"icon":{"paths":["M511.877 60.832c-121.168 0-235.149 47.264-320.852 132.999-85.701 85.703-132.933 199.65-132.933 320.851 0 121.234 47.233 235.181 132.933 320.885 85.703 85.738 199.684 132.967 320.852 132.967 121.3 0 235.246-47.229 320.953-132.967 85.767-85.701 132.966-199.65 132.966-320.885 0-121.201-47.197-235.147-132.966-320.851-85.705-85.735-199.65-132.999-320.953-132.999zM792.716 795.457c-74.94 75.005-174.748 116.32-280.839 116.32-106.026 0-205.702-41.316-280.774-116.32-75.007-75.007-116.319-174.682-116.319-280.774s41.313-205.767 116.32-280.773c75.073-75.008 174.748-116.321 280.774-116.321 106.090 0 205.9 41.314 280.839 116.321 75.008 75.006 116.322 174.679 116.322 280.773 0 106.093-41.314 205.767-116.322 280.774zM721.654 573.712l-181.366-77.714v-293.308c0-15.644-12.701-28.412-28.411-28.412-15.644 0-28.313 12.768-28.313 28.412v311.993c0 11.333 6.753 21.66 17.214 26.071l198.546 85.104c3.643 1.537 7.42 2.306 11.13 2.306 10.998 0 21.561-6.484 26.107-17.18 6.148-14.441-0.505-31.052-14.909-37.27zM228.262 486.337h-28.345c-15.643 0-28.378 12.702-28.378 28.345s12.735 28.345 28.378 28.345h28.345c15.643 0 28.412-12.702 28.412-28.345s-12.769-28.345-28.412-28.345zM767.18 514.682c0 15.644 12.768 28.378 28.411 28.378h28.345c15.677 0 28.345-12.735 28.345-28.378s-12.668-28.378-28.345-28.378h-28.345c-15.644 0-28.411 12.733-28.411 28.378zM511.877 769.986c-15.644 0-28.313 12.7-28.313 28.345v28.41c0 15.578 12.669 28.313 28.313 28.313 15.709 0 28.411-12.735 28.411-28.313v-28.41c0-15.645-12.701-28.345-28.411-28.345z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["clock-2"],"colorPermutations":{"11":[{}]}},"attrs":[{}],"properties":{"order":733,"id":340,"name":"clock-2","prevSize":32,"code":59818},"setIdx":0,"setId":1,"iconIdx":11},{"icon":{"paths":["M823.902 762.776h-624.849c-33.959 0-61.649-27.69-61.649-61.649 0-31.869 14.106-61.649 38.139-82.024 7.837-6.269 19.331-14.629 33.959-24.033v-1.567c-1.045-89.339-3.657-254.955 94.563-354.743 1.045-1.045 77.322-76.8 208.457-76.8 104.49 0 181.812 50.155 207.935 76.8 43.886 44.408 73.143 107.624 87.249 188.082 10.971 64.261 10.449 126.433 9.927 168.229 15.151 9.404 26.122 17.763 33.437 24.555 22.465 20.376 35.527 49.633 35.527 79.935 0 35.004-28.212 63.216-62.694 63.216zM512.522 203.755c-112.327 0-177.633 63.216-178.155 63.739-86.204 87.771-84.114 242.416-83.069 325.486v4.702c0 12.539-6.269 25.078-17.241 31.869-17.763 10.971-27.167 18.286-31.869 21.943-14.629 12.539-23.51 30.824-23.51 50.155 0 10.971 8.882 19.853 19.853 19.853h624.849c11.494 0 20.898-9.404 20.898-20.898 0-18.808-7.837-36.571-21.943-49.11-4.18-3.657-13.061-10.971-30.302-21.943-10.971-6.792-17.241-18.286-16.718-31.347v-2.090c0.522-40.229 1.045-100.31-9.404-161.437-12.539-72.098-37.616-128-75.755-166.139-17.241-18.286-83.592-64.784-177.633-64.784z","M422.139 217.339l-1.567-24.555c0-2.612-0.522-4.702-0.522-6.792-0-50.678 41.273-91.951 91.951-91.951s91.951 41.273 91.951 91.951c0 2.090 0 4.18-0.522 6.269l-1.567 24.555-24.033-5.224c-43.363-10.449-89.339-10.449-132.18 0l-23.51 5.747zM512 135.837c-20.376 0-38.139 12.016-45.976 29.78 30.302-4.18 61.127-4.18 91.951 0-7.992-17.691-25.482-29.78-45.796-29.78-0.063 0-0.126 0-0.189 0l0.010-0z","M512 929.959c-83.592 0-151.51-67.918-151.51-151.51 0-14.629 2.090-28.735 6.269-42.318l4.18-15.151h282.122l4.18 15.151c4.18 13.584 6.269 28.212 6.269 42.318 0 83.592-67.918 151.51-151.51 151.51zM403.331 762.776c-0.522 5.224-1.045 10.449-1.045 15.673 0 60.604 49.11 109.714 109.714 109.714s109.714-49.11 109.714-109.714c0-5.224-0.522-10.449-1.045-15.673h-217.339z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["bell-3"],"colorPermutations":{"11":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":732,"id":339,"name":"bell-1","prevSize":32,"code":59819},"setIdx":0,"setId":1,"iconIdx":12},{"icon":{"paths":["M287.357 0c-17.606 0-31.878 14.272-31.878 31.878v0 127.514c0 17.606 14.272 31.878 31.878 31.878v0h127.514c17.606 0 31.878-14.272 31.878-31.878v0-127.514c0-17.606-14.272-31.878-31.878-31.878v0h-127.514zM319.236 63.757h63.757v63.757h-63.757v-63.757zM319.236 255.028v345.563c-0.268 1.553-0.421 3.341-0.421 5.164s0.153 3.612 0.447 5.352l-0.026-0.188v249.8c0 17.606 14.272 31.878 31.878 31.878v0h121.648l15.174-63.757h-104.944v-191.271h127.514v31.878c-0 17.606 14.272 31.878 31.878 31.878v0h52.918l106.474-108.196v-51.197c0-17.606-14.272-31.878-31.878-31.878v0h-127.514c-17.606 0-31.878 14.272-31.878 31.878v0 31.878h-127.514v-191.271h127.514v31.878c-0 17.606 14.272 31.878 31.878 31.878v0h127.514c17.606 0 31.878-14.272 31.878-31.878v0-127.514c0-17.606-14.272-31.878-31.878-31.878v0h-127.514c-17.606 0-31.878 14.272-31.878 31.878v0 31.878h-127.514v-63.757h-63.757zM574.263 318.785h63.757v63.757h-63.757v-63.757zM905.991 510.31c-22.33 0.043-42.506 9.233-56.985 24.022l-0.014 0.014-297.362 302.335-44.375 186.553 186.553-44.311 6.248-6.248 296.087-291.178c31.878-30.986 32.197-83.012 0.765-114.38l-33.472-33.536c-14.483-14.385-34.439-23.276-56.472-23.276-0.32 0-0.639 0.002-0.958 0.006l0.049-0zM906.373 573.557c4.272 0 8.543 1.721 11.923 5.101l33.536 33.536c3.13 2.98 5.077 7.178 5.077 11.831 0 4.714-1.999 8.962-5.195 11.942l-0.010 0.009h-0.128l-289.903 284.993-68.475 16.322 16.322-68.475 284.993-290.030c2.981-3.169 7.181-5.162 11.847-5.228l0.012-0zM574.263 573.812h63.757v63.757h-63.757v-26.778c0.268-1.553 0.421-3.341 0.421-5.164s-0.153-3.612-0.447-5.352l0.026 0.188v-26.65z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["edit-node"],"colorPermutations":{"11":[{}]}},"attrs":[{}],"properties":{"order":725,"id":338,"name":"edit-node","prevSize":32,"code":59648},"setIdx":0,"setId":1,"iconIdx":13},{"icon":{"paths":["M510.5 127.625c-105.418 0-191.438 86.019-191.438 191.438s86.019 191.438 191.438 191.438c76.001 0 147.088-44.669 201.648-86.275 54.879-41.861 93.23-83.722 93.23-83.722l19.718-21.441-19.973-21.696s-38.607-41.861-93.166-83.467c-54.943-41.67-125.966-86.275-201.456-86.275zM510.5 510.5c-175.995 0-319.063 143.068-319.063 319.063h63.813c0-140.834 114.416-255.25 255.25-255.25 59.346 0 113.14 21.186 156.532 54.879l44.669-45.435c-55.198-44.86-124.754-73.257-201.201-73.257zM510.5 191.438c48.115 0 112.693 35.097 162.531 73.257 35.863 27.184 47.859 41.159 61.069 54.368-12.954 13.401-24.887 27.184-60.622 54.368-49.71 38.096-114.033 73.257-162.977 73.257-70.832 0-127.625-56.793-127.625-127.625s56.793-127.625 127.625-127.625zM906.33 510.756c-22.271 0.167-42.355 9.392-56.778 24.169l-0.016 0.016-297.686 302.599-44.35 186.46 186.46-44.158 6.254-6.445 296.601-291.368c31.651-30.949 32.162-83.020 0.511-114.416l-33.438-33.693c-14.416-14.323-34.281-23.175-56.215-23.175-0.473 0-0.944 0.004-1.415 0.012l0.071-0.001zM906.84 574.058c4.212 0 8.487 1.723 11.933 5.233l33.438 33.438c7.019 6.7 7.019 16.91 0 23.93l-290.156 284.859-68.79 16.719 16.464-68.79 285.37-290.156c2.914-3.202 7.091-5.211 11.738-5.233l0.004-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["edit-profile"],"colorPermutations":{"11":[{}]}},"attrs":[{}],"properties":{"order":738,"id":337,"name":"edit-profile","prevSize":32,"code":59649},"setIdx":0,"setId":1,"iconIdx":14},{"icon":{"paths":["M768 384c0-160-128-288-288-288s-288 128-288 288c0 108.8 57.6 201.6 147.2 249.6-121.6 48-214.4 153.6-240 288-3.2 16 6.4 35.2 25.6 38.4h3.2c16 0 28.8-9.6 32-25.6 28.8-150.4 160-259.2 313.6-262.4h6.4c160 0 288-128 288-288zM256 384c0-124.8 99.2-224 224-224s224 99.2 224 224c0 121.6-99.2 220.8-220.8 224h-9.6c-120.856-3.215-217.601-101.952-217.601-223.286 0-0.251 0-0.502 0.001-0.753l-0 0.039zM896 704h-256c-19.2 0-32 12.8-32 32v192c0 19.2 12.8 32 32 32h256c19.2 0 32-12.8 32-32v-192c0-16-12.8-32-32-32zM864 896h-192v-128h192v128z","M736 864h32c19.2 0 32-12.8 32-32s-12.8-32-32-32h-32c-19.2 0-32 12.8-32 32s16 32 32 32z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["profile-38"],"colorPermutations":{"11":[{},{}]}},"attrs":[{},{}],"properties":{"order":727,"id":336,"name":"profile-1","prevSize":32,"code":59650},"setIdx":0,"setId":1,"iconIdx":15},{"icon":{"paths":["M874.667 156.608c50.165 18.104 85.377 65.303 85.377 120.725s-35.213 102.621-84.486 120.444l-0.892 0.282v519.275c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667h-0v-519.275c-50.181-18.096-85.408-65.302-85.408-120.736s35.227-102.64 84.516-120.454l0.892-0.282v-49.92c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667h0v49.941zM832 320c0.002 0 0.004 0 0.007 0 23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667c-0.002 0-0.005 0-0.007 0l0-0c-23.561 0.004-42.66 19.105-42.66 42.667s19.099 42.663 42.66 42.667l0 0zM234.667 391.275c50.165 18.104 85.377 65.303 85.377 120.725s-35.213 102.621-84.486 120.444l-0.892 0.282v284.608c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-284.608c-50.181-18.096-85.408-65.302-85.408-120.736s35.227-102.64 84.516-120.454l0.892-0.282v-284.587c-0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v0 284.608zM192 554.667c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667h-0c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667h-0zM554.667 106.667v519.275c50.165 18.104 85.377 65.303 85.377 120.725s-35.213 102.621-84.486 120.444l-0.892 0.282v49.941c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-49.941c-50.165-18.104-85.377-65.303-85.377-120.725s35.213-102.621 84.486-120.444l0.892-0.282v-519.275c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v0zM512 789.333c0.002 0 0.004 0 0.007 0 23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667c-0.002 0-0.005 0-0.007 0l0-0c-23.561 0.004-42.66 19.105-42.66 42.667s19.099 42.663 42.66 42.667l0 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["settings-2-9"],"colorPermutations":{"11":[{}]}},"attrs":[{}],"properties":{"order":728,"id":335,"name":"settings-1","prevSize":32,"code":59651},"setIdx":0,"setId":1,"iconIdx":16},{"icon":{"paths":["M69.5 230.75c-20.71 0-37.5-16.79-37.5-37.5s16.79-37.5 37.5-37.5v0h436.875c20.71 0 37.5 16.79 37.5 37.5s-16.79 37.5-37.5 37.5v0h-436.875zM731.375 352.625c-62.033 0-112.5-50.467-112.5-112.5v-95.625c0-62.033 50.467-112.5 112.5-112.5s112.5 50.467 112.5 112.5v11.25h110.625c20.71 0 37.5 16.79 37.5 37.5s-16.79 37.5-37.5 37.5v0h-110.625v9.375c0 62.033-50.467 112.5-112.5 112.5zM693.875 144.5v95.625c0 20.678 16.822 37.5 37.5 37.5s37.5-16.822 37.5-37.5v-95.625c0-20.678-16.822-37.5-37.5-37.5s-37.5 16.822-37.5 37.5zM506.285 795.125c20.71 0 37.5 16.79 37.5 37.5s-16.79 37.5-37.5 37.5v0h-436.785c-20.71 0-37.5-16.79-37.5-37.5s16.79-37.5 37.5-37.5v0h436.785zM69.5 549.275c-20.71 0-37.5-16.79-37.5-37.5s16.79-37.5 37.5-37.5v0h106.875c20.71 0 37.5 16.79 37.5 37.5s-16.79 37.5-37.5 37.5v0h-106.875zM954.5 474.275c20.71 0 37.5 16.79 37.5 37.5s-16.79 37.5-37.5 37.5v0h-440.625v9.6c0 62.033-50.467 112.5-112.5 112.5s-112.5-50.467-112.5-112.5v-97.5c0-62.033 50.467-112.5 112.5-112.5s112.5 50.467 112.5 112.5v12.9h440.625zM438.875 558.875v-97.5c0-20.678-16.822-37.5-37.5-37.5s-37.5 16.822-37.5 37.5v97.5c0 20.678 16.822 37.5 37.5 37.5s37.5-16.822 37.5-37.5zM954.5 795.125c20.71 0 37.5 16.79 37.5 37.5s-16.79 37.5-37.5 37.5v0h-110.715v9.375c0 62.033-50.467 112.5-112.5 112.5-62.025 0-112.5-50.467-112.5-112.5v-95.625c0-62.033 50.475-112.5 112.5-112.5 62.033 0 112.5 50.467 112.5 112.5v11.25h110.715zM768.785 879.5v-95.625c0-20.678-16.822-37.5-37.5-37.5-20.67 0-37.5 16.822-37.5 37.5v95.625c0 20.678 16.83 37.5 37.5 37.5 20.678 0 37.5-16.822 37.5-37.5z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["settings-120"],"colorPermutations":{"11":[]}},"attrs":[],"properties":{"order":731,"id":334,"name":"settings-2","prevSize":32,"code":59652},"setIdx":0,"setId":1,"iconIdx":17},{"icon":{"paths":["M170.667 426.667h85.333v341.419c0 23.509-18.944 42.581-42.667 42.581-23.552 0-42.667-19.029-42.667-42.581v-341.419zM170.667 213.333c0-23.552 18.944-42.667 42.667-42.667 23.552 0 42.667 18.944 42.667 42.667v42.667h-85.333v-42.667zM128 298.667h170.667v85.333h-170.667v-85.333zM426.667 597.333h170.667v85.333h-170.667v-85.333zM725.333 469.333h170.667v85.333h-170.667v-85.333zM469.333 725.333h85.333v42.667c0 23.552-18.944 42.667-42.667 42.667-23.552 0-42.667-18.944-42.667-42.667v-42.667zM469.333 213.248c0-23.509 18.944-42.581 42.667-42.581 23.552 0 42.667 19.029 42.667 42.581v341.419h-85.333v-341.419zM768 597.333h85.333v170.667c0 23.552-18.944 42.667-42.667 42.667-23.552 0-42.667-18.944-42.667-42.667v-170.667zM768 212.907c0-23.296 18.944-42.24 42.667-42.24 0.001-0 0.001-0 0.002-0 23.414 0 42.423 18.86 42.664 42.217l0 0.023v213.76h-85.333v-213.76z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["settings-169"],"colorPermutations":{"11":[{}]}},"attrs":[{}],"properties":{"order":730,"id":333,"name":"settings-3","prevSize":32,"code":59653},"setIdx":0,"setId":1,"iconIdx":18},{"icon":{"paths":["M957.323 261.696c0-7.898-4.253-15.796-11.543-19.441l-422.844-239.369c-6.683-3.645-15.188-3.645-21.871 0l-422.844 238.761c-7.29 4.253-11.543 11.543-11.543 19.441s4.253 15.796 11.543 19.441l422.844 236.331c3.645 1.823 7.29 3.038 10.936 3.038s7.29-0.608 10.936-3.038l422.844-236.331c7.29-3.645 11.543-10.936 11.543-18.834zM512 441.526l-334.752-180.438 334.752-182.868 329.284 182.868-329.284 180.438zM455.499 581.259l-378.494-200.486c-6.683-3.645-15.188-3.645-21.871 0.608s-10.936 11.543-10.936 18.834v379.102c0 7.898 4.253 15.188 10.936 19.441l378.494 222.358c3.645 1.823 7.29 3.038 11.543 3.038 3.645 0 7.898-1.215 10.936-3.038 6.683-4.253 10.936-11.543 10.936-19.441v-400.973c0.608-7.898-4.253-15.188-11.543-19.441zM392.923 908.113l-273.391-153.706v-273.998l273.391 146.416v281.289zM568.501 581.259c-7.29 3.645-12.151 11.543-12.151 19.441v400.973c0 7.898 4.253 15.188 10.936 19.441 3.645 1.823 7.29 3.038 10.936 3.038s7.898-1.215 11.543-3.038l378.494-222.358c6.683-4.253 10.936-11.543 10.936-19.441v-378.494c0-7.898-4.253-15.188-10.936-18.834s-15.188-4.253-21.871-0.608l-377.887 199.879zM631.077 626.824l273.391-146.416v273.998l-273.391 153.706v-281.289z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["application"],"colorPermutations":{"11":[]},"defaultCode":59691},"attrs":[],"properties":{"order":555,"id":163,"name":"application","prevSize":32,"code":59691},"setIdx":0,"setId":1,"iconIdx":19},{"icon":{"paths":["M128 736c0 88.366 71.634 160 160 160s160-71.634 160-160v0c0-88.366-71.634-160-160-160s-160 71.634-160 160v0z","M544.512 100.352l-80.64 47.040c-1.408 0.832-2.4 2.112-3.648 3.104-1.28 1.056-2.592 1.92-3.712 3.168-1.834 2.099-3.416 4.489-4.654 7.075l-0.082 0.189c-0.416 0.8-1.12 1.376-1.472 2.24l-152.192 381.344c-3.36-0.192-6.72-0.512-10.112-0.512-105.888 0-192 86.112-192 192s86.112 192 192 192 192-86.112 192-192c-0.108-79.512-48.468-147.703-117.363-176.87l-1.261-0.474 117.376-294.080 200.192 546.432c4.647 12.346 16.358 20.971 30.084 20.971 5.927 0 11.479-1.608 16.242-4.412l-0.15 0.082 283.008-165.056c9.577-5.641 15.902-15.901 15.902-27.638 0-7.938-2.893-15.2-7.682-20.789l0.036 0.043-431.36-506.944c-5.917-6.907-14.648-11.257-24.396-11.257-5.937 0-11.497 1.614-16.266 4.426l0.15-0.082zM416 736c0 70.592-57.408 128-128 128s-128-57.408-128-128 57.408-128 128-128 128 57.408 128 128zM942.848 626.56l-216.96 126.528-44.928-122.592 225.632-46.56 36.256 42.624zM882.944 556.16l-199.52 41.152 108.48-148.16 91.040 107.008zM660.448 574.528l-43.424-118.624 147.712-23.808-104.288 142.4zM751.616 401.792l-145.824 23.52-0.64-1.856 54.496-129.728 91.968 108.064zM588.96 379.328l-35.712-97.408 82.624-14.176-46.912 111.616zM542.048 251.328l-22.752-62.144 34.336-20.032 59.552 70.016-71.136 12.16z","M192 752c0 8.837 7.163 16 16 16s16-7.163 16-16v0c0-44.096 35.872-80 80-80 8.837 0 16-7.163 16-16s-7.163-16-16-16v0c-61.76 0-112 50.24-112 112zM16 576h96c8.837 0 16-7.163 16-16s-7.163-16-16-16v0h-96c-8.837 0-16 7.163-16 16s7.163 16 16 16v0zM16 640h64c8.837 0 16-7.163 16-16s-7.163-16-16-16v0h-64c-8.837 0-16 7.163-16 16s7.163 16 16 16v0zM16 704h32c8.837 0 16-7.163 16-16s-7.163-16-16-16v0h-32c-8.837 0-16 7.163-16 16s7.163 16 16 16v0zM16 800h32c8.837 0 16-7.163 16-16s-7.163-16-16-16v0h-32c-8.837 0-16 7.163-16 16s7.163 16 16 16v0zM16 864h64c8.837 0 16-7.163 16-16s-7.163-16-16-16v0h-64c-8.837 0-16 7.163-16 16s7.163 16 16 16v0zM16 928h96c8.837 0 16-7.163 16-16s-7.163-16-16-16v0h-96c-8.837 0-16 7.163-16 16s7.163 16 16 16v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["break"],"colorPermutations":{"11":[]},"defaultCode":59692},"attrs":[],"properties":{"order":556,"id":164,"name":"break","prevSize":32,"codes":[59692],"code":59692},"setIdx":0,"setId":1,"iconIdx":20},{"icon":{"paths":["M652.352 928h-536.704c-46.139-0.145-83.503-37.509-83.648-83.634l-0-0.014v-24.704c0.145-46.139 37.509-83.503 83.634-83.648l0.014-0h536.704c46.139 0.145 83.503 37.509 83.648 83.634l0 0.014v24.704c-0.145 46.139-37.509 83.503-83.634 83.648l-0.014 0zM992 928h-128v-320l96 256z","M1018.048 908.544l-28.672-57.344-95.392-254.432c-4.666-12.265-16.326-20.822-29.984-20.822-17.673 0-32 14.327-32 32 0 0.019 0 0.038 0 0.057l-0-0.003v59.648l-110.176 60.16c-5.175-3.95-11.013-7.63-17.172-10.77l-0.652-0.302v-172.736c0-17.673-14.327-32-32-32v0h-32v-320c0-18.496 15.264-35.328 32-35.328 17.673 0 32-14.327 32-32s-14.327-32-32-32v0c-51.040 0-94.272 43.744-95.936 96.192-0.034 0.52-0.057 1.145-0.064 1.774l-0 0.018v321.344h-39.84l-57.376-200.8c-3.953-13.504-16.228-23.2-30.766-23.2-0.006 0-0.012 0-0.019 0l-287.999-0c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h64v160c-7.104 0-14.016 2.368-19.616 6.72l-128 99.328c-7.565 5.909-12.383 15.032-12.384 25.28l-0 0v73.408c-37.76 19.040-64 57.792-64 102.912v24.704c0.073 63.841 51.807 115.575 115.641 115.648l536.711 0c31.2 0 59.424-12.544 80.256-32.672 1.152 0.128 2.176 0.672 3.392 0.672h96c0 17.673 14.327 32 32 32v0h128.64c0.001 0 0.001 0 0.002 0 17.673 0 32-14.327 32-32 0-7.353-2.48-14.127-6.649-19.53l0.055 0.074zM288 352h135.872l45.696 160h-181.568v-160zM128 659.008l106.976-83.008h405.024v128h-512v-44.992zM704 844.352c0 28.48-23.2 51.648-51.648 51.648h-536.704c-28.48-0-51.648-23.168-51.648-51.648v-24.704c0-28.48 23.2-51.648 51.648-51.648h536.704c28.48 0 51.648 23.168 51.648 51.648v24.704zM832 864h-65.984c1.12-6.4 1.984-12.928 1.984-19.648v-24.704c0-14.080-2.88-27.456-7.552-40l71.552-39.040v123.392zM896 896v-111.52l34.016 90.752c0.416 1.056 0.864 2.080 1.344 3.072l8.864 17.696h-44.224z","M624 832h-480c-8.837 0-16 7.163-16 16s7.163 16 16 16v0h480c8.837 0 16-7.163 16-16s-7.163-16-16-16v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["construction"],"colorPermutations":{"11":[]},"defaultCode":59693},"attrs":[],"properties":{"order":557,"id":165,"name":"construction1","prevSize":32,"codes":[59693],"code":59693},"setIdx":0,"setId":1,"iconIdx":21},{"icon":{"paths":["M901.393 308.019h122.607v-102.4h-181.589l-65.809 102.4h-55.979l-235.383-205.892-93.935 105.131-103.492-105.677-179.951 206.438h-107.861l114.142 300.1c-37.956 32.768-62.805 80.828-62.805 135.168 0 98.85 80.282 179.132 179.132 179.132 94.208 0 170.94-73.455 177.766-166.025l206.165-77.005v243.302h102.4v-332.868l184.593-281.805zM493.978 245.76l70.997 62.259h-74.82l-27.034-27.58 30.857-34.679zM292.181 252.314l54.613 55.433h-102.946l48.333-55.433zM148.275 410.419h562.244l-107.588 163.84-217.361 81.374c-30.857-54.34-88.474-91.477-155.102-91.477-7.919 0-15.292 1.365-22.938 2.185l-59.255-155.921zM230.468 820.019c-42.325 0-76.732-34.406-76.732-76.732s34.406-76.732 76.732-76.732c42.325 0 76.732 34.406 76.732 76.732s-34.406 76.732-76.732 76.732z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["construction-traffic-monochrome"],"colorPermutations":{"11":[]},"defaultCode":59709},"attrs":[],"properties":{"order":558,"id":166,"name":"construction-traffic-monochrome","prevSize":32,"code":59709},"setIdx":0,"setId":1,"iconIdx":22},{"icon":{"paths":["M230.649 216.067h512v75.889h-512v-75.889zM230.649 413.135h512v75.889h-512v-75.889zM230.649 613.848h227.556v75.889h-227.556v-75.889z","M439.646 948.111h-332.165v-872.222h758.445v413.135c0 20.988 17.011 37.889 37.889 37.889 20.988 0 37.889-17.011 37.889-37.889v-413.135c0-41.866-34.023-75.889-75.889-75.889h-758.334c-41.866 0-75.889 34.023-75.889 75.889v872.222c0 41.866 34.023 75.889 75.889 75.889h332.165c20.988 0 37.889-17.011 37.889-37.889 0-20.988-17.011-38-37.889-38z","M981.582 945.239l-101.406-103.284c20.325-31.814 31.040-68.709 31.040-106.377 0-109.801-89.365-199.056-199.056-199.056s-199.056 89.365-199.056 199.166 89.365 199.056 199.056 199.056c43.302 0 83.179-14.029 115.877-37.558l99.307 101.185c7.18 7.291 16.901 11.378 27.064 11.378 20.988 0 37.889-17.011 37.889-37.889 0.11-9.942-3.756-19.442-10.715-26.622zM712.16 858.967c-67.935 0-123.278-55.342-123.278-123.278s55.342-123.278 123.278-123.278 123.278 55.342 123.278 123.278-55.342 123.278-123.278 123.278z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["device"],"colorPermutations":{"11":[]},"defaultCode":59710},"attrs":[],"properties":{"order":559,"id":167,"name":"device-search","prevSize":32,"code":59710},"setIdx":0,"setId":1,"iconIdx":23},{"icon":{"paths":["M717.369 306.062c-14.222-14.222-36.978-14.222-51.2 0l-154.169 154.738-154.169-154.169c-14.222-14.222-36.978-14.222-51.2 0s-14.222 36.978 0 51.2l154.738 154.169-154.738 154.738c-14.222 14.222-14.222 36.978 0 51.2s36.978 14.222 51.2 0l154.169-154.738 154.169 154.738c13.653 14.222 36.409 14.222 50.631 0.569l0.569-0.569c14.222-14.222 14.222-36.978 0-50.631l-154.738-155.307 154.738-154.738c14.222-14.222 14.222-36.978 0-51.2 0 0.569 0 0 0 0zM512-0c-282.738 0-512 229.262-512 512s229.262 512 512 512 512-229.262 512-512-229.262-512-512-512zM823.182 823.182c-82.489 82.489-194.56 129.138-311.182 128.569-116.622 0-228.693-46.080-311.182-128.569s-129.138-194.56-129.138-311.182 46.080-228.693 129.138-311.182c82.489-82.489 194.56-129.138 311.182-128.569 116.622 0 228.693 46.080 311.182 129.138 82.489 82.489 129.138 194.56 128.569 311.182 0.569 116.053-46.080 228.124-128.569 310.613z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["fail"],"colorPermutations":{"11":[]},"defaultCode":59711},"attrs":[],"properties":{"order":560,"id":168,"name":"fail","prevSize":32,"code":59711},"setIdx":0,"setId":1,"iconIdx":24},{"icon":{"paths":["M630.473 1063.406c-21.781 0-39.386-17.606-39.386-39.386v-590.792c0-0.007 0-0.017 0-0.026 0-10.162 3.859-19.421 10.191-26.395l-0.030 0.032 256.994-288.622h-692.802l257.507 288.818c6.185 6.931 9.965 16.124 9.965 26.199 0 0.011 0 0.022 0 0.034v-0.001 355.42l62.585 50.651c16.936 13.706 19.536 38.48 5.829 55.377s-38.48 19.496-55.377 5.829l-77.197-62.466c-9.256-7.444-14.612-18.748-14.612-30.603v-359.241l-305.991-343.211c-10.319-11.58-12.879-28.161-6.538-42.34 6.341-14.14 20.441-23.277 35.96-23.277h869.37c15.597 0 29.697 9.177 35.999 23.395s3.663 30.839-6.774 42.379l-306.306 343.171v575.668c0 21.781-17.606 39.386-39.386 39.386z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["filter-1"],"colorPermutations":{"11":[]},"defaultCode":59753},"attrs":[],"properties":{"order":561,"id":169,"name":"filter-1","prevSize":32,"code":59753},"setIdx":0,"setId":1,"iconIdx":25},{"icon":{"paths":["M1024 119.552c0 32-12.544 61.952-35.072 84.48l-323.328 307.482v486.886c0 14.080-11.52 25.6-25.6 25.6s-25.6-11.52-25.6-25.6v-497.894c0-6.912 2.816-13.824 7.936-18.432l330.752-314.65c12.544-12.544 19.712-29.696 19.712-47.872 0-37.632-30.72-68.352-68.352-68.352 0 0-784.128 0-784.896 0-37.632 0-68.352 30.72-68.352 68.352 0 18.176 7.168 35.328 19.968 48.384l305.152 314.88c4.864 4.864 7.68 11.52 7.68 18.432v369.152c0 14.336-11.52 25.6-25.6 25.6s-25.6-11.264-25.6-25.6v-358.4l-297.472-307.712c-22.784-22.784-35.328-52.736-35.328-84.736 0-66.048 53.76-119.552 119.552-119.552 0.768 0 784.896 0 784.896 0 66.048 0 119.552 53.504 119.552 119.552z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["filter-2"],"colorPermutations":{"11":[]},"defaultCode":59754},"attrs":[],"properties":{"order":562,"id":170,"name":"filter-2","prevSize":32,"code":59754},"setIdx":0,"setId":1,"iconIdx":26},{"icon":{"paths":["M969.143 864.114v-704.229c32-11.314 54.857-41.829 54.857-77.6 0-45.486-36.8-82.286-82.286-82.286-35.771 0-66.286 22.857-77.6 54.857h-704.229c-11.314-32-41.829-54.857-77.6-54.857-45.486 0-82.286 36.8-82.286 82.286 0 35.771 22.857 66.286 54.857 77.6v704.229c-32 11.314-54.857 41.829-54.857 77.6 0 45.486 36.8 82.286 82.286 82.286 35.771 0 66.286-22.857 77.6-54.857h704.229c11.314 32 41.829 54.857 77.6 54.857 45.486 0 82.286-36.8 82.286-82.286 0-35.771-22.857-66.286-54.857-77.6zM941.714 54.857c15.2 0 27.429 12.229 27.429 27.429s-12.229 27.429-27.429 27.429-27.429-12.229-27.429-27.429 12.229-27.429 27.429-27.429zM82.286 969.143c-15.2 0-27.429-12.229-27.429-27.429s12.229-27.429 27.429-27.429 27.429 12.229 27.429 27.429-12.229 27.429-27.429 27.429zM82.286 109.714c-15.2 0-27.429-12.229-27.429-27.429s12.229-27.429 27.429-27.429 27.429 12.229 27.429 27.429-12.229 27.429-27.429 27.429zM886.857 886.857h-749.714v-749.714h749.714v749.714zM941.714 969.143c-15.2 0-27.429-12.229-27.429-27.429s12.229-27.429 27.429-27.429 27.429 12.229 27.429 27.429-12.229 27.429-27.429 27.429z","M256 468.571h512c10.057 0 18.286-8.229 18.286-18.286v-201.143c0-10.057-8.229-18.286-18.286-18.286h-512c-10.057 0-18.286 8.229-18.286 18.286v201.143c0 10.057 8.229 18.286 18.286 18.286zM320 313.143h384v73.143h-384v-73.143zM256 793.143h512c10.057 0 18.286-8.229 18.286-18.286v-201.143c0-10.057-8.229-18.286-18.286-18.286h-512c-10.057 0-18.286 8.229-18.286 18.286v201.143c0 10.057 8.229 18.286 18.286 18.286zM320 637.714h384v73.143h-384v-73.143z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["group"],"colorPermutations":{"11":[]},"defaultCode":59755},"attrs":[],"properties":{"order":563,"id":171,"name":"group","prevSize":32,"code":59755},"setIdx":0,"setId":1,"iconIdx":27},{"icon":{"paths":["M522.052 66.495c-158-0.418-297.038 81.333-376.503 204.83-3.524 5.488 0.418 12.742 6.939 12.742h72.834c4.975 0 9.636-2.176 12.742-6.008 7.254-8.807 15.021-17.3 23.206-25.382 33.775-33.669 73.039-60.194 116.762-78.637 45.173-19.066 93.248-28.804 142.869-28.804s97.703 9.636 142.869 28.804c43.722 18.443 82.99 44.968 116.762 78.637s60.194 72.937 78.74 116.557c19.168 45.173 28.804 93.139 28.804 142.767s-9.738 97.594-28.804 142.767c-18.443 43.62-44.968 82.887-78.74 116.557s-73.039 60.194-116.762 78.637c-45.173 19.066-93.248 28.804-142.869 28.804s-97.703-9.738-142.869-28.804c-43.722-18.443-82.99-44.968-116.762-78.637-8.185-8.185-15.849-16.679-23.206-25.382-3.107-3.832-7.877-6.008-12.742-6.008h-72.834c-6.529 0-10.566 7.254-6.939 12.742 79.363 123.188 217.777 204.83 375.367 204.83 244.72 0 443.431-196.953 445.923-440.947 2.484-247.929-196.542-449.44-444.78-450.063zM390.805 628.037v-78.74h-325.321c-4.558 0-8.287-3.73-8.287-8.287v-58.018c0-4.558 3.73-8.287 8.287-8.287h325.321v-78.74c0-6.939 8.082-10.881 13.468-6.529l147.017 116.037c4.25 3.313 4.25 9.738 0 13.057l-147.017 116.037c-5.386 4.25-13.468 0.418-13.468-6.529z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["login-1"],"colorPermutations":{"11":[]},"defaultCode":59756},"attrs":[],"properties":{"order":564,"id":172,"name":"login-1","prevSize":32,"code":59756},"setIdx":0,"setId":1,"iconIdx":28},{"icon":{"paths":["M880.839 739.933h-72.834c-4.975 0-9.636 2.176-12.742 6.008-7.254 8.807-15.021 17.3-23.206 25.382-33.775 33.669-73.040 60.194-116.762 78.637-45.173 19.066-93.248 28.804-142.87 28.804s-97.703-9.738-142.87-28.804c-43.722-18.443-82.99-44.968-116.762-78.637s-60.194-72.937-78.74-116.557c-19.168-45.173-28.804-93.139-28.804-142.767s9.738-97.594 28.804-142.767c18.443-43.62 44.968-82.887 78.74-116.557s73.040-60.194 116.762-78.637c45.173-19.066 93.248-28.804 142.87-28.804s97.703 9.636 142.87 28.804c43.722 18.443 82.99 44.968 116.762 78.637 8.185 8.185 15.849 16.679 23.206 25.382 3.107 3.832 7.877 6.008 12.742 6.008h72.834c6.529 0 10.566-7.254 6.939-12.742-79.466-123.496-218.503-205.24-376.503-204.83-248.237 0.623-447.264 202.133-444.78 450.063 2.484 243.994 201.203 440.947 445.923 440.947 157.583 0 296.004-81.642 375.366-204.83 3.524-5.488-0.418-12.742-6.939-12.742z","M972.944 505.471l-147.017-116.037c-5.488-4.352-13.468-0.418-13.468 6.529v78.74h-325.321c-4.558 0-8.287 3.73-8.287 8.287v58.018c0 4.558 3.73 8.287 8.287 8.287h325.321v78.74c0 6.939 8.082 10.881 13.468 6.529l147.017-116.037c4.25-3.313 4.25-9.738 0-13.057z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["logout-1"],"colorPermutations":{"11":[]},"defaultCode":59807},"attrs":[],"properties":{"order":565,"id":173,"name":"logout-1","prevSize":32,"code":59807},"setIdx":0,"setId":1,"iconIdx":29},{"icon":{"paths":["M473.471 507.345l-195.103-154.376c-3.879-3.103-9.438-0.259-9.438 4.655v110.416h-181.010v-380.121h263.758v165.495c0 2.844 2.327 5.172 5.172 5.172h77.576c2.844 0 5.172-2.327 5.172-5.172v-217.212c0-20.040-16.162-36.202-36.202-36.202h-367.192c-20.040 0-36.202 16.162-36.202 36.202v951.596c0 20.040 16.162 36.202 36.202 36.202h367.192c20.040 0 36.202-16.162 36.202-36.202v-217.212c0-2.844-2.327-5.172-5.172-5.172h-77.576c-2.844 0-5.172 2.327-5.172 5.172v165.495h-263.758v-380.121h181.010v110.416c0 4.913 5.689 7.758 9.438 4.655l195.103-154.376c3.103-2.327 3.103-6.982 0-9.309zM987.798 0h-367.192c-20.040 0-36.202 16.162-36.202 36.202v217.212c0 2.844 2.327 5.172 5.172 5.172h77.576c2.844 0 5.172-2.327 5.172-5.172v-165.495h263.758v380.121h-181.010v-110.416c0-4.913-5.56-7.758-9.438-4.655l-195.232 154.376c-2.974 2.327-2.974 6.853 0 9.18l195.232 154.505c3.749 2.974 9.438 0.259 9.438-4.655v-110.416h181.010v380.121h-263.758v-165.495c0-2.844-2.327-5.172-5.172-5.172h-77.576c-2.844 0-5.172 2.327-5.172 5.172v217.212c0 20.040 16.162 36.202 36.202 36.202h367.192c20.040 0 36.202-16.162 36.202-36.202v-951.596c0-20.040-16.162-36.202-36.202-36.202z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["merge-cells"],"colorPermutations":{"11":[]},"defaultCode":59808},"attrs":[],"properties":{"order":566,"id":174,"name":"merge-cells","prevSize":32,"code":59808},"setIdx":0,"setId":1,"iconIdx":30},{"icon":{"paths":["M904.005 447.929h-182.313c-10.015 0-18.095-8.080-18.095-18.095v-45.635c0-10.015 8.080-18.095 18.095-18.095h182.313c10.015 0 18.095 8.080 18.095 18.095v45.635c0 10.015-8.080 18.095-18.095 18.095zM739.674 411.739h146.237v-9.446h-146.237v9.446zM982.757 885.274h-339.361c-10.015 0-18.095-8.080-18.095-18.095v-45.635c0-10.015 8.080-18.095 18.095-18.095h339.475c10.015 0 18.095 8.080 18.095 18.095v45.635c-0.114 10.015-8.194 18.095-18.208 18.095zM661.491 849.085h303.285v-9.446h-303.285v9.446z","M982.757 839.525h-339.361c-5.349 0-10.47-2.39-13.884-6.487s-4.894-9.559-3.869-14.794l38.352-209.056 40.855-183.337c1.821-8.308 9.218-14.112 17.639-14.112h181.63c8.535 0 15.819 5.918 17.639 14.225l41.197 186.865 37.669 205.415c0.91 5.235-0.455 10.697-3.869 14.794-3.528 4.097-8.649 6.487-13.998 6.487zM665.019 803.336h296.002l-33.572-183.451-37.896-171.956h-152.724l-37.555 168.429-34.255 186.978zM1021.905 885.274h-417.771c-10.015 0-18.095-8.080-18.095-18.095s8.080-18.095 18.095-18.095h417.771c10.015 0 18.095 8.080 18.095 18.095s-8.080 18.095-18.095 18.095z","M143.826 885.274c-10.015 0-18.095-8.080-18.095-18.095v-479.225c0-10.015 8.080-18.095 18.095-18.095h72.834c10.015 0 18.095 8.080 18.095 18.095v266.868c0 10.015-8.080 18.095-18.095 18.095s-18.095-8.080-18.095-18.095v-248.774h-36.645v461.016c0 10.128-8.194 18.208-18.095 18.208z","M557.5 283.256h-269.486c-10.015 0-18.095-8.080-18.095-18.095v-54.17c0-10.015 8.080-18.095 18.095-18.095h269.599c10.015 0 18.095 8.080 18.095 18.095v54.17c-0.114 10.015-8.194 18.095-18.208 18.095zM306.109 247.066h233.41v-17.981h-233.41v17.981z","M557.5 229.086h-269.486c-10.015 0-18.095-8.080-18.095-18.095v-54.17c0-10.015 8.080-18.095 18.095-18.095h269.599c10.015 0 18.095 8.080 18.095 18.095v54.17c-0.114 10.015-8.194 18.095-18.208 18.095zM306.109 192.896h233.41v-17.981h-233.41v17.981z","M189.119 804.246h467.275v62.933h-467.275z","M656.395 885.274h-467.275c-10.015 0-18.095-8.080-18.095-18.095v-62.933c0-10.015 8.080-18.095 18.095-18.095h467.275c10.015 0 18.095 8.080 18.095 18.095v62.933c0 10.015-8.080 18.095-18.095 18.095zM207.214 849.085h431.086v-26.744h-431.086v26.744z","M656.395 822.341h-467.275c-5.349 0-10.47-2.39-13.884-6.487s-4.894-9.559-3.869-14.794l98.781-539.085c1.593-8.649 9.104-14.794 17.753-14.794h269.599c8.763 0 16.274 6.259 17.753 14.794l98.895 539.085c0.91 5.235-0.455 10.697-3.869 14.794s-8.535 6.487-13.884 6.487zM210.856 786.152h423.803l-92.18-502.896h-239.442l-92.18 502.896zM710.337 885.274h-724.243c-10.015 0-18.095-8.080-18.095-18.095s8.080-18.095 18.095-18.095h724.243c10.015 0 18.095 8.080 18.095 18.095s-8.194 18.095-18.095 18.095z","M395.693 622.844c-1.024 0-2.162-0.228-3.186-0.683-1.593-0.683-16.501-7.397-30.841-32.548-14.339-24.923-13.429-41.652-13.201-43.473 0.341-3.642 3.073-6.714 6.714-7.397l63.502-11.722c2.731-0.455 5.69 0.455 7.625 2.617 1.935 2.048 2.617 5.007 1.821 7.739 0.114 0-0.114 3.869 3.983 11.039 1.935 3.414 5.007 7.852 8.535 9.446 0.91 0.455 2.162 1.252 2.845 1.935 3.073 3.073 3.186 7.852 0.455 11.153l-41.652 49.049c-1.935 1.821-4.211 2.845-6.601 2.845zM365.308 553.652c0.91 5.804 3.528 15.477 10.584 27.768 6.942 12.063 13.77 18.891 18.208 22.419l31.296-36.872c-2.39-2.39-5.007-5.69-7.739-10.356-2.617-4.552-4.097-8.421-5.007-11.722l-47.342 8.763zM514.276 622.389c-2.39 0-4.666-1.024-6.259-2.845l-41.766-49.049c-1.821-2.162-2.39-5.007-1.593-7.739 0.797-2.617 2.959-4.78 5.576-5.463-0.114 0 3.528-1.821 7.739-9.218 4.325-7.17 3.869-11.039 3.869-11.039-0.797-2.731 0-5.463 1.935-7.511 1.935-2.162 4.894-2.731 7.625-2.276l63.388 11.722c3.528 0.683 6.259 3.528 6.714 7.056 0.228 1.707 1.707 17.753-12.746 42.562-14.339 24.923-29.361 32.434-30.954 33.23-1.138 0.341-2.39 0.569-3.528 0.569zM484.573 566.512l31.182 36.758c4.552-3.756 11.722-10.811 18.778-23.102 6.942-11.836 9.332-20.94 10.242-26.516l-47.456-8.763c-0.91 3.3-2.504 7.056-5.007 11.494-2.617 4.438-5.349 7.739-7.739 10.128zM437.345 512.683c-0.683 0-1.366-0.114-2.048-0.228-2.731-0.569-4.78-2.845-5.69-5.463l-21.736-60.885c-1.252-3.414-0.114-7.17 2.845-9.332 1.479-1.024 14.794-10.356 43.587-10.356 28.678 0 42.676 9.104 44.269 10.128 3.073 2.162 4.325 6.032 3.073 9.559l-21.736 60.885c-0.91 2.617-3.186 4.666-5.918 5.235-2.731 0.683-5.576-0.228-7.625-2.162 0.114 0.114-2.39-1.935-11.608-1.935-8.763 0-11.949 2.276-11.949 2.276-1.593 1.593-3.414 2.276-5.463 2.276zM425.851 447.474l16.274 45.635c6.601-1.707 18.664-1.707 25.264 0l16.274-45.521c-5.576-2.048-15.25-4.666-29.361-4.666-13.884 0.114-23.102 2.504-28.451 4.552z","M454.757 569.015c-9.218 0-17.753-3.528-24.24-10.015s-10.015-15.136-10.015-24.24c0-18.891 15.363-34.255 34.255-34.255 9.104 0 17.753 3.528 24.24 10.015s10.015 15.136 10.015 24.24c0 18.891-15.363 34.255-34.255 34.255zM454.757 516.78c-9.901 0-17.867 7.966-17.867 17.867 0 4.78 1.821 9.218 5.235 12.632s7.852 5.235 12.632 5.235c9.901 0 17.867-7.966 17.867-17.867 0-4.78-1.821-9.218-5.235-12.632-3.414-3.3-7.852-5.235-12.632-5.235zM428.696 534.647v0z","M454.757 668.365c-73.744 0-133.719-59.974-133.719-133.719s59.974-133.719 133.719-133.719 133.719 59.974 133.719 133.719-59.974 133.719-133.719 133.719zM454.757 417.43c-64.64 0-117.217 52.577-117.217 117.217s52.577 117.217 117.217 117.217 117.217-52.577 117.217-117.217-52.577-117.217-117.217-117.217z","M28.134 885.274c-10.015 0-18.095-8.080-18.095-18.095v-285.077c0-10.015 8.080-18.095 18.095-18.095h48.48c10.015 0 18.095 8.080 18.095 18.095v279.045c0 10.015-8.080 18.095-18.095 18.095s-18.095-8.080-18.095-18.095v-260.95h-12.291v266.982c0 10.015-8.194 18.095-18.095 18.095z","M893.422 670.755c-2.276 0-4.666-0.341-6.942-1.366-2.162-1.024-4.097-2.276-5.804-3.983-3.414-3.414-5.463-7.852-5.463-12.86 0-4.78 1.935-9.332 5.235-12.632 0.797-0.797 1.821-1.593 2.845-2.276s1.935-1.138 3.186-1.593c1.138-0.455 2.276-0.797 3.414-1.024 2.276-0.455 4.666-0.455 7.056 0 1.138 0.114 2.276 0.455 3.3 1.024 1.138 0.455 2.162 1.024 3.186 1.593 1.024 0.683 1.935 1.479 2.845 2.276 3.3 3.3 5.235 7.852 5.235 12.632 0 4.894-1.821 9.332-5.235 12.86-1.707 1.593-3.642 2.959-5.918 3.983-2.162 1.024-4.552 1.366-6.942 1.366zM914.589 780.803c-8.535 0-16.16-6.032-17.753-14.794l-11.153-60.429c-1.821-9.787 4.666-19.233 14.453-21.054 9.787-1.935 19.233 4.666 21.054 14.453l11.153 60.429c1.821 9.787-4.666 19.233-14.453 21.054-1.138 0.341-2.276 0.341-3.3 0.341z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["nuclear-power"],"colorPermutations":{"11":[]},"defaultCode":59809},"attrs":[],"properties":{"order":567,"id":175,"name":"power-plant-3","prevSize":32,"codes":[59809],"code":59809},"setIdx":0,"setId":1,"iconIdx":31},{"icon":{"paths":["M1021.832 507.694l-180.511-142.829c-3.589-2.871-8.732-0.239-8.732 4.306v102.158h-172.257v-351.691h244.030v153.117c0 2.632 2.153 4.785 4.785 4.785h71.774c2.632 0 4.785-2.153 4.785-4.785v-200.966c0-18.542-14.953-33.494-33.494-33.494h-339.728c-18.542 0-33.494 14.953-33.494 33.494v880.423c0 18.542 14.953 33.494 33.494 33.494h339.728c18.542 0 33.494-14.953 33.494-33.494v-200.966c0-2.632-2.153-4.785-4.785-4.785h-71.774c-2.632 0-4.785 2.153-4.785 4.785v153.117h-244.030v-351.691h172.257v102.158c0 4.546 5.263 7.177 8.732 4.306l180.511-142.829c2.871-2.153 2.871-6.46 0-8.613zM411.517 38.294h-339.728c-18.542 0-33.494 14.953-33.494 33.494v200.966c0 2.632 2.153 4.785 4.785 4.785h71.774c2.632 0 4.785-2.153 4.785-4.785v-153.117h244.030v351.691h-172.257v-102.158c0-4.546-5.144-7.177-8.732-4.306l-180.63 142.829c-2.751 2.153-2.751 6.34 0 8.493l180.63 142.949c3.469 2.751 8.732 0.239 8.732-4.306v-102.158h172.257v351.691h-244.030v-153.117c0-2.632-2.153-4.785-4.785-4.785h-71.774c-2.632 0-4.785 2.153-4.785 4.785v200.966c0 18.542 14.953 33.494 33.494 33.494h339.728c18.542 0 33.494-14.953 33.494-33.494v-880.423c0-18.542-14.953-33.494-33.494-33.494z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["solit-cells"],"colorPermutations":{"11":[]},"defaultCode":59810},"attrs":[],"properties":{"order":568,"id":176,"name":"solit-cells","prevSize":32,"code":59810},"setIdx":0,"setId":1,"iconIdx":32},{"icon":{"paths":["M768 555.429h-512c-10.057 0-18.286 8.229-18.286 18.286v201.143c0 10.057 8.229 18.286 18.286 18.286h512c10.057 0 18.286-8.229 18.286-18.286v-201.143c0-10.057-8.229-18.286-18.286-18.286zM704 710.857h-384v-73.143h384v73.143zM941.714 859.429c-45.486 0-82.286 36.8-82.286 82.286s36.8 82.286 82.286 82.286 82.286-36.8 82.286-82.286-36.8-82.286-82.286-82.286zM941.714 969.143c-15.2 0-27.429-12.229-27.429-27.429s12.229-27.429 27.429-27.429 27.429 12.229 27.429 27.429-12.229 27.429-27.429 27.429zM768 230.857h-512c-10.057 0-18.286 8.229-18.286 18.286v201.143c0 10.057 8.229 18.286 18.286 18.286h512c10.057 0 18.286-8.229 18.286-18.286v-201.143c0-10.057-8.229-18.286-18.286-18.286zM704 386.286h-384v-73.143h384v73.143zM941.714 164.571c45.486 0 82.286-36.8 82.286-82.286s-36.8-82.286-82.286-82.286-82.286 36.8-82.286 82.286 36.8 82.286 82.286 82.286zM941.714 54.857c15.2 0 27.429 12.229 27.429 27.429s-12.229 27.429-27.429 27.429-27.429-12.229-27.429-27.429 12.229-27.429 27.429-27.429zM82.286 0c-45.486 0-82.286 36.8-82.286 82.286s36.8 82.286 82.286 82.286 82.286-36.8 82.286-82.286-36.8-82.286-82.286-82.286zM82.286 109.714c-15.2 0-27.429-12.229-27.429-27.429s12.229-27.429 27.429-27.429 27.429 12.229 27.429 27.429-12.229 27.429-27.429 27.429zM82.286 859.429c-45.486 0-82.286 36.8-82.286 82.286s36.8 82.286 82.286 82.286 82.286-36.8 82.286-82.286-36.8-82.286-82.286-82.286zM82.286 969.143c-15.2 0-27.429-12.229-27.429-27.429s12.229-27.429 27.429-27.429 27.429 12.229 27.429 27.429-12.229 27.429-27.429 27.429z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["ungroup"],"colorPermutations":{"11":[]},"defaultCode":59811},"attrs":[],"properties":{"order":569,"id":177,"name":"ungroup","prevSize":32,"code":59811},"setIdx":0,"setId":1,"iconIdx":33},{"icon":{"paths":["M385.146 175.476c46.034-19.562 94.878-29.517 145.244-29.517 146.181 0 279.48 86.327 339.686 219.858 6.443 14.173 20.499 22.724 35.14 22.724 5.389 0 10.66-1.172 15.812-3.398 19.444-8.784 27.996-31.626 19.327-51.070-72.506-161.058-233.564-265.19-409.965-265.19-60.791 0-119.826 12.064-175.466 35.608-19.562 8.317-28.698 30.924-20.381 50.601s31.041 28.815 50.601 20.381zM979.947 514.576v-7.145c0-1.639-0.117-3.398-0.352-5.037-0.352-7.73-0.702-15.462-1.406-23.075-1.874-21.201-20.499-36.897-41.699-35.14-21.201 1.874-36.897 20.499-35.14 41.699 0.702 9.136 1.289 18.273 1.406 27.526-1.172 119.124-36.78 234.149-103.077 332.774-11.947 17.688-7.145 41.582 10.543 53.529 6.56 4.334 14.173 6.56 21.435 6.56 12.416 0 24.598-5.974 32.094-16.984 73.090-108.816 113.033-235.438 115.961-366.509 0.117-1.406 0.235-2.693 0.235-4.217v-3.982zM296.241 508.485c2.109-85.39 48.142-164.688 120.178-206.74 18.39-10.775 24.598-34.437 13.821-52.709-10.775-18.39-34.437-24.598-52.709-13.821-46.151 26.941-85.155 65.828-112.916 112.448-26.824 45.097-42.284 96.4-45.214 149.111-0.937 3.398-1.406 7.028-1.406 10.66 0 76.136-32.68 148.876-89.959 199.712-15.929 14.173-17.336 38.536-3.163 54.468 7.615 8.551 18.155 13.001 28.815 13.001 9.136 0 18.273-3.28 25.652-9.721 71.099-63.252 112.916-153.093 115.61-247.737 0.702-2.693 1.289-5.621 1.289-8.667zM773.207 699.178c-19.562-8.317-42.284 0.702-50.601 20.264-27.057 63.487-65.711 120.53-114.672 169.725-15.11 15.11-14.992 39.473 0.117 54.583 7.497 7.497 17.336 11.245 27.174 11.245 9.956 0 19.796-3.748 27.292-11.362 55.989-56.107 99.915-121.35 130.954-193.856 8.317-19.562-0.702-42.169-20.264-50.601z","M748.022 645.649c-5.389 20.616 6.793 41.699 27.409 47.205 3.398 0.82 6.56 1.289 9.838 1.289 16.984 0 32.68-11.362 37.247-28.698 12.416-47.088 19.21-95.815 20.264-144.777 0.352-1.874 0.469-3.748 0.469-5.739 0-177.105-139.975-321.297-312.043-321.297-21.318 0-38.536 17.218-38.536 38.536s17.218 38.536 38.536 38.536c126.504 0 229.931 104.366 234.735 234.501 0 0.702-0.117 1.406-0.117 2.226 0 46.853-5.974 93.354-17.805 138.216z","M705.386 532.381c1.639-4.334 2.576-9.019 2.576-13.821 0-98.743-78.831-178.861-175.816-178.861-46.268 0-90.076 18.155-123.106 51.188-27.644 27.526-45.214 62.783-50.836 101.086-2.109 4.802-3.28 10.073-3.28 15.579 0 44.862-8.784 88.435-25.887 129.432-8.317 19.679 1.054 42.284 20.616 50.483 4.919 2.109 9.956 3.045 14.992 3.045 15.11 0 29.4-8.902 35.491-23.661 18.742-44.627 29.283-91.715 31.626-140.090 1.054-3.398 1.756-7.028 1.756-10.775 1.406-54.701 45.564-99.095 98.743-99.095 48.727 0 89.137 36.545 97.221 84.335-0.352 2.109-0.469 4.217-0.469 6.326 0 145.011-65.478 280.065-179.565 370.491-16.751 13.236-19.444 37.482-6.326 54.116 7.615 9.606 18.975 14.642 30.22 14.642 8.317 0 16.866-2.693 23.896-8.317 63.604-50.368 116.196-115.377 152.039-187.765 33.969-68.641 52.827-142.083 56.107-218.337z","M569.044 507.431c0-21.318-17.218-38.536-38.536-38.536s-38.536 17.218-38.536 38.536c0 130.721-63.954 254.178-171.131 330.081-17.336 12.299-21.435 36.428-9.254 53.764 7.497 10.543 19.444 16.281 31.509 16.281 7.73 0 15.462-2.343 22.255-7.145 61.612-43.573 112.681-101.788 147.939-168.321 36.428-68.757 55.755-146.416 55.755-224.66zM355.628 746.618c12.299-17.336 8.317-41.347-9.019-53.764-17.336-12.299-41.347-8.317-53.764 9.019-21.318 29.87-47.205 55.989-76.84 77.425-17.218 12.534-20.966 36.545-8.551 53.881 7.497 10.308 19.327 15.929 31.274 15.929 7.847 0 15.812-2.461 22.607-7.263 36.428-26.589 68.171-58.566 94.291-95.229zM158.14 504.737c2.928-79.651 30.689-154.732 80.236-217.4 13.236-16.751 10.425-40.88-6.326-54.116s-40.88-10.425-54.116 6.326c-61.026 76.84-94.643 169.375-97.104 267.531 0 1.523 0 3.045 0.117 4.452-0.702 36.663-11.48 72.388-31.391 103.195-11.48 17.921-6.326 41.699 11.597 53.296 6.443 4.217 13.705 6.208 20.851 6.208 12.651 0 25.066-6.326 32.563-17.688 28.463-44.393 43.69-95.932 43.69-148.876 0-1.054 0-1.991-0.117-2.928z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["signup"],"colorPermutations":{"11":[]},"defaultCode":59680},"attrs":[],"properties":{"order":570,"id":178,"name":"signup","prevSize":32,"code":59680},"setIdx":0,"setId":1,"iconIdx":34},{"icon":{"paths":["M512 0c-282.784 0-512 229.216-512 512 0 282.768 229.216 512 512 512 282.752 0 512-229.232 512-512 0-282.784-229.248-512-512-512zM512 992c-265.104 0-480-214.912-480-480 0-265.104 214.896-480 480-480 265.056 0 480 214.896 480 480 0 265.088-214.944 480-480 480z","M790.816 567.648c-9.104 0-16.496 7.392-16.496 16.48-31.536 115.36-136.784 200.256-262.128 200.256-114.192 0-211.52-70.592-251.792-170.336l52.912 24.672c8.016 3.728 17.536 0.272 21.264-7.728 3.728-8.016 0.288-17.536-7.728-21.28l-85.536-39.872c-2.224-1.216-4.656-2.032-7.328-2.112-0.112 0-0.224-0.064-0.336-0.064-0.016 0-0.048-0.016-0.064-0.016-0.208 0-0.368 0.112-0.576 0.128-5.984 0.032-11.728 3.344-14.416 9.12l-40.56 87.008c-3.744 8.016-0.288 17.536 7.712 21.264s17.536 0.272 21.28-7.728l23.824-51.12c45.072 111.36 153.824 190.096 281.344 190.096 143.12 0 262.832-99.024 295.104-232.256 0.016-9.136-7.376-16.528-16.48-16.512z","M838.272 338.848c-7.984-3.728-17.536-0.288-21.264 7.744l-23.632 50.672c-45.184-111.12-153.824-189.648-281.184-189.648-143.12 0-262.816 99.024-295.12 232.24 0 9.104 7.376 16.496 16.496 16.496s16.512-7.392 16.496-16.496c31.536-115.328 136.784-200.24 262.112-200.24 114.288 0 211.664 70.704 251.904 170.56l-53.408-24.912c-8.016-3.728-17.52-0.272-21.264 7.728-3.712 8.016-0.272 17.536 7.744 21.264l86.736 40.448c1.312 0.608 2.768 0.832 4.224 1.072 0.848 0.16 1.648 0.48 2.464 0.496 0.080 0 0.144 0.048 0.224 0.048 0.64 0 1.184-0.304 1.792-0.352 1.456-0.16 2.88-0.32 4.224-0.864 0.96-0.368 1.712-0.992 2.56-1.552 0.864-0.544 1.76-0.992 2.512-1.68 1.888-1.744 3.328-3.872 4.256-6.336l39.84-85.472c3.744-7.968 0.304-17.488-7.712-21.216z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["update-1"],"colorPermutations":{"11":[]},"defaultCode":59681},"attrs":[],"properties":{"order":571,"id":179,"name":"update-1","prevSize":32,"code":59681},"setIdx":0,"setId":1,"iconIdx":35},{"icon":{"paths":["M302.545 116.364h409.6c15.422-0.003 27.922-12.505 27.922-27.927s-12.5-27.924-27.922-27.927l-409.6-0c-0.002-0-0.003-0-0.005-0-15.424 0-27.927 12.503-27.927 27.927s12.503 27.927 27.927 27.927c0.002 0 0.004-0 0.006-0l-0 0zM209.455 218.764h595.782c15.422-0.003 27.922-12.505 27.922-27.927s-12.5-27.924-27.922-27.927l-595.782-0c-0.002-0-0.003-0-0.005-0-15.424 0-27.927 12.503-27.927 27.927s12.503 27.927 27.927 27.927c0.002 0 0.004-0 0.006-0l-0 0zM879.709 274.618h-735.418c-51.414 0-93.091 41.686-93.091 93.091v512c0 51.414 41.677 93.091 93.091 93.091h735.418c51.414 0 93.091-41.677 93.091-93.091v-512c0-51.405-41.677-93.091-93.091-93.091zM916.945 868.948c0 25.706-20.839 46.545-46.545 46.545v0h-716.8c-25.706-0-46.545-20.839-46.545-46.545v0-482.621c0-25.706 20.839-46.545 46.545-46.545v0h716.8c25.706 0 46.545 20.839 46.545 46.545v0 482.621zM602.177 522.622l-68.915-64.475c-0.375-0.544-0.843-0.995-1.386-1.338l-0.019-0.012c-0.417-0.424-0.874-0.807-1.365-1.143l-0.031-0.020c-0.864-0.694-1.857-1.28-2.928-1.713l-0.079-0.028c-0.996-0.577-1.797-0.773-2.802-1.164-0.605-0.195-1.201-0.391-2.011-0.577-0.391 0-0.586-0.195-0.996-0.195-2.197-0.577-4.012-0.577-5.008-0.577h-0.4c-0.996 0-3.007 0-5.409 0.577-0.4 0-0.596 0.195-0.996 0.195-0.4 0.195-1.005 0.195-1.406 0.391-1.152 0.317-2.151 0.714-3.093 1.204l0.086-0.041c-0.195 0-0.195 0.195-0.4 0.195 0 0.195-0.195 0.195-0.195 0.195-1.201 0.577-2.607 1.35-3.612 2.122l-0.195 0.195c-0.945 0.421-1.745 1.009-2.396 1.734l-0.006 0.006-67.314 64.661c-4.803 4.45-7.615 10.426-7.615 16.794-0.195 6.377 2.607 12.744 7.215 17.371s10.826 7.336 17.436 7.336 13.219-2.513 18.032-7.149l24.641-23.738v266.268c0 13.312 11.227 24.129 25.041 24.129s25.041-10.817 25.041-24.129v-267.245l26.047 24.52c4.608 4.627 10.817 6.954 17.641 6.954 6.796 0 13.014-2.513 17.836-7.149l0.186-0.195c9.616-9.644 9.421-24.511-0.4-33.773l-0.223-0.186z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["update"],"colorPermutations":{"11":[]},"defaultCode":59682},"attrs":[],"properties":{"order":572,"id":180,"name":"update","prevSize":32,"code":59682},"setIdx":0,"setId":1,"iconIdx":36},{"icon":{"paths":["M601.023 99.586c-1.137-0.145-2.451-0.224-3.786-0.224-17.671 0-32.001 14.326-32.001 32.001 0 16.167 11.984 29.531 27.555 31.695l0.167 0.020c66.778 8.79 126.467 33.709 176.731 70.692l-1.051-0.74c-115.744 26.336-150.943 106.050-158.335 175.007-10.719 99.681 60.223 151.967 107.168 186.561 16.479 12.159 41.374 30.527 42.527 39.103 0.159 1.247-0.99 5.409-6.561 12.416-61.054 76.959-83.807 140.833-67.551 189.951 4.959 14.91 15.296 32.897 36.287 47.841-51.63 27.775-112.976 44.096-178.134 44.096-0.015 0-0.030 0-0.042 0h0.002c-3.009 0-5.953-0.351-8.961-0.416 40.097-67.393 25.727-118.303 3.424-151.105-54.081-79.487-134.911-104.13-211.041-64.191-5.28 2.85-9.6 1.697-34.401-21.63-24.45-23.040-63.231-58.945-120.031-48.321-5.023-19.2-8.991-38.88-11.040-59.199-1.746-16.249-15.388-28.791-31.952-28.791-1.099 0-2.185 0.055-3.254 0.162l0.136-0.012c-17.567 1.791-30.399 17.473-28.641 35.070 23.164 226.896 213.241 402.434 444.317 402.434 0.509 0 1.015-0.001 1.523-0.003h-0.079c247.041 0 447.998-200.961 447.998-447.998 0-225.025-168.064-416.065-390.976-444.415zM195.072 704.321c18.368 0.703 33.12 13.217 54.081 32.927 24 22.624 60.351 56.67 108 31.71 63.33-33.279 107.614 12.99 128.383 43.487 8.13 11.936 28.894 42.591-22.431 106.753-120.104-26.132-217.435-105.98-267.048-212.528l-0.985-2.353zM784.417 842.976c-20.991-6.017-33.823-15.073-37.826-27.073-8.546-25.761 12.737-74.37 56.927-129.985 15.87-20.001 22.56-40.414 19.873-60.673-4.736-35.52-35.456-58.174-68.001-82.144-43.393-32.001-88.29-65.057-81.505-128.191 5.537-51.265 28.29-118.337 156.703-126.111 60.432 67.437 97.385 156.999 97.41 255.195v0.005c0 120.767-56.16 228.544-143.584 298.975z","M266.463 599.681c5.665 5.167 13.23 8.33 21.536 8.33s15.871-3.164 21.562-8.355l-0.027 0.025c147.008-133.663 218.464-240.865 218.464-327.681 0-132.351-107.648-240-240-240s-240 107.648-240 240c0 86.816 71.456 194.014 218.464 327.681zM287.999 96c97.054 0 176.001 78.943 176.001 176.001 0 43.873-31.23 124.127-176.001 260.417-144.767-136.29-176.001-216.544-176.001-260.417 0-97.054 78.943-176.001 176.001-176.001z","M208.002 272c0 44.184 35.817 80.001 80.001 80.001s80.001-35.817 80.001-80.001v0c0-44.184-35.817-80.001-80.001-80.001s-80.001 35.817-80.001 80.001v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["map"],"colorPermutations":{"11":[]},"defaultCode":59690},"attrs":[],"properties":{"order":573,"id":181,"name":"map","prevSize":32,"code":59690},"setIdx":0,"setId":1,"iconIdx":37},{"icon":{"paths":["M725.333 512v-3.84c-0.213-4.35-1.134-8.426-2.65-12.199l0.090 0.253c-1.227-3.102-2.808-5.781-4.738-8.164l0.045 0.058c-1.233-2.107-2.502-3.919-3.899-5.621l0.059 0.075-122.027-128c-7.794-8.178-18.77-13.263-30.933-13.263-23.584 0-42.703 19.119-42.703 42.703 0 11.421 4.483 21.795 11.786 29.457l-0.016-0.017 52.48 55.893h-241.493c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667h238.507l-55.467 55.040c-7.795 7.733-12.621 18.45-12.621 30.293s4.826 22.56 12.618 30.291l0.003 0.003c7.733 7.795 18.45 12.621 30.293 12.621s22.56-4.826 30.291-12.618l0.003-0.003 128-128c3.733-3.822 6.76-8.354 8.856-13.372l0.104-0.282c2.147-4.908 3.401-10.626 3.413-16.635l0-0.005z","M512 85.333c-235.641-0-426.667 191.025-426.667 426.667s191.025 426.667 426.667 426.667c235.641 0 426.667-191.025 426.667-426.667v0c0-235.641-191.025-426.667-426.667-426.667v0zM512 853.333c-188.513 0-341.333-152.82-341.333-341.333s152.82-341.333 341.333-341.333c188.513 0 341.333 152.82 341.333 341.333v-0c0 188.513-152.82 341.333-341.333 341.333h-0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["arrow-circle-right-ou"],"colorPermutations":{"11":[]},"defaultCode":59648},"attrs":[],"properties":{"order":574,"id":182,"name":"arrow-circle-right-ou","prevSize":32,"code":59654},"setIdx":0,"setId":1,"iconIdx":38},{"icon":{"paths":["M480 544v384c0 53.019-42.981 96-96 96v0h-288c-53.019 0-96-42.981-96-96v0-288c0-53.019 42.981-96 96-96v0h384zM928 544c53.019 0 96 42.981 96 96v0 288c0 53.019-42.981 96-96 96v0h-288c-53.019 0-96-42.981-96-96v0-384h384zM384 640h-288v288h288v-288zM928 640h-288v288h288v-288zM384 0c53.019 0 96 42.981 96 96v0 384h-384c-53.019 0-96-42.981-96-96v0-288c0-53.019 42.981-96 96-96v0h288zM784 0c132.549 0 240 107.451 240 240s-107.451 240-240 240v0c-132.549 0-240-107.451-240-240s107.451-240 240-240v0zM384 96h-288v288h288v-288zM784 96c-79.529 0-144 64.472-144 144s64.472 144 144 144v0c79.529 0 144-64.472 144-144s-64.472-144-144-144v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["dashboard-1"],"colorPermutations":{"11":[]},"defaultCode":59649},"attrs":[],"properties":{"order":575,"id":183,"name":"dashboard-1","prevSize":32,"code":59655},"setIdx":0,"setId":1,"iconIdx":39},{"icon":{"paths":["M542.293 311.040c-3.822-3.733-8.354-6.76-13.372-8.856l-0.282-0.104c-4.908-2.147-10.626-3.401-16.635-3.413l-0.005-0h-4.267c-4.201 0.213-8.13 1.134-11.751 2.646l0.231-0.086c-3.102 1.227-5.781 2.808-8.164 4.738l0.058-0.045c-2.107 1.233-3.919 2.502-5.621 3.899l0.075-0.059-128 122.027c-8.178 7.794-13.263 18.77-13.263 30.933 0 23.584 19.119 42.703 42.703 42.703 11.421 0 21.795-4.483 29.457-11.786l-0.017 0.016 55.893-52.48v241.493c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667v0-238.507l55.040 55.467c7.733 7.795 18.45 12.621 30.293 12.621s22.56-4.826 30.291-12.618l0.003-0.003c7.795-7.733 12.621-18.45 12.621-30.293s-4.826-22.56-12.618-30.291l-0.003-0.003z","M512 85.333c-235.641-0-426.667 191.025-426.667 426.667s191.025 426.667 426.667 426.667c235.641 0 426.667-191.025 426.667-426.667v0c0-235.641-191.025-426.667-426.667-426.667v0zM512 853.333c-188.513 0-341.333-152.82-341.333-341.333s152.82-341.333 341.333-341.333c188.513 0 341.333 152.82 341.333 341.333v-0c0 188.513-152.82 341.333-341.333 341.333h-0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["arrow-circle-up-outl"],"colorPermutations":{"11":[]},"defaultCode":59650},"attrs":[],"properties":{"order":576,"id":184,"name":"arrow-circle-up-ou","prevSize":32,"code":59656},"setIdx":0,"setId":1,"iconIdx":40},{"icon":{"paths":["M590.080 810.667c-0.043 0-0.094 0-0.145 0-13.34 0-25.25-6.122-33.074-15.71l-0.061-0.077-206.080-256c-6.041-7.307-9.706-16.772-9.706-27.093s3.665-19.786 9.764-27.165l-0.058 0.072 213.333-256c7.891-9.447 19.676-15.413 32.853-15.413 23.594 0 42.72 19.126 42.72 42.72 0 10.416-3.728 19.961-9.922 27.374l0.055-0.068-190.72 228.693 184.32 228.693c6.15 7.342 9.885 16.89 9.885 27.31 0 23.564-19.103 42.667-42.667 42.667-0.175 0-0.35-0.001-0.525-0.003l0.027 0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["arrow-ios-back"],"colorPermutations":{"11":[]},"defaultCode":59651},"attrs":[],"properties":{"order":577,"id":185,"name":"arrow-ios-back","prevSize":32,"code":59657},"setIdx":0,"setId":1,"iconIdx":41},{"icon":{"paths":["M512 682.667c-0.025 0-0.054 0-0.083 0-10.38 0-19.895-3.707-27.292-9.869l0.069 0.056-256-213.333c-9.447-7.891-15.413-19.676-15.413-32.853 0-23.594 19.126-42.72 42.72-42.72 10.416 0 19.961 3.728 27.374 9.922l-0.068-0.055 228.693 191.147 228.693-184.32c7.274-5.944 16.665-9.546 26.897-9.546 13.412 0 25.378 6.188 33.2 15.865l0.063 0.081c6.706 7.504 10.805 17.462 10.805 28.378 0 13.784-6.536 26.041-16.678 33.841l-0.101 0.074-256 206.080c-6.71 4.605-15.008 7.354-23.947 7.354-1.032 0-2.055-0.037-3.069-0.109l0.136 0.008z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["arrow-ios-downward"],"colorPermutations":{"11":[]},"defaultCode":59652},"attrs":[],"properties":{"order":578,"id":186,"name":"arrow-ios-downward","prevSize":32,"code":59658},"setIdx":0,"setId":1,"iconIdx":42},{"icon":{"paths":["M768 640c-0.025 0-0.054 0-0.083 0-10.38 0-19.895-3.707-27.292-9.869l0.069 0.056-228.693-191.147-229.12 184.32c-7.274 5.944-16.665 9.546-26.897 9.546-13.412 0-25.378-6.188-33.2-15.865l-0.063-0.081c-5.944-7.274-9.546-16.665-9.546-26.897 0-13.412 6.188-25.378 15.865-33.2l0.081-0.063 256-206.080c7.307-6.041 16.772-9.706 27.093-9.706s19.786 3.665 27.165 9.764l-0.072-0.058 256 213.333c9.459 7.882 15.435 19.666 15.435 32.846 0 10.422-3.736 19.971-9.943 27.38l0.054-0.067c-7.827 9.594-19.618 15.696-32.838 15.787l-0.015 0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["arrow-ios-upward"],"colorPermutations":{"11":[]},"defaultCode":59653},"attrs":[],"properties":{"order":579,"id":187,"name":"arrow-ios-upward","prevSize":32,"code":59659},"setIdx":0,"setId":1,"iconIdx":43},{"icon":{"paths":["M426.667 810.667c-0.025 0-0.054 0-0.083 0-10.38 0-19.895-3.707-27.292-9.869l0.069 0.056c-9.459-7.882-15.435-19.666-15.435-32.846 0-10.422 3.736-19.971 9.943-27.38l-0.054 0.067 191.147-228.693-184.32-229.12c-5.944-7.274-9.546-16.665-9.546-26.897 0-13.412 6.188-25.378 15.865-33.2l0.081-0.063c7.476-6.603 17.36-10.634 28.184-10.634 13.896 0 26.241 6.643 34.032 16.928l0.077 0.107 206.080 256c6.041 7.307 9.706 16.772 9.706 27.093s-3.665 19.786-9.764 27.165l0.058-0.072-213.333 256c-7.882 9.46-19.667 15.437-32.848 15.437-0.902 0-1.798-0.028-2.687-0.083l0.122 0.006z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["arrow-ios-forward"],"colorPermutations":{"11":[]},"defaultCode":59654},"attrs":[],"properties":{"order":580,"id":188,"name":"arrow-ios-forward","prevSize":32,"code":59660},"setIdx":0,"setId":1,"iconIdx":44},{"icon":{"paths":["M853.333 213.333c-0-23.564-19.103-42.667-42.667-42.667l-213.333 0c-23.561 0.004-42.66 19.105-42.66 42.667s19.099 42.663 42.66 42.667l109.654 0-139.947 140.373c-7.795 7.733-12.621 18.45-12.621 30.293s4.826 22.56 12.618 30.291l0.003 0.003c7.733 7.795 18.45 12.621 30.293 12.621s22.56-4.826 30.291-12.618l0.003-0.003 140.373-140.373v110.080c0 23.564 19.103 42.667 42.667 42.667v0c23.564 0 42.667-19.103 42.667-42.667v0zM456.96 567.040c-7.733-7.795-18.45-12.621-30.293-12.621s-22.56 4.826-30.291 12.618l-0.003 0.003-140.373 139.947v-109.653c0-23.564-19.103-42.667-42.667-42.667h-0c-23.564 0-42.667 19.103-42.667 42.667l0-0v213.333c-0 23.564 19.103 42.667 42.667 42.667l213.333 0c23.561-0.004 42.66-19.105 42.66-42.667s-19.099-42.663-42.66-42.667l-110.080-0 140.373-140.373c7.795-7.733 12.621-18.45 12.621-30.293s-4.826-22.56-12.618-30.291l-0.003-0.003z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["expand"],"colorPermutations":{"11":[]},"defaultCode":59655},"attrs":[],"properties":{"order":581,"id":189,"name":"expand","prevSize":32,"code":59661},"setIdx":0,"setId":1,"iconIdx":45},{"icon":{"paths":["M810.667 384h-110.080l140.373-140.373c7.753-7.753 12.548-18.463 12.548-30.293 0-23.661-19.181-42.841-42.841-42.841-11.83 0-22.541 4.795-30.293 12.548l-0 0-140.373 139.947v-109.653c0-23.564-19.103-42.667-42.667-42.667v0c-23.564-0-42.667 19.103-42.667 42.667v-0 213.333c0 23.564 19.103 42.667 42.667 42.667h213.333c23.561-0.004 42.66-19.105 42.66-42.667s-19.099-42.663-42.66-42.667l-0-0zM426.667 554.667h-213.333c-23.561 0.004-42.66 19.105-42.66 42.667s19.099 42.663 42.66 42.667l109.654 0-139.947 140.373c-7.795 7.733-12.621 18.45-12.621 30.293s4.826 22.56 12.618 30.291l0.003 0.003c7.733 7.795 18.45 12.621 30.293 12.621s22.56-4.826 30.291-12.618l0.003-0.003 140.373-140.373v110.080c-0 23.564 19.103 42.667 42.667 42.667h0c23.564 0 42.667-19.103 42.667-42.667v0-213.333c0-23.564-19.103-42.667-42.667-42.667l0-0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["collapse"],"colorPermutations":{"11":[]},"defaultCode":59656},"attrs":[],"properties":{"order":582,"id":190,"name":"collapse","prevSize":32,"code":59662},"setIdx":0,"setId":1,"iconIdx":46},{"icon":{"paths":["M926.293 482.56l-128-128c-7.753-7.753-18.463-12.548-30.293-12.548-23.661 0-42.841 19.181-42.841 42.841 0 11.83 4.795 22.541 12.548 30.293l-0-0 55.040 54.187h-238.080v-238.507l55.040 55.467c7.709 7.648 18.326 12.374 30.047 12.374 0.087 0 0.173-0 0.26-0.001l-0.013 0c0.073 0 0.16 0.001 0.247 0.001 11.721 0 22.338-4.726 30.049-12.377l-0.003 0.003c7.795-7.733 12.621-18.45 12.621-30.293s-4.826-22.56-12.618-30.291l-0.003-0.003-128-128c-7.709-7.648-18.326-12.374-30.047-12.374-0.087 0-0.173 0-0.26 0.001l0.013-0c-11.656 0.051-22.2 4.767-29.869 12.376l0.003-0.003-128 128c-7.789 7.736-12.611 18.452-12.611 30.293 0 23.577 19.113 42.691 42.691 42.691 11.736 0 22.365-4.735 30.082-12.4l-0.002 0.002 55.040-55.040v238.080h-238.507l55.467-55.040c7.753-7.753 12.548-18.463 12.548-30.293 0-23.661-19.181-42.841-42.841-42.841-11.83 0-22.541 4.795-30.293 12.548l-128 128c-7.648 7.709-12.374 18.326-12.374 30.047 0 0.087 0 0.173 0.001 0.26l-0-0.013c-0 0.073-0.001 0.16-0.001 0.247 0 11.721 4.726 22.338 12.377 30.049l-0.003-0.003 128 128c7.709 7.648 18.326 12.374 30.047 12.374 0.087 0 0.173-0 0.26-0.001l-0.013 0c0.073 0 0.16 0.001 0.247 0.001 11.721 0 22.338-4.726 30.049-12.377l-0.003 0.003c7.795-7.733 12.621-18.45 12.621-30.293s-4.826-22.56-12.618-30.291l-0.003-0.003-55.040-55.040h238.080v238.507l-55.040-55.467c-7.753-7.753-18.463-12.548-30.293-12.548-23.661 0-42.841 19.181-42.841 42.841 0 11.83 4.795 22.541 12.548 30.293l128 128c7.709 7.648 18.326 12.374 30.047 12.374 0.087 0 0.173-0 0.26-0.001l-0.013 0c11.656-0.051 22.2-4.767 29.869-12.376l-0.003 0.003 128-128c7.753-7.753 12.548-18.463 12.548-30.293 0-23.661-19.181-42.841-42.841-42.841-11.83 0-22.541 4.795-30.293 12.548l0-0-54.613 55.040v-238.080h238.507l-55.467 55.040c-7.795 7.733-12.621 18.45-12.621 30.293s4.826 22.56 12.618 30.291l0.003 0.003c7.709 7.648 18.326 12.374 30.047 12.374 0.087 0 0.173-0 0.26-0.001l-0.013 0c0.073 0 0.16 0.001 0.247 0.001 11.721 0 22.338-4.726 30.049-12.377l-0.003 0.003 128-128c7.648-7.709 12.374-18.326 12.374-30.047 0-0.087-0-0.173-0.001-0.26l0 0.013c-0.17-11.5-4.863-21.872-12.376-29.443l0.003 0.003z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["move"],"colorPermutations":{"11":[]},"defaultCode":59658},"attrs":[],"properties":{"order":583,"id":191,"name":"move","prevSize":32,"code":59663},"setIdx":0,"setId":1,"iconIdx":47},{"icon":{"paths":["M610.56 529.493l-55.893 53.333v-241.493c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667v-0 238.507l-55.040-55.467c-7.753-7.753-18.463-12.548-30.293-12.548-23.661 0-42.841 19.181-42.841 42.841 0 11.83 4.795 22.541 12.548 30.293l128 128c3.937 3.773 8.616 6.808 13.791 8.859l0.289 0.101c4.771 2.163 10.345 3.423 16.213 3.423s11.443-1.26 16.466-3.525l-0.253 0.102c2.631-1.075 4.891-2.514 6.846-4.284l-0.020 0.018c2.479-1.072 4.6-2.51 6.404-4.271l-0.004 0.004 128-122.027c8.178-7.794 13.263-18.77 13.263-30.933 0-23.584-19.119-42.703-42.703-42.703-11.421 0-21.795 4.483-29.457 11.786l0.017-0.016z","M512 85.333c-235.641-0-426.667 191.025-426.667 426.667s191.025 426.667 426.667 426.667c235.641 0 426.667-191.025 426.667-426.667v0c0-235.641-191.025-426.667-426.667-426.667v0zM512 853.333c-188.513 0-341.333-152.82-341.333-341.333s152.82-341.333 341.333-341.333c188.513 0 341.333 152.82 341.333 341.333v-0c0 188.513-152.82 341.333-341.333 341.333h-0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["arrow-circle-down-ou"],"colorPermutations":{"11":[]},"defaultCode":59659},"attrs":[],"properties":{"order":584,"id":192,"name":"arrow-circle-down-ou","prevSize":32,"code":59664},"setIdx":0,"setId":1,"iconIdx":48},{"icon":{"paths":["M682.667 469.333h-241.493l53.333-55.893c7.287-7.645 11.77-18.019 11.77-29.44 0-23.584-19.119-42.703-42.703-42.703-12.164 0-23.139 5.085-30.917 13.246l-0.016 0.017-122.027 128c-1.338 1.628-2.607 3.44-3.731 5.347l-0.109 0.199c-1.886 2.326-3.467 5.004-4.62 7.899l-0.073 0.207c-1.426 3.52-2.347 7.596-2.557 11.859l-0.003 0.088-0.853 3.84c0.073 5.873 1.322 11.435 3.52 16.489l-0.107-0.275c2.2 5.299 5.227 9.831 8.968 13.662l-0.008-0.008 128 128c7.733 7.795 18.45 12.621 30.293 12.621s22.56-4.826 30.291-12.618l0.003-0.003c7.795-7.733 12.621-18.45 12.621-30.293s-4.826-22.56-12.618-30.291l-0.003-0.003-55.467-54.613h238.507c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667h0z","M512 85.333c-235.641-0-426.667 191.025-426.667 426.667s191.025 426.667 426.667 426.667c235.641 0 426.667-191.025 426.667-426.667v0c0-235.641-191.025-426.667-426.667-426.667v0zM512 853.333c-188.513 0-341.333-152.82-341.333-341.333s152.82-341.333 341.333-341.333c188.513 0 341.333 152.82 341.333 341.333v-0c0 188.513-152.82 341.333-341.333 341.333h-0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["arrow-circle-left-ou"],"colorPermutations":{"11":[]},"defaultCode":59660},"attrs":[],"properties":{"order":585,"id":193,"name":"arrow-circle-left-ou","prevSize":32,"code":59665},"setIdx":0,"setId":1,"iconIdx":49},{"icon":{"paths":["M810.667 469.333h-506.027l154.88-186.027c6.139-7.346 9.867-16.891 9.867-27.307 0-23.594-19.126-42.72-42.72-42.72-13.178 0-24.962 5.967-32.798 15.346l-0.055 0.068-213.333 256c-1.31 1.832-2.585 3.927-3.707 6.114l-0.133 0.286c0 2.133 0 3.413-2.987 5.547-1.85 4.547-2.943 9.82-2.987 15.343l-0 0.017c0.044 5.54 1.136 10.813 3.089 15.646l-0.102-0.286c0 2.133 0 3.413 2.987 5.547 1.255 2.473 2.53 4.568 3.945 6.556l-0.105-0.156 213.333 256c7.881 9.415 19.638 15.36 32.784 15.36 0.024 0 0.049-0 0.073-0l-0.004 0c0.025 0 0.054 0 0.083 0 10.38 0 19.895-3.707 27.292-9.869l-0.069 0.056c9.459-7.882 15.435-19.666 15.435-32.846 0-10.422-3.736-19.971-9.943-27.38l0.054 0.067-154.88-186.027h506.027c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667h0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["arrow-back"],"colorPermutations":{"11":[]},"defaultCode":59661},"attrs":[],"properties":{"order":586,"id":194,"name":"arrow-back","prevSize":32,"code":59666},"setIdx":0,"setId":1,"iconIdx":50},{"icon":{"paths":["M213.333 554.667h506.027l-154.88 186.027c-6.139 7.346-9.867 16.891-9.867 27.307 0 23.594 19.126 42.72 42.72 42.72 13.178 0 24.962-5.967 32.798-15.346l0.055-0.068 213.333-256c1.31-1.832 2.585-3.927 3.707-6.114l0.133-0.286c0-2.133 2.133-3.413 2.987-5.547 1.85-4.547 2.943-9.82 2.987-15.343l0-0.017c-0.044-5.54-1.136-10.813-3.089-15.646l0.102 0.286c0-2.133-2.133-3.413-2.987-5.547-1.255-2.473-2.53-4.568-3.945-6.556l0.105 0.156-213.333-256c-7.881-9.415-19.638-15.36-32.784-15.36-0.024 0-0.049 0-0.073 0l0.004-0c-0.025-0-0.054-0-0.083-0-10.38 0-19.895 3.707-27.292 9.869l0.069-0.056c-9.459 7.882-15.435 19.666-15.435 32.846 0 10.422 3.736 19.971 9.943 27.38l-0.054-0.067 154.88 186.027h-506.027c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667h-0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["arrow-forward"],"colorPermutations":{"11":[]},"defaultCode":59662},"attrs":[],"properties":{"order":587,"id":195,"name":"arrow-forward","prevSize":32,"code":59667},"setIdx":0,"setId":1,"iconIdx":51},{"icon":{"paths":["M883.755 279.381l-362.667-170.667c-2.658-1.303-5.784-2.065-9.088-2.065s-6.43 0.762-9.213 2.119l0.125-0.055-362.667 170.667c-7.296 3.488-12.245 10.81-12.245 19.287 0 0.007 0 0.014 0 0.021l-0-0.001c0 475.776 346.603 618.667 384 618.667s384-142.891 384-618.667c0-0.006 0-0.013 0-0.019 0-8.478-4.95-15.799-12.117-19.232l-0.128-0.055zM513.579 874.752c-3.392-0.491-336.341-106.667-342.827-562.56l341.248-160.619 341.227 160.576c-6.464 455.915-339.371 562.091-339.627 562.581z","M420.416 475.605c-3.832-3.705-9.060-5.989-14.821-5.989-11.782 0-21.333 9.551-21.333 21.333 0 5.761 2.283 10.988 5.994 14.827l-0.006-0.006 85.333 85.333c3.862 3.849 9.19 6.229 15.075 6.229 0.003 0 0.006-0 0.008-0l0.704 0c6.133-0.217 11.579-2.986 15.339-7.272l0.021-0.024 149.333-170.667c3.277-3.732 5.276-8.657 5.276-14.048 0-11.786-9.554-21.34-21.34-21.34-6.394 0-12.132 2.812-16.043 7.268l-0.021 0.024-134.315 153.515z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["shield-success"],"colorPermutations":{"11":[]},"defaultCode":59663},"attrs":[],"properties":{"order":588,"id":196,"name":"shield-success","prevSize":32,"code":59668},"setIdx":0,"setId":1,"iconIdx":52},{"icon":{"paths":["M926 215.173l-384-170.667c-2.549-1.162-5.529-1.84-8.667-1.84s-6.118 0.677-8.801 1.894l0.134-0.054-384 170.667c-7.525 3.406-12.667 10.849-12.667 19.493l-0 0v217.813c0 219.867 129.373 419.020 329.6 507.333 32.793 14.467 57.567 21.5 75.733 21.5s42.94-7.033 75.733-21.5c200.227-88.333 329.6-287.487 329.6-507.333v-217.813c-0-8.644-5.141-16.087-12.533-19.439l-0.134-0.054zM896 452.507c0 202.973-119.387 386.8-304.153 468.313-35.247 15.527-51.787 17.847-58.513 17.847s-23.267-2.32-58.513-17.873c-184.767-81.513-304.153-265.34-304.153-468.313v-203.947l362.667-161.2 362.667 161.2zM533.333 460.507l112.913-112.927c3.861-3.861 9.195-6.249 15.087-6.249 11.783 0 21.336 9.552 21.336 21.336 0 5.892-2.388 11.226-6.249 15.087l-112.92 112.913 112.92 112.913c3.861 3.861 6.249 9.195 6.249 15.087 0 11.783-9.552 21.336-21.336 21.336-5.892 0-11.226-2.388-15.087-6.249l-112.913-112.92-112.913 112.92c-3.861 3.861-9.195 6.249-15.087 6.249-11.783 0-21.336-9.552-21.336-21.336 0-5.892 2.388-11.226 6.249-15.087l112.92-112.913-112.92-112.913c-3.861-3.861-6.249-9.195-6.249-15.087 0-11.783 9.552-21.336 21.336-21.336 5.892 0 11.226 2.388 15.087 6.249l0-0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["shield-error"],"colorPermutations":{"11":[]},"defaultCode":59664},"attrs":[],"properties":{"order":589,"id":197,"name":"shield-error","prevSize":32,"code":59669},"setIdx":0,"setId":1,"iconIdx":53},{"icon":{"paths":["M814.933 900.267h-637.867c-46.933 0-85.333-38.4-85.333-85.333v-597.333c0-46.933 38.4-85.333 85.333-85.333h458.667c12.8 0 21.333 8.533 21.333 21.333s-8.533 21.333-21.333 21.333h-458.667c-23.467 0-42.667 19.2-42.667 42.667v597.333c0 23.467 19.2 42.667 42.667 42.667h637.867c23.467 0 42.667-19.2 42.667-42.667v-204.8c0-12.8 8.533-21.333 21.333-21.333s21.333 8.533 21.333 21.333v204.8c0 46.933-38.4 85.333-85.333 85.333zM953.6 339.2c-6.4 0-12.8-2.133-17.067-6.4l-151.467-172.8c-8.533-8.533-6.4-21.333 2.133-29.867s21.333-6.4 29.867 2.133l151.467 172.8c8.533 8.533 6.4 21.333-2.133 29.867-4.267 2.133-8.533 4.267-12.8 4.267z","M802.133 512c-4.267 0-10.667-2.133-14.933-4.267-8.533-8.533-10.667-21.333-2.133-29.867l151.467-172.8c8.533-8.533 21.333-10.667 29.867-2.133s10.667 21.333 2.133 29.867l-151.467 172.8c-2.133 4.267-8.533 6.4-14.933 6.4z","M514.133 552.533c-2.133 0-6.4 0-8.533-2.133-10.667-4.267-14.933-17.067-10.667-27.733 59.733-145.067 202.667-238.933 358.4-238.933 29.867 0 59.733 4.267 87.467 10.667 10.667 2.133 19.2 14.933 17.067 25.6s-14.933 19.2-25.6 17.067c-25.6-6.4-51.2-8.533-78.933-8.533-140.8 0-266.667 83.2-322.133 211.2-2.133 6.4-10.667 12.8-17.067 12.8z","M452.267 650.667c0 17.673 14.327 32 32 32s32-14.327 32-32v0c0-17.673-14.327-32-32-32s-32 14.327-32 32v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["share-1"],"colorPermutations":{"11":[]},"defaultCode":59665},"attrs":[],"properties":{"order":590,"id":198,"name":"share-1","prevSize":32,"code":59670},"setIdx":0,"setId":1,"iconIdx":54},{"icon":{"paths":["M724.787 962c-97.951 0-177.631-79.68-177.631-177.631 0-97.953 79.68-177.633 177.631-177.633s177.632 79.68 177.632 177.633c0 97.951-79.68 177.631-177.632 177.631zM724.787 677.789c-58.771 0-106.578 47.809-106.578 106.58 0 58.77 47.807 106.578 106.578 106.578s106.579-47.809 106.579-106.578c0-58.771-47.807-106.58-106.579-106.58zM299.211 701.473c-97.951 0-177.631-79.68-177.631-177.631 0-97.952 79.68-177.631 177.631-177.631 97.953 0 177.633 79.68 177.633 177.631s-79.68 177.631-177.633 177.631zM299.211 417.263c-58.771 0-106.578 47.808-106.578 106.579s47.808 106.578 106.578 106.578c58.771 0 106.58-47.807 106.58-106.578s-47.809-106.579-106.58-106.579zM724.787 417.263c-97.951 0-177.631-79.68-177.631-177.631s79.68-177.632 177.631-177.632c97.952 0 177.632 79.68 177.632 177.632s-79.68 177.631-177.632 177.631zM724.787 133.052c-58.771 0-106.578 47.808-106.578 106.579s47.807 106.579 106.578 106.579 106.579-47.808 106.579-106.579-47.807-106.579-106.579-106.579z","M587.297 743.43l-188.988-118.422 37.722-60.227 188.989 118.42zM591.103 311.437l35.385 61.618-193.392 111.057-35.385-61.618z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["share"],"colorPermutations":{"11":[]},"defaultCode":59666},"attrs":[],"properties":{"order":591,"id":199,"name":"share","prevSize":32,"code":59671},"setIdx":0,"setId":1,"iconIdx":55},{"icon":{"paths":["M352 185.6h704c38.4 0 64-25.6 64-64s-25.6-64-64-64h-704c-38.4 0-64 25.6-64 64s25.6 64 64 64z","M32 121.6c0 35.346 28.654 64 64 64s64-28.654 64-64v0c0-35.346-28.654-64-64-64s-64 28.654-64 64v0z","M1056 441.6h-704c-38.4 0-64 25.6-64 64s25.6 64 64 64h704c38.4 0 64-25.6 64-64s-25.6-64-64-64z","M32 505.6c0 35.346 28.654 64 64 64s64-28.654 64-64v0c0-35.346-28.654-64-64-64s-64 28.654-64 64v0z","M1056 825.6h-704c-38.4 0-64 25.6-64 64s25.6 64 64 64h704c38.4 0 64-25.6 64-64s-25.6-64-64-64z","M32 889.6c0 35.346 28.654 64 64 64s64-28.654 64-64v0c0-35.346-28.654-64-64-64s-64 28.654-64 64v0z"],"attrs":[],"width":1152,"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["log"],"colorPermutations":{"11":[]},"defaultCode":59667},"attrs":[],"properties":{"order":592,"id":200,"name":"log","prevSize":32,"code":59672},"setIdx":0,"setId":1,"iconIdx":56},{"icon":{"paths":["M382.371 573.337h-314.703c-37.714 0-68.571 30.857-68.571 68.571v312.84c0 37.714 30.857 68.571 68.571 68.571h314.702c37.714 0 68.571-30.857 68.571-68.571v-312.84c0.001-37.714-30.856-68.571-68.57-68.571zM382.371 954.626c-0.038 0.045-0.078 0.085-0.121 0.121l-0.001 0.001h-314.457c-0.045-0.038-0.085-0.078-0.121-0.121l-0.001-0.001v-312.594c0.038-0.045 0.078-0.085 0.121-0.121l0.001-0.001 314.456-0.001c0.042 0.035 0.087 0.080 0.123 0.123v312.594zM954.526-0.227h-314.786c-37.714 0-68.571 30.857-68.571 68.571v312.84c0 37.714 30.857 68.571 68.571 68.571h314.786c37.714 0 68.571-30.857 68.571-68.571v-312.84c0-37.714-30.857-68.571-68.571-68.571zM954.527 381.062c-0.038 0.045-0.078 0.085-0.121 0.121l-0.001 0.001h-314.542c-0.045-0.038-0.085-0.078-0.121-0.121l-0.001-0.001v-312.594c0.038-0.045 0.078-0.085 0.121-0.121l0.001-0.001 314.541-0.001c0.042 0.035 0.087 0.080 0.123 0.123v312.594zM382.456-0.227h-314.787c-37.714 0-68.571 30.857-68.571 68.571v312.84c0 37.714 30.857 68.571 68.571 68.571h314.786c37.714 0 68.571-30.857 68.571-68.571v-312.84c0.001-37.714-30.856-68.571-68.57-68.571zM382.456 381.062c-0.038 0.045-0.078 0.085-0.121 0.121l-0.001 0.001h-314.542c-0.045-0.038-0.085-0.078-0.121-0.121l-0.001-0.001v-312.594c0.038-0.045 0.078-0.085 0.121-0.121l0.001-0.001 314.541-0.001c0.042 0.035 0.087 0.080 0.123 0.123v312.594zM954.526 573.687h-313.143c-37.714 0-68.571 30.843-68.571 68.541v313.005c0 37.697 30.857 68.541 68.571 68.541h205.714c18.857 0 34.286-15.422 34.286-34.271s-15.429-34.271-34.286-34.271h-205.714v-313.003h313.143v209.050c0 18.849 15.429 34.271 34.286 34.271s34.286-15.422 34.286-34.271v-209.050c0-37.697-30.857-68.541-68.571-68.541z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["dashboard"],"colorPermutations":{"11":[]},"defaultCode":59668},"attrs":[],"properties":{"order":593,"id":201,"name":"dashboard","prevSize":32,"code":59673},"setIdx":0,"setId":1,"iconIdx":57},{"icon":{"paths":["M512 810.667c-164.693 0-298.667-134.016-298.667-298.667s133.973-298.667 298.667-298.667c164.651 0 298.667 134.016 298.667 298.667s-134.016 298.667-298.667 298.667zM512 253.184c-142.72 0-258.859 116.096-258.859 258.816s116.139 258.816 258.859 258.816c142.763 0 258.816-116.181 258.816-258.816 0-142.763-116.053-258.816-258.816-258.816zM682.667 512c0 94.257-76.41 170.667-170.667 170.667s-170.667-76.41-170.667-170.667c0-94.257 76.41-170.667 170.667-170.667s170.667 76.41 170.667 170.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["active"],"colorPermutations":{"11":[]},"defaultCode":59669},"attrs":[],"properties":{"order":594,"id":202,"name":"active","prevSize":32,"code":59674},"setIdx":0,"setId":1,"iconIdx":58},{"icon":{"paths":["M541.041 834.703s-0.43 0 0 0c-18.328-0.069-33.805-12.194-38.917-28.854l-0.076-0.289-126.013-422.175-59.576 181.309c-5.504 16.314-20.668 27.853-38.526 27.853-0.021 0-0.041-0-0.062-0l0.003 0h-126.444c-0.006 0-0.013 0-0.020 0-22.475 0-40.694-18.219-40.694-40.694 0-0.007 0-0.014 0-0.022l-0 0.001c0.138-22.43 18.284-40.576 40.701-40.714l0.013-0h96.87l91.3-276.89c5.571-16.712 21.852-27.423 39.444-27.853 18.102 0.414 33.295 12.411 38.484 28.85l0.080 0.293 124.293 417.485 94.29-308.183c5.124-16.101 19.515-27.739 36.757-28.708l0.107-0.005c17.142-0.43 32.993 8.991 39.424 24.863l71.168 170.598h100.741c22.282 0 40.714 18.412 40.714 40.714s-18.002 40.714-40.714 40.714h-127.734c-16.8-0.071-31.226-10.16-37.62-24.599l-0.104-0.264-38.564-91.3-100.741 329.605c-5.503 16.414-20.657 28.067-38.561 28.262l-0.023 0zM541.041 834.703z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["active -1"],"colorPermutations":{"11":[]},"defaultCode":59670},"attrs":[],"properties":{"order":595,"id":203,"name":"active--1","prevSize":32,"code":59675},"setIdx":0,"setId":1,"iconIdx":59},{"icon":{"paths":["M863.328 482.56l-317.344-1.12 0-318.624c0-17.664-14.336-32-32-32s-32 14.336-32 32v318.4l-322.368-1.152c-0.032 0-0.064 0-0.096 0-17.632 0-31.936 14.24-32 31.904-0.096 17.664 14.208 32.032 31.872 32.096l322.592 1.152v319.168c0 17.696 14.336 32 32 32s32-14.304 32-32v-318.944l317.088 1.12c0.064 0 0.096 0 0.128 0 17.632 0 31.936-14.24 32-31.904s-14.24-32.032-31.872-32.096z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["add"],"colorPermutations":{"11":[]},"defaultCode":59671},"attrs":[],"properties":{"order":596,"id":204,"name":"add","prevSize":32,"code":59676},"setIdx":0,"setId":1,"iconIdx":60},{"icon":{"paths":["M148.568 148.568c-198.090 198.090-198.090 523.981 0 722.072s523.981 198.090 722.072 0c198.090-198.090 198.090-523.981 0-722.072s-517.591-198.090-722.072 0v0zM825.91 825.91c-178.92 178.92-453.691 178.92-632.612 0s-178.92-453.691 0-632.612c178.92-178.92 453.691-178.92 632.612 0s178.92 460.081 0 632.612v0zM544.749 480.849v-255.601c0-19.17-12.78-31.95-31.95-31.95s-31.95 12.78-31.95 31.95v255.601h-255.601c-12.78 0-25.56 12.78-25.56 31.95s12.78 31.95 31.95 31.95h255.601v255.601c0 19.17 12.78 31.95 31.95 31.95s31.95-12.78 31.95-31.95v-255.601h255.601c19.17 0 31.95-12.78 31.95-31.95s-12.78-31.95-31.95-31.95h-261.991zM544.749 480.849z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["add-1"],"colorPermutations":{"11":[]},"defaultCode":59672},"attrs":[],"properties":{"order":597,"id":205,"name":"add-1","prevSize":32,"code":59677},"setIdx":0,"setId":1,"iconIdx":61},{"icon":{"paths":["M512 256c36.267 0 64-27.733 64-64s-27.733-64-64-64-64 27.733-64 64 27.733 64 64 64zM512 341.333c-36.267 0-64 27.733-64 64v426.667c0 36.267 27.733 64 64 64s64-27.733 64-64v-426.667c0-36.267-27.733-64-64-64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["alert"],"colorPermutations":{"11":[]},"defaultCode":59673},"attrs":[],"properties":{"order":598,"id":206,"name":"alert","prevSize":32,"code":59678},"setIdx":0,"setId":1,"iconIdx":62},{"icon":{"paths":["M542.72 706.56c0 17.408-13.312 30.72-30.72 30.72s-30.72-13.312-30.72-30.72 13.312-30.72 30.72-30.72 30.72 13.312 30.72 30.72zM512 286.72c-17.408 0-30.72 13.312-30.72 30.72v296.96c0 16.384 13.312 30.72 30.72 30.72s30.72-13.312 30.72-30.72v-296.96c0-16.384-13.312-30.72-30.72-30.72zM972.8 512c0 253.952-206.848 460.8-460.8 460.8s-460.8-206.848-460.8-460.8 206.848-460.8 460.8-460.8 460.8 206.848 460.8 460.8zM931.84 512c0-231.424-188.416-419.84-419.84-419.84s-419.84 188.416-419.84 419.84 188.416 419.84 419.84 419.84 419.84-188.416 419.84-419.84z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["alert-1"],"colorPermutations":{"11":[]},"defaultCode":59674},"attrs":[],"properties":{"order":599,"id":207,"name":"alert-1","prevSize":32,"code":59679},"setIdx":0,"setId":1,"iconIdx":63},{"icon":{"paths":["M912 848h-144v-320c0-140.8-115.2-256-256-256s-256 115.2-256 256v320h-144c-17.6 0-32 14.4-32 32s14.4 32 32 32h800c17.6 0 32-14.4 32-32s-14.4-32-32-32zM320 848v-320c0-105.6 86.4-192 192-192s192 86.4 192 192v320h-384z","M416 528c-17.6 0-32 14.4-32 32v192c0 17.6 14.4 32 32 32s32-14.4 32-32v-192c0-17.6-14.4-32-32-32zM512 208c17.6 0 32-14.4 32-32v-64c0-17.6-14.4-32-32-32s-32 14.4-32 32v64c0 17.6 14.4 32 32 32zM755.2 273.6l44.8-44.8c12.8-12.8 12.8-32 0-44.8s-32-12.8-44.8 0l-44.8 44.8c-12.8 12.8-12.8 32 0 44.8s33.6 12.8 44.8 0zM275.2 273.6c12.8 12.8 32 12.8 44.8 0s12.8-32 0-44.8l-44.8-44.8c-12.8-12.8-32-12.8-44.8 0s-12.8 32 0 44.8l44.8 44.8zM112 480h64c17.6 0 32-14.4 32-32s-14.4-32-32-32h-64c-17.6 0-32 14.4-32 32s14.4 32 32 32zM848 480h64c17.6 0 32-14.4 32-32s-14.4-32-32-32h-64c-17.6 0-32 14.4-32 32s14.4 32 32 32z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["alert-2"],"colorPermutations":{"11":[]},"defaultCode":59675},"attrs":[],"properties":{"order":600,"id":208,"name":"alert-2","prevSize":32,"code":59683},"setIdx":0,"setId":1,"iconIdx":64},{"icon":{"paths":["M862.464 328.96c21.194 47.471 33.536 102.871 33.536 161.154 0 0.194-0 0.389-0 0.583l0-0.030c0 223.859-181.474 405.333-405.333 405.333s-405.333-181.474-405.333-405.333c0-223.859 181.474-405.333 405.333-405.333l0 0c57.472 0 112.171 11.947 161.707 33.536-22.595 18.489-39.54 43.101-48.355 71.303l-0.285 1.059c-33.558-13.055-72.401-20.62-113.012-20.62-176.731 0-320 143.269-320 320s143.269 320 320 320c176.731 0 320-143.269 320-320 0-40.611-7.565-79.454-21.363-115.199l0.742 2.187c29.262-9.1 53.874-26.045 72.152-48.375l0.211-0.265zM746.667 341.333c-0.003 0-0.007 0-0.010 0-58.91 0-106.667-47.756-106.667-106.667s47.756-106.667 106.667-106.667c0.004 0 0.007 0 0.011 0l-0.001-0c58.906 0.006 106.656 47.76 106.656 106.667s-47.75 106.661-106.656 106.667l-0.001 0zM640 490.667c0 82.475-66.859 149.333-149.333 149.333s-149.333-66.859-149.333-149.333l-0-0c0-82.475 66.859-149.333 149.333-149.333s149.333 66.859 149.333 149.333v-0zM426.667 490.667c0 35.346 28.654 64 64 64s64-28.654 64-64v0c0-35.346-28.654-64-64-64s-64 28.654-64 64v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["atom"],"colorPermutations":{"11":[]},"defaultCode":59676},"attrs":[],"properties":{"order":601,"id":209,"name":"atom","prevSize":32,"code":59684},"setIdx":0,"setId":1,"iconIdx":65},{"icon":{"paths":["M892.38 512.304c40.060-44.444 68.762-88.216 85.496-130.26 19.326-48.795 18.622-91.159-2.048-125.876-20.766-34.781-58.81-56.571-112.981-64.73-46.492-7.039-100.439-5.216-160.913 5.439-20.030-55.515-45.212-101.207-74.905-135.955-34.589-40.444-73.401-60.922-115.253-60.922-41.98 0-80.76 20.606-115.317 61.274-29.725 34.941-54.683 80.664-74.329 136.051-60.506-11.007-114.421-12.927-160.913-5.919-54.171 8.191-92.183 29.981-113.013 64.794-20.67 34.717-21.374 77.049-2.048 125.844 16.638 41.948 45.5 85.688 85.912 130.196-40.38 44.604-69.146 88.28-85.592 130.036-19.198 48.635-18.366 90.871 2.368 125.492 20.702 34.781 58.619 56.667 112.597 65.018 46.332 7.231 100.247 5.375 160.721-5.599 19.966 55.323 44.988 100.983 74.553 135.827 34.365 40.476 73.049 60.954 115.061 60.954 41.884 0 80.664-20.51 115.253-60.922 29.661-34.717 54.811-80.504 74.841-136.243 60.474 11.519 114.229 13.727 160.433 6.527 53.723-8.351 91.703-30.141 112.981-65.018 20.702-34.717 21.406-77.049 2.016-125.876-16.638-41.82-45.148-85.56-84.92-130.132zM443.014 921.674c-21.598-27.549-40.22-64.41-55.451-109.59 41.98-11.423 83.832-25.95 124.692-43.324 41.020 17.598 82.808 32.125 124.66 43.324-15.487 45.084-34.333 81.88-56.155 109.494-44.572 56.539-93.495 56.539-137.747 0.096zM580.73 102.582c21.79 27.805 40.668 64.698 56.155 109.814-39.004 10.527-80.76 24.894-124.628 42.94-42.588-17.342-84.6-31.997-125.204-43.58 15.487-44.668 34.269-81.368 55.963-109.174 44.316-56.795 93.143-56.795 137.715-0zM751.498 473.716c17.054 13.375 32.637 26.334 46.556 38.78-9.471 8.735-19.358 17.406-29.565 25.79-5.599 4.576-11.263 9.183-16.99 13.855 0.544-14.079 0.768-27.581 0.768-40.38 0.032-11.679-0.224-24.414-0.768-38.044zM744.586 384.604c-5.024-43.932-12.991-86.072-23.71-125.652 48.571-9.567 91.351-12.383 127.316-8.319 36.701 4.128 61.306 16.126 73.049 35.453 11.999 20.126 10.687 45.852-4.064 78.617-14.239 31.805-38.204 65.786-71.353 101.175-31.325-28.669-65.242-55.931-101.239-81.272zM512.288 695.519c-28.829-12.799-57.499-27.261-85.208-42.94-31.613-18.11-58.651-34.685-80.504-49.275-2.4-26.654-3.616-57.435-3.616-91.575 0-34.109 1.216-64.666 3.584-90.999 23.678-15.455 51.067-32.061 81.272-49.147 27.197-14.783 55.547-29.021 84.44-42.396 28.797 13.503 57.179 27.709 84.12 42.14 28.349 16.286 55.739 32.733 81.624 49.083 2.4 26.877 3.584 57.531 3.584 91.319 0 34.141-1.184 65.082-3.584 92.055-23.998 15.743-51.163 32.125-81.016 48.827-26.781 15.359-55.195 29.789-84.696 42.908zM631.541 313.539c-10.623-5.983-22.462-12.319-35.389-19.038 20.478-7.455 40.252-14.015 59.098-19.582 4.64 19.454 8.639 39.196 11.935 59.002-11.391-6.815-23.294-13.631-35.645-20.382zM369.197 275.078c19.198 5.823 38.652 12.351 58.267 19.518-12.159 6.143-23.806 12.479-34.877 18.846-12.383 6.815-24.286 13.599-35.581 20.382 3.456-19.998 7.519-39.676 12.191-58.746zM273.078 551.628c-17.214-13.215-32.957-26.366-47.164-39.324 14.463-13.023 30.141-25.982 46.972-38.78-0.416 12.479-0.608 25.15-0.608 38.172 0.032 13.791 0.288 27.133 0.8 39.932zM303.316 257.992c-10.719 40.764-18.558 82.904-23.326 125.556-37.117 26.43-71.257 54.043-101.782 82.264-33.149-35.325-57.211-69.306-71.673-101.207-14.815-32.669-16.062-58.299-3.744-78.393 11.999-19.742 35.901-31.453 73.113-35.837 11.263-1.312 23.294-1.984 35.741-1.984 27.485-0 58.267 3.232 91.671 9.599zM106.854 659.778c14.303-31.901 38.108-65.85 70.841-101.047 30.845 28.573 65.146 56.347 102.262 82.744 4.768 42.556 12.607 84.184 23.294 124.084-48.507 9.535-91.255 12.351-127.156 8.351-36.925-4.192-60.73-15.967-72.857-36.285-12.255-19.678-11.071-45.116 3.616-77.849zM391.531 710.205c11.135 6.623 23.23 13.215 36.189 19.806-20.254 7.455-39.932 13.919-58.842 19.294-4.64-19.39-8.543-38.876-11.711-58.267 11.455 6.815 22.974 13.247 34.365 19.166zM655.283 749.37c-19.070-5.375-38.78-11.807-59.034-19.294 11.519-5.919 23.678-12.447 36.349-19.582 11.775-6.527 23.326-13.087 34.461-19.582-3.552 20.862-7.487 40.38-11.775 58.459zM720.62 765.656c10.463-40.028 18.302-81.816 23.358-124.66 36.925-26.206 71.065-53.819 101.75-82.2 32.765 35.581 56.603 69.721 70.905 101.526 14.687 32.765 15.999 58.267 4.064 78.009-11.807 19.518-36.317 31.549-72.825 35.837-10.719 1.248-22.174 1.92-34.045 1.92-27.869-0.032-59.13-3.52-93.207-10.431z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["atom-1"],"colorPermutations":{"11":[]},"defaultCode":59677},"attrs":[],"properties":{"order":602,"id":210,"name":"atom-1","prevSize":32,"code":59685},"setIdx":0,"setId":1,"iconIdx":66},{"icon":{"paths":["M426.667 497.778c-0 47.128 38.205 85.333 85.333 85.333s85.333-38.205 85.333-85.333v0c0-47.128-38.205-85.333-85.333-85.333s-85.333 38.205-85.333 85.333l0 0z","M829.156 497.778c0-11.378-4.267-22.756-11.378-31.289 44.089-76.8 49.778-147.911 17.067-196.267-31.289-45.511-95.289-64-177.778-52.622-36.978-72.533-88.178-115.2-146.489-115.2-45.511 0-89.6 28.444-125.156 81.067-5.689-1.422-11.378-2.844-17.067-2.844-22.756 0-41.244 14.222-46.933 35.556-61.156 0-108.089 18.489-133.689 55.467-32.711 46.933-27.022 113.778 12.8 189.156 7.111 12.8 14.222 25.6 22.756 36.978-8.533 12.8-15.644 25.6-22.756 36.978-41.244 75.378-45.511 142.222-12.8 189.156 25.6 36.978 71.111 55.467 132.267 55.467h2.844c7.111 17.067 25.6 29.867 45.511 29.867 5.689 0 9.956-1.422 14.222-2.844 35.556 54.044 81.067 85.333 128 85.333 58.311 0 109.511-44.089 146.489-115.2 15.644 1.422 31.289 2.844 45.511 2.844 61.156 0 106.667-19.911 132.267-55.467 32.711-46.933 27.022-118.044-17.067-196.267 7.111-7.111 11.378-18.489 11.378-29.867zM640 745.244c-31.289-5.689-62.578-15.644-95.289-28.444 28.444-14.222 56.889-31.289 83.911-51.2 15.644-11.378 31.289-22.756 46.933-35.556-8.533 42.667-19.911 82.489-35.556 115.2zM413.867 738.133c-8.533-15.644-24.178-27.022-44.089-27.022-8.533-25.6-15.644-52.622-21.333-81.067 15.644 12.8 29.867 24.178 46.933 35.556 27.022 19.911 55.467 35.556 83.911 51.2-22.756 8.533-44.089 15.644-65.422 21.333zM371.2 280.178c17.067 0 32.711-9.956 41.244-22.756 21.333 5.689 44.089 12.8 66.844 22.756-28.444 14.222-56.889 31.289-83.911 51.2-15.644 11.378-31.289 22.756-46.933 35.556 5.689-31.289 12.8-59.733 22.756-86.756zM310.044 556.089c-18.489-18.489-35.556-38.4-49.778-58.311 14.222-19.911 31.289-39.822 49.778-58.311-1.422 19.911-2.844 38.4-2.844 58.311s1.422 39.822 2.844 58.311zM411.022 642.844c-25.6-17.067-48.356-35.556-69.689-55.467-2.844-28.444-5.689-58.311-5.689-88.178s1.422-59.733 5.689-88.178c21.333-19.911 45.511-38.4 69.689-55.467 32.711-22.756 66.844-42.667 100.978-59.733 34.133 15.644 68.267 35.556 100.978 59.733 24.178 17.067 48.356 35.556 69.689 55.467 4.267 28.444 5.689 58.311 5.689 89.6 0 29.867-1.422 59.733-5.689 89.6-21.333 19.911-45.511 38.4-69.689 55.467-32.711 22.756-66.844 42.667-100.978 59.733-34.133-19.911-68.267-39.822-100.978-62.578zM675.556 365.511c-15.644-12.8-29.867-24.178-46.933-35.556-27.022-18.489-55.467-35.556-83.911-51.2 32.711-12.8 64-22.756 95.289-28.444 15.644 32.711 27.022 72.533 35.556 115.2zM713.956 439.467c8.533 9.956 18.489 18.489 25.6 28.444-7.111 8.533-9.956 18.489-9.956 29.867s4.267 21.333 9.956 29.867c-8.533 9.956-17.067 18.489-25.6 28.444 1.422-18.489 2.844-38.4 2.844-58.311s-1.422-39.822-2.844-58.311zM812.089 287.289c27.022 36.978 19.911 96.711-17.067 163.556-4.267-1.422-9.956-2.844-15.644-2.844s-11.378 1.422-15.644 2.844c-15.644-18.489-34.133-38.4-54.044-55.467-7.111-55.467-21.333-106.667-39.822-149.333 68.267-7.111 118.044 7.111 142.222 41.244zM512 130.844c44.089 0 83.911 35.556 115.2 92.444-36.978 8.533-76.8 21.333-115.2 38.4-31.289-14.222-62.578-25.6-92.444-34.133 0-9.956-4.267-19.911-9.956-28.444 29.867-42.667 66.844-68.267 102.4-68.267zM226.133 446.578c-35.556-65.422-41.244-122.311-15.644-159.289 25.6-35.556 71.111-44.089 110.933-44.089 2.844 11.378 11.378 22.756 21.333 28.444-12.8 36.978-22.756 78.222-29.867 122.311-27.022 25.6-51.2 51.2-72.533 78.222-4.267-7.111-8.533-17.067-14.222-25.6zM211.911 708.267c-25.6-36.978-19.911-93.867 15.644-159.289 4.267-8.533 9.956-17.067 15.644-27.022 19.911 27.022 44.089 52.622 72.533 78.222 5.689 42.667 15.644 82.489 28.444 119.467-11.378 7.111-18.489 18.489-21.333 32.711-39.822 0-86.756-8.533-110.933-44.089zM512 864.711c-36.978 0-73.956-25.6-103.822-72.533 5.689-7.111 9.956-15.644 11.378-25.6 31.289-8.533 62.578-19.911 93.867-34.133 39.822 18.489 78.222 31.289 115.2 38.4-32.711 58.311-72.533 93.867-116.622 93.867zM812.089 708.267c-24.178 34.133-73.956 49.778-142.222 41.244 18.489-42.667 31.289-93.867 39.822-149.333 19.911-18.489 36.978-36.978 54.044-55.467 5.689 1.422 9.956 2.844 15.644 2.844s9.956-1.422 15.644-2.844c36.978 66.844 44.089 125.156 17.067 163.556z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["atom-2"],"colorPermutations":{"11":[]},"defaultCode":59678},"attrs":[],"properties":{"order":603,"id":211,"name":"atom-2","prevSize":32,"code":59686},"setIdx":0,"setId":1,"iconIdx":67},{"icon":{"paths":["M512 554.667c-23.564 0-42.667-19.103-42.667-42.667v0c0.073-5.873 1.322-11.435 3.52-16.489l-0.107 0.275c2.152-5.464 5.187-10.143 8.974-14.095l-0.014 0.015 6.4-5.12 7.68-3.84 7.68-3.413c2.625-0.574 5.639-0.903 8.731-0.903 11.745 0 22.382 4.746 30.097 12.425l-0.002-0.002c3.646 4.001 6.662 8.658 8.838 13.76l0.122 0.32c2.159 4.933 3.415 10.683 3.415 16.725 0 0.12-0 0.24-0.001 0.36l0-0.018c0 23.564-19.103 42.667-42.667 42.667v0z","M320 887.040c-7.883-0.084-15.233-2.294-21.526-6.081l0.192 0.107c-128.31-75.073-213.167-212.141-213.333-369.043l-0-0.023c0-23.564 19.103-42.667 42.667-42.667v0h384c0.050-0 0.11-0 0.169-0 15.71 0 29.436 8.49 36.842 21.132l0.109 0.201c3.594 6.12 5.716 13.479 5.716 21.333s-2.123 15.214-5.825 21.535l0.109-0.201-192 332.373c-5.734 9.604-14.881 16.665-25.729 19.559l-0.298 0.068c-3.082 1.087-6.636 1.716-10.337 1.716-0.266 0-0.531-0.003-0.795-0.010l0.039 0.001zM173.227 554.667c12.59 93.932 61.493 174.526 131.875 228.517l0.818 0.603 132.267-229.12z","M704 887.040c-1.668 0.308-3.587 0.484-5.547 0.484s-3.879-0.176-5.742-0.514l0.195 0.029c-11.146-2.961-20.293-10.023-25.919-19.432l-0.108-0.195-192-332.373c-3.58-6.123-5.694-13.481-5.694-21.333 0-23.645 19.168-42.814 42.814-42.814 15.793 0 29.589 8.552 37.010 21.277l0.11 0.203 170.667 293.12c70.901-55.228 119.299-136.467 130.817-229.149l0.17-1.678h-121.6c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667v0h166.827c23.564 0 42.667 19.103 42.667 42.667v0c-0.166 156.926-85.024 293.995-211.32 367.977l-2.013 1.090c-6.1 3.68-13.45 5.889-21.31 5.973l-0.024 0z","M512 554.667c-0.050 0-0.11 0-0.169 0-15.71 0-29.436-8.49-36.842-21.132l-0.109-0.201-191.573-332.373c-3.565-6.1-5.67-13.431-5.67-21.253 0-15.586 8.357-29.22 20.835-36.666l0.195-0.108c61.276-35.617 134.85-56.64 213.333-56.64s152.057 21.022 215.397 57.744l-2.063-1.104c12.673 7.554 21.030 21.188 21.030 36.774 0 7.822-2.105 15.153-5.779 21.456l0.109-0.203-191.573 332.373c-7.514 12.844-21.241 21.334-36.951 21.334-0.060 0-0.119-0-0.179-0l0.009 0zM379.733 197.547l132.267 229.12 132.267-229.12c-39.048-16.862-84.512-26.668-132.267-26.668s-93.219 9.807-134.489 27.517l2.222-0.848z","M512 384c-70.692 0-128 57.308-128 128s57.308 128 128 128c70.692 0 128-57.308 128-128v0c0-70.692-57.308-128-128-128v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["atomic-nuclear-radiation"],"colorPermutations":{"11":[]},"defaultCode":59679},"attrs":[],"properties":{"order":604,"id":212,"name":"atomic-nuclear-radiation","prevSize":32,"code":59687},"setIdx":0,"setId":1,"iconIdx":68},{"icon":{"paths":["M768 469.333c-25.6 0-42.667-17.067-42.667-42.667 0-119.467-93.867-213.333-213.333-213.333s-213.333 93.867-213.333 213.333c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667c0-166.4 132.267-298.667 298.667-298.667s298.667 132.267 298.667 298.667c0 25.6-17.067 42.667-42.667 42.667z","M896 853.333c-93.867 0-170.667-110.933-170.667-256 0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667c0 98.133 46.933 170.667 85.333 170.667 25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667z","M128 853.333c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667c38.4 0 85.333-72.533 85.333-170.667 0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667c0 145.067-76.8 256-170.667 256z","M896 853.333h-767.999c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h767.999c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667z","M256 640c-25.6 0-42.667-17.067-42.667-42.667v-170.667c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v170.667c0 25.6-17.067 42.667-42.667 42.667z","M768 640c-25.6 0-42.667-17.067-42.667-42.667v-170.667c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v170.667c0 25.6-17.067 42.667-42.667 42.667z","M512 1023.999c-93.867 0-170.667-76.8-170.667-170.667 0-21.333 4.267-38.4 8.533-59.733 8.533-21.333 34.133-34.133 55.467-25.6s34.133 34.133 25.6 55.467c-4.267 12.8-4.267 21.333-4.267 29.867 0 46.933 38.4 85.333 85.333 85.333s85.333-38.4 85.333-85.333c0-8.533 0-17.067-4.267-25.6-8.533-21.333 4.267-46.933 25.6-55.467s46.933 4.267 55.467 25.6c8.533 17.067 8.533 38.4 8.533 59.733 0 89.6-76.8 166.4-170.667 166.4z","M512 213.333c-25.6 0-42.667-17.067-42.667-42.667v-128c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v128c0 25.6-17.067 42.667-42.667 42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["bell"],"colorPermutations":{"11":[]},"defaultCode":59683},"attrs":[],"properties":{"order":605,"id":213,"name":"bell","prevSize":32,"code":59688},"setIdx":0,"setId":1,"iconIdx":69},{"icon":{"paths":["M853.333 204.8c-3.413 0-6.827 0-10.24-3.413-44.373-27.307-177.493-98.987-228.693-98.987-58.027 0-71.68 23.893-85.333 58.027-6.827 10.24-17.067 13.653-23.893 10.24-10.24-3.413-13.653-13.653-10.24-23.893 20.48-40.96 44.373-78.507 119.467-78.507 68.267 0 228.693 95.573 249.173 105.813 6.827 3.413 10.24 13.653 6.827 23.893-6.827 3.413-10.24 6.827-17.067 6.827zM853.333 102.4c-10.24 0-17.067-6.827-17.067-17.067v-34.133c0-10.24 6.827-17.067 17.067-17.067s17.067 6.827 17.067 17.067v34.133c0 10.24-6.827 17.067-17.067 17.067zM853.333 341.333c-10.24 0-17.067-6.827-17.067-17.067v-34.133c0-10.24 6.827-17.067 17.067-17.067s17.067 6.827 17.067 17.067v34.133c0 10.24-6.827 17.067-17.067 17.067zM989.867 204.8h-34.133c-10.24 0-17.067-6.827-17.067-17.067s6.827-17.067 17.067-17.067h34.133c10.24 0 17.067 6.827 17.067 17.067s-6.827 17.067-17.067 17.067zM925.013 133.12c-3.413 0-10.24 0-13.653-3.413-6.827-6.827-6.827-17.067 0-23.893l23.893-23.893c6.827-6.827 17.067-6.827 23.893 0s6.827 17.067 0 23.893l-23.893 23.893s-6.827 3.413-10.24 3.413zM757.76 300.373c-3.413 0-10.24 0-13.653-3.413-6.827-6.827-6.827-17.067 0-23.893l23.893-23.893c6.827-6.827 17.067-6.827 23.893 0s6.827 17.067 0 23.893l-23.893 23.893c-3.413 3.413-6.827 3.413-10.24 3.413zM948.907 300.373c-3.413 0-10.24 0-13.653-3.413l-20.48-23.893c-6.827-6.827-6.827-17.067 0-23.893s17.067-6.827 23.893 0l23.893 23.893c6.827 6.827 6.827 17.067 0 23.893-3.413 3.413-6.827 3.413-13.653 3.413z","M580.267 375.467h-6.827c-10.24-3.413-13.653-13.653-10.24-23.893l44.373-105.813c-71.68-44.373-150.187-71.68-221.867-75.093l-44.373 126.293c-3.413 6.827-13.653 13.653-23.893 10.24-6.827-3.413-13.653-13.653-10.24-23.893l51.2-136.533c3.413-6.827 10.24-10.24 17.067-10.24 88.747 0 184.32 30.72 266.24 88.747 6.827 3.413 10.24 13.653 6.827 20.48l-51.2 119.467c-3.413 6.827-10.24 10.24-17.067 10.24z","M375.467 989.867c-197.973 0-358.4-160.427-358.4-358.4s160.427-358.4 358.4-358.4 358.4 160.427 358.4 358.4-160.427 358.4-358.4 358.4zM375.467 307.2c-177.493 0-324.267 146.773-324.267 324.267s146.773 324.267 324.267 324.267 324.267-146.773 324.267-324.267-146.773-324.267-324.267-324.267z","M102.4 648.533c-10.24 0-17.067-6.827-17.067-17.067 0-160.427 129.707-290.133 290.133-290.133 10.24 0 17.067 6.827 17.067 17.067s-6.827 17.067-17.067 17.067c-139.947 0-256 116.053-256 256 0 10.24-6.827 17.067-17.067 17.067z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["bomb"],"colorPermutations":{"11":[]},"defaultCode":59684},"attrs":[],"properties":{"order":606,"id":214,"name":"bomb","prevSize":32,"code":59689},"setIdx":0,"setId":1,"iconIdx":70},{"icon":{"paths":["M512 1024c-176.448 0-320-143.552-320-320s143.552-320 320-320 320 143.552 320 320-143.552 320-320 320zM512 448c-141.152 0-256 114.848-256 256s114.848 256 256 256 256-114.848 256-256-114.848-256-256-256z","M384 704h-64c0-105.888 86.112-192 192-192v64c-70.592 0-128 57.408-128 128z","M608 320h-64v-64h-64v64h-64v-128h192z","M480 96h64v128h-64v-128z","M544 96h-64c0-52.928 43.072-96 96-96v64c-17.664 0-32 14.336-32 32z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["bomb-1"],"colorPermutations":{"11":[]},"defaultCode":59685},"attrs":[],"properties":{"order":607,"id":215,"name":"bomb-1","prevSize":32,"code":59694},"setIdx":0,"setId":1,"iconIdx":71},{"icon":{"paths":["M376.235 1008c-32.436-0.014-61.016-16.507-77.824-41.561l-0.213-0.337c-56.637-83.284-90.427-186.073-90.427-296.753 0-4.964 0.068-9.911 0.203-14.842l-0.016 0.726c-0.105-3.944-0.166-8.587-0.166-13.244 0-110.484 33.819-213.068 91.671-297.966l-1.18 1.835c17.115-25.384 45.761-41.856 78.254-41.856 0.104 0 0.207 0 0.311 0.001l-0.016-0h23.125v-128.043h-115.413c-37.632 37.077-172.587 190.421-172.587 480 0 17.673-14.327 32-32 32s-32-14.327-32-32v0c0-362.795 195.2-529.664 203.52-536.576 5.51-4.606 12.666-7.409 20.477-7.424l0.003-0h452.224c14.919-55.452 64.611-95.652 123.741-95.957l0.035-0c70.571 0 128 57.429 128 128s-57.429 128-128 128c-59.199-0.311-108.914-40.549-123.612-95.142l-0.206-0.9h-68.181v128.043h24.064c31.232 0 60.288 15.659 77.781 41.941 56.662 83.302 90.468 186.116 90.468 296.827 0 4.938-0.067 9.86-0.201 14.765l0.016-0.723c0.105 3.937 0.165 8.571 0.165 13.219 0 110.492-33.819 213.085-91.671 297.993l1.18-1.836c-17.051 25.379-45.648 41.856-78.094 41.856-0.055 0-0.11-0-0.165-0l0.009 0h-303.275zM295.467 816c13.312 40.448 32.128 78.891 55.979 114.517 5.273 8.061 14.208 13.346 24.385 13.482l0.020 0h303.659c0.011 0 0.025 0 0.038 0 10.388 0 19.545-5.274 24.939-13.29l0.068-0.107c22.422-32.979 41.403-70.905 55.049-111.288l0.972-3.315h-465.109zM776.875 752c4.684-25.001 7.364-53.764 7.364-83.153 0-4.232-0.056-8.452-0.166-12.657l0.013 0.621c0.105-3.754 0.165-8.173 0.165-12.605 0-29.759-2.699-58.888-7.866-87.155l0.447 2.949h-497.664c-4.685 24.995-7.364 53.752-7.364 83.134 0 4.239 0.056 8.465 0.167 12.677l-0.013-0.622c-0.811 33.024 1.664 65.365 7.253 96.811h497.664zM760.576 496c-14.614-43.682-33.58-81.593-57.035-116.214l1.057 1.654c-5.306-8.006-14.198-13.267-24.331-13.482l-0.032-0.001h-303.829c-0.036-0-0.078-0-0.12-0-10.314 0-19.395 5.281-24.686 13.287l-0.069 0.11c-22.415 32.981-41.408 70.903-55.086 111.277l-0.978 3.326h465.109zM591.957 304v-128h-128v128h128zM847.957 80c-35.285 0-64 28.715-64 64s28.715 64 64 64 64-28.715 64-64-28.715-64-64-64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["bomb-grenade"],"colorPermutations":{"11":[]},"defaultCode":59686},"attrs":[],"properties":{"order":608,"id":216,"name":"bomb-grenade","prevSize":32,"code":59695},"setIdx":0,"setId":1,"iconIdx":72},{"icon":{"paths":["M753.2 201.8v516.9c0 83.4-50.4 241.2-241.2 241.2s-241.2-157.8-241.2-241.2v-482.4c0-4.4 0.6-43.7 20.9-84.3 28.4-56.7 82.2-88 151.4-88 69.3 0 123.1 31.3 151.4 88 20.2 40.5 20.9 79.9 20.9 84.3v448c0 41.6-27.5 103.4-103.4 103.4-75.8 0-103.4-61.8-103.5-103.4v-310.1c0-19 15.5-34.5 34.5-34.5 19.1 0 34.5 15.4 34.5 34.5v310.2c0.5 15.5 6.7 34.5 34.5 34.5s34.1-19 34.5-34.8v-447.8c-0.2-17.1-6.1-103.4-103.4-103.4-43.7 0-73 16.3-89.8 49.9-13 26-13.6 53.2-13.6 53.5v482.5c0.1 17.5 6.1 172.3 172.3 172.3 170.4 0 172.3-165.3 172.3-172.3v-517c0-19 15.4-34.5 34.5-34.5s34.4 15.5 34.4 34.5z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["bookmark"],"colorPermutations":{"11":[]},"defaultCode":59687},"attrs":[],"properties":{"order":609,"id":217,"name":"bookmark","prevSize":32,"code":59696},"setIdx":0,"setId":1,"iconIdx":73},{"icon":{"paths":["M378.88 915.316c-11.869 0-23.738-4.422-32.815-13.498l-260.655-260.655c-8.336-8.197-13.502-19.596-13.502-32.201 0-0.216 0.002-0.431 0.005-0.646l-0 0.033c0-12.335 4.887-23.971 13.498-32.815l308.596-308.596c4.199-4.199 10-6.796 16.407-6.796 12.815 0 23.203 10.389 23.203 23.203 0 6.407-2.597 12.208-6.796 16.407l-0 0-308.364 308.829 260.655 260.422 407.040-407.273c71.68-71.68 71.68-188.509 0-260.422s-188.509-71.68-260.422 0c-4.199 4.199-10 6.796-16.407 6.796-12.815 0-23.203-10.389-23.203-23.203 0-6.407 2.597-12.208 6.796-16.407l0-0c89.833-89.833 236.218-89.833 326.051 0s89.833 236.218 0 326.051l-407.273 407.273c-9.076 9.076-20.945 13.498-32.815 13.498z","M639.535 451.724c-57.384-0.025-103.892-46.549-103.892-103.936 0-28.656 11.597-54.603 30.353-73.404l-0.002 0.002c18.802-18.768 44.758-30.374 73.425-30.374s54.624 11.606 73.427 30.375l-0.002-0.002c18.768 18.802 30.374 44.758 30.374 73.425s-11.606 54.624-30.375 73.427l0.002-0.002c-20.015 20.247-46.545 30.487-73.309 30.487zM639.535 290.444c-14.662 0-29.324 5.585-40.495 16.756-22.342 22.342-22.342 58.647 0 81.222s58.88 22.342 81.222 0 22.342-58.647 0-81.222c-11.171-11.171-26.065-16.756-40.727-16.756z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["bookmark-1"],"colorPermutations":{"11":[]},"defaultCode":59688},"attrs":[],"properties":{"order":610,"id":218,"name":"bookmark-1","prevSize":32,"code":59697},"setIdx":0,"setId":1,"iconIdx":74},{"icon":{"paths":["M356.577 1024c-7.516-0.002-14.285-3.201-19.021-8.311l-0.015-0.017-188.967-203.613c-4.2-4.596-6.773-10.741-6.773-17.486 0-14.337 11.623-25.96 25.96-25.96 7.435 0 14.14 3.126 18.873 8.134l0.012 0.012 175.071 188.705 250.025-139.616c7.083-3.982 12.121-10.884 13.505-19.032l0.022-0.159 57.869-346.215c2.467-11.969 12.918-20.84 25.44-20.84 14.331 0 25.948 11.617 25.948 25.948 0 1.215-0.084 2.411-0.245 3.581l0.015-0.136-57.881 346.215c-4.095 24.206-18.783 44.322-39.034 55.714l-0.394 0.204-267.764 149.586c-3.636 2.066-7.987 3.284-12.622 3.284-0.009 0-0.017-0-0.026-0l0.001 0z","M1002.501 404.786c-14.317-0.010-25.919-11.618-25.919-25.936 0-6.569 2.442-12.567 6.468-17.137l-0.025 0.029c67.911-77.417 60.177-195.665-17.239-263.599s-195.689-60.165-263.588 17.251c-4.774 5.354-11.691 8.709-19.391 8.709-14.328 0-25.942-11.615-25.942-25.942 0-6.505 2.394-12.45 6.349-17.004l-0.027 0.032c86.756-98.868 237.853-108.838 336.804-22.034s108.814 237.877 22.022 336.804c-4.761 5.423-11.708 8.828-19.45 8.828-0.022 0-0.043-0-0.065-0l0.003 0z","M389.355 824.659c-1.19 0-2.379 0-3.641-0.083l-306.406-13.908c-12.235-0.583-22.213-9.551-24.342-21.257l-0.024-0.159-53.681-301.957c-0.801-4.212-1.26-9.057-1.26-14.009 0-19.959 7.447-38.179 19.713-52.033l-0.072 0.083 277.448-316.258c103.757-118.237 284.42-130.051 402.704-26.293s130.098 284.42 26.353 402.692l-277.472 316.258c-14.471 16.537-35.617 26.924-59.19 26.924-0.046 0-0.092-0-0.138-0l0.007 0zM388.058 772.738c0.332 0.014 0.722 0.023 1.113 0.023 8.149 0 15.467-3.562 20.48-9.215l0.025-0.028 277.448-316.246c84.888-96.774 75.239-244.587-21.546-329.487s-244.575-75.227-329.487 21.582l-277.389 316.21c-4.18 4.729-6.731 10.982-6.731 17.831 0 1.687 0.155 3.338 0.451 4.94l-0.026-0.166 50.052 281.577z","M525.164 376.292c-54.39-0.073-98.453-44.182-98.453-98.582 0-54.445 44.137-98.582 98.582-98.582s98.582 44.137 98.582 98.582c0 24.958-9.274 47.749-24.565 65.116l0.094-0.109c-16.741 19.085-40.597 31.574-67.385 33.298l-0.288 0.015c-2.201 0.178-4.39 0.262-6.567 0.262zM525.319 230.977c-0.009-0-0.020-0-0.031-0-25.784 0-46.686 20.902-46.686 46.686s20.902 46.686 46.686 46.686c13.962 0 26.493-6.129 35.048-15.843l0.044-0.051c7.208-8.174 11.607-18.975 11.607-30.802 0-25.776-20.894-46.671-46.669-46.674l-0-0zM962.835 552.945c-0.075 0-0.164 0-0.253 0-54.478 0-98.642-44.163-98.642-98.642s44.163-98.642 98.642-98.642c54.478 0 98.642 44.163 98.642 98.642 0 34.942-18.168 65.64-45.572 83.164l-0.396 0.237c-14.856 9.52-32.971 15.193-52.407 15.241l-0.013 0zM962.525 407.63c-0.027-0-0.060-0-0.092-0-25.928 0-46.947 21.019-46.947 46.947s21.019 46.947 46.947 46.947c25.928 0 46.947-21.019 46.947-46.947 0-22.204-15.415-40.808-36.126-45.694l-0.318-0.063c-3.127-0.754-6.717-1.187-10.409-1.19l-0.002-0z","M133.060 617.798c-12.869-0.029-23.537-9.417-25.559-21.717l-0.020-0.15-17.608-110.349c-0.203-1.222-0.32-2.63-0.32-4.065 0-6.261 2.213-12.005 5.9-16.492l-0.036 0.045 71.289-87.065c4.792-5.698 11.925-9.294 19.898-9.294 14.331 0 25.948 11.617 25.948 25.948 0 6.16-2.146 11.818-5.732 16.268l0.039-0.050-63.913 78.047 15.764 98.88c0.21 1.241 0.331 2.671 0.331 4.129 0 12.887-9.399 23.579-21.715 25.595l-0.15 0.020c-1.080 0.162-2.327 0.255-3.596 0.255-0.183 0-0.366-0.002-0.548-0.006l0.027 0z"],"attrs":[],"width":1081,"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["bookmark-3"],"colorPermutations":{"11":[]},"defaultCode":59689},"attrs":[],"properties":{"order":611,"id":219,"name":"bookmark-3","prevSize":32,"codes":[59689,59690,59691,59692,59693],"code":59698},"setIdx":0,"setId":1,"iconIdx":75},{"icon":{"paths":["M870.399 614.399h102.399c28.273-0.005 51.192-22.926 51.192-51.2s-22.919-51.195-51.192-51.2h-102.4v-51.2c-0.494-24.995-4.388-48.889-11.238-71.499l0.486 1.867c96.489-37.737 163.714-129.722 164.351-237.487v-0.079c0-28.277-22.924-51.2-51.2-51.2s-51.2 22.924-51.2 51.2v0c-0.097 69.044-45.734 127.402-108.48 146.656l-1.088 0.287c-25.123-31.993-57.032-57.506-93.658-74.604l-1.573-0.66c0.253-3.066 0.397-6.636 0.397-10.24s-0.144-7.175-0.427-10.705l0.030 0.466c0-113.108-91.692-204.8-204.8-204.8s-204.8 91.692-204.8 204.8v0c-0.253 3.066-0.397 6.636-0.397 10.24s0.144 7.175 0.427 10.705l-0.030-0.466c-39.007 17.496-71.625 43.057-96.88 74.745l-0.398 0.518c-62.843-20.208-107.52-78.148-107.52-146.524 0-0.148 0-0.294 0.001-0.442v0.023c0-28.277-22.924-51.2-51.2-51.2s-51.2 22.924-51.2 51.2v0c0.637 107.846 67.862 199.829 162.611 236.967l1.74 0.6c-6.364 20.743-10.258 44.637-10.748 69.367l-0.004 0.265v51.2h-102.399c-28.273 0.005-51.192 22.926-51.192 51.2s22.919 51.195 51.192 51.2h102.4v51.2c0.048 25.037 2.656 49.435 7.576 72.985l-0.407-2.329c-94.696 38.691-160.301 129.897-160.767 236.484v0.059c0 28.277 22.924 51.2 51.2 51.2s51.2-22.924 51.2-51.2v0c0.299-62.522 37.905-116.187 91.688-139.9l0.984-0.386c61.371 114.494 180.209 191.045 316.927 191.045s255.556-76.552 315.987-189.131l0.938-1.914c54.765 24.101 92.373 77.766 92.672 140.249v0.038c0 28.277 22.924 51.2 51.2 51.2s51.2-22.924 51.2-51.2v0c-0.467-106.646-66.071-197.852-159.059-235.924l-1.708-0.619c4.512-21.221 7.12-45.62 7.168-70.62v-0.036zM460.8 916.479c-117.686-24.653-204.8-127.567-204.8-250.827 0-0.018 0-0.037 0-0.055v0.002-204.8c0-84.83 68.769-153.599 153.599-153.599v0h51.2zM409.601 204.801c0-56.553 45.846-102.399 102.399-102.399s102.399 45.846 102.399 102.399v0zM767.999 665.599c0 0.016 0 0.034 0 0.053 0 123.26-87.114 226.174-203.132 250.534l-1.667 0.293v-609.277h51.2c84.83 0 153.599 68.769 153.599 153.599v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["bug"],"colorPermutations":{"11":[]},"defaultCode":59694},"attrs":[],"properties":{"order":612,"id":220,"name":"bug","prevSize":32,"code":59699},"setIdx":0,"setId":1,"iconIdx":76},{"icon":{"paths":["M916.21 619.789h-81.65c-3.354-61.319-18.522-118.327-43.256-169.874l1.164 2.694c56.326-17.015 96.652-68.406 96.741-129.229v-0.011c0-14.882-12.065-26.947-26.947-26.947s-26.947 12.065-26.947 26.947v0c0 41.014-30.72 75.021-70.386 80.141-15.004-22.708-31.045-42.516-48.79-60.649l0.069 0.072c7.163-21.875 11.294-47.049 11.294-73.189 0-133.989-108.536-242.628-242.486-242.795h-0.016c-133.966 0.167-242.502 108.806-242.502 242.795 0 26.14 4.131 51.315 11.775 74.907l-0.481-1.718c-17.756 18.029-33.803 37.843-47.817 59.116l-0.904 1.462c-39.891-5.4-70.326-39.207-70.386-80.135v-0.006c0-14.882-12.065-26.947-26.947-26.947s-26.947 12.065-26.947 26.947v0c0 61.117 40.906 112.802 96.741 129.24-23.544 48.856-38.709 105.86-42.040 166.021l-0.052 1.161h-81.597c-14.882 0-26.947 12.065-26.947 26.947s12.065 26.947 26.947 26.947h81.65c3.354 61.319 18.522 118.327 43.256 169.874l-1.164-2.694c-56.326 17.015-96.652 68.406-96.741 129.229v0.011c0 14.882 12.065 26.947 26.947 26.947s26.947-12.065 26.947-26.947v0c0-41.014 30.72-75.021 70.386-80.141 9.378 14.336 19.672 28.079 30.774 41.067 66.29 77.339 154.731 119.916 249.1 119.916s182.865-42.577 249.1-119.916c11.156-12.988 21.396-26.732 30.774-41.067 39.891 5.4 70.326 39.207 70.386 80.135v0.006c0 14.882 12.065 26.947 26.947 26.947s26.947-12.065 26.947-26.947v0c-0.088-60.834-40.415-112.225-95.785-128.99l-0.956-0.248c23.544-48.856 38.709-105.86 42.040-166.021l0.052-1.161h81.597c14.882 0 26.947-12.065 26.947-26.947s-12.065-26.947-26.947-26.947v0zM485.053 80.843c104.207 0.12 188.636 84.623 188.636 188.847 0 12.003-1.12 23.745-3.261 35.126l0.183-1.173c-55.080-39.775-118.838-61.117-185.56-61.117s-130.479 21.288-185.56 61.117c-1.958-10.208-3.078-21.95-3.078-33.954 0-104.223 84.43-188.727 188.625-188.847h0.012zM188.632 646.737c0-182.433 118.622-332.692 269.473-348.86v697.719c-150.851-16.168-269.473-166.427-269.473-348.86zM512 995.597v-697.719c150.851 16.168 269.473 166.427 269.473 348.86s-118.622 332.692-269.473 348.86z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["bug-1"],"colorPermutations":{"11":[]},"defaultCode":59695},"attrs":[],"properties":{"order":613,"id":221,"name":"bug-1","prevSize":32,"code":59700},"setIdx":0,"setId":1,"iconIdx":77},{"icon":{"paths":["M117.303 83.156c-128.333 146.108-46.629 428.543 178.947 654.119 220.462 220.462 489.814 295.572 651.036 181.355 1.809-1.283 3.396-2.625 4.863-4.086l30.911-30.933c20.418-20.417 33.045-48.621 33.045-79.776 0-34.39-15.388-65.188-39.656-85.88l-0.156-0.132-129.007-109.53c-19.54-16.673-45.095-26.815-73.017-26.815-36.92 0-69.701 17.737-90.281 45.151l-0.209 0.291-35.046 47.082c-6.931 9.234-17.856 15.145-30.159 15.145-6.508 0-12.629-1.652-17.971-4.563l0.199 0.097c-54.802-29.38-103.088-65.032-145.003-106.947-40.185-40.369-74.795-86.343-102.542-136.632l-1.597-3.159c-2.913-5.218-4.626-11.444-4.626-18.072 0-13.452 7.064-25.254 17.683-31.898l0.156-0.090 41.214-25.498c32.304-20.219 53.476-55.612 53.476-95.948 0-28.074-10.255-53.756-27.227-73.5l0.126 0.149-116.826-136.48c-20.814-24.219-51.483-39.461-85.711-39.461-31.155 0-59.358 12.627-79.775 33.044l-31.163 31.186-1.68 1.756zM203.317 103.388c6.806-6.806 16.205-11.013 26.589-11.013 11.407 0 21.624 5.078 28.521 13.094l0.040 0.049 116.826 136.48c5.619 6.532 9.037 15.095 9.037 24.457 0 13.441-7.052 25.234-17.657 31.884l-0.156 0.090-41.214 25.498c-32.313 20.218-53.488 55.615-53.488 95.955 0 19.884 5.145 38.565 14.171 54.788l-0.293-0.573c32.95 59.954 71.795 111.521 116.924 156.836l-0.025-0.025c47.181 47.181 101.434 87.219 162.628 120.057 15.426 8.438 33.794 13.396 53.323 13.396 36.929 0 69.712-17.745 90.291-45.171l0.209-0.291 35.046-47.056c6.931-9.239 17.859-15.152 30.166-15.152 9.306 0 17.82 3.378 24.387 8.978l-0.052-0.042 129.035 109.554c8.141 6.943 13.269 17.207 13.269 28.665 0 10.383-4.206 19.781-11.009 26.585l-28.58 28.58c-126.001 86.266-355.666 21.31-551.885-174.935-200.581-200.559-270.627-441.402-176.364-550.434l30.26-30.283z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["call"],"colorPermutations":{"11":[]},"defaultCode":59696},"attrs":[],"properties":{"order":614,"id":222,"name":"call","prevSize":32,"code":59701},"setIdx":0,"setId":1,"iconIdx":78},{"icon":{"paths":["M560.285 287.712c0 24.358 19.724 44.189 44.189 44.189h300.166c24.358 0 44.189-19.724 44.189-44.189 0-24.358-19.724-44.189-44.189-44.189h-300.273c-24.358 0.107-44.082 19.831-44.082 44.189z","M752.778 136.065c-17.245 17.245-17.245 45.16 0 62.403l120.497 120.497c17.245 17.245 45.16 17.245 62.403 0s17.245-45.16 0-62.403l-120.497-120.497c-17.138-17.245-45.16-17.245-62.403 0z","M752.778 439.465c17.245 17.245 45.16 17.245 62.403 0l120.497-120.497c17.245-17.245 17.245-45.16 0-62.403s-45.16-17.245-62.403 0l-120.497 120.497c-17.245 17.138-17.245 45.16 0 62.403zM762.263 913.8c-368.282 0-666.831-298.549-666.831-666.831 0-14.335 0.431-28.561 1.4-42.572h-89.673c-0.755 14.119-1.186 28.346-1.186 42.572 0 417.645 338.642 755.102 756.287 755.102 3.126 0 6.251-0.217 9.269-0.217v-88.056h-9.269z","M198.578 388.808c0 24.345 19.737 44.082 44.082 44.082s44.082-19.737 44.082-44.082v0c0-24.345-19.737-44.082-44.082-44.082s-44.082 19.737-44.082 44.082v0z","M544.226 761.831c0 24.345 19.737 44.082 44.082 44.082s44.082-19.737 44.082-44.082v0c0-24.345-19.737-44.082-44.082-44.082s-44.082 19.737-44.082 44.082v0z","M871.445 838.141c0 24.345 19.737 44.082 44.082 44.082s44.082-19.737 44.082-44.082v0c0-24.345-19.737-44.082-44.082-44.082s-44.082 19.737-44.082 44.082v0z","M218.301 10.073c-117.265 0-212.324 95.062-212.324 212.324 0 20.262 2.803 39.879 8.191 58.417l80.296-57.124v-1.293c0-68.44 55.507-123.946 123.946-123.946s123.946 55.507 123.946 123.946c0 62.189-45.806 113.707-105.623 122.544l-1.293 3.879-14.659 16.49 5.713 69.194c113.491-4.31 204.135-97.648 204.135-212.11 0-117.265-95.062-212.324-212.324-212.324z","M569.555 704.924c-134.076-59.062-237.761-175.141-279.687-318.056l-74.369 1.4-8.299 9.808-6.789 3.341c51.087 186.997 191.093 336.487 371.084 401.262l-1.941-97.755zM814.321 957.775c0 21.448-19.724 44.082-44.082 44.082s-44.082-19.724-44.082-44.082 19.724-44.082 44.082-44.082c24.358 0 44.082 19.724 44.082 44.082z","M753.964 578.608c-110.473 0-201.116 84.284-211.355 192.062l89.456-2.155c10.563-57.769 61.11-101.42 121.899-101.42 68.44 0 123.946 55.507 123.946 123.946 0 12.071-1.724 23.82-4.958 34.813l29.423 4.203 55.507 20.262c5.496-18.862 8.406-38.693 8.406-59.279 0-117.372-95.062-212.434-212.324-212.434z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["call-1"],"colorPermutations":{"11":[]},"defaultCode":59697},"attrs":[],"properties":{"order":615,"id":223,"name":"call-1","prevSize":32,"code":59702},"setIdx":0,"setId":1,"iconIdx":79},{"icon":{"paths":["M985.92 68.48c-10.533-21.748-32.437-36.48-57.781-36.48-0.049 0-0.098 0-0.146 0l0.008-0h-832c-35.302 0.058-63.898 28.69-63.898 64 0 15.336 5.394 29.413 14.389 40.436l-0.091-0.115 369.6 455.040v304.64c0 53.019 42.981 96 96 96s96-42.981 96-96v0-304.64l369.6-455.040c8.996-10.939 14.45-25.086 14.45-40.507 0-9.929-2.261-19.33-6.297-27.716l0.166 0.384zM230.4 160h185.6v224zM608 384v-224h185.6z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["cell-tower"],"colorPermutations":{"11":[]},"defaultCode":59698},"attrs":[],"properties":{"order":616,"id":224,"name":"cell-tower","prevSize":32,"code":59703},"setIdx":0,"setId":1,"iconIdx":80},{"icon":{"paths":["M950.857 987.429h-146.286c-40.393 0-73.143-32.75-73.143-73.143v-512c0-40.393 32.75-73.143 73.143-73.143h146.286c40.393 0 73.143 32.75 73.143 73.143v512c0 40.393-32.75 73.143-73.143 73.143zM950.857 402.286h-146.286v512h146.286v-512zM585.143 987.429h-146.286c-40.393 0-73.143-32.75-73.143-73.143v-804.571c0-40.393 32.75-73.143 73.143-73.143h146.286c40.393 0 73.143 32.75 73.143 73.143v804.571c0 40.393-32.75 73.143-73.143 73.143zM585.143 109.714h-146.286v804.571h146.286v-804.571zM219.429 987.429h-146.286c-40.393 0-73.143-32.75-73.143-73.143v-365.714c0-40.393 32.75-73.143 73.143-73.143h146.286c40.393 0 73.143 32.75 73.143 73.143v365.714c0 40.393-32.75 73.143-73.143 73.143zM219.429 548.571h-146.286v365.714h146.286v-365.714z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["chart-1"],"colorPermutations":{"11":[]},"defaultCode":59699},"attrs":[],"properties":{"order":617,"id":225,"name":"chart-1","prevSize":32,"code":59704},"setIdx":0,"setId":1,"iconIdx":81},{"icon":{"paths":["M969.702 877.372h-884.298v-765.306c0-17.774-14.812-32.588-33.574-32.588s-33.574 14.812-33.574 32.588v796.412c0 10.862 5.924 21.232 14.812 27.156 6.912 5.924 15.8 9.382 25.182 9.382h911.454c19.75 0 36.044-14.812 36.044-33.574s-16.294-34.068-36.044-34.068z","M172.304 714.93c8.888 0 17.774-3.456 24.194-9.874l163.43-163.43 146.642 146.642c13.332 13.332 35.056 13.332 48.88 0l320.934-320.934c9.874-9.874 12.838-24.688 7.406-37.524s-17.774-21.232-31.6-21.232h-229.098c-18.762 0-34.562 15.306-34.562 34.562s15.306 34.562 34.562 34.562h145.654l-237.986 237.986-146.642-146.642c-13.332-13.332-35.056-13.332-48.88 0l-187.624 187.624c-13.332 13.332-13.332 35.056 0 48.88 7.406 6.418 15.8 9.382 24.688 9.382z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["chart-2"],"colorPermutations":{"11":[]},"defaultCode":59700},"attrs":[],"properties":{"order":618,"id":226,"name":"chart-2","prevSize":32,"code":59705},"setIdx":0,"setId":1,"iconIdx":82},{"icon":{"paths":["M971.168 968.376h-920.744v-920.744c0-12.857-10.891-23.759-23.748-23.759-0.006 0-0.013 0-0.021 0-13.112 0-23.738 10.629-23.738 23.738 0 0.007 0 0.014 0 0.022v-0.001 943.927c0 13.423 10.337 24.314 23.759 24.314h944.494c13.133 0 23.759-10.902 23.759-24.314-0.010-12.292-10.625-23.183-23.759-23.183zM439.396 928.974h176.041c22.083 0 39.68-17.886 39.68-39.401v-772.918c0-21.517-17.598-39.125-39.68-39.125h-176.041c-0.019 0-0.038 0-0.060 0-21.569 0-39.054 17.485-39.054 39.054 0 0.025 0 0.048 0 0.073v-0.004 772.926c0 21.506 17.321 39.393 39.114 39.393zM478.521 156.335h97.802v693.845h-97.802v-693.845zM137.045 928.974h176.328c21.517 0 39.401-17.886 39.401-39.401v-272.454c0-22.083-17.886-39.68-39.401-39.68h-176.328c-21.793 0-39.114 17.598-39.114 39.68v272.454c0 21.517 17.33 39.401 39.114 39.401zM176.726 656.243h97.246v193.936h-97.246v-193.936zM741.747 928.974h176.328c21.517 0 39.114-17.886 39.114-39.401v-562.503c0-21.517-17.598-39.68-39.114-39.68h-176.328c-21.785 0-39.68 18.164-39.68 39.68v562.503c0 21.517 17.895 39.401 39.68 39.401zM781.428 366.469h96.968v483.709h-96.968v-483.709z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["chart-3"],"colorPermutations":{"11":[]},"defaultCode":59701},"attrs":[],"properties":{"order":619,"id":227,"name":"chart-3","prevSize":32,"code":59706},"setIdx":0,"setId":1,"iconIdx":83},{"icon":{"paths":["M429.535 860.066c-3.466 0-6.934-0.843-10.108-2.529-7.239-3.834-11.687-11.448-11.469-19.626l2.107-80.376h-54.121c-41.251 0-70.7-33.999-70.7-75.78v-282.081c0-40.726 29.449-73.85 70.7-73.85h433.184c41.251 0 78.919 33.126 78.919 73.85v282.081c0 41.78-37.67 75.78-78.919 75.78h-209.655l-137.363 98.485c-3.732 2.678-8.148 4.047-12.575 4.047zM355.945 368.993c-17.738 0-27.531 13.482-27.531 30.68v282.081c0 17.685 10.382 32.61 27.531 32.61h76.287c5.827 0 11.405 2.341 15.462 6.511 4.068 4.173 6.271 9.825 6.113 15.643l-1.55 59.107 107.704-77.214c3.669-2.635 8.065-4.047 12.573-4.047h216.591c17.148 0 35.749-14.925 35.749-32.61v-282.081c0-17.202-18.012-30.68-35.749-30.68h-433.184z","M200.844 578.38c-5.092 0-8.137-1.791-12.247-5.439-15.788-13.976-22.070-32.335-22.070-53.078v-282.080c0-40.726 29.449-73.85 70.7-73.85h433.183c41.251 0 78.919 33.126 78.919 73.85v12.491c0 11.92-9.664 21.586-21.586 21.586s-21.586-9.664-21.586-21.586v-12.491c0-17.202-18.012-30.68-35.75-30.68h-433.184c-17.738 0-27.531 13.482-27.531 30.68v282.081c0 8.262 1.074 15.050 7.525 20.763 8.926 7.903 8.728 21.564 0.821 30.483-4.28 4.804-11.235 7.271-17.202 7.271z","M496.987 466.126h-86.339c-5.966 0-10.794-4.827-10.794-10.794s4.827-10.794 10.794-10.794h86.341c5.966 0 10.795 4.827 10.795 10.794s-4.828 10.794-10.796 10.794z","M648.086 466.126h-107.927c-5.966 0-10.794-4.827-10.794-10.794s4.827-10.794 10.794-10.794h107.927c5.966 0 10.794 4.827 10.794 10.794s-4.827 10.794-10.794 10.794z","M734.427 466.126h-43.171c-5.966 0-10.794-4.827-10.794-10.794s4.825-10.794 10.794-10.794h43.171c5.966 0 10.794 4.827 10.794 10.794s-4.827 10.794-10.794 10.794z","M453.817 520.098h-43.17c-5.966 0-10.794-4.827-10.794-10.794s4.827-10.796 10.794-10.796h43.17c5.966 0 10.794 4.833 10.794 10.796s-4.827 10.794-10.794 10.794z","M583.327 520.098h-86.341c-5.966 0-10.794-4.827-10.794-10.794s4.825-10.796 10.794-10.796h86.341c5.966 0 10.794 4.833 10.794 10.796s-4.825 10.794-10.794 10.794z","M734.427 520.098h-107.927c-5.966 0-10.794-4.827-10.794-10.794s4.827-10.796 10.794-10.796h107.927c5.966 0 10.794 4.833 10.794 10.796s-4.827 10.794-10.794 10.794z","M518.575 584.852h-107.928c-5.966 0-10.794-4.825-10.794-10.794s4.827-10.795 10.794-10.795h107.928c5.966 0 10.794 4.827 10.794 10.795s-4.828 10.794-10.794 10.794z","M669.669 584.852h-107.927c-5.966 0-10.794-4.825-10.794-10.794s4.827-10.795 10.794-10.795h107.927c5.966 0 10.795 4.827 10.795 10.795s-4.827 10.794-10.795 10.794z","M734.427 584.852h-21.586c-5.966 0-10.794-4.825-10.794-10.794s4.825-10.795 10.794-10.795h21.586c5.966 0 10.794 4.827 10.794 10.795s-4.827 10.794-10.794 10.794z","M453.817 638.816h-43.17c-5.966 0-10.794-4.827-10.794-10.794s4.827-10.794 10.794-10.794h43.17c5.966 0 10.794 4.827 10.794 10.794s-4.827 10.794-10.794 10.794z","M572.536 638.816h-75.547c-5.966 0-10.794-4.827-10.794-10.794s4.825-10.794 10.794-10.794h75.547c5.966 0 10.795 4.827 10.795 10.794s-4.827 10.794-10.795 10.794z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["chat-1"],"colorPermutations":{"11":[]},"defaultCode":59702},"attrs":[],"properties":{"order":739,"id":228,"name":"chat-1","prevSize":32,"code":59707},"setIdx":0,"setId":1,"iconIdx":84},{"icon":{"paths":["M456.533 853.333c-21.333 0-42.667-17.067-42.667-38.4 0-25.6 17.067-42.667 38.4-46.933 179.2-12.8 315.733-162.133 315.733-341.333 0-187.733-153.6-341.333-341.333-341.333s-341.333 153.6-341.333 341.333c0 132.267 76.8 251.733 196.267 307.2 21.333 8.533 29.867 34.133 21.333 55.467s-34.133 29.867-55.467 21.333c-149.333-68.267-247.467-217.6-247.467-384 0-234.667 192-426.667 426.667-426.667s426.667 192 426.667 426.667c-0 221.867-174.933 409.6-396.8 426.667 0 0 0 0 0 0z","M213.333 1024c-17.067 0-34.133-12.8-38.4-29.867s0-38.4 17.067-46.933c8.533-8.533 93.867-76.8 42.667-149.333-12.8-17.067-8.533-46.933 8.533-59.733 12.8-12.8 38.4-8.533 55.467 8.533 42.667 59.733 42.667 119.467 21.333 170.667 42.667-21.333 76.8-64 93.867-119.467 8.533-21.333 29.867-34.133 55.467-29.867 21.333 8.533 34.133 29.867 29.867 51.2-25.6 76.8-93.867 204.8-285.867 204.8z","M725.333 908.8c-4.267 0-4.267 0 0 0-85.333-4.267-153.6-38.4-200.533-93.867-17.067-17.067-12.8-46.933 4.267-59.733 17.067-17.067 46.933-12.8 59.733 4.267 34.133 38.4 76.8 59.733 136.533 64 25.6 0 42.667 21.333 38.4 46.933 0 21.333-17.067 38.4-38.4 38.4z","M849.067 896c-17.067 0-29.867-8.533-38.4-25.6-8.533-21.333 0-46.933 21.333-55.467 68.267-29.867 110.933-98.133 110.933-174.933 0-85.333-55.467-162.133-140.8-183.467-21.333-8.533-34.133-29.867-29.867-51.2s29.867-34.133 51.2-29.867c119.467 34.133 200.533 145.067 200.533 268.8 0 106.667-64 204.8-157.867 251.733-8.533 0-12.8 0-17.067 0z","M878.933 1024c-93.867 0-162.133-51.2-187.733-136.533-8.533-21.333 4.267-46.933 29.867-51.2 21.333-8.533 46.933 4.267 55.467 29.867 4.267 12.8 8.533 25.6 17.067 38.4 0-21.333 8.533-46.933 25.6-72.533 12.8-17.067 42.667-21.333 59.733-8.533s21.333 42.667 8.533 59.733c-25.6 34.133 17.067 64 21.333 68.267 12.8 12.8 21.333 29.867 17.067 46.933-12.8 12.8-29.867 25.6-46.933 25.6z","M597.333 384h-341.333c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h341.333c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667z","M512 554.667h-256c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h256c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["chat-2"],"colorPermutations":{"11":[]},"defaultCode":59703},"attrs":[],"properties":{"order":621,"id":229,"name":"chat-2","prevSize":32,"code":59708},"setIdx":0,"setId":1,"iconIdx":85},{"icon":{"paths":["M976 512c0-256.262-207.738-464-464-464s-464 207.738-464 464c0 256.262 207.738 464 464 464 102.69 0 200.362-33.478 280.438-94.307 9.715-7.383 11.611-21.245 4.227-30.959s-21.245-11.611-30.959-4.227c-72.451 55.039-160.75 85.303-253.707 85.303-231.855 0-419.81-187.953-419.81-419.81s187.953-419.81 419.81-419.81c231.855 0 419.81 187.953 419.81 419.81 0 85.858-25.803 167.8-73.298 237.076-6.9 10.063-4.333 23.815 5.729 30.715s23.815 4.333 30.715-5.729c52.501-76.581 81.044-167.218 81.044-262.068z","M489.905 600.38c0 12.205 9.89 22.095 22.095 22.095s22.095-9.89 22.095-22.095v-331.43c0-12.205-9.89-22.095-22.095-22.095s-22.095 9.89-22.095 22.095v331.43z","M484.437 475.356c-8.033-9.186-21.996-10.116-31.176-2.078s-10.116 21.996-2.078 31.176l154.665 176.76c8.033 9.186 21.996 10.116 31.176 2.078s10.116-21.996 2.078-31.176l-154.665-176.76z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["clock"],"colorPermutations":{"11":[]},"defaultCode":59704},"attrs":[],"properties":{"order":734,"id":230,"name":"clock","prevSize":32,"code":59712},"setIdx":0,"setId":1,"iconIdx":86},{"icon":{"paths":["M512 976c-255.2 0-464-208.8-464-464s208.8-464 464-464 464 208.8 464 464-208.8 464-464 464zM512 125.335c-212.665 0-386.665 174-386.665 386.665s174 386.665 386.665 386.665 386.665-174 386.665-386.665-174-386.665-386.665-386.665z","M512 550.665c-23.2 0-38.665-15.465-38.665-38.665v-270.665c0-23.2 15.465-38.665 38.665-38.665s38.665 15.465 38.665 38.665v270.665c0 23.2-15.465 38.665-38.665 38.665z","M666.665 705.335c-11.6 0-19.335-3.865-27.065-11.6l-154.665-154.665c-15.465-15.465-15.465-38.665 0-54.135s38.665-15.465 54.135 0l154.665 154.665c15.465 15.465 15.465 38.665 0 54.135-7.735 7.735-15.465 11.6-27.065 11.6z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["clock-1"],"colorPermutations":{"11":[]},"defaultCode":59705},"attrs":[],"properties":{"order":623,"id":231,"name":"clock-1","prevSize":32,"code":59713},"setIdx":0,"setId":1,"iconIdx":87},{"icon":{"paths":["M984.752 532.72l-194.32 194.080c-12 11.968-31.456 11.968-43.456 0-11.984-11.984-11.984-31.392 0-43.36l172.64-172.4-172.64-172.384c-11.984-11.984-11.984-31.392 0-43.36 12-11.984 31.456-11.984 43.456 0l194.32 194.064c12 11.984 12 31.392 0 43.36zM347.776 911.568c-8.832 15.424-28.4 20.72-43.712 11.808-15.312-8.896-20.544-28.624-11.712-44.048l384-766.896c8.832-15.44 28.4-20.72 43.712-11.808 15.312 8.896 20.544 28.624 11.712 44.048l-384 766.896zM277.152 726.8c-12 11.968-31.456 11.968-43.456 0l-194.336-194.080c-11.984-11.968-11.984-31.376 0-43.36l194.336-194.064c12-11.984 31.456-11.984 43.456 0 11.984 11.968 11.984 31.376 0 43.36l-172.624 172.384 172.624 172.4c11.984 11.968 11.984 31.376 0 43.36z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["code"],"colorPermutations":{"11":[]},"defaultCode":59706},"attrs":[],"properties":{"order":624,"id":232,"name":"code","prevSize":32,"code":59714},"setIdx":0,"setId":1,"iconIdx":88},{"icon":{"paths":["M269.559 754.548c0 0 243.614-33.438 347.609-137.379s137.379-347.609 137.379-347.609-243.668 33.438-347.609 137.379-137.379 347.609-137.379 347.609zM459.576 459.469c43.625-43.625 127.193-74.663 198.87-93.968-19.252 71.569-50.397 155.725-93.862 199.029-28.959 29.065-76.049 29.065-105.008 0-29.065-28.959-29.065-75.996 0-105.061zM512.053 0.027c-282.812 0-512.027 229.215-512.027 511.973 0 282.812 229.215 512.027 512.027 512.027 282.705 0 511.973-229.215 511.973-512.027 0-282.758-229.268-511.973-511.973-511.973zM512 917.312c-223.828 0-405.312-181.43-405.312-405.312 0-223.828 181.43-405.312 405.312-405.312 223.828 0 405.365 181.43 405.365 405.312 0 223.828-181.537 405.312-405.365 405.312z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["compass"],"colorPermutations":{"11":[]},"defaultCode":59707},"attrs":[],"properties":{"order":625,"id":233,"name":"compass","prevSize":32,"code":59715},"setIdx":0,"setId":1,"iconIdx":89},{"icon":{"paths":["M1003.861 253.611c0-18.851-15.282-34.133-34.133-34.133v0h-225.109v40.277h218.965v73.216h-218.965v40.277h225.109c18.851 0 34.133-15.282 34.133-34.133v0zM20.139 338.944c0 18.851 15.282 34.133 34.133 34.133v0h504.32v-40.107h-498.176v-73.216h498.176v-40.277h-504.32c-18.851 0-34.133 15.282-34.133 34.133l0 0z","M749.739 34.133c0-18.851-15.282-34.133-34.133-34.133l-128 0c-18.851 0-34.133 15.282-34.133 34.133v0 766.293c0 18.851 15.282 34.133 34.133 34.133v0h128c18.851 0 34.133-15.282 34.133-34.133v0zM709.461 794.283h-115.883v-754.005h115.883z","M715.998 71.765l18.074-22.272 219.904 178.347-18.057 22.255zM297.131 367.104c0-18.851-15.282-34.133-34.133-34.133h-85.333c-18.851 0-34.133 15.282-34.133 34.133v0 155.819c0 18.851 15.282 34.133 34.133 34.133v0h85.333c18.851 0 34.133-15.282 34.133-34.133v0zM256.853 516.949h-73.216v-143.701h73.216zM134.229 227.942l437.555-176.691 10.752 26.59-437.589 176.691zM839.339 828.587c0-18.851-15.282-34.133-34.133-34.133l-307.2 0c-18.851 0-34.133 15.282-34.133 34.133v161.28c0 18.851 15.282 34.133 34.133 34.133v0h307.2c18.851 0 34.133-15.282 34.133-34.133h0zM799.061 983.723h-295.595v-148.992h295.936z","M324.608 705.707c-8.562-31.778-30.745-57.152-59.738-69.879l-0.678-0.265c-4.291-1.991-9.61-4.020-15.075-5.715l-0.967-0.258h-9.728v-61.44c-0.058-9.688-7.512-17.617-16.998-18.427l-0.069-0.005c-0.422-0.035-0.914-0.056-1.41-0.056-4.739 0-9.048 1.839-12.253 4.843l0.010-0.009c-3.789 3.613-6.145 8.7-6.145 14.337 0 0.060 0 0.119 0.001 0.179l-0-0.009v74.069c-0 0.019-0 0.041-0 0.064 0 9.733 7.475 17.721 16.998 18.534l0.069 0.005c32.806 1.871 60.044 23.753 69.817 53.55l0.157 0.551c1.336 4.969 2.104 10.675 2.104 16.559 0 15.449-5.29 29.662-14.158 40.926l0.107-0.142c-12.889 16.579-32.836 27.144-55.251 27.144-0.376 0-0.751-0.003-1.126-0.009l0.056 0.001c-28.492-0.514-53.433-15.257-68.074-37.407l-0.193-0.311c-3.94-6.111-10.251-10.403-17.602-11.586l-0.148-0.020c-2.979 0.079-5.738 0.958-8.089 2.429l0.067-0.039c-11.605 6.997-9.387 19.285-5.461 28.501 21.029 33.286 57.505 55.148 99.11 55.466l0.047 0c34.582-0.063 65.355-16.314 85.155-41.577l0.178-0.236c13.986-17.505 22.442-39.96 22.442-64.391 0-9.015-1.152-17.762-3.316-26.1l0.159 0.72z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["construction"],"colorPermutations":{"11":[]},"defaultCode":59708},"attrs":[],"properties":{"order":626,"id":234,"name":"construction","prevSize":32,"codes":[59708,59709,59710,59711],"code":59716},"setIdx":0,"setId":1,"iconIdx":90},{"icon":{"paths":["M245.646 547.869h-158.008v-173.54h158.008v173.54zM959.289 684.987h22.763v66.952h-22.763v49.946h-84.159c-10.394 38.64-45.062 66.635-86.288 66.751h-0.013c-41.208-0.16-75.836-28.139-86.090-66.125l-0.144-0.626h-283.576v-49.946h-12.352v43.887h-92.628c-7.867 41.376-44.222 72.843-87.908 72.843s-80.042-31.4-87.875-72.843h-111.375v-43.887h-26.881v-66.952h26.881v-372.824h379.787v372.824h12.352v-102.638h270.119v-37.393l-28.254-0.067-215.519-190.211 75.756-199.35 287.358 0.703 215.519 190.278-75.723 199.35-70.97-0.201v36.891h81.917v102.638h0.067zM282.301 779.088c0-30.933-25.174-56.105-56.14-56.105-30.933 0-56.105 25.174-56.105 56.105s25.174 56.105 56.105 56.105c30.97-0.057 56.063-25.138 56.14-56.099v-0.007zM373.223 345.639h-312.835v416.678h77.899c7.833-41.443 44.189-72.878 87.875-72.878s80.042 31.4 87.908 72.878h59.152v-416.678zM925.278 512.116l59.286-156.066-188.671-166.544-251.64-0.67-59.286 156.032 188.671 166.576 251.64 0.67zM845.002 779.088c-1.076-30.178-25.799-54.234-56.14-54.234s-55.064 24.056-56.136 54.136l-0.003 0.098c1.076 30.178 25.799 54.234 56.14 54.234s55.064-24.056 56.136-54.136l0.003-0.098zM925.813 615.825h-473.319v152.651h247.857c5.357-44.323 42.715-78.87 88.511-78.87s83.188 34.547 88.578 78.87h48.406v-152.651z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["construction-1"],"colorPermutations":{"11":[]},"defaultCode":59712},"attrs":[],"properties":{"order":627,"id":235,"name":"construction-1","prevSize":32,"code":59717},"setIdx":0,"setId":1,"iconIdx":91},{"icon":{"paths":["M984.222 150.214l-204.708-52.318c-4.072-0.987-8.144-1.604-12.339-1.604-13.697 0-26.776 5.553-36.277 15.301l-171.762 175.587c-0.617-1.727-1.357-3.455-2.098-5.059l-51.208-104.637c-8.391-17.645-26.159-28.75-45.655-28.874h-153.87c-28.504 0.247-51.455 23.691-51.208 52.195v157.202h-204.708c-28.504 0.247-51.455 23.568-51.208 52.195v104.76c-0.37 28.504 22.581 51.948 51.084 52.318h204.831v52.071h-102.169c-57.748 0.123-104.513 47.012-104.39 104.76 0.123 57.624 46.766 104.39 104.39 104.39h511.831c57.748-0.123 104.513-47.012 104.39-104.76-0.123-57.624-46.766-104.39-104.39-104.39h-204.708v-52.318h51.208c15.424-0.123 29.861-7.157 39.485-19.126l254.064-315.884 153.006 19.866-52.688 201.253-118.95-28.010 13.080-48.246c3.949-13.82-3.949-28.133-17.768-32.205-13.697-3.702-27.763 4.195-31.465 17.892 0 0.123-0.123 0.247-0.123 0.37 0 0-45.285 136.965-28.010 181.386 8.267 21.47 25.295 38.498 46.766 47.012 26.159 11.969 54.416 18.756 83.29 20.113 14.313 0.37 28.504-2.838 41.46-9.131 19.743-10.612 33.933-29.244 38.869-51.084l90.446-343.4c3.455-26.159-12.956-50.838-38.498-57.624zM664.759 671.546c28.874 0 52.318 23.445 52.195 52.318 0 28.874-23.445 52.195-52.195 52.195h-511.831c-28.874 0-52.318-23.445-52.195-52.318 0-28.874 23.445-52.195 52.195-52.195h511.831zM306.305 619.351v-52.195h102.415v52.195h-102.415zM511.26 514.715h-460.87v-104.637h460.87v104.637zM511.26 357.883h-204.954v-156.955h153.747l51.208 104.637v52.318zM882.917 537.542c-1.234 7.527-5.676 14.067-12.339 17.892-8.514 4.442-30.971 8.514-82.549-12.586-8.267-2.961-14.93-9.501-18.139-17.645-4.566-16.411-4.195-33.809 1.111-49.974l120.801 28.38-8.884 33.933zM971.019 200.928l-187.803-24.432-220.749 274.547v-93.161l204.708-209.15 203.844 52.195z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["construction-2"],"colorPermutations":{"11":[]},"defaultCode":59713},"attrs":[],"properties":{"order":628,"id":236,"name":"construction-2","prevSize":32,"code":59718},"setIdx":0,"setId":1,"iconIdx":92},{"icon":{"paths":["M327.409 469.948l144.178-144.724 67.993 68.266c34.679 34.952 56.524 100.761 50.517 145.816-36.317 16.93-75.912 49.698-75.912 49.698-42.325-3.277-91.749-24.030-118.783-51.063l-67.993-67.993zM894.836 920.231h-732.904c-16.384-8.738-52.974-31.675-58.709-64.443-4.096-23.21 4.096-48.059 22.118-65.808 29.491-29.491 80.827-29.491 110.318 0 19.934 19.934 52.428 19.661 72.362-0.273 6.554-6.554 66.081-62.259 155.1-24.576 25.668 10.923 55.705-1.092 66.901-26.76 34.679-80.554 117.144-130.251 203.706-123.698 97.211 7.1 177.765 85.469 187.595 181.861 4.096 43.69-5.188 87.107-26.487 123.698zM363.18 289.18l-178.584-179.676 35.225-35.771-72.089-72.089-144.451 144.451 72.089 72.089 36.864-36.864 179.13 180.222-72.089 72.089c-20.48 19.934-20.48 52.701 0 72.635l104.037 104.037c15.838 15.838 35.771 29.218 56.797 40.96-45.875 4.642-83.831 22.391-108.679 38.229-67.993-39.867-161.381-28.672-217.905 28.126-41.779 41.779-60.893 100.214-50.517 156.193 16.93 96.392 116.871 139.809 128.067 144.997 6.007 1.911 12.834 3.55 19.388 3.55h771.679c15.019 0 29.764-6.28 39.048-18.022 47.786-61.166 69.358-139.263 61.439-218.451-14.199-144.997-135.713-262.414-281.256-273.064-16.384-1.638-32.768-1.092-48.605 0.546-3.004-72.908-36.864-148.001-80.554-191.964l-104.31-104.583c-19.934-19.934-52.428-19.934-72.362 0l-72.362 72.362z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["construction-3"],"colorPermutations":{"11":[]},"defaultCode":59714},"attrs":[],"properties":{"order":629,"id":237,"name":"construction-3","prevSize":32,"code":59719},"setIdx":0,"setId":1,"iconIdx":93},{"icon":{"paths":["M837.581 371.84h-193.608c-9.83 0-17.756 12.959-17.756 28.836 0 15.959 7.946 24.535 17.756 24.535h193.608c9.82 0 17.756-8.576 17.756-24.535 0.026-15.882-7.936-28.836-17.756-28.836z","M617.513 398.444c0 14.78 11.982 26.762 26.762 26.762s26.762-11.982 26.762-26.762v-0c0-14.78-11.982-26.762-26.762-26.762s-26.762 11.982-26.762 26.762v0z","M813.312 398.444c0 14.78 11.982 26.762 26.762 26.762s26.762-11.982 26.762-26.762v-0c0-14.78-11.982-26.762-26.762-26.762s-26.762 11.982-26.762 26.762v0z","M768.983 578.652h-125.015c-9.83 0-17.766 12.964-17.766 28.836 0 15.964 7.936 24.55 17.766 24.55h125.015c9.81 0 17.761-8.586 17.761-24.55 0.020-15.872-7.951-28.836-17.761-28.836z","M617.503 605.266c0 14.786 11.986 26.772 26.772 26.772s26.772-11.986 26.772-26.772l0-0c0-14.786-11.986-26.772-26.772-26.772s-26.772 11.986-26.772 26.772v0z","M744.709 605.266c0 14.786 11.986 26.772 26.772 26.772s26.772-11.986 26.772-26.772v-0c0-14.786-11.986-26.772-26.772-26.772s-26.772 11.986-26.772 26.772v0z","M995.292 240.451c-0.085-3.48-0.275-6.75-0.569-9.989l0.042 0.574c-6.559-79.503-79.421-142.198-168.653-142.198h-627.313c-89.236 0-162.171 62.71-168.73 142.228-0.245 2.585-0.427 5.748-0.504 8.938l-0.003 0.171c-0.010 0.829-0.138 1.654-0.138 2.493v88.284h0.010v343.66h-0.010v88.289c0 19.727 4.239 38.508 11.679 55.834 24.617 57.313 85.801 97.997 157.629 97.997h627.379c93.558 0 169.298-68.874 169.298-153.83v-520.243c0.005-0.742-0.108-1.469-0.118-2.207zM943.498 478.239l-0.041 252.554c0 34.872-5.775 74.639-29.655 98.591-26.947 26.998-74.46 36.163-117.576 36.163h-567.491c-5.514 0-11.095-0.148-16.681-0.466-1.029-0.072-2.053-0.21-3.082-0.271-5.527-0.344-10.266-0.78-14.966-1.343l1.223 0.119c-1.224-0.138-2.417-0.379-3.625-0.543-5.681-0.734-10.079-1.451-14.435-2.284l1.517 0.242c-1.613-0.317-3.18-0.748-4.777-1.080-5.065-1.048-8.786-1.966-12.463-2.988l1.394 0.33c-2.401-0.681-4.68-1.521-7.025-2.284-2.637-0.86-5.299-1.684-7.828-2.652-4.333-1.728-7.679-3.257-10.95-4.913l0.786 0.361c-1.132-0.553-2.299-1.024-3.4-1.592-8.75-4.623-16.65-10.158-23.281-16.824-23.869-23.931-29.624-63.708-29.624-98.58v-457.201c0.097-33.347 4.608-71.762 26.716-95.089 27.018-28.652 75.976-38.523 120.515-38.523h567.485c43.11 0 90.634 9.175 117.576 36.183 23.885 23.946 29.66 63.724 29.66 98.586v53.053h0.036v150.446h-0.010z","M496.195 510.413c15.068-23.69 25.841-53.847 25.841-83.999 0-83.999-66.76-150.764-150.769-150.764-83.999 0-150.764 66.77-150.764 150.764 0 30.157 8.612 60.308 25.846 83.999-53.847 38.774-90.46 103.404-90.46 174.449 0 12.923 8.602 21.545 21.54 21.545 12.918 0 21.535-8.622 21.535-21.545 0-60.298 30.162-111.985 75.382-142.162 25.846 21.535 60.303 34.478 96.922 34.478s71.076-12.928 96.937-34.478c45.21 30.157 75.361 83.978 75.361 142.162 0 12.923 8.627 21.545 21.53 21.545 12.913 0 21.54-8.622 21.54-21.545 0-71.045-36.603-135.675-90.44-174.449zM371.267 534.098c-60.308 0-107.689-47.38-107.689-107.689 0-60.303 47.375-107.689 107.689-107.689 60.319 0 107.689 47.386 107.689 107.689 0 60.308-47.37 107.689-107.689 107.689z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["contacts"],"colorPermutations":{"11":[]},"defaultCode":59715},"attrs":[],"properties":{"order":630,"id":238,"name":"contacts","prevSize":32,"code":59720},"setIdx":0,"setId":1,"iconIdx":94},{"icon":{"paths":["M605.284 279.641c-100.099 0-200.2 0-200.412 0-0.213 0.213-129.704 1.917-132.046 132.259v200.412c0.213 0.213 1.917 129.704 132.046 132.046 100.099 0 200.412 0 200.412 0 0.213-0.213 129.704-1.917 132.046-132.046 0-100.099 0-200.2 0-200.412s-1.703-129.917-132.046-132.259zM673.65 474.516c0 37.697 0 87.747 0 137.796-0.213 70.069-68.153 66.449-68.366 68.153 0 0-100.099 0-200.412 0-70.283 0-66.449-68.153-68.366-68.153v-200.412c0-70.283 68.153-66.449 68.366-68.366 0 0 100.099 0 200.412 0 70.069 0 66.449 68.153 68.366 68.366 0 0 0 24.918 0 62.616z","M991.84 537.132c17.677 0 31.947-14.27 31.947-31.947s-14.27-31.947-31.947-31.947h-105.638c0-22.149 0-42.17 0-59.421h105.638c17.677 0 31.947-14.27 31.947-31.947s-14.27-31.947-31.947-31.947h-105.638c0-1.278 0-2.13 0-2.13-0.213-0.213-1.917-200.625-203.181-203.181-7.454 0-15.121 0-22.576 0v-112.453c0-17.677-14.27-31.947-31.947-31.947s-31.947 14.27-31.947 31.947v112.666c-20.446 0-40.253 0-59.421 0v-112.666c0-17.677-14.27-31.947-31.947-31.947s-31.947 14.27-31.947 31.947v112.666c-22.149 0-41.956 0-59.421 0v-112.666c0-17.677-14.27-31.947-31.947-31.947s-31.947 14.27-31.947 31.947v112.666c-5.537 0-8.945 0-8.945 0-0.213 0.213-200.625 1.917-202.968 203.181v2.13h-105.85c-17.677 0-31.947 14.27-31.947 31.947s14.27 31.947 31.947 31.947h105.638v59.421h-105.638c-17.677 0-31.947 14.27-31.947 31.947s14.27 31.947 31.947 31.947h105.638v59.421h-105.638c-17.677 0-31.947 14.27-31.947 31.947s14.27 31.947 31.947 31.947h105.638v29.604c0.213 0.213 1.917 200.625 202.968 203.181 2.981 0 5.964 0 8.945 0v98.821c0 17.677 14.27 31.947 31.947 31.947s31.947-14.27 31.947-31.947v-98.821c20.233 0 40.253 0 59.421 0v98.821c0 17.677 14.27 31.947 31.947 31.947s31.947-14.27 31.947-31.947v-98.821c21.51 0 41.744 0 59.421 0v98.821c0 17.677 14.27 31.947 31.947 31.947s31.947-14.27 31.947-31.947v-98.821c14.27 0 22.576 0 22.576 0 0.213-0.213 200.625-1.917 203.181-203.181 0-9.797 0-19.594 0-29.604h105.638c17.677 0 31.947-14.27 31.947-31.947s-14.27-31.947-31.947-31.947h-105.638c0-20.446 0-40.466 0-59.421h105.85zM822.309 690.049c-0.213 140.991-139.074 137.371-139.288 139.288 0 0-171.234 0-342.256 0-140.991-0.213-137.371-139.074-139.288-139.288v-342.256c0.213-140.991 139.074-137.371 139.288-139.288 0 0 171.234 0 342.256 0 140.991 0.213 137.371 139.074 139.288 139.288 0 0 0 256.638 0 342.256z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["cpu"],"colorPermutations":{"11":[]},"defaultCode":59716},"attrs":[],"properties":{"order":631,"id":239,"name":"cpu","prevSize":32,"code":59721},"setIdx":0,"setId":1,"iconIdx":95},{"icon":{"paths":["M885.333 341.333h-768c-29.867 0-53.333-23.467-53.333-53.333v-128c0-29.867 23.467-53.333 53.333-53.333h765.867c32 0 55.467 23.467 55.467 53.333v125.867c0 32-23.467 55.467-53.333 55.467zM117.333 149.333c-6.4 0-10.667 4.267-10.667 10.667v125.867c0 8.533 4.267 12.8 10.667 12.8h765.867c8.533 0 12.8-4.267 12.8-10.667v-128c0-6.4-4.267-10.667-10.667-10.667h-768zM885.333 627.2h-768c-29.867 0-53.333-23.467-53.333-53.333v-125.867c0-29.867 23.467-53.333 53.333-53.333h765.867c29.867 0 53.333 23.467 53.333 53.333v125.867c2.133 27.733-21.333 53.333-51.2 53.333zM117.333 435.2c-6.4 0-10.667 4.267-10.667 10.667v125.867c0 6.4 4.267 10.667 10.667 10.667h765.867c6.4 0 10.667-4.267 10.667-10.667v-125.867c0-6.4-4.267-10.667-10.667-10.667h-765.867zM885.333 913.067h-768c-29.867 0-53.333-23.467-53.333-53.333v-125.867c0-29.867 23.467-53.333 53.333-53.333h765.867c29.867 0 53.333 23.467 53.333 53.333v125.867c2.133 27.733-21.333 53.333-51.2 53.333zM117.333 721.067c-6.4 0-10.667 4.267-10.667 10.667v125.867c0 6.4 4.267 10.667 10.667 10.667h765.867c6.4 0 10.667-4.267 10.667-10.667v-125.867c0-6.4-4.267-10.667-10.667-10.667h-765.867z","M373.333 245.333h-170.667c-12.8 0-21.333-8.533-21.333-21.333s8.533-21.333 21.333-21.333h170.667c12.8 0 21.333 8.533 21.333 21.333s-8.533 21.333-21.333 21.333zM373.333 524.8h-170.667c-12.8 0-21.333-8.533-21.333-21.333s8.533-21.333 21.333-21.333h170.667c12.8 0 21.333 8.533 21.333 21.333s-8.533 21.333-21.333 21.333zM373.333 814.933h-170.667c-12.8 0-21.333-8.533-21.333-21.333s8.533-21.333 21.333-21.333h170.667c12.8 0 21.333 8.533 21.333 21.333s-8.533 21.333-21.333 21.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["database"],"colorPermutations":{"11":[]},"defaultCode":59717},"attrs":[],"properties":{"order":632,"id":240,"name":"database","prevSize":32,"code":59722},"setIdx":0,"setId":1,"iconIdx":96},{"icon":{"paths":["M512 384c-204.8 0-426.667-55.467-426.667-170.667s221.867-170.667 426.667-170.667 426.667 55.467 426.667 170.667-221.867 170.667-426.667 170.667zM512 128c-221.867 0-341.333 64-341.333 85.333s119.467 85.333 341.333 85.333 341.333-64 341.333-85.333-119.467-85.333-341.333-85.333zM512 682.667c-204.8 0-426.667-55.467-426.667-170.667 0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667c0 21.333 106.667 85.333 341.333 85.333s341.333-64 341.333-85.333c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667c0 115.2-221.867 170.667-426.667 170.667z","M512 981.333c-204.8 0-426.667-55.467-426.667-170.667v-597.333c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v597.333c0 21.333 106.667 85.333 341.333 85.333s341.333-64 341.333-85.333v-597.333c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v597.333c0 115.2-221.867 170.667-426.667 170.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["database-1"],"colorPermutations":{"11":[]},"defaultCode":59718},"attrs":[],"properties":{"order":633,"id":241,"name":"database-1","prevSize":32,"code":59723},"setIdx":0,"setId":1,"iconIdx":97},{"icon":{"paths":["M517.123 506.042c-243.445 0-434.54-88.525-434.54-201.736s191.096-202.161 434.54-202.161 434.54 88.525 434.54 202.161-191.096 201.736-434.54 201.736zM517.123 144.705c-234.507 0-391.98 82.567-391.98 159.601s157.473 159.175 391.98 159.175 391.98-80.439 391.98-159.175-157.473-159.601-391.98-159.601z","M517.123 712.884c-7.248 0.272-15.761 0.427-24.31 0.427-119.157 0-231.285-30.097-329.195-83.104l3.66 1.812c-46.757-22.75-79.617-67.639-85.067-120.652l-0.054-0.644c5.418-53.689 38.31-98.612 84.225-120.904l0.896-0.392c3.479-2.579 7.856-4.128 12.595-4.128 11.753 0 21.28 9.527 21.28 21.28 0 8.276-4.724 15.449-11.623 18.968l-0.121 0.056c-42.56 25.536-64.692 55.754-64.692 85.121s22.983 59.584 64.692 85.121c87.66 47.222 191.84 74.971 302.502 74.971 8.867 0 17.692-0.178 26.472-0.531l-1.259 0.040c7.488 0.311 16.276 0.489 25.104 0.489 110.41 0 214.339-27.751 305.192-76.659l-3.433 1.689c42.56-25.536 65.117-55.754 65.117-85.121s-22.983-59.584-64.692-85.121c-7.020-3.575-11.744-10.748-11.744-19.024 0-11.753 9.527-21.28 21.28-21.28 4.739 0 9.116 1.549 12.653 4.169l-0.058-0.041c46.811 22.684 79.702 67.608 85.069 120.662l0.052 0.635c-5.418 53.689-38.31 98.612-84.225 120.904l-0.896 0.392c-94.015 51.199-205.899 81.304-324.813 81.304-8.654 0-17.27-0.159-25.846-0.475l1.24 0.036z","M517.123 919.302c-243.445 0-434.54-88.525-434.54-202.161 5.503-53.658 38.363-98.547 84.226-120.903l0.895-0.394c3.138-1.866 6.92-2.969 10.958-2.969 7.726 0 14.509 4.036 18.356 10.116l0.053 0.089c1.944 3.11 3.097 6.888 3.097 10.936 0 7.64-4.108 14.32-10.236 17.952l-0.097 0.053c-42.56 25.962-64.692 56.18-64.692 85.121 0 77.034 157.473 159.601 391.98 159.601s391.98-82.567 391.98-159.601c0-28.941-22.983-59.159-64.692-85.121-6.224-3.685-10.332-10.366-10.332-18.005 0-4.047 1.153-7.825 3.148-11.024l-0.051 0.088c3.899-6.168 10.682-10.205 18.408-10.205 4.039 0 7.82 1.103 11.059 3.024l-0.1-0.055c46.757 22.75 79.617 67.639 85.067 120.652l0.054 0.644c0 113.636-191.096 202.161-434.54 202.161z"],"attrs":[],"width":1027,"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["database-2"],"colorPermutations":{"11":[]},"defaultCode":59719},"attrs":[],"properties":{"order":634,"id":242,"name":"database-2","prevSize":32,"code":59724},"setIdx":0,"setId":1,"iconIdx":98},{"icon":{"paths":["M867.356 389.333l-325.589-323.556c-5.348-5.419-12.629-8.889-20.238-8.889h-286.066c-51.044 0-93.241 39.225-93.241 96.313v713.060c0 53.234 37.916 100.85 93.241 100.85h542.393c52.139 0 103.922-42.866 103.922-100.85v-456.718c0-7.481-9.173-14.891-14.421-20.21zM540.444 143.815l260.864 254.407h-209.636c-32.128 0-51.228-28.7-51.228-58.823v-195.584zM777.856 910.222h-542.393c-24.178 0-36.352-21.746-36.352-43.975v-713.045c0-22.059 13.312-39.424 36.352-39.424h274.176l2.361 2.304v223.317c0 45.312 32.299 87.268 79.673 87.268h233.216v439.595c0 22.272-24.32 43.961-47.033 43.961z","M286.208 554.667h113.778c7.855 0 14.222-6.368 14.222-14.222s-6.368-14.222-14.222-14.222l-113.778 0c-7.855-0-14.222 6.368-14.222 14.222s6.368 14.222 14.222 14.222h0zM456.889 554.667h142.222c7.855 0 14.222-6.368 14.222-14.222s-6.368-14.222-14.222-14.222l-142.222 0c-7.855-0-14.222 6.368-14.222 14.222s6.368 14.222 14.222 14.222h0zM712.889 526.222h-56.889c-7.855-0-14.222 6.368-14.222 14.222s6.368 14.222 14.222 14.222h56.889c7.855 0 14.222-6.368 14.222-14.222s-6.368-14.222-14.222-14.222l-0 0zM286.208 625.778h56.889c7.855 0 14.222-6.368 14.222-14.222s-6.368-14.222-14.222-14.222h-56.889c-7.855 0-14.222 6.368-14.222 14.222s6.368 14.222 14.222 14.222l0-0zM399.986 597.333c-7.855 0-14.222 6.368-14.222 14.222s6.368 14.222 14.222 14.222l113.792-0c7.855 0 14.222-6.368 14.222-14.222s-6.368-14.222-14.222-14.222h-113.792zM712.889 597.333h-142.222c-7.855 0-14.222 6.368-14.222 14.222s6.368 14.222 14.222 14.222l142.222-0c7.855 0 14.222-6.368 14.222-14.222s-6.368-14.222-14.222-14.222h-0zM286.208 711.111h142.222c7.855 0 14.222-6.368 14.222-14.222s-6.368-14.222-14.222-14.222h-142.222c-7.855 0-14.222 6.368-14.222 14.222s6.368 14.222 14.222 14.222h0zM627.556 682.667h-142.222c-7.855 0-14.222 6.368-14.222 14.222s6.368 14.222 14.222 14.222h142.222c7.855 0 14.222-6.368 14.222-14.222s-6.368-14.222-14.222-14.222h-0zM712.889 682.667h-28.444c-7.855 0-14.222 6.368-14.222 14.222s6.368 14.222 14.222 14.222h28.444c7.855 0 14.222-6.368 14.222-14.222s-6.368-14.222-14.222-14.222h-0zM343.097 753.778h-56.889c-7.855 0-14.222 6.368-14.222 14.222s6.368 14.222 14.222 14.222h56.889c7.855 0 14.222-6.368 14.222-14.222s-6.368-14.222-14.222-14.222h-0zM499.556 753.778h-99.57c-7.855 0-14.222 6.368-14.222 14.222s6.368 14.222 14.222 14.222h99.57c7.855 0 14.222-6.368 14.222-14.222s-6.368-14.222-14.222-14.222h-0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["document"],"colorPermutations":{"11":[]},"defaultCode":59720},"attrs":[],"properties":{"order":635,"id":243,"name":"document","prevSize":32,"code":59725},"setIdx":0,"setId":1,"iconIdx":99},{"icon":{"paths":["M819.646 940.336h-615.293c-60.681 0-109.873-49.192-109.873-109.873v-109.873c0-24.273 19.676-43.952 43.949-43.952s43.949 19.678 43.949 43.952v87.897c0 24.273 19.676 43.952 43.949 43.952h571.343c24.273 0 43.949-19.678 43.949-43.952v-87.897c0-24.273 19.678-43.952 43.949-43.952 24.273 0 43.949 19.678 43.949 43.952v109.873c0.003 60.681-49.189 109.873-109.87 109.873zM696.612 576.21c-17.165 17.162-44.991 17.162-62.156 0-17.162-17.165-17.162-44.991 0-62.154l153.944-153.944c17.165-17.165 44.991-17.165 62.156 0 17.162 17.162 17.162 44.989 0 62.154l-153.944 153.944zM542.679 730.033c-17.162 17.162-44.989 17.162-62.154 0l-307.767-307.767c-17.162-17.165-17.162-44.991 0-62.154 17.165-17.165 44.991-17.165 62.156 0l232.793 232.794v-465.295c0-24.273 19.678-43.947 43.95-43.947 24.273 0 43.949 19.674 43.949 43.947l-0 549.37c0 4.28-0.804 8.337-1.947 12.251 3.266 14.255 0.124 29.694-10.98 40.8z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["download-1"],"colorPermutations":{"11":[]},"defaultCode":59721},"attrs":[],"properties":{"order":636,"id":244,"name":"download-1","prevSize":32,"code":59726},"setIdx":0,"setId":1,"iconIdx":100},{"icon":{"paths":["M870.4 179.2c20.48 20.48 20.48 51.2 0 71.68l-363.52 363.52c-20.48 20.48-51.2 20.48-71.68 0s-20.48-51.2 0-71.68l363.52-363.52c20.48-15.36 56.32-15.36 71.68 0zM783.36 537.6c0-30.72 20.48-51.2 51.2-51.2 25.6 0 51.2 20.48 51.2 51.2v307.2c0 56.32-46.080 102.4-102.4 102.4h-542.72c-56.32 0-102.4-46.080-102.4-102.4v-665.6c0-56.32 46.080-102.4 102.4-102.4h368.64c25.6 0 51.2 20.48 51.2 51.2s-20.48 51.2-51.2 51.2h-322.56c-30.72 0-51.2 20.48-51.2 51.2v563.2c0 30.72 20.48 51.2 51.2 51.2h440.32c30.72 0 51.2-20.48 51.2-51.2v-256z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["edit"],"colorPermutations":{"11":[]},"defaultCode":59722},"attrs":[],"properties":{"order":637,"id":245,"name":"edit","prevSize":32,"code":59727},"setIdx":0,"setId":1,"iconIdx":101},{"icon":{"paths":["M927.954 448.007h-203.977l-38.281-191.979h114.273c17.712 0 31.996-14.284 31.996-31.996s-14.284-31.996-31.996-31.996h-127.072l-28.111-140.556c-5.942-29.825-32.225-51.423-62.736-51.423h-140.099c-30.511 0-56.794 21.598-62.736 51.423l-27.997 140.556h-127.186c-17.712 0-31.996 14.284-31.996 31.996s14.284 31.996 31.996 31.996h114.273l-38.281 191.979h-203.977c-17.712 0-31.996 14.284-31.996 31.996s14.284 31.996 31.996 31.996h191.179l-94.618 474.118c-0.229 1.028 0.114 2.057 0 3.085-0.229 2.285-0.229 4.457 0.114 6.856 0.229 1.943 0.686 3.771 1.257 5.714 0.686 1.943 1.371 3.771 2.4 5.599 1.028 1.943 2.285 3.657 3.771 5.257 0.686 0.8 1.028 1.828 1.828 2.628 0.686 0.686 1.6 0.914 2.285 1.486 1.6 1.257 3.314 2.285 5.142 3.314 1.943 1.028 3.885 1.828 5.942 2.4 0.914 0.229 1.714 0.914 2.743 1.143 0.914 0.229 1.828-0.114 2.857-0.114 1.028 0.114 1.943 0.571 2.971 0.571 1.143 0 2.285-0.571 3.428-0.686 2.057-0.229 4-0.571 5.942-1.143 2.057-0.686 4-1.486 5.828-2.514s3.542-2.171 5.142-3.542c0.914-0.8 2.057-1.143 2.857-2.057l264.885-279.169 264.77 278.94c0.457 0.457 1.028 0.571 1.486 1.028 2.057 1.943 4.457 3.542 6.971 4.799 1.028 0.571 1.943 1.371 3.085 1.714 3.657 1.486 7.542 2.4 11.656 2.4 1.943 0 3.885-0.229 5.828-0.571 0.914-0.114 1.6-0.8 2.514-1.028 2.285-0.571 4.342-1.486 6.399-2.628 1.714-0.914 3.314-1.828 4.799-3.085 0.8-0.571 1.714-0.8 2.4-1.486 0.8-0.8 1.143-1.943 1.943-2.743 1.371-1.6 2.628-3.314 3.657-5.142s1.828-3.657 2.4-5.599c0.571-1.943 1.028-3.771 1.257-5.714 0.229-2.171 0.229-4.342 0.114-6.514-0.114-1.143 0.229-2.171 0-3.2l-94.504-474.118h191.179c17.712 0 31.996-14.284 31.996-31.996s-14.284-31.996-31.996-31.996zM442.636 64.050h138.842l25.597 127.986h-190.15l25.711-127.986zM404.126 256.029h215.747l38.51 191.979h-292.767l38.51-191.979zM635.415 512l-123.415 130.043-123.415-130.043h246.83zM277.169 889.444l66.507-331.734 124.215 130.843-190.722 200.892zM680.324 557.595l66.507 331.849-190.722-201.006 124.215-130.843z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["electric-tower"],"colorPermutations":{"11":[]},"defaultCode":59723},"attrs":[],"properties":{"order":638,"id":246,"name":"electric-tower","prevSize":32,"code":59728},"setIdx":0,"setId":1,"iconIdx":102},{"icon":{"paths":["M265.28 310.72c-5.815-5.815-9.411-13.847-9.411-22.72 0-17.745 14.386-32.131 32.131-32.131 8.873 0 16.905 3.596 22.72 9.411l448 448c5.815 5.815 9.411 13.847 9.411 22.72 0 17.745-14.386 32.131-32.131 32.131-8.873 0-16.905-3.596-22.72-9.411v0z","M713.28 265.28c5.815-5.815 13.847-9.411 22.72-9.411 17.745 0 32.131 14.386 32.131 32.131 0 8.873-3.596 16.905-9.411 22.72l-448 448c-5.815 5.815-13.847 9.411-22.72 9.411-17.745 0-32.131-14.386-32.131-32.131 0-8.873 3.596-16.905 9.411-22.72l-0 0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["error"],"colorPermutations":{"11":[]},"defaultCode":59724},"attrs":[],"properties":{"order":639,"id":247,"name":"error","prevSize":32,"code":59729},"setIdx":0,"setId":1,"iconIdx":103},{"icon":{"paths":["M1023.999 512c0-282.77-229.23-512-511.999-512s-511.999 229.23-511.999 512 229.23 512 512 512c117.411 0 228.826-39.669 318.768-111.313 10.79-8.595 12.568-24.307 3.974-35.096-8.595-10.79-24.307-12.568-35.096-3.974-81.176 64.662-181.645 100.433-287.646 100.433-255.182 0-462.048-206.866-462.048-462.048s206.865-462.049 462.047-462.049 462.048 206.866 462.048 462.048c0 87.492-24.334 171.337-69.577 243.96-7.294 11.707-3.715 27.111 7.992 34.405s27.111 3.715 34.405-7.992c50.145-80.493 77.131-173.476 77.131-270.374zM524.656 538.524l-157.178 160.051c-9.664 9.842-25.478 9.984-35.319 0.32s-9.984-25.478-0.32-35.319l157.813-160.696-157.813-160.696c-9.664-9.842-9.522-25.655 0.32-35.319s25.655-9.522 35.319 0.32l157.178 160.051 157.179-160.051c9.664-9.842 25.478-9.984 35.319-0.32s9.984 25.478 0.32 35.319l-157.813 160.696 157.813 160.696c9.664 9.841 9.522 25.655-0.32 35.319s-25.655 9.522-35.319-0.32l-157.179-160.051z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["error-1"],"colorPermutations":{"11":[]},"defaultCode":59725},"attrs":[],"properties":{"order":640,"id":248,"name":"error-1","prevSize":32,"code":59730},"setIdx":0,"setId":1,"iconIdx":104},{"icon":{"paths":["M7.312 485.632c103.682-172.548 294.559-280.838 504.688-280.838s401.006 108.29 504.688 280.838c4.592 7.525 7.312 16.629 7.312 26.368s-2.719 18.843-7.44 26.595l0.128-0.226c-103.682 172.548-294.559 280.838-504.688 280.838s-401.006-108.29-504.688-280.838c-4.592-7.525-7.312-16.629-7.312-26.368s2.719-18.843 7.44-26.595l-0.128 0.226zM512 716.805c163.075 0 311.609-78.389 399.829-204.805-88.22-126.415-236.754-204.805-399.829-204.805s-311.609 78.389-399.829 204.805c88.22 126.415 236.754 204.805 399.829 204.805zM358.397 512c0.005-28.274 22.926-51.193 51.201-51.193s51.197 22.919 51.201 51.193v0c0 28.277 22.924 51.201 51.201 51.201s51.201-22.924 51.201-51.201c0-28.277-22.924-51.201-51.201-51.201v0c-28.274-0.005-51.193-22.926-51.193-51.201s22.919-51.197 51.193-51.201v0c84.832 0 153.603 68.771 153.603 153.603s-68.771 153.603-153.603 153.603c-84.832 0-153.603-68.771-153.603-153.603v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["eye"],"colorPermutations":{"11":[]},"defaultCode":59726},"attrs":[],"properties":{"order":641,"id":249,"name":"eye","prevSize":32,"code":59731},"setIdx":0,"setId":1,"iconIdx":105},{"icon":{"paths":["M896 1024h-768c-70.692 0-128-57.308-128-128v0-768c0-70.692 57.308-128 128-128v0h768c70.692 0 128 57.308 128 128v0 768c0 70.692-57.308 128-128 128v0zM960 128c0-35.346-28.654-64-64-64v0h-768c-35.346 0-64 28.654-64 64v0 768c0 35.346 28.654 64 64 64v0h768c35.346 0 64-28.654 64-64v0-768zM890.368 850.112c-5.847 8.434-15.477 13.888-26.381 13.888-6.777 0-13.062-2.107-18.236-5.701l0.105 0.069-494.144-339.712-173.952 115.968c-5.085 3.559-11.399 5.686-18.21 5.686-17.673 0-32-14.327-32-32 0-11.256 5.811-21.154 14.597-26.859l0.124-0.076 192-128h0.32c2.172-1.313 4.682-2.405 7.337-3.149l0.215-0.051c1.12-0.559 2.466-1.101 3.857-1.543l0.207-0.057c0.574-0.037 1.245-0.059 1.92-0.059s1.346 0.021 2.011 0.063l-0.091-0.005c1.249-0.173 2.693-0.272 4.16-0.272s2.911 0.099 4.325 0.29l-0.165-0.018c1.187 0.398 2.161 0.799 3.103 1.253l-0.159-0.069c3.268 0.873 6.131 2.121 8.75 3.729l-0.142-0.081h0.256l225.664 155.168 152.224-121.792 0.288 0.352c5.413-4.484 12.428-7.204 20.079-7.204 6.476 0 12.497 1.949 17.508 5.293l-0.115-0.072 96 64c8.91 5.78 14.722 15.679 14.722 26.934 0 17.673-14.327 32-32 32-6.811 0-13.125-2.128-18.313-5.755l0.103 0.069-76.544-51.008-118.816 95.040 231.232 158.976c8.449 5.845 13.913 15.484 13.913 26.398 0 6.852-2.154 13.201-5.821 18.407l0.068-0.101zM592 416c-79.529 0-144-64.471-144-144s64.471-144 144-144c79.529 0 144 64.471 144 144v0c0 79.529-64.471 144-144 144v0zM592 192c-44.183 0-80 35.817-80 80s35.817 80 80 80c44.183 0 80-35.817 80-80v0c0-44.183-35.817-80-80-80v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["gallery"],"colorPermutations":{"11":[]},"defaultCode":59727},"attrs":[],"properties":{"order":642,"id":250,"name":"gallery","prevSize":32,"code":59732},"setIdx":0,"setId":1,"iconIdx":106},{"icon":{"paths":["M1002.667 707.925v166.741c0 47.128-38.205 85.333-85.333 85.333h-810.667c-47.128 0-85.333-38.205-85.333-85.333v0-725.333c0-47.128 38.205-85.333 85.333-85.333h810.667c47.128 0 85.333 38.205 85.333 85.333h-0v558.443zM960 149.675c0-23.564-19.103-42.667-42.667-42.667v-0h-810.667c-23.564 0-42.667 19.103-42.667 42.667v-0 430.251s156.331 244.736 554.667-19.648c168.085-111.573 283.584-64.32 341.333-21.333v-389.269zM960 581.056c-57.6-43.307-172.8-90.837-342.272 19.989-404.139 264.064-553.728 21.547-553.728 21.547v85.333s156.331 244.736 554.667-19.648c168.085-111.573 283.584-64.32 341.333-21.333v-85.909zM960 709.056c-57.6-43.307-172.8-90.837-342.272 19.989-404.139 264.064-553.728 21.547-553.728 21.547v124.416c-0 23.564 19.103 42.667 42.667 42.667v0h810.667c23.564 0 42.667-19.103 42.667-42.667v0-165.952zM298.389 449.323c-59.205-0-107.2-47.995-107.2-107.2s47.995-107.2 107.2-107.2c59.205 0 107.2 47.995 107.2 107.2l0 0c-0 59.205-47.995 107.2-107.2 107.2l0 0zM298.389 277.035c-0.006-0-0.014-0-0.021-0-35.947 0-65.088 29.141-65.088 65.088s29.141 65.088 65.088 65.088c35.947 0 65.088-29.141 65.088-65.088l-0 0c0-35.94-29.129-65.076-65.065-65.088l-0.001-0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["gallery-1"],"colorPermutations":{"11":[]},"defaultCode":59728},"attrs":[],"properties":{"order":643,"id":251,"name":"gallery-1","prevSize":32,"code":59733},"setIdx":0,"setId":1,"iconIdx":107},{"icon":{"paths":["M828.48 854.72c-5.899 6.759-14.528 11.006-24.15 11.006-17.673 0-32-14.327-32-32 0-9.781 4.389-18.538 11.304-24.408l0.046-0.038c69.322-68.555 112.268-163.657 112.32-268.791l0-0.009c0-212.077-171.923-384-384-384s-384 171.923-384 384v0c0.053 105.143 42.998 200.246 112.286 268.766l0.034 0.034c5.751 5.784 9.305 13.757 9.305 22.56s-3.555 16.776-9.307 22.562l0.002-0.002c-5.8 5.846-13.837 9.466-22.72 9.466s-16.92-3.619-22.718-9.463l-0.002-0.002c-80.759-80.392-130.735-191.649-130.735-314.578 0-245.126 198.714-443.84 443.84-443.84 1.412 0 2.822 0.007 4.231 0.020l-0.216-0.002c0.004-0 0.009-0 0.014-0 246.186 0 445.992 198.575 447.985 444.291l0.001 0.189c-0.052 122.958-50.349 234.158-131.471 314.192l-0.049 0.048z","M96 608c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h64c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM864 608c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h64c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM201.28 278.72c-5.815-5.815-9.411-13.847-9.411-22.72 0-17.745 14.386-32.131 32.131-32.131 8.873 0 16.905 3.596 22.72 9.411l32 32c5.815 5.815 9.411 13.847 9.411 22.72 0 17.745-14.386 32.131-32.131 32.131-8.873 0-16.905-3.596-22.72-9.411l0 0zM745.28 822.72c-5.815-5.815-9.411-13.847-9.411-22.72 0-17.745 14.386-32.131 32.131-32.131 8.873 0 16.905 3.596 22.72 9.411v0l32 32c5.815 5.815 9.411 13.847 9.411 22.72 0 17.745-14.386 32.131-32.131 32.131-8.873 0-16.905-3.596-22.72-9.411v0zM777.28 233.28c5.815-5.815 13.847-9.411 22.72-9.411 17.745 0 32.131 14.386 32.131 32.131 0 8.873-3.596 16.905-9.411 22.72l-32 32c-5.815 5.815-13.847 9.411-22.72 9.411-17.745 0-32.131-14.386-32.131-32.131 0-8.873 3.596-16.905 9.411-22.72l-0 0zM233.28 777.28c5.815-5.815 13.847-9.411 22.72-9.411 17.745 0 32.131 14.386 32.131 32.131 0 8.873-3.596 16.905-9.411 22.72l-32 32c-5.815 5.815-13.847 9.411-22.72 9.411-17.745 0-32.131-14.386-32.131-32.131 0-8.873 3.596-16.905 9.411-22.72l-0 0zM480 160c0-17.673 14.327-32 32-32s32 14.327 32 32v0 64c0 17.673-14.327 32-32 32s-32-14.327-32-32v0zM597.76 505.92l-32 8.64c-26.805 6.383-49.754 13.957-71.828 23.206l3.028-1.126c-10.401 7.719-17.067 19.96-17.067 33.759 0 7.203 1.817 13.982 5.017 19.904l-0.11-0.222c4.373 10.456 14.518 17.668 26.348 17.668 5.526 0 10.685-1.574 15.052-4.298l-0.12 0.070c25.135-23.139 48.075-47.702 69.068-73.894l1.012-1.306 7.68-8.64 16-19.2zM549.12 452.48l32-8.64c25.28-6.4 52.16-12.8 79.040-18.88l25.92-6.080 10.24-2.24c2.103-0.493 4.519-0.775 7-0.775 17.673 0 32 14.327 32 32 0 7.585-2.639 14.553-7.048 20.037l0.048-0.062c0 1.6-3.2 4.48-6.4 8l-16.96 21.12c-17.92 21.76-35.84 43.52-53.12 64l-7.68 8.96c-25.278 32.762-53.016 61.516-83.6 86.968l-0.88 0.712c-13.926 8.846-30.889 14.098-49.079 14.098-36.288 0-67.695-20.901-82.839-51.321l-0.242-0.537c-7.702-14.319-12.227-31.332-12.227-49.403 0-36.44 18.401-68.582 46.419-87.64l0.368-0.236c24.984-12.452 54.047-22.809 84.456-29.596l2.584-0.484z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["gauge"],"colorPermutations":{"11":[]},"defaultCode":59729},"attrs":[],"properties":{"order":644,"id":252,"name":"gauge","prevSize":32,"code":59734},"setIdx":0,"setId":1,"iconIdx":108},{"icon":{"paths":["M311.844 880.016c-120.448-70.325-196.052-199.167-196.052-341.188 0-218.019 176.751-394.769 394.769-394.769 217.993 0 394.739 176.755 394.739 394.769 0 142.444-76.045 271.595-197.051 341.762-12.758 7.397-17.108 23.734-9.708 36.495 7.397 12.758 23.739 17.103 36.495 9.701 137.315-79.617 223.67-226.278 223.67-387.958 0-247.511-200.655-448.173-448.145-448.173-247.515 0-448.174 200.659-448.174 448.173 0 161.207 85.849 307.507 222.533 387.305 12.733 7.435 29.089 3.14 36.524-9.593 7.433-12.738 3.136-29.089-9.601-36.524v0 0zM483.853 117.353v79.254c0 14.751 11.959 26.705 26.706 26.705 14.745 0 26.699-11.954 26.699-26.705l0-79.254c0-14.745-11.954-26.699-26.699-26.699-14.747 0.001-26.706 11.954-26.706 26.699v0 0zM850.377 318.311l-56.050 56.024c-10.433 10.422-10.433 27.331-0.010 37.76 10.424 10.434 27.334 10.434 37.761 0.010l56.051-56.023c10.432-10.423 10.432-27.333 0.009-37.761-10.423-10.433-27.334-10.433-37.761-0.010v0 0zM244.705 746.729l-56.046 56.051c-10.426 10.425-10.426 27.333 0 37.758 10.429 10.43 27.333 10.43 37.762 0l56.051-56.048c10.426-10.427 10.426-27.334 0-37.761-10.429-10.43-27.338-10.43-37.766 0v0 0zM834.975 802.784l-56.023-56.050c-10.427-10.435-27.333-10.435-37.765-0.010-10.427 10.424-10.433 27.334-0.009 37.761l56.023 56.048c10.427 10.431 27.333 10.435 37.765 0.012 10.429-10.425 10.434-27.333 0.009-37.761v0 0zM233.231 374.338l-56.022-56.023c-10.429-10.426-27.334-10.426-37.762 0-10.427 10.429-10.427 27.333 0 37.762l56.018 56.023c10.429 10.429 27.338 10.429 37.766 0 10.427-10.429 10.427-27.334-0-37.762v0 0zM233.231 374.338z","M560.779 452.592l167.215-167.202c10.427-10.427 27.333-10.427 37.761 0 10.427 10.427 10.427 27.339 0 37.765l-166.753 166.74c9.112 15.347 14.347 33.271 14.347 52.417 0 56.778-46.025 102.802-102.803 102.802-19.147 0-37.074-5.234-52.421-14.349l-56.431 56.426c-10.426 10.427-27.333 10.424-37.76-0.004-10.429-10.429-10.429-27.334 0-37.761l56.889-56.885c-8.33-14.859-13.082-31.987-13.082-50.229 0-56.776 46.025-102.805 102.805-102.805 18.242-0.001 35.377 4.751 50.233 13.085v0zM560.779 452.592z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["gauge-1"],"colorPermutations":{"11":[]},"defaultCode":59730},"attrs":[],"properties":{"order":645,"id":253,"name":"gauge-1","prevSize":32,"code":59735},"setIdx":0,"setId":1,"iconIdx":109},{"icon":{"paths":["M595.2 1024h-161.723c-14.277 0-26.831-10.614-29.538-24.674l-19.446-100.431c-18.462-6.164-35.446-12.83-51.446-20.726l-85.662 58.24c-4.722 3.21-10.55 5.126-16.826 5.126-8.328 0-15.868-3.373-21.328-8.828l0 0-114.215-114.737c-5.455-5.478-8.827-13.033-8.827-21.377 0-6.293 1.919-12.138 5.203-16.982l-0.068 0.106 57.846-85.366c-7.361-14.368-14.53-31.591-20.408-49.402l-0.761-2.664-100.677-19.495c-14.031-2.718-25.108-15.055-25.108-29.607v-162.117c0-14.306 11.077-26.89 25.354-29.607l99.692-19.249c6.78-20.804 13.865-38.106 22.021-54.789l-1.098 2.486-57.108-84.391c-8.123-11.845-6.4-27.884 3.692-38.242l114.462-114.491c5.495-5.408 13.039-8.747 21.364-8.747 6.252 0 12.065 1.884 16.901 5.114l-0.111-0.070 83.938 57.246c16.738-8.389 34.462-15.557 53.169-21.721l19.2-99.929c2.708-14.060 15.015-24.674 29.538-24.674h161.723c14.277 0 26.831 10.614 29.538 24.674l19.2 99.682c20.913 6.748 38.424 13.939 55.265 22.277l-2.342-1.049 84.431-57.246c4.724-3.213 10.554-5.13 16.832-5.13 8.325 0 15.863 3.371 21.323 8.822l-0-0 114.215 114.737c5.455 5.478 8.827 13.033 8.827 21.377 0 6.293-1.919 12.138-5.203 16.982l0.068-0.106-57.6 84.874c7.038 13.999 14.118 31.052 20.059 48.63l0.864 2.944 99.692 19.495c14.031 2.718 23.877 15.055 23.877 29.607v161.625c0 14.306-9.846 26.89-24.123 29.607l-99.446 19.495c-6.73 20.853-13.734 38.16-21.791 54.865l1.114-2.562 58.092 85.868c3.26 4.735 5.207 10.593 5.207 16.906 0 8.347-3.403 15.898-8.897 21.344l-0.002 0.002-114.462 114.491c-10.092 10.358-26.092 11.835-38.154 3.692l-85.662-58.23c-14.206 7.233-31.379 14.413-49.106 20.39l-2.833 0.829-19.446 100.677c-2.708 13.814-15.015 24.428-29.292 24.428zM458.092 962.314h112.246l17.969-93.273c2.199-11.111 10.37-19.872 20.96-22.891l0.209-0.051c26.585-7.65 51.446-17.772 73.6-30.11 9.846-5.425 22.154-4.933 31.508 1.477l80 54.538 79.262-79.458-54.154-80.187c-3.234-4.699-5.165-10.513-5.165-16.778 0-5.448 1.46-10.555 4.011-14.951l-0.077 0.143c11.815-21.465 21.662-45.647 29.538-74.023 2.954-10.86 11.077-19.249 22.154-21.218l92.308-18.018v-112.502l-92.308-18.255c-11.077-2.225-19.446-10.368-22.646-21.228-7.631-26.89-17.477-51.564-29.538-73.531-2.343-4.208-3.723-9.231-3.723-14.575 0-6.344 1.943-12.233 5.267-17.106l-0.068 0.105 53.662-79.212-79.262-79.449-78.769 53.543c-9.354 6.42-21.662 6.912-31.508 1.231-21.169-11.835-45.538-21.711-74.338-29.854-10.831-2.954-19.2-11.599-21.169-22.695l-17.723-92.288h-112.492l-17.969 92.534c-2.199 11.111-10.37 19.872-20.96 22.891l-0.209 0.051c-27.323 7.65-52.431 18.018-74.831 30.602-9.846 5.425-22.154 4.923-31.508-1.477l-78.277-53.307-79.262 79.458 53.415 78.956c6.4 9.374 6.892 21.465 1.477 31.34-11.815 21.218-21.415 45.391-29.292 73.777-2.954 11.097-12.308 19.239-23.385 21.465l-93.046 18.018v112.512l93.292 18.018c11.077 2.215 20.185 10.358 23.138 21.209 7.631 26.9 17.723 51.574 30.277 73.777 5.415 9.876 4.923 22.213-1.231 31.586l-54.154 79.951 79.262 79.449 80-54.292c9.354-6.42 21.415-6.912 31.508-1.477 21.169 11.835 45.046 21.465 73.108 29.361 10.831 3.2 19.2 11.589 21.169 22.695l17.723 93.519zM994.462 602.063v0zM514.215 748.377c-62.523 0-121.846-24.418-166.892-69.327-53.662-53.79-77.785-128.315-66.215-204.554 15.262-100.431 96-181.11 196.185-196.657 75.569-11.599 150.154 12.583 203.815 66.373s78.031 128.305 66.462 204.554c-15.262 100.431-96 181.11-195.938 196.657-12.554 1.969-25.108 2.954-37.415 2.954zM546.954 722.974v0zM514.462 335.33c-9.354 0-18.462 0.738-28.062 2.215-73.354 11.353-134.646 72.793-145.969 146.078-8.615 56.999 9.354 112.768 49.477 152.98 40.123 40.222 95.754 58.24 152.615 49.605 73.354-11.353 134.646-72.793 145.723-146.324 8.615-57.009-9.354-112.768-49.477-152.99-33.477-33.556-77.538-51.564-124.308-51.564z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["gear"],"colorPermutations":{"11":[]},"defaultCode":59731},"attrs":[],"properties":{"order":646,"id":254,"name":"gear","prevSize":32,"code":59736},"setIdx":0,"setId":1,"iconIdx":110},{"icon":{"paths":["M528.953 384.409c-65.347 0-118.494 53.474-118.494 119.243 0 65.756 53.151 119.258 118.494 119.258 6.541 0 13.264-0.677 21.172-2.129 9.217-1.671 15.328-10.559 13.639-19.813-1.67-9.284-10.461-15.49-19.69-13.722-5.858 1.062-10.668 1.561-15.11 1.561-46.654 0-84.602-38.189-84.602-85.143 0-46.943 37.95-85.143 84.602-85.143 46.662 0 84.611 38.201 84.611 85.143 0 4.483-0.493 9.3-1.554 15.194-1.692 9.254 4.421 18.142 13.619 19.826 9.217 1.69 18.043-4.453 19.71-13.724 1.436-7.949 2.116-14.711 2.116-21.299 0-65.765-53.165-119.243-118.513-119.243zM878.497 436.518c-1.259-6.653-6.291-11.934-12.847-13.437-37.171-8.604-68.059-31.513-86.979-64.502-18.907-32.973-23.189-71.287-12.062-107.918 1.972-6.455-0.048-13.472-5.113-17.891-34.080-29.647-72.992-52.253-115.681-67.204-6.322-2.218-13.377-0.48-17.959 4.468-25.966 28.023-61.091 43.451-98.898 43.451-37.815 0-72.932-15.426-98.905-43.451-4.576-4.931-11.618-6.692-17.965-4.468-42.655 14.951-81.571 37.558-115.661 67.214-5.072 4.404-7.086 11.417-5.127 17.891 11.13 36.623 6.841 74.943-12.069 107.898-18.927 32.985-49.799 55.895-86.947 64.502-6.555 1.504-11.594 6.782-12.85 13.437-4.29 22.676-6.455 45.268-6.455 67.137s2.163 44.455 6.455 67.136c1.259 6.653 6.293 11.931 12.85 13.435 37.154 8.624 68.035 31.518 86.955 64.502 18.908 32.954 23.189 71.291 12.069 107.92-1.95 6.436 0.045 13.454 5.127 17.876 34.086 29.644 72.999 52.271 115.655 67.214 1.821 0.626 3.698 0.941 5.567 0.941 4.619 0 9.127-1.901 12.394-5.428 25.974-28.023 61.091-43.435 98.905-43.435 37.805 0 72.931 15.407 98.898 43.435 4.581 4.971 11.599 6.692 17.972 4.489 42.638-14.927 81.54-37.534 115.646-67.204 5.067-4.4 7.084-11.415 5.109-17.876-11.105-36.623-6.819-74.98 12.082-107.934 18.917-32.985 49.799-55.895 86.979-64.502 6.559-1.504 11.59-6.779 12.847-13.435 4.29-22.725 6.455-45.313 6.455-67.136s-2.169-44.407-6.459-67.137zM847.015 553.936c-41.081 12.51-76.271 40.355-97.703 77.728-21.403 37.337-27.803 81.903-18.094 123.882-26.135 21.269-55.198 38.16-86.612 50.319-31.502-29.843-72.129-46.145-115.646-46.145-42.836 0-84.361 16.698-115.634 46.162-31.435-12.172-60.49-29.062-86.612-50.332 9.938-42.362 3.649-85.941-18.098-123.882-21.443-37.374-56.624-65.211-97.68-77.728-2.692-17.028-4.045-33.899-4.045-50.282 0-16.388 1.355-33.252 4.045-50.284 41.034-12.51 76.22-40.365 97.661-77.741 21.429-37.324 27.818-81.869 18.098-123.855 26.128-21.285 55.188-38.163 86.631-50.335 31.269 29.477 72.8 46.163 115.634 46.163 43.515 0 84.153-16.304 115.646-46.163 31.446 12.172 60.515 29.052 86.628 50.335-9.729 41.956-3.343 86.521 18.075 123.855 21.451 37.374 56.646 65.231 97.703 77.741 2.681 17.065 4.038 33.929 4.038 50.284s-1.351 33.219-4.038 50.282z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["gear-1"],"colorPermutations":{"11":[]},"defaultCode":59732},"attrs":[],"properties":{"order":647,"id":255,"name":"gear-1","prevSize":32,"code":59737},"setIdx":0,"setId":1,"iconIdx":111},{"icon":{"paths":["M512 1023.999c-28.335-0.001-56.137-2.278-83.235-6.658l2.973 0.396c-28.064-4.555-49.229-28.612-49.229-57.613 0-2.936 0.217-5.821 0.636-8.64l-0.039 0.319c0.729-4.895 1.145-10.545 1.145-16.292 0-64.289-52.117-116.408-116.408-116.408-27.224 0-52.264 9.345-72.089 25.003l0.245-0.188c-9.849 7.817-22.46 12.542-36.173 12.542-2.116 0-4.205-0.112-6.264-0.332l0.256 0.022c-15.777-1.609-29.475-9.395-38.827-20.864l-0.082-0.104c-32.892-40.067-60.25-86.351-79.907-136.5l-1.198-3.47c-11.345-29.506 3.287-62.997 32.531-74.662 43.33-17.599 73.327-59.364 73.327-108.137 0-48.83-30.068-90.638-72.698-107.918l-0.78-0.279c-29.28-11.637-43.949-45.091-32.691-74.604 20.751-53.659 48.015-99.984 81.532-141.002l-0.725 0.915c10.731-13.119 26.921-21.428 45.051-21.428 13.585 0 26.081 4.665 35.974 12.481l-0.122-0.093c19.577 15.501 44.63 24.865 71.87 24.865 21.52 0 41.675-5.845 58.964-16.034l-0.543 0.297c34.939-20.402 58.040-57.717 58.040-100.427 0-5.913-0.443-11.722-1.297-17.397l0.079 0.639c-0.392-2.541-0.615-5.473-0.615-8.457 0-12.879 4.166-24.785 11.224-34.443l-0.116 0.166c8.822-12.192 22.078-20.709 37.357-23.192l0.331-0.045c24.499-4.109 52.725-6.458 81.499-6.458 28.184 0 55.841 2.253 82.802 6.589l-2.963-0.393c28.081 4.535 49.267 28.599 49.267 57.613 0 2.92-0.215 5.791-0.629 8.595l0.038-0.317c-0.719 4.86-1.129 10.469-1.129 16.175 0 64.243 52.028 116.333 116.246 116.436h0.010c27.405-0.025 52.6-9.46 72.535-25.248l-0.244 0.187c9.79-7.778 22.329-12.48 35.966-12.48 18.075 0 34.221 8.258 44.87 21.208l0.081 0.1c32.93 40.046 60.327 86.304 80.028 136.43l1.201 3.468c11.338 29.498-3.243 63.003-32.501 74.691-43.246 17.448-73.209 59.073-73.209 107.696 0 0.212 0.001 0.423 0.002 0.635v-0.033 0.647c0 0.122-0.001 0.266-0.001 0.41 0 48.688 30.048 90.36 72.611 107.481l0.779 0.277c29.28 11.637 43.92 45.091 32.64 74.632-20.805 53.633-48.12 99.934-81.685 140.918l0.718-0.904c-9.427 11.583-23.119 19.38-38.649 20.984l-0.245 0.021c-1.831 0.204-3.953 0.32-6.103 0.32-13.694 0-26.287-4.715-36.244-12.609l0.121 0.093c-19.525-15.492-44.525-24.853-71.712-24.853-21.509 0-41.651 5.86-58.913 16.071l0.538-0.295c-34.983 20.393-58.119 57.733-58.119 100.477 0 5.877 0.437 11.652 1.282 17.294l-0.079-0.636c0.384 2.515 0.603 5.415 0.603 8.366 0 28.989-21.142 53.039-48.848 57.573l-0.337 0.046c-24.259 4.031-52.212 6.335-80.704 6.335-0.005 0-0.011 0-0.017 0h0.001zM268.073 772.538c89.901 0.148 162.722 73.060 162.722 162.982 0 8.040-0.583 15.945-1.707 23.673l0.105-0.88c-0.091 0.549-0.142 1.18-0.142 1.824 0 5.851 4.27 10.704 9.864 11.614l0.068 0.009c21.948 3.624 47.241 5.695 73.018 5.695 25.924 0 51.36-2.095 76.147-6.124l-2.713 0.364c5.662-0.919 9.933-5.772 9.933-11.624 0-0.647-0.052-1.281-0.153-1.899l0.009 0.068c-1.039-6.911-1.631-14.885-1.631-23 0-89.997 72.957-162.952 162.952-162.952 38.076 0 73.101 13.059 100.843 34.942l-0.346-0.263c5.163 4.044 12.327 3.374 16.306-1.527 29.859-36.433 54.691-78.519 72.52-124.115l1.088-3.157c0.485-1.225 0.767-2.643 0.767-4.128 0-4.771-2.907-8.863-7.047-10.6l-0.075-0.028c-60.724-24.591-102.778-83.087-102.778-151.405 0-0.002 0-0.003 0-0.005v0-0.611c0-0.080 0-0.175 0-0.269 0-68.206 41.915-126.622 101.391-150.893l1.089-0.393c4.205-1.767 7.105-5.854 7.105-10.616 0-1.495-0.286-2.923-0.805-4.233l0.027 0.077c-19-48.716-43.906-90.763-74.484-127.971l0.644 0.807c-2.129-2.568-5.321-4.191-8.891-4.191-2.693 0-5.171 0.924-7.133 2.471l0.024-0.019c-27.48 21.863-62.69 35.077-100.988 35.077-29.971 0-58.052-8.093-82.175-22.214l0.77 0.417c-49.096-28.678-81.557-81.12-81.557-141.143 0-8.001 0.577-15.867 1.691-23.559l-0.105 0.877c0.089-0.545 0.141-1.174 0.141-1.815 0-5.852-4.273-10.705-9.869-11.608l-0.068-0.009c-21.829-3.587-46.988-5.637-72.625-5.637-26.179 0-51.857 2.137-76.872 6.245l2.726-0.37c-6.248 0.996-10.4 6.887-9.455 13.411 1.057 6.971 1.66 15.013 1.66 23.197 0 89.973-72.937 162.909-162.909 162.909-38.159 0-73.253-13.119-101.018-35.093l0.34 0.26c-1.936-1.517-4.406-2.433-7.091-2.433-3.578 0-6.776 1.627-8.894 4.181l-0.015 0.020c-29.839 36.443-54.646 78.543-72.443 124.152l-1.084 3.157c-0.485 1.224-0.768 2.643-0.768 4.127 0 4.772 2.912 8.863 7.056 10.594l0.075 0.028c30.538 12.314 55.701 32.608 73.629 58.321l0.35 0.53c18.083 25.876 28.894 57.997 28.894 92.643 0 34.547-10.75 66.583-29.086 92.945l0.352-0.535c-18.241 26.269-43.369 46.594-72.788 58.561l-1.089 0.392c-4.211 1.765-7.115 5.854-7.115 10.62 0 1.49 0.284 2.915 0.801 4.221l-0.027-0.077c18.952 48.756 43.824 90.841 74.379 128.087l-0.648-0.814c3.985 4.895 11.149 5.556 16.312 1.505 24.136-19.083 54.304-31.545 87.242-34.202l0.576-0.037q6.502-0.553 12.982-0.553zM512 651.636c-76.996 0-139.636-62.64-139.636-139.636s62.64-139.636 139.636-139.636 139.636 62.64 139.636 139.636-62.64 139.636-139.636 139.636zM512 418.909c-51.412 0-93.091 41.678-93.091 93.091s41.678 93.091 93.091 93.091c51.412 0 93.091-41.678 93.091-93.091v0c-0.058-51.389-41.701-93.033-93.085-93.091h-0.005z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["gear-2"],"colorPermutations":{"11":[]},"defaultCode":59733},"attrs":[],"properties":{"order":648,"id":256,"name":"gear-2","prevSize":32,"code":59738},"setIdx":0,"setId":1,"iconIdx":112},{"icon":{"paths":["M880.288 232.48l-320.096-187.36c-13.837-8.235-30.51-13.103-48.32-13.103s-34.483 4.868-48.761 13.345l0.441-0.243-319.872 187.36c-28.731 17.103-47.68 47.998-47.68 83.32 0 0.037 0 0.073 0 0.11l-0-0.006v397.664c0 34.784 18.624 66.88 48.736 84l320 181.92c13.577 7.863 29.871 12.504 47.248 12.504s33.671-4.64 47.709-12.749l-0.461 0.246 320-181.92c29.34-16.945 48.768-48.16 48.768-83.913 0-0.031-0-0.062-0-0.092l0 0.005v-397.664c0-0.025 0-0.055 0-0.085 0-35.335-18.963-66.24-47.268-83.094l-0.444-0.245zM864 713.568c0 11.584-6.208 22.304-16.256 28l-320 181.92c-4.523 2.625-9.953 4.175-15.744 4.175s-11.221-1.549-15.897-4.256l0.153 0.082-320-181.92c-9.78-5.648-16.256-16.053-16.256-27.971 0-0.010 0-0.021 0-0.031l-0 0.002v-397.664c0-11.456 6.048-22.048 15.904-27.808l319.872-187.36c4.609-2.745 10.163-4.368 16.096-4.368s11.487 1.623 16.243 4.449l-0.147-0.081 320.128 187.392c9.856 5.728 15.904 16.32 15.904 27.776v397.664z","M512 320c-106.039 0-192 85.961-192 192s85.961 192 192 192v0c106.039 0 192-85.961 192-192s-85.961-192-192-192v0zM512 640c-70.692 0-128-57.308-128-128s57.308-128 128-128v0c70.692 0 128 57.308 128 128s-57.308 128-128 128v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["gear-3"],"colorPermutations":{"11":[]},"defaultCode":59734},"attrs":[],"properties":{"order":649,"id":257,"name":"gear-3","prevSize":32,"code":59739},"setIdx":0,"setId":1,"iconIdx":113},{"icon":{"paths":["M245.828 897.756h-174.691c-30.435 0-55.108-24.673-55.108-55.108s24.673-55.108 55.108-55.108v0h174.691c23.385-64.792 84.346-110.27 155.928-110.27 91.337 0 165.38 74.044 165.38 165.38s-74.044 165.38-165.38 165.38c-71.582 0-132.543-45.479-155.564-109.119l-0.364-1.151zM833.28 456.892h119.584c30.435 0 55.108 24.673 55.108 55.108s-24.673 55.108-55.108 55.108h-119.584c-23.385 64.792-84.346 110.27-155.928 110.27-91.337 0-165.38-74.044-165.38-165.38s74.044-165.38 165.38-165.38c71.582 0 132.543 45.479 155.564 109.119l0.364 1.151zM677.323 567.108c30.435 0 55.108-24.673 55.108-55.108s-24.673-55.108-55.108-55.108v0c-30.435 0-55.108 24.673-55.108 55.108s24.673 55.108 55.108 55.108v0zM512 236.46c-30.435 0-55.108-24.673-55.108-55.108s24.673-55.108 55.108-55.108h440.863c30.435 0 55.108 24.673 55.108 55.108s-24.673 55.108-55.108 55.108h-440.863zM71.137 567.108c-30.435 0-55.108-24.673-55.108-55.108s24.673-55.108 55.108-55.108h275.54c30.435 0 55.108 24.673 55.108 55.108s-24.673 55.108-55.108 55.108h-275.54zM401.785 897.756c30.435 0 55.108-24.673 55.108-55.108s-24.673-55.108-55.108-55.108v0c-30.435 0-55.108 24.673-55.108 55.108s24.673 55.108 55.108 55.108v0zM181.352 346.677c-91.305 0-165.323-74.018-165.323-165.323s74.018-165.323 165.323-165.323v0c91.305 0 165.323 74.018 165.323 165.323s-74.018 165.323-165.323 165.323v0zM181.352 236.46c30.435 0 55.108-24.673 55.108-55.108s-24.673-55.108-55.108-55.108v0c-30.435 0-55.108 24.673-55.108 55.108s24.673 55.108 55.108 55.108v0zM732.433 897.756c-30.435 0-55.108-24.673-55.108-55.108s24.673-55.108 55.108-55.108v0h220.433c30.435 0 55.108 24.673 55.108 55.108s-24.673 55.108-55.108 55.108v0h-220.433z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["gear-4"],"colorPermutations":{"11":[]},"defaultCode":59735},"attrs":[],"properties":{"order":650,"id":258,"name":"settings-4","prevSize":32,"code":59740},"setIdx":0,"setId":1,"iconIdx":114},{"icon":{"paths":["M682.215 981.446c-25.532 0-42.554-17.022-42.554-42.554v-165.96c4.255-34.043-8.511-59.575-29.788-80.852-12.766-12.766-17.022-29.788-8.511-42.554 4.255-17.022 21.277-25.532 34.043-29.788 123.406-12.766 238.302-55.32 238.302-255.323 0-46.809-17.022-93.618-51.065-131.917-12.766-12.766-12.766-29.788-8.511-42.554 12.766-34.043 12.766-68.086 4.255-102.129-21.277 4.255-55.32 17.022-110.64 55.32-8.511 8.511-21.277 8.511-34.043 4.255-89.363-25.532-187.237-25.532-276.6 0-12.766 4.255-25.532 4.255-38.298-4.255-51.065-38.298-89.363-51.065-110.64-55.32-8.511 34.043-8.511 68.086 4.255 102.129 4.255 17.022 4.255 34.043-8.511 42.554-34.043 38.298-51.065 85.108-51.065 131.917 0 200.003 114.895 242.557 238.302 255.323 17.022 0 29.788 12.766 34.043 29.788s0 34.043-8.511 42.554c-21.277 21.277-29.788 46.809-29.788 76.597v165.96c0 25.532-17.022 42.554-42.554 42.554s-42.554-17.022-42.554-42.554v-72.342c-127.662 21.277-182.982-51.065-221.28-97.874-17.022-21.277-29.788-38.298-46.809-42.554-21.277-4.255-38.298-29.788-29.788-51.065 4.255-21.277 29.788-38.298 51.065-29.788 42.554 12.766 68.086 42.554 93.618 72.342 34.043 46.809 63.831 80.852 153.194 63.831v-4.255c0-25.532 4.255-55.32 12.766-76.597-119.151-25.532-246.812-102.129-246.812-327.665 0-63.831 21.277-123.406 59.575-170.215-17.022-59.575-12.766-114.895 12.766-170.215 4.255-12.766 12.766-21.277 25.532-25.532 17.022-4.255 72.342-12.766 187.237 59.575 93.618-21.277 191.492-21.277 280.855 0 110.64-72.342 170.215-63.831 187.237-59.575 12.766 4.255 21.277 12.766 25.532 25.532 21.277 55.32 25.532 110.64 12.766 165.96 38.298 46.809 59.575 106.385 59.575 170.215 0 242.557-144.683 306.388-246.812 331.92 8.511 25.532 12.766 55.32 12.766 80.852v161.705c0 25.532-17.022 42.554-42.554 42.554z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["github"],"colorPermutations":{"11":[]},"defaultCode":59736},"attrs":[],"properties":{"order":651,"id":259,"name":"github","prevSize":32,"code":59741},"setIdx":0,"setId":1,"iconIdx":115},{"icon":{"paths":["M0 556.416c0 46.4 4.352 88.384 13.024 125.92 8.672 37.568 20.704 70.208 36.064 97.888 15.328 27.712 34.88 52.096 58.56 73.12 23.712 21.024 49.408 38.208 77.12 51.584 27.712 13.344 59.328 24.192 94.88 32.544s71.872 14.176 108.928 17.536c37.056 3.328 77.76 4.992 122.176 4.992 44.736 0 85.632-1.664 122.688-4.992 37.056-3.36 73.44-9.184 109.152-17.536s67.52-19.2 95.392-32.544c27.872-13.376 53.728-30.56 77.6-51.584s43.584-45.408 59.104-73.12c15.52-27.68 27.616-60.32 36.288-97.888 8.672-37.536 13.024-79.52 13.024-125.92 0-82.784-27.712-154.4-83.104-214.816 2.976-8.032 5.728-17.12 8.256-27.296 2.496-10.176 4.832-24.704 7.008-43.552 2.176-18.88 1.344-40.64-2.496-65.344s-10.944-49.92-21.312-75.616l-7.488-1.504c-5.344-0.992-14.112-0.768-26.304 0.736s-26.368 4.512-42.56 9.024c-16.192 4.512-37.056 13.184-62.592 26.048-25.536 12.832-52.48 28.96-80.864 48.32-48.736-13.376-115.68-20.032-200.8-20.032-84.8 0-151.552 6.656-200.288 20.032-28.384-19.36-55.488-35.488-81.376-48.32-25.856-12.864-46.464-21.536-61.824-26.048s-29.728-7.424-43.072-8.768c-13.344-1.344-21.792-1.76-25.28-1.248-3.52 0.512-6.272 1.088-8.256 1.76-10.368 25.696-17.472 50.88-21.28 75.616-3.84 24.704-4.672 46.464-2.528 65.344 2.176 18.848 4.512 33.376 7.008 43.552 2.528 10.176 5.28 19.264 8.288 27.296-55.424 60.416-83.136 132.032-83.136 214.816zM125.696 682.080c0-48.064 21.856-92.128 65.6-132.192 12.992-12 28.192-21.088 45.536-27.296 17.376-6.144 36.992-9.664 58.848-10.496s42.816-0.672 62.848 0.512c20.032 1.152 44.736 2.752 74.112 4.736 29.376 2.016 54.752 3.008 76.096 3.008 21.376 0 46.752-0.992 76.128-3.008 29.376-1.984 54.080-3.584 74.112-4.736 20.032-1.184 40.96-1.344 62.816-0.512 21.888 0.832 41.504 4.352 58.848 10.496 17.376 6.176 32.544 15.296 45.568 27.296 43.744 39.392 65.6 83.456 65.6 132.192 0 28.736-3.584 54.176-10.784 76.384-7.168 22.208-16.352 40.8-27.52 55.84-11.2 15.008-26.72 27.776-46.56 38.304-19.872 10.496-39.232 18.592-58.112 24.288-18.848 5.664-43.040 10.080-72.608 13.248-29.536 3.168-55.904 5.088-79.104 5.76s-52.672 1.024-88.384 1.024c-35.712 0-65.184-0.352-88.384-1.024s-49.568-2.592-79.104-5.76c-29.536-3.168-53.728-7.584-72.608-13.248-18.848-5.696-38.208-13.792-58.080-24.288-19.872-10.528-35.392-23.296-46.56-38.304-11.2-15.040-20.384-33.632-27.552-55.84s-10.752-47.648-10.752-76.384zM640 672c0 53.019 28.654 96 64 96s64-42.981 64-96v0c0-53.019-28.654-96-64-96s-64 42.981-64 96v0zM256 672c0 53.019 28.654 96 64 96s64-42.981 64-96v0c0-53.019-28.654-96-64-96s-64 42.981-64 96v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["github-1"],"colorPermutations":{"11":[]},"defaultCode":59737},"attrs":[],"properties":{"order":652,"id":260,"name":"github-1","prevSize":32,"code":59742},"setIdx":0,"setId":1,"iconIdx":116},{"icon":{"paths":["M734.11 96.73c-70.59-63.16-165.54-93.13-260.44-82.73-146.26 16.37-268.67 133.44-291 278.42-21.24 137.58 43.74 272.58 162.59 341.29v267.17c0.063 61.345 49.775 111.057 111.114 111.12l111.136 0c61.345-0.063 111.057-49.775 111.12-111.114l0-0.006v-267.17c100.354-58.643 166.704-165.851 166.704-288.556 0-98.591-42.834-187.178-110.908-248.166l-0.316-0.278zM638.18 592.47c-9.038 4.719-15.102 14.020-15.11 24.739l-0 0.001v283.67c-0.040 30.669-24.891 55.52-55.556 55.56l-0.004 0h-111.13c-30.669-0.040-55.52-24.891-55.56-55.556l-0-0.004v-283.67c0-0.001 0-0.001 0-0.002 0-10.729-6.082-20.037-14.986-24.665l-0.154-0.073c-107.050-54.77-166.58-171.95-148.1-291.59 18.61-120.62 120.48-218 242.27-231.6 9.742-1.157 21.028-1.818 32.467-1.82l0.003-0c68.5 0 133.15 24.53 184.75 70.67 56.939 51.126 92.61 124.956 92.67 207.119l0 0.011c0.010 104.64-58.070 199.38-151.56 247.21z","M567.51 845.32h-111.13c-15.342 0-27.78 12.438-27.78 27.78s12.438 27.78 27.78 27.78h111.13c15.342 0 27.78-12.438 27.78-27.78s-12.438-27.78-27.78-27.78h0zM631.21 276.79l-119.26 119.26-119.27-119.26c-4.988-4.81-11.784-7.773-19.273-7.773-15.342 0-27.78 12.438-27.78 27.78 0 7.489 2.963 14.286 7.781 19.282l-0.008-0.008 130.77 130.77v315.16c0 15.342 12.438 27.78 27.78 27.78s27.78-12.438 27.78-27.78v-315.16l130.76-130.77c4.81-4.988 7.773-11.784 7.773-19.273 0-15.342-12.438-27.78-27.78-27.78-7.489 0-14.286 2.963-19.282 7.781l0.008-0.008z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["idea"],"colorPermutations":{"11":[]},"defaultCode":59738},"attrs":[],"properties":{"order":653,"id":261,"name":"idea","prevSize":32,"code":59743},"setIdx":0,"setId":1,"iconIdx":117},{"icon":{"paths":["M613.888 198.144l0.512-2.048-26.112-7.68c-15.36-4.608-31.744-7.68-48.128-9.216h-2.56c-9.728-1.024-17.408-1.536-25.088-1.536h-1.024c-7.68 0-15.36 0.512-25.088 1.536h-2.56c-16.384 1.536-32.256 4.608-48.128 9.216l-25.088 7.168 0.512 2.048c-44.544 18.432-83.456 48.128-112.128 86.528-35.328 47.104-54.272 102.912-54.272 161.792 0 39.936 6.656 76.288 18.944 108.544 17.408 43.52 43.008 72.704 65.536 96.768l4.608 4.608c8.704 8.704 15.872 16.384 20.992 23.040 6.656 8.192 8.192 13.312 8.704 15.872 4.608 25.088 5.12 57.344 5.12 60.928v2.048c0 38.912 31.744 70.656 70.656 70.656h145.92c38.912 0 70.656-31.744 70.656-70.656v-2.048c0-0.512 0-34.304 5.12-60.928 0.512-2.56 2.048-5.632 4.096-9.216 4.608-7.68 14.336-17.92 25.088-29.184l0.512-0.512c17.92-18.944 39.936-41.984 57.856-75.264 20.992-38.4 31.232-83.968 31.232-134.656 0-58.88-18.944-114.688-54.272-161.792-29.184-37.888-67.584-67.584-111.616-86.016zM421.376 684.544c-2.048-9.728-5.632-19.456-11.776-29.696-8.704-13.312-18.944-24.064-29.696-35.84l-3.072-3.072c-15.36-16.384-34.816-36.352-49.152-63.488-16.384-30.72-24.064-65.024-24.064-106.496 0-46.080 14.848-89.6 41.984-125.952 26.624-35.328 65.024-61.952 107.008-74.24l5.12-1.536c11.264-3.072 22.016-5.12 32.256-6.144h2.048c7.168-0.512 13.312-1.024 18.432-1.024h3.072c5.12 0 10.752 0.512 17.408 1.024l3.072 0.512c10.24 1.024 20.992 3.072 31.744 6.144l5.632 1.536c41.984 12.8 80.384 38.912 107.008 74.24 27.648 36.352 41.984 79.872 41.984 125.952 0 32.256-4.608 59.904-14.336 85.504l-0.512 1.536c-13.312 33.792-33.792 56.832-53.76 77.824l-5.632 5.632c-8.192 8.704-16.384 16.896-23.552 26.112s-16.896 23.040-20.48 41.472c-3.584 20.48-5.632 45.056-6.144 71.68v2.048c0 6.656-5.12 11.776-11.776 11.776 0 0-152.064-1.024-154.112-3.584-2.048-2.048-3.584-5.12-3.584-8.192v-2.048c1.024-26.624-1.024-51.2-5.12-71.68zM584.192 851.456h-144.384c-16.384 0-29.696 13.312-29.696 30.208 0 16.384 13.312 29.696 29.696 29.696h144.896c16.384 0 29.696-13.312 29.696-29.696 0-16.896-13.312-30.208-30.208-30.208zM584.192 919.552h-144.384c-16.384 0-29.696 13.312-29.696 29.696s13.312 30.208 29.696 30.208h144.896c16.384 0 29.696-13.312 29.696-30.208 0-15.872-13.312-29.696-30.208-29.696zM576.512 991.744v-2.56h-129.024v5.12c0 16.896 25.088 29.696 47.104 29.696h35.328c22.016 0 47.104-12.8 47.104-29.696v-1.536c-0.512-0.512-0.512-1.024-0.512-1.024zM512 130.56c16.896 0 30.208-13.312 30.208-30.208v-70.144c0-16.896-13.312-30.208-30.208-30.208s-30.208 13.312-30.208 30.208v70.144c0 16.384 13.312 30.208 30.208 30.208zM889.344 192c0-8.192-3.072-15.872-8.704-21.504s-13.312-8.704-21.504-8.704-15.872 3.072-21.504 8.704l-49.152 49.664c-5.632 5.632-8.704 13.312-8.704 21.504s3.072 15.872 8.704 21.504 13.312 8.704 21.504 8.704 15.872-3.072 21.504-8.704l49.664-49.664c5.12-5.632 8.192-13.312 8.192-21.504zM235.52 220.16l-49.664-49.664c-5.632-5.632-13.312-8.704-21.504-8.704s-15.872 3.072-21.504 8.704-8.704 13.312-8.704 21.504 3.072 15.872 8.704 21.504l49.664 49.664c5.632 5.632 13.312 8.704 21.504 8.704s15.872-3.072 21.504-8.704 8.704-13.312 8.704-21.504-3.072-15.872-8.704-21.504zM948.736 451.584h-70.144c-16.896 0-30.208 13.312-30.208 30.208s13.312 30.208 30.208 30.208h70.144c16.896 0 30.208-13.312 30.208-30.208 0-16.384-13.312-30.208-30.208-30.208zM144.896 451.584h-69.632c-16.896 0-30.208 13.312-30.208 30.208s13.312 30.208 30.208 30.208h70.144c16.896 0 30.208-13.312 30.208-30.208-0.512-16.384-13.824-30.208-30.72-30.208z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["idea-1"],"colorPermutations":{"11":[]},"defaultCode":59739},"attrs":[],"properties":{"order":654,"id":262,"name":"idea-1","prevSize":32,"code":59744},"setIdx":0,"setId":1,"iconIdx":118},{"icon":{"paths":["M1023.332 511.332c0-282.768-229.232-512-512-512s-512 229.232-512 512 229.232 512 512 512c116.151 0 222.423-39.518 308.268-104.536 3.471-4.005 5.874-9.078 5.874-14.819 0-12.55-10.147-22.696-22.696-22.696-6.542 0-12.283 2.537-16.421 6.942h-0.267c-76.9 56.607-171.423 90.384-274.224 90.384-256.067 0-463.67-207.604-463.67-463.67s207.604-463.67 463.67-463.67 463.67 207.604 463.67 463.67c0 78.235-18.29 151.798-52.602 216.415v0.401c-0.668 2.136-1.335 4.272-1.335 6.542 0 12.55 10.147 22.696 22.696 22.696 9.746 0 17.89-6.275 21.094-14.953v0.134c36.447-70.358 57.942-150.062 57.942-234.839z","M469.278 213.078c0-11.749 4.139-21.762 12.283-30.173s18.424-12.55 30.84-12.55c11.882 0 21.895 4.139 30.039 12.55s12.283 18.424 12.283 30.173-4.139 21.762-12.283 30.173c-8.144 8.411-18.157 12.55-30.039 12.55-12.416 0-22.696-4.139-30.84-12.55-8.144-8.277-12.283-18.424-12.283-30.173zM545.51 814.661c0 25.366-10.547 38.183-31.641 38.183-21.628 0-32.442-12.683-32.442-38.183v-434.432c0-14.552 3.071-24.966 9.212-30.974s13.885-9.078 23.364-9.078 17.089 2.804 22.83 8.544c5.874 5.741 8.678 16.154 8.678 31.508v434.432z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["info-3"],"colorPermutations":{"11":[]},"defaultCode":59740},"attrs":[],"properties":{"order":655,"id":263,"name":"info-3","prevSize":32,"code":59745},"setIdx":0,"setId":1,"iconIdx":119},{"icon":{"paths":["M994.372 482.533c-2.892 0.199-5.585 0.78-8.118 1.694l0.207-0.065c-2.172-0.682-4.706-1.177-7.32-1.388l-0.125-0.008h-257.783c-4.188-175.423-44.437-327.115-103.067-411.569 133.599 32.567 241.829 121.275 300.111 239.094l1.179 2.636c4.847 9.753 14.741 16.338 26.174 16.338 16.090 0 29.134-13.044 29.134-29.134 0-4.658-1.093-9.061-3.037-12.965l0.076 0.169c-84.204-171.424-257.535-287.334-457.938-287.334-0.711 0-1.422 0.001-2.133 0.004l0.11-0c-282.683-0-511.844 229.16-511.844 511.844h0c0 16.19 13.125 29.315 29.315 29.315v0c2.153-0.235 4.122-0.728 5.975-1.45l-0.158 0.054c1.559 0.558 3.374 0.969 5.254 1.155l0.097 0.008h261.971c4.188 174.957 44.205 325.719 102.601 410.871-133.491-33.342-241.594-122.090-300.328-239.785l-1.194-2.643c-4.829-9.848-14.782-16.508-26.29-16.508-16.12 0-29.188 13.068-29.188 29.188 0 4.612 1.070 8.974 2.974 12.851l-0.076-0.172c84.735 172.545 259.188 289.217 460.892 289.217 282.683 0 511.844-229.16 511.844-511.844 0-0.091-0-0.182-0-0.272l0 0.014c-0-16.19-13.125-29.315-29.315-29.315h0zM663.535 482.533h-302.453c5.351-253.13 90.271-420.177 148.667-423.9h3.955c58.397 3.257 143.549 170.537 149.831 424.132zM404.356 71.895c-58.397 84.454-98.414 235.913-101.903 410.871h-242.66c13.435-199.722 154.33-363.102 341.435-410.204l3.129-0.667zM360.152 540.93h302.453c-6.282 253.363-91.201 420.642-149.598 424.132h-3.955c-57.466-3.257-142.618-170.537-148.9-424.132zM619.331 951.8c58.397-84.454 98.414-235.913 102.601-410.871h241.962c-13.435 199.722-154.33 363.102-341.435 410.204l-3.129 0.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["internet"],"colorPermutations":{"11":[]},"defaultCode":59741},"attrs":[],"properties":{"order":656,"id":264,"name":"internet","prevSize":32,"code":59746},"setIdx":0,"setId":1,"iconIdx":120},{"icon":{"paths":["M1011.894 128.834c8.189-23.032 14.843-48.622 10.236-73.19-3.071-16.89-11.772-32.244-25.591-42.481-15.354-11.26-34.803-14.331-53.741-12.795-14.331 1.024-28.15 4.606-41.457 9.213-17.402 5.63-33.78 12.795-50.158 20.984-19.961 9.724-39.41 20.984-58.859 32.756-23.032 13.819-45.040 29.173-67.048 44.528-20.984 14.843-41.969 30.709-62.442 46.575-26.103-8.701-52.717-14.331-79.331-17.914-25.079-3.071-50.158-3.583-75.237-2.559-20.473 1.024-40.433 3.583-60.394 7.677-19.449 4.095-38.898 9.213-57.323 16.378-18.425 6.654-36.339 14.843-53.741 24.055s-33.78 19.449-49.646 31.221c-15.866 11.26-30.709 24.055-44.528 37.363s-27.126 28.15-38.898 42.993c-11.772 15.354-23.032 31.733-32.756 48.111-9.724 16.89-18.425 34.803-25.591 52.717-7.165 18.425-13.307 37.363-17.914 56.812-4.606 20.473-7.677 40.433-9.724 60.906-2.047 23.544-2.047 47.087-0.512 70.631 2.047 27.126 6.654 54.252 14.331 80.867 2.047 7.165 4.095 14.331 6.654 20.984-16.89 22.52-33.268 45.552-49.134 68.583-15.354 22.52-29.685 45.552-42.993 69.095-10.748 19.449-20.984 38.898-29.173 59.371-8.701 21.496-16.378 44.016-16.89 67.56-0.512 19.449 4.606 39.922 18.425 54.252 13.307 14.331 32.756 20.473 52.205 20.473 13.307 0 26.614-2.559 39.41-5.63 16.378-4.606 32.244-10.748 47.599-17.914 19.449-8.701 37.874-18.937 56.3-29.685 22.008-12.795 44.016-27.126 65.001-41.457 11.772-7.677 23.032-15.866 34.292-24.055 20.984 13.307 43.504 24.055 66.536 33.268 23.544 9.213 48.111 16.378 72.678 20.984 25.591 5.118 51.693 7.165 77.796 7.677 22.008 0 43.504-1.535 65.512-4.606 20.984-3.071 41.457-8.189 61.93-14.331 19.961-6.142 39.41-13.819 57.835-23.032s36.339-19.449 53.229-31.221c16.89-11.772 32.756-24.567 48.111-38.386 14.843-13.819 29.173-29.173 41.457-45.040 12.795-15.866 24.567-33.268 34.803-50.67 10.236-17.914 19.449-36.851 27.126-55.788 2.559-6.654-2.047-13.307-9.213-13.307h-54.764c-4.095 0-7.165 2.047-9.213 5.63-9.724 20.984-21.496 41.457-35.315 59.882-14.843 20.473-32.244 39.41-51.693 56.3-18.937 16.89-39.922 31.221-61.93 43.504-23.032 12.795-47.599 22.52-73.19 29.685-26.103 7.165-53.229 11.26-80.355 12.284s-54.764-1.024-81.379-6.654c-26.103-5.118-52.205-13.819-76.261-24.567-23.032-10.748-44.528-23.544-64.489-38.898-20.473-15.354-38.898-33.268-55.276-52.717s-30.709-40.945-42.481-63.465c-2.559-5.118-5.118-10.748-7.677-15.866 15.866-19.961 31.733-39.922 48.622-59.371 17.402-20.473 35.315-40.945 53.229-61.418 18.937-20.984 37.874-41.969 57.323-62.442 19.961-20.984 39.922-41.969 60.394-62.442s40.945-40.945 61.93-60.906c20.473-19.449 41.457-38.898 62.442-57.835 20.473-18.425 40.945-36.339 61.93-54.252 16.89-14.331 34.292-28.662 51.693-42.993 23.032 10.236 45.552 23.032 65.512 38.386 20.473 15.354 39.41 32.756 55.788 52.205 16.378 18.937 30.709 39.922 42.481 62.442 12.795 23.544 22.52 49.134 29.173 74.725 1.535 6.654 3.071 12.795 4.606 19.449h-305.042c-9.724 0-19.449 4.606-26.103 11.772-11.26 12.795-12.284 32.756 1.024 46.575 7.165 7.165 16.89 10.748 27.126 10.748h345.476c19.449 0 34.803-16.89 33.268-36.339-1.024-13.819-3.071-27.638-5.63-41.457-4.606-25.079-11.772-49.646-20.984-73.19-8.701-22.52-19.449-44.528-31.733-65.001 16.89-22.52 33.268-45.552 48.622-69.095 14.843-22.52 29.173-45.040 41.969-68.583 10.236-18.937 19.961-38.386 28.15-58.347 1.535-3.583 2.559-6.654 3.583-9.724 7.677-21.496-13.307 37.363 0 0zM191.454 904.235c-15.866 9.724-32.244 18.937-48.622 27.126-11.26 5.63-23.032 10.748-34.803 15.354-7.677 2.559-15.354 5.118-23.032 6.654-4.095 1.024-8.189 1.535-12.795 1.535h-3.071c-0.512-4.095 0-8.701 1.024-12.795 1.535-9.213 4.606-17.914 7.677-26.614 7.677-20.473 17.914-40.433 28.662-59.371 12.795-22.52 26.614-44.528 41.457-66.536 7.677-11.26 15.354-22.008 23.032-33.268 22.52 39.41 51.182 74.725 84.961 104.922-15.866 11.772-64.489 42.993-64.489 42.993zM393.621 394.467c-74.725 74.725-143.308 149.962-201.655 221.616-5.118-28.15-7.165-56.3-5.63-84.961 1.535-27.126 6.142-54.252 13.819-79.843 7.677-25.079 17.914-49.134 30.709-72.166 12.284-22.008 27.638-42.481 44.528-61.418s36.339-35.827 56.812-50.67c20.473-14.843 42.993-27.126 66.024-36.851 25.079-10.236 51.182-17.914 77.796-22.008 27.638-4.606 55.276-5.63 83.426-3.583 11.772 1.024 23.544 2.559 35.315 4.606-65.001 55.276-134.096 118.229-201.144 185.277-74.213 74.213 67.048-67.048 0 0zM735.514 186.158c22.008-16.378 45.040-32.244 68.071-47.599 17.914-11.772 35.827-22.52 54.252-33.268 13.307-7.165 26.614-14.331 40.433-20.473 9.213-4.095 18.937-7.677 28.662-10.748 5.63-2.047 11.772-3.071 17.914-4.095 3.071-0.512 6.654-0.512 9.724-0.512 0.512 4.095 0 8.701-1.024 12.795-1.535 9.213-4.606 17.914-7.677 26.614-7.677 20.473-17.914 40.433-28.662 59.371-12.795 22.52-26.614 44.528-41.457 66.536-9.213 13.819-18.937 27.638-29.173 41.457-31.221-36.339-68.583-66.536-111.064-90.080z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["internet-1"],"colorPermutations":{"11":[]},"defaultCode":59742},"attrs":[],"properties":{"order":657,"id":265,"name":"internet-1","prevSize":32,"code":59747},"setIdx":0,"setId":1,"iconIdx":121},{"icon":{"paths":["M808.832 478.592c-42.795 57.685-94.763 117.504-153.771 176.469-219.989 220.032-451.584 342.613-540.16 254.037-52.736-52.779-32.939-147.968 36.053-266.112-14.62-39.002-23.081-84.075-23.081-131.125 0-212.077 171.923-384 384-384 47.061 0 92.145 8.466 133.811 23.957l-2.655-0.865c118.101-68.992 213.333-88.789 266.069-36.053 51.115 51.157 31.872 149.931-35.84 266.667 14.443 38.789 22.8 83.604 22.8 130.371 0 194.87-145.107 355.848-333.164 380.777l-1.956 0.212c-1.614 0.216-3.481 0.34-5.376 0.34-23.575 0-42.687-19.111-42.687-42.687 0-21.68 16.162-39.585 37.095-42.324l0.215-0.023c147.724-19.632 260.508-144.81 260.508-296.332 0-11.737-0.677-23.315-1.993-34.699l0.131 1.388zM776.96 374.187c-50.911-96.189-150.354-160.608-264.842-160.608-164.949 0-298.667 133.718-298.667 298.667 0 114.488 64.419 213.931 158.987 264.059l1.621 0.784c70.315-45.781 147.072-108.757 220.629-182.315s136.533-150.272 182.272-220.587zM289.536 825.088c-35.31-25.311-65.284-55.299-89.795-89.47l-0.787-1.154c-28.8 60.715-35.115 102.869-23.723 114.304 10.837 10.795 52.651 5.547 114.304-23.68zM734.464 198.955c35.29 25.336 65.26 55.319 89.793 89.471l0.788 1.153c29.227-61.653 34.517-103.509 23.723-114.347-11.435-11.392-53.589-5.12-114.347 23.723z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["internet-2"],"colorPermutations":{"11":[]},"defaultCode":59743},"attrs":[],"properties":{"order":658,"id":266,"name":"internet-2","prevSize":32,"code":59748},"setIdx":0,"setId":1,"iconIdx":122},{"icon":{"paths":["M905.583 822.832c8.081 8.128 13.077 19.332 13.077 31.703s-4.995 23.575-13.079 31.705l0.002-0.002c-84.915 85.107-202.327 137.76-332.036 137.76-259.035 0-469.024-209.989-469.024-469.024s209.989-469.024 469.024-469.024c91.853 0 177.538 26.404 249.881 72.035l-1.937-1.14-8.094-108.375c-0.080-1.010-0.126-2.186-0.126-3.373 0-24.905 20.19-45.095 45.095-45.095 23.718 0 43.16 18.311 44.959 41.568l0.010 0.154 15.289 209.554c0.067 0.917 0.105 1.986 0.105 3.064 0 24.836-20.133 44.969-44.969 44.969-12.311 0-23.467-4.947-31.588-12.962l0.005 0.005c-68.605-68.626-163.393-111.073-268.096-111.073-209.364 0-379.087 169.723-379.087 379.087s169.723 379.087 379.087 379.087c104.702 0 199.491-42.447 268.095-111.072l0.001-0.001c8.105-7.948 19.218-12.853 31.477-12.853 12.483 0 23.779 5.087 31.926 13.3l0.003 0.003zM707.72 384.387l66.104-7.195c22.525-2.667 39.829-21.65 39.829-44.674 0-1.688-0.093-3.354-0.274-4.994l0.018 0.202c-2.667-22.525-21.65-39.829-44.674-39.829-1.688 0-3.354 0.093-4.994 0.274l0.202-0.018-66.104 7.195c-23.786 1.348-42.563 20.966-42.563 44.969 0 24.873 20.164 45.037 45.037 45.037 0.87 0 1.734-0.025 2.592-0.073l-0.119 0.005z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["loading-1"],"colorPermutations":{"11":[]},"defaultCode":59744},"attrs":[],"properties":{"order":659,"id":267,"name":"loading-1","prevSize":32,"code":59749},"setIdx":0,"setId":1,"iconIdx":123},{"icon":{"paths":["M422 427.023c0 49.706 40.294 90 90 90s90-40.294 90-90v0c0-49.706-40.294-90-90-90s-90 40.294-90 90v0z","M512 910.402c-19.14 0-37.482-5.854-53.042-16.929-14.063-10.010-24.926-23.596-31.589-39.46l-172.48-269.086c-29.367-47.718-44.889-102.322-44.889-157.906 0-80.667 31.414-156.506 88.454-213.546s132.879-88.454 213.546-88.454 156.506 31.414 213.546 88.454c57.041 57.040 88.454 132.879 88.454 213.546 0 55.849-15.655 110.671-45.274 158.539l-0.264 0.419-172.081 268.716c-6.755 15.726-17.66 29.176-31.704 39.055-15.485 10.895-33.7 16.652-52.677 16.652zM309.246 551.141l175.494 273.78 1.194 3.197c4.149 11.107 14.381 18.284 26.066 18.284 11.584 0 21.791-7.071 26.004-18.015l1.165-3.028 175.261-273.681c23.271-37.695 35.57-80.794 35.57-124.657 0-63.572-24.756-123.339-69.709-168.292-44.952-44.951-104.719-69.708-168.291-69.708s-123.339 24.756-168.292 69.708-69.708 104.72-69.708 168.292c0 43.64 12.186 86.552 35.246 124.12z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["location"],"colorPermutations":{"11":[]},"defaultCode":59745},"attrs":[],"properties":{"order":660,"id":268,"name":"location","prevSize":32,"code":59750},"setIdx":0,"setId":1,"iconIdx":124},{"icon":{"paths":["M512 1024c-6.4 0-12.8 0-12.8-6.4-19.2-12.8-428.8-236.8-428.8-576 0-243.2 198.4-441.6 441.6-441.6s441.6 198.4 441.6 441.6c0 332.8-409.6 563.2-428.8 576 0 6.4-6.4 6.4-12.8 6.4zM512 64c-211.2 0-377.6 172.8-377.6 377.6 0 262.4 307.2 467.2 377.6 512 70.4-44.8 377.6-249.6 377.6-512 0-204.8-166.4-377.6-377.6-377.6zM512 640c-108.8 0-198.4-89.6-198.4-198.4s89.6-192 198.4-192 198.4 89.6 198.4 198.4-89.6 192-198.4 192zM512 313.6c-70.4 0-134.4 57.6-134.4 134.4s64 128 134.4 128 134.4-57.6 134.4-134.4-64-128-134.4-128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["location-1"],"colorPermutations":{"11":[]},"defaultCode":59746},"attrs":[],"properties":{"order":661,"id":269,"name":"location-1","prevSize":32,"code":59751},"setIdx":0,"setId":1,"iconIdx":125},{"icon":{"paths":["M512 298.667c82.347 0 149.333-66.987 149.333-149.333s-66.987-149.333-149.333-149.333-149.333 66.987-149.333 149.333 66.987 149.333 149.333 149.333zM512 42.667c58.816 0 106.667 47.851 106.667 106.667s-47.851 106.667-106.667 106.667-106.667-47.851-106.667-106.667 47.851-106.667 106.667-106.667zM426.667 620.096v169.237c-0 11.782 9.551 21.333 21.333 21.333h128c11.782 0 21.333-9.551 21.333-21.333l-0-0v-169.237c83.264-39.829 128-159.381 128-257.429 0-11.782-9.551-21.333-21.333-21.333h-384c-11.782 0-21.333 9.551-21.333 21.333l0 0c0 98.048 44.736 217.6 128 257.429zM681.835 384c-6.229 83.755-48.213 179.093-112.896 201.728-8.533 3.008-14.272 11.072-14.272 20.139v162.133h-85.333v-162.133c0-9.045-5.739-17.131-14.272-20.139-64.683-22.613-106.667-117.973-112.917-201.728h339.691z","M512 874.667c-171.264 0-271.616-35.029-277.376-52.864 1.472-4.779 24.469-25.707 110.101-40.683 9.768-2.085 16.988-10.643 16.988-20.886 0-11.782-9.551-21.333-21.333-21.333-1.063 0-2.109 0.078-3.13 0.228l0.116-0.014c-96.469 16.853-145.365 44.523-145.365 82.219 0 75.776 201.152 96 320 96s320-20.224 320-96c0-37.632-48.704-65.259-144.811-82.155-1.11-0.205-2.386-0.322-3.691-0.322-11.783 0-21.335 9.552-21.335 21.335 0 10.479 7.555 19.193 17.514 20.994l0.13 0.019c85.205 14.976 108.096 35.84 109.568 39.659-5.76 18.773-106.112 53.803-277.376 53.803z","M685.525 650.773c-0.82-0.112-1.768-0.175-2.731-0.175-11.785 0-21.338 9.553-21.338 21.338 0 10.822 8.056 19.762 18.499 21.151l0.109 0.012c197.781 25.579 301.269 89.216 301.269 138.901 0 70.635-192.747 149.333-469.333 149.333s-469.333-78.699-469.333-149.333c0-49.685 103.509-113.344 301.376-138.88 10.551-1.4 18.607-10.341 18.607-21.163 0-11.785-9.553-21.338-21.338-21.338-0.963 0-1.911 0.064-2.84 0.187l0.109-0.012c-163.691 21.12-338.581 79.829-338.581 181.205 0 93.077 179.456 192 512 192s512-98.923 512-192c0-101.355-174.848-160.064-338.475-181.227z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["location-2"],"colorPermutations":{"11":[]},"defaultCode":59747},"attrs":[],"properties":{"order":662,"id":270,"name":"location-2","prevSize":32,"code":59752},"setIdx":0,"setId":1,"iconIdx":126},{"icon":{"paths":["M810.667 213.333h-128c-23.561-0.004-42.66-19.105-42.66-42.667s19.099-42.663 42.66-42.667l170.667-0c23.564 0 42.667 19.103 42.667 42.667v0 682.667c0 23.564-19.103 42.667-42.667 42.667v0h-170.667c-23.561-0.004-42.66-19.105-42.66-42.667s19.099-42.663 42.66-42.667l128-0v-597.333zM579.669 469.333l-183.168-183.168c-8.036-7.769-13.026-18.647-13.026-30.69 0-23.564 19.103-42.667 42.667-42.667 12.043 0 22.92 4.989 30.678 13.014l0.012 0.012 256 256c26.88 26.88 7.851 72.832-30.165 72.832h-512c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h409.003zM527.36 628.565c7.463-6.555 17.311-10.554 28.093-10.554 23.564 0 42.667 19.103 42.667 42.667 0 13.502-6.272 25.539-16.061 33.358l-0.086 0.066-128 106.667c-7.463 6.555-17.311 10.554-28.093 10.554-23.564 0-42.667-19.103-42.667-42.667 0-13.502 6.272-25.539 16.061-33.358l0.086-0.066 128-106.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["login"],"colorPermutations":{"11":[]},"defaultCode":59748},"attrs":[],"properties":{"order":663,"id":271,"name":"login","prevSize":32,"code":59757},"setIdx":0,"setId":1,"iconIdx":127},{"icon":{"paths":["M213.333 810.667h128c23.561 0.004 42.66 19.105 42.66 42.667s-19.099 42.663-42.66 42.667l-170.667 0c-23.564 0-42.667-19.103-42.667-42.667v0-682.667c0-23.564 19.103-42.667 42.667-42.667v0h170.667c0.002-0 0.004-0 0.007-0 23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667c-0.002 0-0.005-0-0.007-0l-128 0v597.333zM750.336 469.333l-183.168-183.168c-8.036-7.769-13.026-18.647-13.026-30.69 0-23.564 19.103-42.667 42.667-42.667 12.043 0 22.92 4.989 30.678 13.014l0.012 0.012 256 256c26.88 26.88 7.851 72.832-30.165 72.832h-512c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h409.003zM698.027 628.565c7.463-6.555 17.311-10.554 28.093-10.554 23.564 0 42.667 19.103 42.667 42.667 0 13.502-6.272 25.539-16.061 33.358l-0.086 0.066-128 106.667c-7.463 6.555-17.311 10.554-28.093 10.554-23.564 0-42.667-19.103-42.667-42.667 0-13.502 6.272-25.539 16.061-33.358l0.086-0.066 128-106.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["loguot"],"colorPermutations":{"11":[]},"defaultCode":59749},"attrs":[],"properties":{"order":664,"id":272,"name":"loguot","prevSize":32,"code":59758},"setIdx":0,"setId":1,"iconIdx":128},{"icon":{"paths":["M171.712 571.648l0.352 0.32 287.904 252.8c11.21 9.888 26.023 15.924 42.246 15.924 15.493 0 29.701-5.505 40.773-14.667l-0.107 0.086 296.832-244.544c53.758-39.677 88.24-102.789 88.24-173.954 0-119.064-96.52-215.584-215.584-215.584-71.48 0-134.834 34.787-174.057 88.356l-0.423 0.606-25.888 35.68-25.888-35.616c-39.645-54.185-103.006-88.98-174.493-88.98-119.064 0-215.584 96.52-215.584 215.584 0 65.533 29.24 124.237 75.386 163.776l0.292 0.244zM32 407.584c-0-0.002-0-0.004-0-0.006 0-154.41 125.174-279.584 279.584-279.584 78.567 0 149.565 32.407 200.355 84.584l0.061 0.062c50.851-52.239 121.849-84.646 200.416-84.646 154.41 0 279.584 125.174 279.584 279.584 0 0.002-0 0.004-0 0.007l0-0c0.001 0.203 0.001 0.442 0.001 0.682 0 91.459-44.142 172.607-112.284 223.303l-0.741 0.527-295.36 243.392c-21.944 18.195-50.393 29.235-81.421 29.235-32.434 0-62.050-12.063-84.607-31.948l0.14 0.121-287.744-252.736c-60.124-51.483-97.984-127.468-97.984-212.296 0-0.098 0-0.197 0-0.295l-0 0.015z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["love"],"colorPermutations":{"11":[]},"defaultCode":59750},"attrs":[],"properties":{"order":665,"id":273,"name":"love","prevSize":32,"code":59759},"setIdx":0,"setId":1,"iconIdx":129},{"icon":{"paths":["M32 407.584c-0-0.002-0-0.004-0-0.006 0-154.41 125.174-279.584 279.584-279.584 78.567 0 149.565 32.407 200.355 84.584l0.061 0.062c50.851-52.239 121.849-84.646 200.416-84.646 154.41 0 279.584 125.174 279.584 279.584 0 0.002-0 0.004-0 0.007l0-0c0.001 0.203 0.001 0.442 0.001 0.682 0 91.459-44.142 172.607-112.284 223.303l-0.741 0.527-316.384 260.704c-16.458 13.644-37.793 21.922-61.061 21.922-24.328 0-46.542-9.049-63.46-23.965l0.105 0.091-308.16-270.688c-60.142-51.484-98.016-127.481-98.016-212.323 0-0.089 0-0.178 0-0.267l-0 0.014z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["love-solid"],"colorPermutations":{"11":[]},"defaultCode":59751},"attrs":[],"properties":{"order":666,"id":274,"name":"love-solid","prevSize":32,"code":59760},"setIdx":0,"setId":1,"iconIdx":130},{"icon":{"paths":["M831.906 512.368c0-22.201 18-40.199 40.201-40.199 22.203 0 40.199 17.996 40.201 40.196v0 241.204c0 55.506-44.996 100.501-100.499 100.501l-603.005-0c-55.506 0-100.503-44.994-100.503-100.501v-482.402c0-55.504 44.996-100.501 100.503-100.501h603.005c55.502 0 100.499 44.996 100.499 100.501v60.296h-0.553c0.446 14.826-6.211 29.467-19.384 37.401l-362.465 218.331c-0.424 0.257-0.882 0.38-1.313 0.617-0.579 0.312-1.18 0.553-1.772 0.834-14.557 7.125-31.356 4.332-43.021-6.337l-214.874-132.011c-18.874-11.596-25.342-37.276-14.444-57.359 10.896-20.082 35.031-26.964 53.903-15.369l203.024 124.728 320.501-193.052v-17.982c0-22.203-17.998-40.199-40.201-40.199h-562.804c-22.203 0-40.201 17.996-40.201 40.199v442.205c0 22.199 17.998 40.199 40.201 40.199h562.804c22.203 0 40.201-18 40.201-40.199l-0-221.091c0-0.004-0.002-0.006-0.002-0.010z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["mail-1"],"colorPermutations":{"11":[]},"defaultCode":59752},"attrs":[],"properties":{"order":667,"id":275,"name":"mail-1","prevSize":32,"code":59761},"setIdx":0,"setId":1,"iconIdx":131},{"icon":{"paths":["M930.909 139.636h-523.636c-30.255-81.455-107.055-139.636-197.818-139.636-100.073 0-186.182 72.145-204.8 167.564-2.327 13.964-4.655 27.927-4.655 41.891v628.364c0 102.4 83.782 186.182 186.182 186.182h744.727c102.4 0 186.182-83.782 186.182-186.182v-512c0-102.4-83.782-186.182-186.182-186.182zM1024 325.818v337.455l-283.927-100.073 86.109-330.473h104.727c51.2 0 93.091 41.891 93.091 93.091zM730.764 232.727l-79.127 302.545-232.727-81.455v-221.091h311.855zM93.091 232.727v-23.273c0-25.6 9.309-51.2 23.273-69.818 20.945-27.927 53.527-46.545 93.091-46.545s72.145 18.618 93.091 46.545c13.964 18.618 23.273 44.218 23.273 69.818v449.164c-32.582-23.273-74.473-34.909-116.364-34.909s-83.782 13.964-116.364 34.909v-425.891zM930.909 930.909h-744.727c-51.2 0-93.091-41.891-93.091-93.091v-6.982c0-65.164 51.2-116.364 116.364-116.364s116.364 51.2 116.364 116.364c0 25.6 20.945 46.545 46.545 46.545s46.545-20.945 46.545-46.545v-279.273l605.091 211.782v74.473c0 51.2-41.891 93.091-93.091 93.091z"],"attrs":[],"width":1117,"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["map-1"],"colorPermutations":{"11":[]},"defaultCode":59757},"attrs":[],"properties":{"order":668,"id":276,"name":"map-1","prevSize":32,"code":59762},"setIdx":0,"setId":1,"iconIdx":132},{"icon":{"paths":["M1017.6 889.6c-6.4-12.8-6.4-19.2-6.4-19.2l-121.6-236.8-12.8-12.8c-12.8-19.2-25.6-44.8-57.6-44.8h-128c-19.2 0-25.6 12.8-25.6 25.6s12.8 25.6 25.6 25.6h128s6.4 6.4 12.8 19.2l6.4 6.4 121.6 217.6s-6.4 6.4-12.8 6.4h-870.4s-6.4 0-6.4-6.4l128-217.6s6.4-6.4 6.4-12.8 6.4-6.4 0-6.4h115.2c19.2 0 25.6-12.8 25.6-25.6s-12.8-25.6-25.6-25.6h-115.2c-32 0-44.8 19.2-51.2 32l-6.4 6.4s-6.4 6.4-6.4 12.8l-134.4 230.4v12.8c0 38.4 32 64 70.4 64h870.4c32 6.4 70.4-12.8 70.4-51.2zM512 403.2c70.4 0 128-57.6 128-128s-57.6-128-128-128-128 57.6-128 128 57.6 128 128 128zM512 204.8c38.4 0 70.4 32 70.4 70.4-6.4 38.4-38.4 70.4-70.4 70.4-38.4 0-70.4-32-70.4-70.4s32-70.4 70.4-70.4z","M441.6 684.8c25.6 32 44.8 44.8 70.4 44.8s44.8-12.8 70.4-44.8c70.4-76.8 160-185.6 192-307.2 25.6-83.2 6.4-172.8-44.8-249.6-51.2-64-134.4-102.4-217.6-102.4-96 0-172.8 38.4-230.4 102.4-51.2 64-64 160-32 249.6 25.6 83.2 89.6 192 192 307.2zM326.4 160c32-51.2 96-76.8 179.2-76.8 64 0 128 32 166.4 83.2 44.8 57.6 64 134.4 44.8 198.4-32 115.2-115.2 217.6-185.6 281.6l-25.6 25.6s-6.4-6.4-6.4-12.8c-6.4-6.4-6.4-12.8-12.8-12.8l-12.8-12.8c-44.8-51.2-140.8-166.4-172.8-275.2-19.2-70.4-12.8-140.8 25.6-198.4z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["map-2"],"colorPermutations":{"11":[]},"defaultCode":59758},"attrs":[],"properties":{"order":669,"id":277,"name":"map-2","prevSize":32,"code":59763},"setIdx":0,"setId":1,"iconIdx":133},{"icon":{"paths":["M38.801 862.342z","M651.605 706.516c18.586-40.5 40.059-64.778 56.708-79.576 9.088-8.075 18.584-14.771 28.597-19.061-5.247-7.146-9.313-13.481-13.348-19.542-7.402-11.11-15.249-23.818-19.061-30.015-25.251 13.814-49.152 42.346-68.145 67.662-11.030 14.722-20.962 30.497-30.498 47.181l45.746 33.352z","M457.661 768.471c5.243 12.846 8.101 25.756 11.914 35.719 1.435 6.205 2.854 11.898 4.765 17.181 17.151-5.283 34.261-10.569 50.994-17.687 28.547-11.998 62.421-29.024 83.859-51.421l-39.547-42.411c-7.142 7.148-15.695 12.921-26.685 20.019-18.551 11.963-45.266 26.685-85.3 38.6z","M390.472 241.433c0-45.746 38.122-83.87 83.869-83.87 47.182 0 83.393 38.124 83.393 83.87 0 47.171-36.21 83.869-83.393 83.869-45.747 0-83.869-36.698-83.869-83.869z","M297.558 241.433c0 17.632 2.378 34.782 7.624 51.46h-1.911c14.767 34.31 31.461 70.269 45.747 97.689l23.825 45.747c41.741 80.157 92.919 168.215 100.543 179.652 0.477 0.477 0.477 0.477 0.477 0.954 0 0.481 0 0.948 0.476 0.948 28.587-48.124 53.262-91.555 71.956-126.271l30.022-55.765 23.35-45.746c13.859-27.133 30.498-62.415 45.271-97.208h-1.436c5.247-16.678 7.625-33.828 7.625-51.46 0-97.217-79.581-176.316-176.788-176.316-97.683 0.001-176.782 79.1-176.782 176.317z","M263.714 765.601c13.349 10.017 27.52 18.769 42.411 26.695 26.577 14.034 60.519 29.993 99.119 35.786 1.435-11.487 2.174-26.33 3.812-37.21l2.859-19.065c-10.485-1.912-22.511-4.935-35.258-9.537-21.563-7.779-49.083-20.962-79.581-42.406-8.101 11.909-16.385 22.601-22.873 31.447l-10.489 14.29z","M76.924 897.109c0 36.191 29.54 65.265 65.284 65.265h739.567c36.212 0 65.275-29.074 65.275-65.265l0-538.927c0-36.221-29.063-65.29-65.275-65.29l-179.653-0-31.455 88.164h177.746c8.101 0 13.824 5.232 13.824 13.337v117.222c-25.261-0.467-64.331 1.911-102.454 20.495l4.761 12.871 15.248 39.542c22.402-7.143 41.925-12.459 57.184-14.766l25.261-3.813v297.821c0 8.131-5.723 13.319-13.824 13.319h-669.517c-8.101 0-13.815-5.188-13.815-13.319v-182.022c3.803 3.813 8.195 7.982 13.339 12.385 8.204 7.034 20.496 18.584 36.212 31.933 9.058-8.108 17.547-18.681 24.784-26.21 4.199-4.382 8.101-8.582 11.437-12.872-37.646-31.441-75.769-75.768-85.771-88.158l-0-204.427c0-7.624 5.714-13.337 13.815-13.337h96.255l-29.063-88.164h-103.88c-35.745 0-65.284 29.069-65.284 65.29v538.926z","M985.172 862.342z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["map-3"],"colorPermutations":{"11":[]},"defaultCode":59759},"attrs":[],"properties":{"order":670,"id":278,"name":"map-3","prevSize":32,"code":59764},"setIdx":0,"setId":1,"iconIdx":134},{"icon":{"paths":["M696.371 1023.987c-12.245-0.015-23.97-2.221-34.81-6.246l0.694 0.226h-2.007l-298.015-122.417c-1.8-0.586-3.871-0.924-6.020-0.924s-4.221 0.338-6.163 0.964l0.142-0.040h-2.007l-219.748 59.202c-8.956 2.968-19.266 4.68-29.976 4.68-21.084 0-40.618-6.635-56.628-17.932l0.31 0.207c-24.953-17.131-41.319-45.201-42.141-77.139l-0.003-0.124v-615.094c0-22.167 17.97-40.137 40.137-40.137s40.137 17.97 40.137 40.137v-0 612.084c0.247 5.365 2.937 10.055 6.976 13.011l0.048 0.034c3.154 2.4 7.149 3.844 11.481 3.844 1.99 0 3.909-0.305 5.713-0.871l-0.135 0.037h2.007l219.748-58.198c9.147-3.001 19.675-4.732 30.608-4.732 12.046 0 23.6 2.102 34.318 5.958l-0.707-0.222h2.007l297.011 122.417c1.8 0.586 3.871 0.924 6.020 0.924s4.221-0.338 6.163-0.964l-0.142 0.040 195.666-55.188 32.109-7.024c9.714-1.514 17.059-9.82 17.059-19.841 0-0.080-0-0.159-0.001-0.239l0 0.012v-621.115c0.001-0.075 0.002-0.163 0.002-0.252 0-5.65-2.747-10.658-6.978-13.763l-0.048-0.033c-3.154-2.4-7.149-3.844-11.481-3.844-1.99 0-3.909 0.305-5.713 0.871l0.135-0.037-198.676 55.188c-3.307 0.981-7.106 1.546-11.038 1.546-22.189 0-40.177-17.988-40.177-40.177 0-18.258 12.179-33.672 28.856-38.56l0.284-0.071 199.68-56.191c7.831-2.219 16.824-3.494 26.115-3.494 22.288 0 42.862 7.34 59.435 19.735l-0.26-0.186c23.545 17.214 38.975 44.32 40.131 75.078l0.005 0.178v626.132c-0.008 50.455-37.255 92.209-85.752 99.273l-0.542 0.065-22.075 5.017-195.666 55.188c-7.339 1.921-15.764 3.024-24.447 3.024-0.577 0-1.153-0.005-1.728-0.015l0.087 0.001z","M361.23 593.521c-0.060 0-0.13 0-0.201 0-19.401 0-37.017-7.648-49.995-20.093l0.025 0.024c-129.441-125.427-194.663-235.803-194.663-328.117-0-135.495 109.84-245.335 245.335-245.335s245.335 109.84 245.335 245.335v0c0 59.202-26.089 125.427-79.27 197.673-39.133 54.184-84.287 100.342-115.393 130.444-12.955 12.427-30.574 20.078-49.98 20.078-0.42 0-0.839-0.004-1.257-0.011l0.063 0.001zM361.23 80.775c-91.311 0-164.56 74.253-164.56 164.56 0 40.137 22.075 92.314 63.215 149.509 26.089 36.123 59.202 74.253 101.345 115.393 109.372-106.362 164.56-195.666 164.56-264.902 0-90.307-74.253-164.56-164.56-164.56z","M361.23 386.817c-77.263 0-140.478-63.215-140.478-140.478s63.215-140.478 140.478-140.478 140.478 63.215 140.478 140.478-63.215 140.478-140.478 140.478zM361.23 186.134c-33.25 0-60.205 26.955-60.205 60.205s26.955 60.205 60.205 60.205c33.25 0 60.205-26.955 60.205-60.205h-0c0-33.25-26.955-60.205-60.205-60.205h-0zM702.392 786.177c-5.434-0.028-10.604-1.132-15.316-3.109l0.264 0.098-210.717-88.301c-14.631-6.245-24.7-20.51-24.7-37.126 0-22.231 18.022-40.253 40.253-40.253 5.614 0 10.96 1.149 15.815 3.226l-0.262-0.1 195.666 82.28 259.885-85.29c3.744-1.274 8.058-2.010 12.543-2.010 22.169 0 40.14 17.971 40.14 40.14 0 17.684-11.435 32.696-27.314 38.047l-0.283 0.083-272.929 90.307zM702.392 534.319c-5.434-0.028-10.604-1.132-15.316-3.109l0.264 0.098-109.372-46.157c-14.631-6.245-24.7-20.51-24.7-37.126 0-22.231 18.022-40.253 40.253-40.253 5.614 0 10.96 1.149 15.815 3.226l-0.262-0.1 95.325 40.137 259.885-85.29c3.744-1.274 8.058-2.010 12.543-2.010 22.169 0 40.14 17.971 40.14 40.14 0 17.684-11.435 32.696-27.314 38.047l-0.283 0.083-273.933 90.307zM58.198 753.064c-21.661-0.647-38.975-18.362-38.975-40.12 0-16.682 10.177-30.987 24.662-37.045l189.911-70.337c4.173-1.606 9.002-2.537 14.048-2.537 22.182 0 40.165 17.982 40.165 40.165 0 17.137-10.732 31.767-25.842 37.536l-0.276 0.092-189.646 69.236zM58.198 542.347c-21.661-0.647-38.975-18.362-38.975-40.12 0-16.682 10.177-30.987 24.662-37.045l0.265-0.098 76.26-28.096c4.173-1.606 9.002-2.537 14.048-2.537 22.182 0 40.165 17.982 40.165 40.165 0 17.137-10.732 31.767-25.842 37.536l-0.276 0.092-76.26 27.092z","M706.405 1001.911c-22.167 0-40.137-17.97-40.137-40.137v0-719.45c0-22.167 17.97-40.137 40.137-40.137s40.137 17.97 40.137 40.137v0 719.45c0 22.167-17.97 40.137-40.137 40.137v0zM360.227 890.532c-22.167 0-40.137-17.97-40.137-40.137v0-147.502c0-22.167 17.97-40.137 40.137-40.137s40.137 17.97 40.137 40.137v0 147.502c0 22.167-17.97 40.137-40.137 40.137v0z"],"attrs":[],"width":1027,"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["map-4"],"colorPermutations":{"11":[]},"defaultCode":59760},"attrs":[],"properties":{"order":671,"id":279,"name":"map-4","prevSize":32,"code":59765},"setIdx":0,"setId":1,"iconIdx":135},{"icon":{"paths":["M517.055 1017.445h-45.49c-277.995-25.272-480.172-272.94-454.9-550.935 20.218-242.614 212.286-434.681 454.9-454.9 20.218 0 40.435 10.108 50.545 25.272s10.108 40.435-5.055 55.599c-101.088 136.47-70.761 323.484 65.708 424.573 106.144 80.872 252.722 80.872 358.865 0 15.164-10.108 35.381-15.164 55.599-5.055 15.164 10.108 25.272 30.327 25.272 50.545-10.108 136.47-75.817 257.777-181.96 343.702-96.034 70.761-207.232 111.198-323.484 111.198zM375.53 127.862c-146.578 50.545-252.722 181.96-262.831 343.702-20.218 222.395 141.525 419.519 363.92 439.737 106.144 10.108 212.286-20.218 293.158-90.98 55.599-45.49 96.034-106.144 121.306-171.851-126.362 45.49-267.885 25.272-379.083-55.599-141.525-111.198-197.123-298.211-136.47-465.008z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["moon"],"colorPermutations":{"11":[]},"defaultCode":59761},"attrs":[],"properties":{"order":672,"id":280,"name":"moon","prevSize":32,"code":59766},"setIdx":0,"setId":1,"iconIdx":136},{"icon":{"paths":["M928 128h-544c-17.6 0-32 15.4-32 33v63h-204c-46.2 0-84 37.8-84 84v415c0 95.2 78 173 172 173h559.4c90.2 0 164.6-73.8 164.6-164v-572c0-17.6-14.4-32-32-32zM352 288v384h-84v-345.6c0-13.6-1.6-26.6-6.6-38.4h90.6zM318 798.8c-22 21.2-51.6 33.2-81 33.2-29 0-56.2-11.4-77-32-20.6-20.6-32-48-32-77v-396.6c0-21.2 16.8-38.4 38-38.4s38 17.2 38 38.4v377.6c0 17.6 14.4 32 32 32h115c-3 23.2-14.4 45.2-33 62.8zM896 732c0 26.6-10.8 51.6-29.8 70.6s-44.4 29.4-70.8 29.4h-420.8c25.6-29.8 41.4-67.8 41.4-109v-529h480v538z","M496 272h320v112h-320zM496 448h320v64h-320zM496 576h320v64h-320zM816 704h-320s0 64-16 64h297.4c38.6 0 38.6-42 38.6-64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["news"],"colorPermutations":{"11":[]},"defaultCode":59762},"attrs":[],"properties":{"order":673,"id":281,"name":"news","prevSize":32,"code":59767},"setIdx":0,"setId":1,"iconIdx":137},{"icon":{"paths":["M639.189 156.373c102.171 48.934 171.477 151.516 171.477 270.285 0 0.003-0 0.006-0 0.009l0-0v195.669l72.832 72.832c7.702 7.7 12.474 18.33 12.501 30.075l0 0.005 0.256 128c0 0.025 0 0.055 0 0.085 0 23.564-19.103 42.667-42.667 42.667-0 0-0-0-0-0l-683.179-0c-0 0-0 0-0 0-23.564 0-42.667-19.103-42.667-42.667 0-0.030 0-0.060 0-0.090l-0 0.005 0.256-128c0.027-11.75 4.799-22.38 12.501-30.080l85.333-85.333c7.719-7.722 18.384-12.499 30.165-12.501l341.334-0c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667v0h-323.669l-60.331 60.373-0.171 67.627h597.675l-0.128-67.627-72.875-72.875c-7.722-7.719-12.499-18.384-12.501-30.165l-0-0.001v-213.333c0-77.824-42.027-147.627-106.837-184.96-23.258 34.541-62.215 56.96-106.408 56.96-0.031 0-0.062-0-0.092-0l0.005 0c-44.373 0-83.541-22.613-106.496-56.96-64.314 37.571-106.837 106.269-106.837 184.9 0 0.021 0 0.042 0 0.063l-0-0.003v42.667c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667l0 0v-42.667c-0-0.019-0-0.041-0-0.063 0-118.754 69.309-221.321 169.682-269.455l1.795-0.776c7.474-64.231 61.565-113.617 127.189-113.617s119.715 49.386 127.133 113.019l0.057 0.598zM512 213.333c0.002 0 0.004 0 0.007 0 23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667c-0.002 0-0.005 0-0.007 0l0-0c-23.561 0.004-42.66 19.105-42.66 42.667s19.099 42.663 42.66 42.667l0 0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["notification-1"],"colorPermutations":{"11":[]},"defaultCode":59763},"attrs":[],"properties":{"order":674,"id":282,"name":"notification-1","prevSize":32,"code":59768},"setIdx":0,"setId":1,"iconIdx":138},{"icon":{"paths":["M820.894 512c0 14.217 11.522 25.739 25.739 25.739s25.739-11.522 25.739-25.739v0c0-14.217-11.522-25.739-25.739-25.739s-25.739 11.522-25.739 25.739v0z","M151.628 512c0 14.217 11.522 25.739 25.739 25.739s25.739-11.522 25.739-25.739v0c0-14.217-11.522-25.739-25.739-25.739s-25.739 11.522-25.739 25.739v0z","M512 228.849c-157.018 0-283.151 126.13-283.151 283.151 0 18.019 2.572 38.61 5.149 56.63 2.572 12.87 15.447 23.168 30.888 20.59 12.87-2.572 23.168-15.447 20.59-30.888s-5.149-30.888-5.149-46.335c0-128.708 102.963-231.67 231.67-231.67s231.67 102.963 231.67 231.67c0 15.447-2.572 30.888-5.149 46.335-2.572 12.87 5.149 28.317 20.59 30.888h5.149c12.87 0 23.168-7.721 25.739-20.59 5.149-18.019 5.149-38.61 5.149-56.63 0-157.018-126.13-283.151-283.151-283.151z","M975.341 512c0-254.838-208.503-463.341-463.341-463.341-18.019 0-36.037 0-54.056 2.572-218.801 23.168-393.838 208.503-409.285 427.304-12.87 205.931 105.54 383.54 283.151 458.192v10.298c0 12.87 12.87 25.739 25.739 25.739h308.894c12.87 0 25.739-12.87 25.739-25.739v-10.298c167.317-69.503 283.151-231.67 283.151-424.726zM692.186 717.931h-386.117v-25.739c0-12.87 12.87-25.739 25.739-25.739h360.372c12.87 0 25.739 12.87 25.739 25.739v25.739h-25.739zM486.261 769.41h154.447v154.447h-257.41v-154.447h102.963zM692.186 882.67v-113.261h51.484c12.87 0 25.739-12.87 25.739-25.739v-51.484c0-43.758-33.466-77.223-77.223-77.223h-360.372c-43.758 0-77.223 33.466-77.223 77.223v51.484c0 12.87 12.87 25.739 25.739 25.739h51.484v113.261c-146.726-72.074-241.968-229.093-231.67-398.987 12.87-195.633 169.891-357.801 362.95-380.968 15.447-2.572 30.888-2.572 46.335-2.572 226.521 0 411.857 185.335 411.857 411.857 2.572 159.596-90.093 301.171-229.093 370.67z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["nuclear-equipment"],"colorPermutations":{"11":[]},"defaultCode":59764},"attrs":[],"properties":{"order":675,"id":283,"name":"nuclear-equipment","prevSize":32,"code":59769},"setIdx":0,"setId":1,"iconIdx":139},{"icon":{"paths":["M602.8 959.7h-181.2c-55.8 0-101.1-45.4-101.1-101.1v-366.7c0-4.6 1.4-9 4.1-12.7l50.3-70.8-49.4-60.8c-3.2-3.9-4.9-8.8-4.9-13.9v-165.9c0-55.8 45.4-101.1 101.1-101.1h181.2c55.8 0 101.1 45.4 101.1 101.1v165.9c0 5.1-1.7 10-4.9 13.9l-49.4 60.8 50.3 70.8c2.6 3.7 4.1 8.2 4.1 12.7v366.7c-0.2 55.7-45.5 101.1-101.3 101.1zM364.5 498.9v359.6c0 31.5 25.6 57.1 57.1 57.1h181.2c31.5 0 57.1-25.6 57.1-57.1v-359.6l-55.9-78.7c-5.7-8.1-5.4-19 0.9-26.6l55.1-67.7v-158.1c0-31.5-25.6-57.1-57.1-57.1h-181.3c-31.5 0-57.1 25.6-57.1 57.1v158.1l55.1 67.7c6.2 7.7 6.6 18.6 0.9 26.6l-56 78.7z","M346.6 249.2h331.2v44h-331.2zM343.8 499.7h331.2v101h-331.2zM346.6 757.3h331.2v44h-331.2zM229.6 886.1h-109.9c-12.2 0-22-9.8-22-22s9.8-22 22-22h109.9c12.2 0 22 9.8 22 22s-9.8 22-22 22zM229.6 705.1h-109.9c-12.2 0-22-9.8-22-22s9.8-22 22-22h109.9c12.2 0 22 9.8 22 22s-9.8 22-22 22zM229.6 426.1h-109.9c-12.2 0-22-9.8-22-22s9.8-22 22-22h109.9c12.2 0 22 9.8 22 22s-9.8 22-22 22z","M229.6 200.1h-109.9c-12.2 0-22-9.8-22-22s9.8-22 22-22h109.9c12.2 0 22 9.8 22 22s-9.8 22-22 22z","M906.6 799.1h-109.9c-12.2 0-22-9.8-22-22s9.8-22 22-22h109.9c12.2 0 22 9.8 22 22s-9.8 22-22 22z","M906.6 565.1h-109.9c-12.2 0-22-9.8-22-22s9.8-22 22-22h109.9c12.2 0 22 9.8 22 22s-9.8 22-22 22z","M906.6 291.1h-109.9c-12.2 0-22-9.8-22-22s9.8-22 22-22h109.9c12.2 0 22 9.8 22 22s-9.8 22-22 22z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["nuclear-equipment-1"],"colorPermutations":{"11":[]},"defaultCode":59765},"attrs":[],"properties":{"order":676,"id":284,"name":"nuclear-equipment-1","prevSize":32,"code":59770},"setIdx":0,"setId":1,"iconIdx":140},{"icon":{"paths":["M745.793 1011.541c-124.021-206.153-137.576-579.436-138.922-680.407h-398.127c-1.371 100.971-14.951 474.254-138.922 680.407l-42.711-25.691c134.063-222.848 131.945-674.875 131.92-679.435l-0.199-25.118h497.927l-0.174 25.118c0 4.56-2.068 456.736 131.92 679.435z","M0 974.162h1121.344v49.838h-1121.344z","M1063.009 983.681h-49.838v-453.073h-48.018v453.023h-49.838v-502.86h147.693z","M859.697 1004.389h-49.838v-722.121h-47.919v383.4h-49.838v-433.237h147.594z","M423.619 201.681h-49.838v-77.921c0-40.418 23.822-106.827 74.981-121.005 44.131-12.335 87.913 17.443 130.325 87.789 22.427 37.378 33.067 38.923 33.192 38.948 5.632-1.022 19.536-19.785 27.012-29.903 20.483-27.61 45.95-61.998 88.312-63.917 4.114-0.518 8.875-0.814 13.705-0.814 40.677 0 76.455 20.973 97.11 52.696l0.273 0.447c9.414 16.571 25.677 28.322 44.838 31.448l0.364 0.049c52.329 7.725 86.867-83.752 87.216-84.724l46.922 16.82c-1.919 5.308-47.744 130.225-141.165 117.118-32.686-4.946-60.251-23.537-77.134-49.675l-0.264-0.436c-11.777-20.551-33.583-34.172-58.571-34.172-3.886 0-7.695 0.329-11.4 0.962l0.398-0.056c-18.689 0.847-34.886 22.676-50.535 43.807-18.764 25.293-38.35 51.632-69.473 49.962-25.342-1.221-48.018-20.658-73.485-63.020-27.784-46.199-55.644-70.67-74.283-65.486-20.732 5.756-38.475 44.854-38.475 73.012z","M377.793 745.932c0 15.51 12.573 28.083 28.083 28.083s28.083-12.573 28.083-28.083v0c0-15.51-12.573-28.083-28.083-28.083s-28.083 12.573-28.083 28.083v0z","M428.229 705.040c-6.943-4.077-15.273-6.525-24.166-6.628l-0.030-0c-0.112-0.001-0.245-0.001-0.377-0.001-4.242 0-8.366 0.509-12.313 1.47l0.355-0.073c-4.018 0.998-7.528 2.321-10.829 3.995l0.289-0.133-22.203-44.629c12.95-6.604 28.243-10.473 44.44-10.473 18.308 0 35.461 4.943 50.198 13.568l-0.47-0.254z","M353.846 834.094c-23.591-13.753-40.755-36.342-47.063-63.12l-0.133-0.672c-1.586-6.727-2.495-14.45-2.495-22.386 0-0.286 0.001-0.572 0.004-0.857l-0 0.044 49.838 0.374c-0.001 0.097-0.001 0.211-0.001 0.325 0 4.019 0.463 7.93 1.34 11.682l-0.068-0.346c3.219 13.671 11.772 24.92 23.289 31.645l0.235 0.126z","M448.961 836.387l-22.751-44.355c16.044-8.424 26.799-24.969 26.799-44.026 0-1.168-0.040-2.326-0.12-3.474l0.009 0.155 49.713-3.464c0.153 2.066 0.24 4.475 0.24 6.904 0 38.281-21.634 71.509-53.343 88.125l-0.547 0.261z","M465.233 638.133c-17.664-10.397-38.861-16.645-61.495-16.919l-0.079-0.001c-11.105 0.032-21.888 1.338-32.233 3.779l0.96-0.191c-10.146 2.502-19.017 5.85-27.352 10.098l0.714-0.33-22.427-44.53c10.651-5.478 23.049-10.158 36.017-13.399l1.212-0.256c12.651-3.17 27.175-4.989 42.124-4.989 0.504 0 1.008 0.002 1.511 0.006l-0.077-0c31.715 0.383 61.317 9.087 86.827 24.023l-0.832-0.45z","M314.25 899.631c-52.963-31.020-87.97-87.645-87.97-152.447 0-0.545 0.002-1.090 0.007-1.634l-0.001 0.083 49.838 0.399c-0.003 0.304-0.004 0.664-0.004 1.024 0 10.098 1.173 19.923 3.39 29.345l-0.172-0.865c8.166 34.805 29.912 63.45 59.21 80.59l0.595 0.322z","M482.801 903.667l-22.776-44.33c40.857-21.417 68.253-63.53 68.253-112.042 0-3.058-0.109-6.090-0.323-9.093l0.023 0.403 49.838-3.514c0.265 3.621 0.417 7.845 0.417 12.104 0 67.752-38.267 126.566-94.366 156.009l-0.966 0.462z","M323.944 401.031h299.025v49.838h-299.025z","M174.431 401.031h99.675v49.838h-99.675z"],"attrs":[],"width":1121,"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["nuclear-power-plant-1"],"colorPermutations":{"11":[]},"defaultCode":59766},"attrs":[],"properties":{"order":677,"id":285,"name":"power-plant-1","prevSize":32,"code":59771},"setIdx":0,"setId":1,"iconIdx":141},{"icon":{"paths":["M960 921.6h-25.6c0-38.4-6.4-83.2-12.8-128-6.4-57.6-38.4-179.2-96-371.2l-12.8-64c-12.8-51.2-19.2-102.4-19.2-153.6v-140.8c0-19.2-19.2-38.4-38.4-38.4h-505.6c-19.2 0-38.4 12.8-38.4 38.4v147.2c0 51.2-6.4 102.4-19.2 153.6l-83.2 358.4c-12.8 57.6-19.2 115.2-19.2 172.8v25.6h-25.6c-19.2 0-38.4 19.2-38.4 38.4s19.2 38.4 38.4 38.4h896c19.2 0 38.4-19.2 38.4-38.4s-12.8-38.4-38.4-38.4zM185.6 742.4l83.2-358.4c6.4-19.2 6.4-32 12.8-51.2h243.2c19.2 0 38.4-19.2 38.4-38.4 0-25.6-19.2-38.4-38.4-38.4h-236.8v-38.4h236.8c19.2 0 38.4-19.2 38.4-38.4s-19.2-38.4-38.4-38.4h-236.8v-38.4h416v38.4h-51.2c-19.2 0-38.4 19.2-38.4 38.4s19.2 38.4 38.4 38.4h51.2v38.4h-51.2c-12.8 0-32 12.8-32 38.4 0 19.2 19.2 38.4 38.4 38.4h57.6c0 19.2 6.4 38.4 12.8 57.6 51.2 217.6 83.2 339.2 83.2 358.4 6.4 25.6 6.4 51.2 12.8 64h-652.8c0-25.6 6.4-44.8 12.8-70.4zM838.4 921.6h-672v-38.4h672v38.4z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["nuclear-power-plant-2"],"colorPermutations":{"11":[]},"defaultCode":59767},"attrs":[],"properties":{"order":678,"id":286,"name":"power-plant-2","prevSize":32,"code":59772},"setIdx":0,"setId":1,"iconIdx":142},{"icon":{"paths":["M508.587 580.267c-58.027 0-102.4-44.373-102.4-102.4s44.373-102.4 102.4-102.4 102.4 44.373 102.4 102.4-44.373 102.4-102.4 102.4zM508.587 409.6c-37.547 0-68.267 30.72-68.267 68.267s30.72 68.267 68.267 68.267 68.267-30.72 68.267-68.267-30.72-68.267-68.267-68.267zM508.587 955.733c-78.507 0-157.013-20.48-225.28-54.613-6.827-3.413-10.24-13.653-6.827-20.48l126.293-283.307 10.24-10.24c3.413 0 10.24 0 13.653 3.413 47.787 34.133 112.64 34.133 160.427 0 3.413-3.413 10.24-3.413 13.653-3.413s10.24 3.413 10.24 10.24l126.293 283.307c3.413 6.827 0 17.067-6.827 20.48-64.853 34.133-143.36 54.613-221.867 54.613zM314.027 877.227c119.467 58.027 266.24 58.027 389.12 0l-112.64-249.173c-51.2 27.307-112.64 27.307-163.84 0l-112.64 249.173zM665.6 477.867c-3.413 0-6.827 0-10.24-3.413s-6.827-6.827-6.827-10.24c-3.413-47.787-34.133-88.747-85.333-109.227l-10.24-10.24c0-3.413 0-10.24 3.413-13.653l180.907-249.173c6.827-6.827 13.653-10.24 23.893-3.413 126.293 78.507 211.627 215.040 225.28 361.813 0 3.413 0 10.24-3.413 13.653s-6.827 6.827-10.24 6.827l-307.2 17.067c3.413 0 3.413 0 0 0zM597.333 331.093c44.373 23.893 75.093 64.853 85.333 112.64l269.653-23.893c-17.067-126.293-88.747-238.933-194.56-310.613l-160.427 221.867zM358.4 477.867c-3.413 0-3.413 0 0 0l-307.2-27.307c-3.413 0-10.24-3.413-10.24-6.827-3.413-3.413-6.827-6.827-6.827-10.24 17.067-150.187 98.987-283.307 228.693-361.813 6.827-6.827 17.067-3.413 20.48 3.413l180.907 249.173c3.413 3.413 3.413 10.24 3.413 13.653s-3.413 10.24-10.24 10.24c-47.787 20.48-81.92 61.44-85.333 109.227 0 3.413-3.413 10.24-6.827 10.24 0 10.24-3.413 10.24-6.827 10.24zM71.68 419.84l269.653 23.893c10.24-47.787 37.547-88.747 85.333-112.64l-160.427-221.867c-105.813 71.68-177.493 184.32-194.56 310.613z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["nuclear-symbol"],"colorPermutations":{"11":[]},"defaultCode":59768},"attrs":[],"properties":{"order":679,"id":287,"name":"nuclear-symbol","prevSize":32,"code":59773},"setIdx":0,"setId":1,"iconIdx":143},{"icon":{"paths":["M515.413 256c-51.2 0-88.747-27.307-88.747-68.267s27.307-58.027 47.787-64.853c17.067-6.827 20.48-10.24 20.48-20.48 0-37.547-17.067-78.507-17.067-78.507-3.413-6.827 0-13.653 6.827-20.48 6.827-3.413 13.653-3.413 20.48 0 3.413 3.413 109.227 85.333 109.227 167.253 0 27.307-10.24 51.2-34.133 64.853-17.067 13.653-40.96 20.48-64.853 20.48zM525.653 68.267c0 10.24 3.413 20.48 3.413 34.133 0 30.72-23.893 40.96-40.96 51.2-20.48 10.24-27.307 17.067-27.307 34.133 0 20.48 27.307 34.133 54.613 34.133 17.067 0 34.133-3.413 47.787-13.653 10.24-10.24 17.067-20.48 17.067-37.547 0-34.133-27.307-71.68-54.613-102.4zM563.2 921.6h-102.4c-10.24 0-17.067-6.827-17.067-17.067v-580.267c0-10.24 6.827-17.067 17.067-17.067h102.4c10.24 0 17.067 6.827 17.067 17.067v580.267c0 10.24-6.827 17.067-17.067 17.067zM477.867 887.467h68.267v-546.133h-68.267v546.133z","M802.133 1024h-580.267c-6.827 0-13.653-3.413-13.653-10.24-3.413-6.827-3.413-13.653 0-17.067l68.267-102.4c3.413-3.413 6.827-6.827 13.653-6.827h443.733c6.827 0 10.24 3.413 13.653 6.827l68.267 102.4c3.413 6.827 3.413 13.653 0 17.067 0 6.827-6.827 10.24-13.653 10.24zM252.587 989.867h515.413l-44.373-68.267h-423.253l-47.787 68.267z","M836.267 1024h-648.533c-10.24 0-17.067-6.827-17.067-17.067s6.827-17.067 17.067-17.067h648.533c10.24 0 17.067 6.827 17.067 17.067s-6.827 17.067-17.067 17.067zM665.6 580.267h-307.2c-10.24 0-17.067-6.827-17.067-17.067s6.827-17.067 17.067-17.067h307.2c10.24 0 17.067 6.827 17.067 17.067s-6.827 17.067-17.067 17.067z","M290.133 921.6h-3.413c-10.24-3.413-13.653-13.653-10.24-20.48l102.4-341.333 68.267-238.933c3.413-10.24 10.24-13.653 20.48-10.24s13.653 13.653 10.24 20.48l-68.267 238.933-102.4 341.333c-3.413 6.827-10.24 10.24-17.067 10.24zM733.867 921.6c-6.827 0-13.653-3.413-17.067-13.653l-102.4-341.333-68.267-238.933c-3.413-10.24 3.413-17.067 10.24-20.48 10.24-3.413 17.067 3.413 20.48 10.24l68.267 238.933 102.4 341.333c3.413 10.24-3.413 17.067-10.24 20.48 0 3.413-3.413 3.413-3.413 3.413z","M460.8 921.6c-3.413 0-10.24-3.413-13.653-6.827l-119.467-153.6c-3.413-6.827-3.413-13.653 0-20.48l119.467-187.733c3.413-6.827 17.067-10.24 23.893-6.827s10.24 17.067 6.827 23.893l-116.053 180.907 112.64 143.36c6.827 6.827 3.413 17.067-3.413 23.893-3.413 3.413-6.827 3.413-10.24 3.413zM563.2 921.6c-3.413 0-6.827 0-10.24-3.413-6.827-6.827-10.24-17.067-3.413-23.893l112.64-143.36-112.64-177.493c-3.413-6.827-3.413-17.067 6.827-23.893 6.827-3.413 17.067-3.413 23.893 6.827l119.467 187.733c3.413 6.827 3.413 13.653 0 20.48l-119.467 153.6c-6.827 0-13.653 3.413-17.067 3.413zM597.333 341.333h-170.667c-10.24 0-17.067-6.827-17.067-17.067s6.827-17.067 17.067-17.067h170.667c10.24 0 17.067 6.827 17.067 17.067s-6.827 17.067-17.067 17.067z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["oil-tower"],"colorPermutations":{"11":[]},"defaultCode":59769},"attrs":[],"properties":{"order":680,"id":288,"name":"oil-tower","prevSize":32,"code":59774},"setIdx":0,"setId":1,"iconIdx":144},{"icon":{"paths":["M162.304 596.48c-38.827-7.723-47.061-59.605-12.544-79.019l682.667-384c6.020-3.447 13.232-5.48 20.918-5.48 23.564 0 42.667 19.103 42.667 42.667 0 1.012-0.035 2.017-0.105 3.011l0.007-0.134-42.667 640c-1.531 22.312-20.006 39.831-42.572 39.831-10.132 0-19.439-3.532-26.758-9.431l0.082 0.064-213.333-170.667c-9.801-7.885-16.020-19.877-16.020-33.323 0-6.952 1.663-13.515 4.612-19.315l-0.112 0.242 85.333-170.667c7.161-14.111 21.564-23.612 38.187-23.612 23.574 0 42.684 19.11 42.684 42.684 0 6.952-1.662 13.515-4.61 19.315l0.112-0.243-69.931 139.819 122.624 98.091 32-479.787-513.621 288.853 100.437 20.096c17.365 3.571 30.72 17.315 33.671 34.606l0.036 0.252 23.637 141.653 4.395-7.253c7.728-11.744 20.85-19.389 35.758-19.389 23.564 0 42.667 19.103 42.667 42.667 0 7.552-1.962 14.646-5.404 20.8l0.111-0.216-64 106.667c-20.395 34.048-72.107 24.235-78.635-14.933l-37.845-226.944-184.448-36.864z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["paper-plane"],"colorPermutations":{"11":[]},"defaultCode":59770},"attrs":[],"properties":{"order":681,"id":289,"name":"paper-plane","prevSize":32,"code":59775},"setIdx":0,"setId":1,"iconIdx":145},{"icon":{"paths":["M820.245 459.755h-616.49v-282.122c0-45.976 37.616-83.592 83.592-83.592h449.306c45.976 0 83.592 37.616 83.592 83.592v282.122zM245.551 417.959h532.898v-240.327c0-22.988-18.808-41.796-41.796-41.796h-449.306c-22.988 0-41.796 18.808-41.796 41.796v240.327zM736.653 929.959h-449.306c-45.976 0-83.592-37.616-83.592-83.592v-114.939h616.49v114.939c0 45.976-37.616 83.592-83.592 83.592zM245.551 773.224v73.143c0 22.988 18.808 41.796 41.796 41.796h449.306c22.988 0 41.796-18.808 41.796-41.796v-73.143h-532.898z","M846.367 773.224h-668.735c-45.976 0-83.592-37.616-83.592-83.592v-188.082c0-45.976 37.616-83.592 83.592-83.592h668.735c45.976 0 83.592 37.616 83.592 83.592v188.082c0 45.976-37.616 83.592-83.592 83.592zM177.633 459.755c-22.988 0-41.796 18.808-41.796 41.796v188.082c0 22.988 18.808 41.796 41.796 41.796h668.735c22.988 0 41.796-18.808 41.796-41.796v-188.082c0-22.988-18.808-41.796-41.796-41.796h-668.735zM694.857 351.608h-365.714c-11.494 0-20.898-9.404-20.898-20.898s9.404-20.898 20.898-20.898h365.714c11.494 0 20.898 9.404 20.898 20.898s-9.404 20.898-20.898 20.898zM694.857 243.984h-365.714c-11.494 0-20.898-9.404-20.898-20.898s9.404-20.898 20.898-20.898h365.714c11.494 0 20.898 9.404 20.898 20.898s-9.404 20.898-20.898 20.898z","M427.886 574.171c0 7.837-2.090 15.151-5.747 21.42s-8.882 10.971-16.196 14.629c-6.792 3.657-15.151 5.224-24.555 5.224h-23.51v54.857h-13.061v-136.359h35.527c14.629 0 26.122 3.657 34.482 10.449 8.882 7.314 13.061 17.241 13.061 29.78zM414.824 574.171c0-9.404-3.135-16.718-8.882-21.943s-14.629-7.837-26.645-7.837h-20.898v61.127h21.943c10.971 0 19.331-2.612 25.6-7.837 5.747-5.747 8.882-13.584 8.882-23.51z","M358.4 675.527h-13.061c-3.135 0-5.224-2.090-5.224-5.224v-136.359c0-3.135 2.090-5.224 5.224-5.224h35.527c16.196 0 28.735 4.18 38.139 12.016 9.404 8.359 14.106 19.331 14.106 33.437 0 8.882-2.090 17.241-6.269 24.033-4.18 7.314-10.449 12.539-18.286 16.718-7.837 3.657-16.718 5.747-27.167 5.747h-18.286v49.633c0.522 3.135-1.567 5.224-4.702 5.224zM350.563 665.078h2.612v-49.633c0-2.612 2.090-4.702 4.18-5.224-2.612-0.522-4.18-2.612-4.18-5.224v-61.127c0-3.135 2.090-5.224 5.224-5.224h20.898c13.061 0 22.988 3.135 29.78 9.404s10.449 15.151 10.449 26.122c0 11.494-3.657 20.376-10.449 26.645-5.224 4.702-12.539 7.837-20.898 8.882 5.747-0.522 11.494-2.090 15.673-4.18 6.269-3.135 10.449-7.314 13.584-12.539 3.135-5.747 4.702-11.494 4.702-18.808 0-10.971-3.657-19.331-10.449-25.6-7.314-6.269-17.763-9.404-31.347-9.404h-30.302v125.91zM363.624 600.294h16.718c9.404 0 17.241-2.090 21.943-6.792 4.702-4.18 7.314-10.449 7.314-18.808 0-7.837-2.090-14.106-7.314-18.286-4.702-4.18-12.539-6.792-22.988-6.792h-15.673v50.678zM569.469 600.816c0 14.106-2.612 26.645-7.837 37.094s-13.061 18.808-22.988 24.033c-9.927 5.747-21.42 8.359-33.959 8.359h-42.318v-136.359h37.616c22.465 0 39.706 5.747 51.722 17.241 12.016 10.971 17.763 27.69 17.763 49.633zM556.408 600.816c0-37.094-18.808-55.902-56.947-55.902h-24.555v114.416h27.69c16.718 0 29.78-5.224 39.184-15.673 9.927-9.927 14.629-24.555 14.629-42.841z","M504.686 675.527h-42.318c-3.135 0-5.224-2.090-5.224-5.224v-136.359c0-3.135 2.090-5.224 5.224-5.224h37.616c24.033 0 42.841 6.269 55.38 18.286 13.061 12.539 19.331 30.302 19.331 53.29 0 15.151-3.135 28.212-8.359 39.706-5.747 11.494-14.106 20.376-25.078 26.645-10.449 5.747-22.988 8.882-36.571 8.882zM467.592 665.078h37.094c12.016 0 22.465-2.612 31.869-7.837 8.882-5.224 15.673-12.539 20.376-21.943 4.702-9.927 7.314-21.42 7.314-35.004 0-20.376-5.224-35.527-16.196-45.976s-27.167-15.673-48.065-15.673h-32.392v126.433zM503.118 664.555h-27.69c-3.135 0-5.224-2.090-5.224-5.224v-114.416c0-3.135 2.090-5.224 5.224-5.224h24.555c40.751 0 62.171 20.898 62.171 61.127 0 19.853-5.224 35.527-15.673 47.020-10.971 10.971-25.6 16.718-43.363 16.718zM480.131 654.106h22.465c15.151 0 26.645-4.702 35.527-13.584 8.359-9.404 13.061-22.465 13.061-39.706 0-34.482-16.196-50.678-51.722-50.678h-19.331v103.967z","M606.563 670.302v-136.359h72.098v10.971h-59.037v50.155h54.857v10.971h-54.857v64.784h-13.061z","M619.624 675.527h-13.061c-3.135 0-5.224-2.090-5.224-5.224v-136.359c0-3.135 2.090-5.224 5.224-5.224h72.098c3.135 0 5.224 2.090 5.224 5.224v10.971c0 3.135-2.090 5.224-5.224 5.224h-53.812v39.706h49.633c3.135 0 5.224 2.090 5.224 5.224v10.971c0 3.135-2.090 5.224-5.224 5.224h-49.633v59.559c0 2.612-2.612 4.702-5.224 4.702zM611.788 665.078h2.612v-59.559c0-3.135 2.090-5.224 5.224-5.224h49.633v-0.522h-49.633c-3.135 0-5.224-2.090-5.224-5.224v-50.155c0-3.135 2.090-5.224 5.224-5.224h53.812v-0.522h-61.649v126.433z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["pdf"],"colorPermutations":{"11":[]},"defaultCode":59771},"attrs":[],"properties":{"order":682,"id":290,"name":"pdf","prevSize":32,"code":59776},"setIdx":0,"setId":1,"iconIdx":146},{"icon":{"paths":["M301.097 642.421c-10.515-21.513-16.663-46.811-16.663-73.546 0-94.238 76.396-170.634 170.634-170.634s170.634 76.396 170.634 170.634c0 94.238-76.396 170.634-170.634 170.634-26.735 0-52.033-6.148-74.558-17.107l1.013 0.445-158.803 158.917 471.973-78.662 103.859-363.62c2.829-9.659 7.849-17.934 14.503-24.57l73.544-73.544-203.965-203.965-73.543 73.543c-6.637 6.655-14.912 11.675-24.169 14.403l-0.403 0.101-365.327 104.37-78.15 364.757c-5.7 25.876-28.436 44.95-55.627 44.95-31.422 0-56.894-25.472-56.894-56.894 0-4.231 0.461-8.354 1.338-12.322l-0.069 0.377 85.317-398.146c4.538-20.659 19.832-36.88 39.583-42.672l0.403-0.101 383.983-109.66 103.347-103.347c10.293-10.289 24.51-16.653 40.212-16.653s29.921 6.364 40.212 16.653l284.389 284.389c10.289 10.293 16.653 24.51 16.653 40.212s-6.364 29.921-16.653 40.212l-103.347 103.347-109.66 383.926c-6.139 21.015-23.534 36.776-45.053 40.45l-0.336 0.048-682.535 113.755c-54.603 9.101-88.672-57.162-49.541-96.295l284.389-284.389zM455.122 625.755c0.003 0 0.005 0 0.009 0 31.413 0 56.878-25.466 56.878-56.878s-25.466-56.878-56.878-56.878c-0.003 0-0.007 0-0.009 0v0c-31.409 0.005-56.869 25.468-56.869 56.878s25.46 56.873 56.869 56.878v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["pen"],"colorPermutations":{"11":[]},"defaultCode":59774},"attrs":[],"properties":{"order":683,"id":291,"name":"pen","prevSize":32,"code":59777},"setIdx":0,"setId":1,"iconIdx":147},{"icon":{"paths":["M938.496 512c0-229.792-181.824-417.088-409.472-426.080v-0.448h-34.112v0.448c-227.616 8.96-409.44 196.256-409.44 426.080 0 235.584 190.944 426.496 426.496 426.496 82.752 0 159.904-23.648 225.344-64.416l0.224 0.32 12.704-8.64c0.16-0.096 0.288-0.192 0.448-0.288l15.104-10.24-0.224-0.32c104.928-77.696 172.96-202.336 172.96-342.944zM870.976 353.824l-341.92 133.216v-366.976c152.768 6.592 283.136 100.896 341.92 233.76zM512 904.384c-216.352 0-392.384-176-392.384-392.384 0-210.624 166.848-382.976 375.328-391.936v397.184l223.136 328.48c-59.936 37.12-130.528 58.656-206.080 58.656zM746.272 826.592l-208.16-306.464 345.216-134.528c13.568 39.68 21.024 82.176 21.024 126.4 0 128.608-62.208 242.976-158.112 314.592z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["pie-chart"],"colorPermutations":{"11":[]},"defaultCode":59775},"attrs":[],"properties":{"order":684,"id":292,"name":"pie-chart","prevSize":32,"code":59778},"setIdx":0,"setId":1,"iconIdx":148},{"icon":{"paths":["M316.331 426.667l40.789 40.747c7.725 7.725 12.504 18.398 12.504 30.187 0 23.577-19.113 42.69-42.69 42.69-11.789 0-22.461-4.778-30.187-12.504l-113.579-113.621c-26.88-26.88-7.851-72.832 30.165-72.832h238.336l102.997-102.997v-67.669c0.003-11.781 4.78-22.446 12.501-30.165l42.667-42.667c7.721-7.718 18.386-12.492 30.165-12.492s22.445 4.774 30.165 12.492l256 256c7.718 7.721 12.492 18.386 12.492 30.165s-4.774 22.445-12.492 30.165l-42.667 42.667c-7.719 7.722-18.384 12.499-30.165 12.501l-67.67 0-102.997 102.997v238.336c0 37.973-45.952 57.045-72.832 30.165l-183.168-183.168-225.835 225.835c-7.769 8.036-18.647 13.026-30.69 13.026-23.564 0-42.667-19.103-42.667-42.667 0-12.043 4.989-22.92 13.014-30.678l0.012-0.012 256-256c7.721-7.718 18.386-12.492 30.165-12.492s22.445 4.774 30.165 12.492l140.501 140.501v-153.003c0.003-11.781 4.78-22.446 12.501-30.165l128-128c7.719-7.722 18.384-12.499 30.165-12.501l67.67-0-225.835-225.835h60.331l-42.667 42.667 12.501-30.165v85.333c-0.003 11.781-4.78 22.446-12.501 30.165l-128 128c-7.719 7.722-18.384 12.499-30.165 12.501l-153.003 0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["pin"],"colorPermutations":{"11":[]},"defaultCode":59776},"attrs":[],"properties":{"order":685,"id":293,"name":"pin","prevSize":32,"code":59779},"setIdx":0,"setId":1,"iconIdx":149},{"icon":{"paths":["M546.133 648.533v0 0c1.024-51.917 0 375.467 0 375.467h-68.267l0-341.333c0-139.913-115.234-238.933-238.933-238.933l-170.667-0c0 138.479 147.866 239.991 238.933 238.933 0 0 54.852 0 102.4 0v68.267l-98.782-0c-156.501 0-292.932-122.197-310.818-273.067v0c0 0 0-86.46 0-102.4h237.124c157.286-0 291.567 120.832 309.009 273.067v0zM478.925 273.067v0 0c-1.024-51.985-1.058 136.499-1.058 136.499l68.267 68.301 0.922-170.667c0-139.913 114.995-238.933 238.455-238.933h170.325c0 138.513-147.593 239.991-238.455 238.933 0 0-54.75 0-102.195 0v68.267h98.577c156.194 0 292.352-122.163 310.238-273.067v0c0 0 0-86.46 0-102.4h-236.681c-156.979 0-290.987 120.832-308.395 273.067v0z"],"attrs":[],"width":1025,"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["plant"],"colorPermutations":{"11":[]},"defaultCode":59777},"attrs":[],"properties":{"order":686,"id":294,"name":"plant","prevSize":32,"code":59780},"setIdx":0,"setId":1,"iconIdx":150},{"icon":{"paths":["M939.084 130.299c-18.878-27.189-49.936-43.429-83.073-43.429-20.655 0-40.572 6.247-57.605 18.072-45.753 31.797-57.127 94.911-25.344 140.691 3.708 5.297 7.639 9.942 11.953 14.201l0.010 0.010-51.156 114.477c-10.332-3.902-22.275-6.162-34.746-6.165l-0.001-0c-20.669 0-40.586 6.248-57.605 18.072-27.221 18.912-42.269 48.898-43.308 79.727l-146.039 30.88c-3.281-9.203-7.45-17.173-12.554-24.439l0.214 0.322c-18.892-27.176-49.95-43.402-83.086-43.402-20.655 0-40.572 6.247-57.606 18.072-45.753 31.81-57.113 94.911-25.331 140.691 2.619 3.743 5.23 7.008 8.029 10.099l-0.077-0.086-85.543 138.171c-9.506-3.266-20.458-5.152-31.851-5.154l-0.001-0c-20.669 0-40.586 6.247-57.605 18.072-22.173 15.392-37.032 38.508-41.817 65.097-4.785 26.575 1.066 53.409 16.472 75.568 18.878 27.189 49.937 43.429 83.073 43.429 20.655 0 40.572-6.247 57.605-18.072 22.173-15.406 37.019-38.522 41.803-65.097 4.785-26.574-1.066-53.422-16.472-75.581-1.765-2.526-3.401-4.666-5.117-6.736l0.135 0.168 86.866-140.309c8.266 2.434 17.762 3.835 27.585 3.835l0.001 0c20.655 0 40.572-6.248 57.605-18.072 21.336-14.83 35.191-36.464 40.685-59.97l156.764-33.148c1.573 2.683 2.969 4.842 4.442 6.942l-0.217-0.327c18.892 27.176 49.95 43.402 83.072 43.402 20.669 0 40.586-6.248 57.606-18.072 45.767-31.797 57.127-94.897 25.344-140.678-0.935-1.341-1.672-2.347-2.428-3.339l0.182 0.249 54.432-121.807c6.538 1.506 14.045 2.37 21.754 2.371l0.001 0c20.669 0 40.586-6.248 57.605-18.072 22.173-15.392 37.032-38.508 41.817-65.097 4.785-26.575-1.066-53.409-16.472-75.568zM208.793 840.181c-2.133 11.851-8.762 22.159-18.646 29.035-19.821 13.793-49.089 8.353-62.745-11.319-6.876-9.884-9.487-21.858-7.355-33.696 2.133-11.851 8.762-22.159 18.659-29.035 7.587-5.277 16.459-8.065 25.659-8.065 9.011 0.005 17.403 2.648 24.448 7.198l-0.177-0.107c0.945 0.794 1.991 1.557 3.088 2.246l0.117 0.069c0.14 0.087 0.286 0.16 0.428 0.245 3.528 2.785 6.557 5.988 9.073 9.577l0.096 0.144c6.876 9.883 9.487 21.857 7.355 33.709zM382.552 567.424c-19.835 13.807-49.102 8.339-62.759-11.291-14.176-20.423-9.104-48.569 11.291-62.759 7.6-5.277 16.472-8.065 25.659-8.065 14.804 0 28.68 7.245 37.1 19.371 4.869 6.913 7.849 15.465 8.032 24.703l0.001 0.045c-0.012 0.475-0.012 0.952 0 1.43-0.163 14.098-6.892 27.921-19.324 36.566zM724.903 506.251c-19.794 13.765-49.089 8.379-62.745-11.291-14.176-20.423-9.104-48.569 11.305-62.745 7.587-5.277 16.459-8.065 25.659-8.065 14.791 0 28.666 7.232 37.086 19.357 14.176 20.422 9.104 48.568-11.305 62.745zM900.453 195.942c-2.133 11.851-8.762 22.159-18.659 29.035-19.794 13.779-49.102 8.366-62.745-11.291-14.176-20.423-9.104-48.569 11.305-62.759 7.6-5.276 16.472-8.065 25.659-8.065 14.804 0 28.666 7.245 37.086 19.384 6.875 9.883 9.486 21.858 7.355 33.696z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["plot"],"colorPermutations":{"11":[]},"defaultCode":59778},"attrs":[],"properties":{"order":687,"id":295,"name":"plot","prevSize":32,"code":59781},"setIdx":0,"setId":1,"iconIdx":151},{"icon":{"paths":["M438.613 594.091l-155.691-61.611c-15.938-6.425-26.981-21.762-26.981-39.679 0-5.061 0.881-9.917 2.499-14.421l-0.093 0.298 76.288-217.387c6.012-16.756 21.76-28.524 40.256-28.524 23.565 0 42.668 19.103 42.668 42.668 0 5.069-0.884 9.931-2.506 14.442l0.093-0.298-62.72 178.645 155.861 61.696c15.913 6.436 26.935 21.761 26.935 39.661 0 5.148-0.912 10.082-2.582 14.652l0.095-0.296-38.912 109.227 160.171-186.965-138.368-54.784c-15.926-6.43-26.959-21.762-26.959-39.67 0-7.669 2.023-14.865 5.565-21.084l-0.11 0.21 123.477-220.203h-190.933c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667v-0h263.765c23.559 0.007 42.655 19.107 42.655 42.667 0 7.665-2.021 14.858-5.56 21.075l0.11-0.211-135.168 241.109 148.565 58.88c15.916 6.435 26.94 21.761 26.94 39.663 0 10.623-3.882 20.339-10.305 27.807l0.047-0.056-349.056 407.467c-30.805 35.925-88.491 2.475-72.619-42.112l102.528-287.573z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["power"],"colorPermutations":{"11":[]},"defaultCode":59779},"attrs":[],"properties":{"order":688,"id":296,"name":"power","prevSize":32,"code":59782},"setIdx":0,"setId":1,"iconIdx":152},{"icon":{"paths":["M677.415 151.631c-13.785-5.908-27.569 3.938-27.569 17.723v74.831c0 13.785 7.877 27.569 19.692 33.477 104.369 59.077 171.323 177.231 155.569 309.169-15.754 143.754-131.938 261.908-277.662 277.662-189.046 21.662-350.523-128-350.523-313.108 0-116.185 63.015-218.585 157.538-273.723 11.815-5.908 19.692-19.692 19.692-33.477v-74.831c0-13.785-13.785-23.631-27.569-17.723-167.385 68.923-283.569 242.215-265.846 439.138 17.723 202.831 179.2 368.246 382.031 391.877 259.938 27.569 482.462-175.262 482.462-431.262 0-181.169-110.277-334.769-267.815-399.754zM571.077 68.923c0-15.754-13.785-29.538-29.538-29.538h-59.077c-15.754 0-29.538 13.785-29.538 29.538v334.769c0 15.754 13.785 29.538 29.538 29.538h59.077c15.754 0 29.538-13.785 29.538-29.538v-334.769z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["power-1"],"colorPermutations":{"11":[]},"defaultCode":59780},"attrs":[],"properties":{"order":689,"id":297,"name":"power-1","prevSize":32,"code":59783},"setIdx":0,"setId":1,"iconIdx":153},{"icon":{"paths":["M512 554.667c23.564 0 42.667-19.103 42.667-42.667v-426.667c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667v-0 426.667c0 23.564 19.103 42.667 42.667 42.667v0z","M707.84 132.693c-5.7-3.007-12.457-4.772-19.627-4.772-23.608 0-42.746 19.138-42.746 42.746 0 16.438 9.279 30.709 22.885 37.861l0.234 0.112c110.592 57.982 184.747 171.98 184.747 303.297 0 188.513-152.82 341.333-341.333 341.333s-341.333-152.82-341.333-341.333c0-131.317 74.155-245.315 182.874-302.401l1.873-0.896c13.84-7.264 23.119-21.535 23.119-37.973 0-23.608-19.138-42.746-42.746-42.746-7.17 0-13.927 1.765-19.861 4.884l0.234-0.112c-138.18 72.496-230.827 214.962-230.827 379.066 0 235.641 191.025 426.667 426.667 426.667s426.667-191.025 426.667-426.667c0-164.104-92.646-306.57-228.488-377.946l-2.339-1.12z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["power-2"],"colorPermutations":{"11":[]},"defaultCode":59781},"attrs":[],"properties":{"order":690,"id":298,"name":"power-2","prevSize":32,"code":59784},"setIdx":0,"setId":1,"iconIdx":154},{"icon":{"paths":["M1391.923 336.384h-65.229v-220.058c0.001-0.092 0.001-0.201 0.001-0.31 0-23.121-18.598-41.897-41.651-42.185l-0.027-0h-261.53v-31.334c0.001-0.092 0.001-0.201 0.001-0.31 0-23.121-18.598-41.897-41.651-42.185l-0.027-0h-526.131c-23.079 0.288-41.678 19.065-41.678 42.186 0 0.109 0 0.218 0.001 0.327l-0-0.017v31.334h-261.427c-23.079 0.288-41.678 19.065-41.678 42.186 0 0.109 0 0.218 0.001 0.327l-0-0.017v108.749s-110.899-2.867-110.899 110.080v228.557c0 113.152 110.899 110.080 110.899 110.080v107.827c0 23.552 18.637 42.496 41.677 42.496h231.117c-23.080 0.288-41.679 19.065-41.679 42.186 0 0.145 0.001 0.29 0.002 0.435l-0-0.022v83.251c0 23.552 18.637 42.496 41.677 42.496h670.208c23.124-0.231 41.78-19.030 41.78-42.187 0-0.109-0-0.217-0.001-0.326l0 0.017v-83.251c0.001-0.122 0.002-0.267 0.002-0.412 0-23.157-18.657-41.956-41.759-42.187l-0.022-0h231.117c23.079-0.288 41.678-19.065 41.678-42.186 0-0.109-0-0.218-0.001-0.327l0 0.017v-220.16h65.229c23.079-0.289 41.677-19.065 41.677-42.186 0-0.073-0-0.146-0.001-0.219l0 0.011v-140.083c0.001-0.123 0.002-0.268 0.002-0.413 0-23.121-18.599-41.898-41.652-42.185l-0.027-0zM480.87 720.589v-616.96c0-19.661 14.541-35.533 32.563-35.533h410.726c18.022 0 32.563 15.872 32.563 35.533v720.486h-475.853v-103.526zM214.733 756.122c-20.48 0-37.069-15.667-37.069-34.816v-544.666c0-19.149 16.589-34.816 37.069-34.816h199.373v614.298h-199.373zM1028.813 924.467h-619.93v-34.099h620.134v34.099zM1259.93 373.555c-0.196 1.555-0.308 3.354-0.308 5.18 0 0.087 0 0.174 0.001 0.261l-0-0.013v139.981c0 1.843 0.102 3.686 0.307 5.427v196.915c0 19.251-16.589 34.816-37.069 34.816h-199.373v-614.298h199.373c20.48 0 37.069 15.667 37.069 34.816v196.915zM1361.306 486.195h-34.611v-74.342h34.611v74.24z","M825.242 330.752h-127.693l-146.125 185.958 159.744 2.662-71.782 142.336 242.79-214.221h-157.184z"],"attrs":[],"width":1433,"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["power-unit"],"colorPermutations":{"11":[]},"defaultCode":59782},"attrs":[],"properties":{"order":691,"id":299,"name":"power-unit","prevSize":32,"code":59785},"setIdx":0,"setId":1,"iconIdx":155},{"icon":{"paths":["M810.667 213.333h63.851c0.032-0 0.069-0 0.107-0 58.874 0 106.612 47.678 106.709 106.529l0 0.009v298.923c-0.049 58.85-47.767 106.539-106.624 106.539-0.068 0-0.135-0-0.203-0l0.010 0h-63.851v149.184c0 58.944-47.659 106.816-106.475 106.816h-384.405c-58.808-0.073-106.454-47.763-106.454-106.581 0-0.083 0-0.165 0-0.248l-0 0.013v-149.184h-63.851c-0.032 0-0.069 0-0.107 0-58.874 0-106.612-47.678-106.709-106.529l-0-0.009v-298.923c0.049-58.85 47.767-106.539 106.624-106.539 0.068 0 0.135 0 0.203 0l-0.010-0h63.851v-63.851c0-58.944 47.659-106.816 106.475-106.816h384.405c58.859 0 106.453 47.787 106.453 106.816v63.851zM298.667 149.547v63.787h426.667v-63.787c0.002-0.095 0.002-0.208 0.002-0.32 0-11.702-9.468-21.192-21.162-21.227l-0.003-0h-384.341c-11.456 0-21.163 9.643-21.163 21.547zM298.667 618.816v255.701c-0 0.051-0.001 0.111-0.001 0.171 0 11.718 9.457 21.227 21.155 21.311l0.008 0h384.341c11.456 0 21.163-9.6 21.163-21.483v-255.701c0-0.051 0.001-0.111 0.001-0.171 0-11.718-9.457-21.227-21.155-21.311l-0.008-0h-384.341c-11.456 0-21.163 9.6-21.163 21.483zM810.667 640h63.851c0.057 0.001 0.125 0.001 0.192 0.001 11.729 0 21.242-9.484 21.29-21.202l0-0.005v-298.923c0-11.648-9.6-21.205-21.483-21.205h-725.035c-0.057-0.001-0.125-0.001-0.192-0.001-11.729 0-21.242 9.484-21.29 21.202l-0 0.005v298.923c0 11.648 9.6 21.205 21.483 21.205h63.851v-21.184c0-58.944 47.659-106.816 106.475-106.816h384.405c58.859 0 106.453 47.787 106.453 106.816v21.184z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["print"],"colorPermutations":{"11":[]},"defaultCode":59783},"attrs":[],"properties":{"order":692,"id":300,"name":"print","prevSize":32,"code":59786},"setIdx":0,"setId":1,"iconIdx":156},{"icon":{"paths":["M204.8 384h-76.8c-14.138 0-25.6 11.462-25.6 25.6v0 256c0 14.131 11.469 25.6 25.6 25.6h76.8v-76.8c0-42.415 34.385-76.8 76.8-76.8v0h460.8c42.415 0 76.8 34.385 76.8 76.8v0 76.8h76.8c14.138 0 25.6-11.462 25.6-25.6v0-256c0-14.138-11.462-25.6-25.6-25.6v0h-691.2zM204.8 332.8v-128c0-42.415 34.385-76.8 76.8-76.8v0h460.8c42.415 0 76.8 34.385 76.8 76.8v0 128h76.8c42.415 0 76.8 34.385 76.8 76.8v0 256c0 42.415-34.385 76.8-76.8 76.8v0h-76.8v128c0 42.415-34.385 76.8-76.8 76.8v0h-460.8c-42.415 0-76.8-34.385-76.8-76.8v0-128h-76.8c-42.415 0-76.8-34.385-76.8-76.8h0v-256c0-42.415 34.385-76.8 76.8-76.8v0h76.8zM281.6 588.8c-14.138-0-25.6 11.462-25.6 25.6v256c0 14.131 11.469 25.6 25.6 25.6h460.8c14.138 0 25.6-11.462 25.6-25.6v-256c0-14.138-11.462-25.6-25.6-25.6v0h-460.8zM340.105 717.278c-14.138 0-25.6-11.462-25.6-25.6s11.462-25.6 25.6-25.6h343.142c14.138 0 25.6 11.462 25.6 25.6s-11.462 25.6-25.6 25.6h-343.142zM340.105 819.678c-14.138 0-25.6-11.462-25.6-25.6s11.462-25.6 25.6-25.6h343.142c14.138 0 25.6 11.462 25.6 25.6s-11.462 25.6-25.6 25.6h-343.142zM845.756 468.207c-14.138 0-25.6-11.462-25.6-25.6s11.462-25.6 25.6-25.6h0c14.138 0 25.6 11.462 25.6 25.6s-11.462 25.6-25.6 25.6l0-0zM768 332.8v-128c0-14.138-11.462-25.6-25.6-25.6h-460.8c-14.138 0-25.6 11.462-25.6 25.6v0 128h512z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["print-1"],"colorPermutations":{"11":[]},"defaultCode":59784},"attrs":[],"properties":{"order":693,"id":301,"name":"print-1","prevSize":32,"code":59787},"setIdx":0,"setId":1,"iconIdx":157},{"icon":{"paths":["M382.72 960c-0.928 0-1.856-0.032-2.816-0.128-160.928-14.016-282.272-90.56-282.272-178.016 0-84.768 127.232-140.032 254.912-158.912v-12.544c-93.28-70.016-106.624-191.648-106.624-313.44 0-145.888 85.856-232.96 229.664-232.96 142.144 0 220.448 82.72 220.448 232.96 0 69.76-23.84 157.888-62.208 230.016-8.288 15.584-27.648 21.536-43.296 13.216-15.584-8.288-21.536-27.68-13.216-43.296 33.248-62.496 54.72-140.96 54.72-199.968 0-113.696-51.168-168.96-156.448-168.96-109.92 0-165.664 56.832-165.664 168.96 0 109.728 11.136 218.336 91.808 269.696 9.216 5.888 14.816 16.064 14.816 27.008v57.472c0 16.384-12.352 30.080-28.64 31.808-138.112 14.592-226.272 68.32-226.272 98.912 0 39.552 85.152 102.176 223.84 114.272 17.6 1.536 30.624 17.056 29.088 34.656-1.44 16.672-15.424 29.248-31.84 29.248zM768.768 768.064h-128c-17.696 0-32-14.304-32-32s14.304-32 32-32h128c17.696 0 32 14.304 32 32s-14.304 32-32 32zM704.768 867.264h-64c-17.696 0-32-14.304-32-32s14.304-32 32-32h64c17.696 0 32 14.304 32 32s-14.304 32-32 32zM832.672 963.264h-255.744c-52.928 0-96-43.072-96-96v-163.2c0-52.928 43.072-96 96-96h255.744c52.928 0 96 43.072 96 96v163.2c0 52.928-43.072 96-96 96zM576.896 672.064c-17.664 0-32 14.336-32 32v163.2c0 17.664 14.336 32 32 32h255.744c17.664 0 32-14.336 32-32v-163.2c0-17.664-14.336-32-32-32l-255.744 0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["profile"],"colorPermutations":{"11":[]},"defaultCode":59785},"attrs":[],"properties":{"order":694,"id":302,"name":"profile","prevSize":32,"code":59788},"setIdx":0,"setId":1,"iconIdx":158},{"icon":{"paths":["M409.601 460.8h-358.4c-30.72 0-51.2-20.48-51.2-51.2v-358.4c0-30.72 20.48-51.2 51.2-51.2h358.4c30.72 0 51.2 20.48 51.2 51.2v358.4c0 30.72-20.48 51.2-51.2 51.2zM102.401 358.4h255.999v-255.999h-255.999v255.999zM972.799 460.8h-358.4c-30.72 0-51.2-20.48-51.2-51.2v-358.4c0-30.72 20.48-51.2 51.2-51.2h358.4c30.72 0 51.2 20.48 51.2 51.2v358.4c0 30.72-20.48 51.2-51.2 51.2zM665.6 358.4h255.999v-255.999h-255.999v255.999zM409.601 1024h-358.4c-30.72 0-51.2-20.48-51.2-51.2v-358.4c0-30.72 20.48-51.2 51.2-51.2h358.4c30.72 0 51.2 20.48 51.2 51.2v358.4c0 30.72-20.48 51.2-51.2 51.2zM102.401 921.599h255.999v-255.999h-255.999v255.999zM972.799 844.799h-179.199c-30.72 0-51.2-20.48-51.2-51.2v-128h-76.8v128c0 30.72-20.48 51.2-51.2 51.2s-51.2-20.48-51.2-51.2v-179.199c0-30.72 20.48-51.2 51.2-51.2h179.199c30.72 0 51.2 20.48 51.2 51.2v128h76.8v-128c0-30.72 20.48-51.2 51.2-51.2s51.2 20.48 51.2 51.2v179.199c0 30.72-20.48 51.2-51.2 51.2zM793.6 1024h-179.199c-30.72 0-51.2-20.48-51.2-51.2s20.48-51.2 51.2-51.2h179.199c30.72 0 51.2 20.48 51.2 51.2s-20.48 51.2-51.2 51.2z","M261.12 844.799h-61.44c-10.24 0-20.48-10.24-20.48-20.48v-61.44c0-10.24 10.24-20.48 20.48-20.48h61.44c10.24 0 20.48 10.24 20.48 20.48v61.44c0 10.24-10.24 20.48-20.48 20.48zM261.12 281.6h-61.44c-10.24 0-20.48-10.24-20.48-20.48v-61.44c0-10.24 10.24-20.48 20.48-20.48h61.44c10.24 0 20.48 10.24 20.48 20.48v61.44c0 10.24-10.24 20.48-20.48 20.48zM824.32 281.6h-61.44c-10.24 0-20.48-10.24-20.48-20.48v-61.44c0-10.24 10.24-20.48 20.48-20.48h61.44c10.24 0 20.48 10.24 20.48 20.48v61.44c0 10.24-10.24 20.48-20.48 20.48zM972.799 1024c-15.36 0-25.6-5.12-35.84-15.36s-15.36-20.48-15.36-35.84c0-15.36 5.12-25.6 15.36-35.84 20.48-20.48 51.2-20.48 71.679 0 10.24 10.24 15.36 25.6 15.36 35.84 0 15.36-5.12 25.6-15.36 35.84s-20.48 15.36-35.84 15.36z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["qr-code"],"colorPermutations":{"11":[]},"defaultCode":59786},"attrs":[],"properties":{"order":695,"id":303,"name":"qr-code","prevSize":32,"code":59789},"setIdx":0,"setId":1,"iconIdx":159},{"icon":{"paths":["M512 409.6c56.554 0 102.4 45.846 102.4 102.4v0c0 0.030 0 0.065 0 0.1 0 25.194-9.098 48.262-24.188 66.1l0.124-0.151 162.303 445.952h-109.056l-131.583-361.983-131.583 361.983h-109.056l162.303-445.952c-14.966-17.687-24.064-40.756-24.064-65.948 0-0.035 0-0.070 0-0.104v0.006c0-56.554 45.846-102.4 102.4-102.4v0zM512 307.2c-113.108 0-204.8 91.692-204.8 204.8v0c0 25.6 5.12 51.2 14.336 74.752l-45.056 122.88c-44.574-53.111-71.658-122.207-71.68-197.627v-0.005c0-169.662 137.538-307.2 307.2-307.2v0c169.662 0 307.2 137.538 307.2 307.2v0c0 75.264-27.136 143.871-71.68 197.631l-45.056-122.88c9.216-23.552 14.336-49.152 14.336-74.752 0-113.108-91.692-204.8-204.8-204.8v0zM512 102.401c-226.215 0-409.599 183.384-409.599 409.599v0c0 120.831 51.2 230.4 135.168 304.128l-36.864 102.4c-122.517-94.54-200.672-241.404-200.703-406.522v-0.005c0-282.769 229.23-512 512-512v0c282.769 0 512 229.23 512 512v0c0 165.375-78.848 312.831-200.703 406.527l-36.864-102.4c83.968-73.728 135.168-183.296 135.168-304.128 0-226.215-183.384-409.599-409.599-409.599v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["radio-tower-1"],"colorPermutations":{"11":[]},"defaultCode":59787},"attrs":[],"properties":{"order":696,"id":304,"name":"radio-tower-1","prevSize":32,"code":59790},"setIdx":0,"setId":1,"iconIdx":160},{"icon":{"paths":["M756.821 256c-65.28-52.736-155.349-85.333-244.821-85.333-188.513-0-341.333 152.82-341.333 341.333s152.82 341.333 341.333 341.333c188.513 0 341.333-152.82 341.333-341.333v0c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667h0c0 235.648-191.019 426.667-426.667 426.667s-426.667-191.019-426.667-426.667 191.019-426.667 426.667-426.667c108.757 0 217.899 39.083 298.667 104.491v-61.824c0.004-23.561 19.105-42.66 42.667-42.66s42.663 19.099 42.667 42.66l0 0v170.667c0 23.564-19.103 42.667-42.667 42.667v-0h-170.667c-23.561-0.004-42.66-19.105-42.66-42.667s19.099-42.663 42.66-42.667l74.155-0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["reload"],"colorPermutations":{"11":[]},"defaultCode":59788},"attrs":[],"properties":{"order":697,"id":305,"name":"reload","prevSize":32,"code":59791},"setIdx":0,"setId":1,"iconIdx":161},{"icon":{"paths":["M64 64v896h896v-896h-896zM588.4 732.8c-13.2 6-66.4 12-100-28.4-18.4-21.2-50.6-66.6-84.4-127.2-17.8 0-29.4 0-42.8-1.2v92.8c0 47 12 42.4 51.6 47.8v16.2c-13.8-0.6-46.2-1.6-71.2-1.6-26.2 0-52.2 1.2-67.2 1.6v-16.2c31-5.8 44-2.6 44-47.8v-218.8c0-45.2-12.8-42-44-47.8v-16.2c51.6 2 106.2-1.2 141.8-1.2 63.4 0 111.8 28.8 111.8 91.2 0 42.2-33.4 84.4-78.4 95 27.2 48.4 60 91.2 84.4 117.8 14.4 15.6 34.4 29.4 54.4 29.4v14.6zM634.2 462.8c-46.6 0-64.4-31.4-64.4-64.4v-64.4c0-24.4 17.6-60.8 68-60.8s60.8 35.8 60.8 35.8l-21.4 14.4s-11-25-39.4-25c-15.8 0-39.4 14.6-39.4 39.4v53.6c0 26.8 13.2 46.6 35.8 46.6 28.2 0 43-21.8 43-53.6h-35.8v-21.4h60.8c0 41 9.4 99.8-68 99.8zM401.2 552.2c-18.8 0-27.2-0.6-40-1.6v-139.4c12.8-1.2 30-1.2 45-1.2 46.6 0 74.4 24.4 74.4 69 0 43.8-30 73.2-79.4 73.2z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["researchgate"],"colorPermutations":{"11":[]},"defaultCode":59789},"attrs":[],"properties":{"order":698,"id":306,"name":"researchgate","prevSize":32,"code":59792},"setIdx":0,"setId":1,"iconIdx":162},{"icon":{"paths":["M334.635 587.093c-19.669 0.213-39.296-0.555-58.88-2.219v-216.235c11.221-0.768 24.789-1.152 41.856-1.28l25.216-0.085c73.557 0 114.987 37.931 114.987 106.24 0 69.205-47.019 113.536-123.136 113.536h-0.043zM896.043 0h-768c-70.692 0-128 57.308-128 128v0 768c0 70.692 57.308 128 128 128v0h768c70.692 0 128-57.308 128-128v0-768c0-70.692-57.308-128-128-128v0zM646.443 888.789l-3.797 5.76c-10.752 4.907-27.861 7.851-44.288 7.851-52.48 0-96.683-20.224-126.251-55.808-35.2-40.576-87.509-118.144-136.704-205.824-28.331 0-38.912-0.213-52.608-0.896l-6.912-0.512v144.811c0 48.768 7.851 61.909 31.616 65.493l47.104 6.4 5.547 6.4v26.325l-6.656 6.4c-33.62-1.478-74.087-2.451-114.728-2.684l-0.984-0.004c-24.448 0-49.877 0.64-79.573 1.621l-29.781 1.109-6.571-6.4v-26.368l5.248-6.272 34.389-6.4c24.064-4.565 32-17.451 32-65.408v-358.144c0-47.957-7.936-60.885-31.872-65.451l-34.475-6.443-5.504-6.187v-26.368l6.656-6.4c52.523 1.493 105.088 1.323 157.568-0.469 21.626-0.79 47.291-1.27 73.056-1.322l0.245-0c114.475 0 188.544 55.68 188.544 155.392 0 70.4-53.376 138.667-124.544 159.445 39.296 68.523 88.661 135.851 132.779 184.192 26.197 28.288 56.704 46.080 84.096 46.080l6.4 6.4v23.68zM870.059 302.336c0 19.371-0.341 28.587-1.451 38.827-1.092 11.41-3.125 21.837-6.061 31.878l0.301-1.201c-7.936 24.576-20.608 42.24-39.893 55.424-19.2 13.099-43.819 20.181-70.4 20.181-27.221 0-50.389-6.272-69.376-18.901-19.115-12.672-32.811-31.573-40.96-56.32-1.428-4.020-2.757-8.948-3.732-14.002l-0.108-0.675c-2.202-11.959-3.674-25.975-4.087-40.256l-0.009-0.405c-0.326-9.633-0.512-20.955-0.512-32.32s0.186-22.688 0.555-33.965l-0.043 1.645c0.469-13.611 1.835-27.221 4.181-40.619 0.939-5.077 2.176-9.941 3.797-14.677 8.192-24.789 21.888-43.648 41.003-56.32 18.987-12.672 42.24-18.944 69.461-18.944 13.995 0 26.667 1.664 38.059 4.949 11.349 3.328 21.504 7.851 30.421 13.739s16.512 12.672 22.912 20.48c6.315 7.68 11.52 16 15.445 24.363 3.115 5.547 1.92 11.52-4.48 15.36l-32.427 13.269c-5.973 3.328-12.032 1.152-14.976-4.736-7.936-14.549-13.568-21.547-22.016-26.88-8.438-5.484-18.761-8.746-29.845-8.746-1.073 0-2.14 0.031-3.198 0.091l0.147-0.007c-14.72 0-21.504 2.261-32.384 9.941-9.985 6.843-17.438 16.743-21.060 28.335l-0.102 0.38c-2.389 7.296-3.84 14.848-4.352 22.528-0.958 14.923-1.504 32.358-1.504 49.92s0.546 34.998 1.622 52.289l-0.118-2.369c0.512 7.68 1.963 15.232 4.352 22.528 2.773 10.581 9.472 19.712 18.688 25.6 10.283 6.955 22.485 10.453 34.901 10.027 12.459 0.341 24.704-3.115 35.2-9.856 8.576-5.803 14.891-14.379 17.835-24.32l1.792-6.229c1.109-3.968 2.005-8.021 2.645-12.117 0.896-5.547 1.109-10.24 1.109-22.571h-49.365l-0.128-0.213c-6.528 0-10.88-4.352-10.88-10.88v-30.080c0-6.443 4.352-10.88 10.88-10.88h97.28c6.443 0 10.88 4.437 10.88 10.88v25.856z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["researchgate-2"],"colorPermutations":{"11":[]},"defaultCode":59790},"attrs":[],"properties":{"order":699,"id":307,"name":"researchgate-2","prevSize":32,"code":59793},"setIdx":0,"setId":1,"iconIdx":163},{"icon":{"paths":["M906.24 54.4l-848 464.96c-16.046 8.689-26.76 25.397-26.76 44.608 0 21.438 13.342 39.759 32.176 47.114l0.344 0.118 232 86.080 14.080 196.8c3.821 48.443 44.072 86.306 93.167 86.306 28.875 0 54.69-13.097 71.831-33.675l0.122-0.151 114.56-140.16 248.96 92.48c5.206 1.983 11.226 3.131 17.515 3.131 26.209 0 47.76-19.942 50.308-45.48l0.017-0.211 74.56-752.64c0.164-1.528 0.257-3.301 0.257-5.096 0-27.924-22.636-50.56-50.56-50.56-9.024 0-17.496 2.364-24.83 6.507l0.252-0.131zM812.48 310.4l-280.96 402.56c-13.345 17.41-34.15 28.524-57.551 28.524-39.941 0-72.32-32.379-72.32-72.32 0-14.518 4.278-28.037 11.642-39.364l-0.171 0.28c6.080-8.32 348.16-348.16 354.88-355.52 5.374-6.453 13.411-10.53 22.4-10.53 16.066 0 29.090 13.024 29.090 29.090 0 7.077-2.527 13.564-6.728 18.607l0.038-0.047z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["send-1"],"colorPermutations":{"11":[]},"defaultCode":59791},"attrs":[],"properties":{"order":700,"id":308,"name":"send-1","prevSize":32,"code":59794},"setIdx":0,"setId":1,"iconIdx":164},{"icon":{"paths":["M276.48 289.877l20.907 83.755c0.766 3.025 1.206 6.497 1.206 10.072 0 23.564-19.103 42.667-42.667 42.667-19.775 0-36.407-13.453-41.246-31.705l-0.067-0.298-42.667-170.667c-0.819-3.125-1.289-6.712-1.289-10.409 0-23.564 19.103-42.667 42.667-42.667 6.556 0 12.766 1.478 18.315 4.12l-0.258-0.111 640 298.667c14.681 6.956 24.653 21.652 24.653 38.677s-9.972 31.722-24.394 38.567l-0.259 0.111-640 298.667c-5.292 2.532-11.503 4.010-18.059 4.010-23.564 0-42.667-19.103-42.667-42.667 0-4.164 0.596-8.188 1.708-11.992l-0.076 0.302 85.333-298.667c5.257-18.028 21.633-30.976 41.034-30.976 0.004 0 0.008 0 0.012 0l170.666-0c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-138.496l-50.773 177.792 472.363-220.459-475.947-222.123z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["send-2"],"colorPermutations":{"11":[]},"defaultCode":59792},"attrs":[],"properties":{"order":701,"id":309,"name":"send-2","prevSize":32,"code":59795},"setIdx":0,"setId":1,"iconIdx":165},{"icon":{"paths":["M512 805.12c21.581 0 39.649 18.068 39.649 39.649 0 21.586-18.068 39.148-39.649 39.148s-39.153-17.567-39.153-39.148c0-21.581 17.572-39.649 39.153-39.649v0zM229.663 162.401v0c21.837 0 39.649 17.818 39.649 39.153 0 21.832-17.812 39.27-39.649 39.27-21.581 0-38.902-17.439-38.902-39.27 0.005-21.33 17.326-39.153 38.902-39.153v0zM792.822 162.401v0c21.33 0 38.902 17.818 38.902 39.153 0 21.832-17.572 39.27-38.902 39.27-21.827 0-39.649-17.439-39.649-39.27-0-21.33 17.823-39.153 39.649-39.153v0zM512 742.625v0c60.733-48.932 109.921-111.672 147.072-180.69 40.151-74.537 65.751-157.86 75.786-241.428-7.526-7.276-14.31-13.926-21.581-22.339h-0.256c-6.533-7.398-13.307-15.048-19.569-22.584l-362.394-0.251c-6.021 8.161-12.8 15.683-20.076 22.83-7.281 8.412-14.561 15.063-21.596 22.339 10.301 83.569 36.142 166.39 76.288 241.183 36.649 69.268 86.339 131.512 146.324 180.941v0zM700.477 584.269v0c-43.172 79.56-100.884 151.086-173.67 206.546l-0.512 0.507c-8.023 6.272-20.076 6.272-28.104 0-73.027-55.721-131.502-127.242-174.408-207.549-44.677-82.821-72.279-175.677-82.565-269.409-1.254-7.782 1.756-16.195 8.033-21.714 9.774-8.402 18.56-17.065 27.346-25.595v0c8.284-9.544 15.816-18.693 23.342-28.989 4.521-5.519 11.54-9.789 19.082-9.789h386.232c6.779 0 14.049 3.133 18.314 9.283 7.782 10.286 16.312 19.948 24.090 29.491h0.246c8.033 8.53 17.582 17.188 27.116 25.595h-0.261c5.775 4.767 9.047 12.303 8.289 20.582-9.8 94.868-37.647 187.72-82.57 271.043v0zM512 939.136v0c258.488-133.012 406.062-418.109 406.062-703.58l0-24.714c-60.232-18.949-106.404-69.14-119.711-130.376l-571.95-0c-13.793 60.984-59.971 111.427-119.962 130.376l-0.246 24.714c0 285.471 148.070 570.568 405.806 703.58v0zM529.823 1017.938v0c-10.547 5.514-23.347 6.026-34.642 0.502-294.62-141.542-467.533-461.768-467.533-782.884 0-7.276 0.246-16.435 0.993-29.23 0-10.296 0.512-19.451 1.254-28.365 0-18.944 15.053-35.384 34.381-37.391 49.439-6.021 87.588-48.435 87.834-98.509l0-0.876c0-21.453 18.068-39.526 39.153-39.526h641.454c21.842 0 39.654 18.068 39.654 39.526 0 49.818 37.396 93.107 87.828 99.384 18.58 2.007 33.638 16.814 34.391 36.265 0.512 8.909 0.993 18.324 0.993 29.491 0.753 12.8 0.753 21.96 0.753 29.23 0.015 320.609-172.39 640.84-466.514 782.382v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["shield"],"colorPermutations":{"11":[]},"defaultCode":59793},"attrs":[],"properties":{"order":702,"id":310,"name":"shield","prevSize":32,"code":59796},"setIdx":0,"setId":1,"iconIdx":166},{"icon":{"paths":["M768 401.664l-225.835 225.835c-7.721 7.718-18.386 12.492-30.165 12.492s-22.445-4.774-30.165-12.492l-128-128c-7.41-7.665-11.977-18.12-11.977-29.641 0-23.564 19.103-42.667 42.667-42.667 11.521 0 21.976 4.567 29.653 11.989l-0.012-0.012 97.835 97.835 268.501-268.501c26.88-26.88 72.832-7.851 72.832 30.165v327.637c-0.026 78.867-42.844 147.727-106.496 184.626l-1.024 0.548-212.651 121.6c-6.079 3.533-13.377 5.618-21.163 5.618s-15.084-2.085-21.367-5.728l0.205 0.11-212.693-121.6c-64.647-37.45-107.444-106.288-107.477-185.126l-0-0.005v-455.68c-0-0.007-0-0.015-0-0.024 0-19.385 12.928-35.75 30.632-40.946l0.302-0.076c92.926-27.901 199.732-44.065 310.28-44.288l0.12-0c103.552 0 207.061 14.805 310.4 44.288 18.019 5.272 30.956 21.648 30.956 41.045 0 23.577-19.113 42.689-42.689 42.689-4.179 0-8.218-0.601-12.035-1.72l0.302 0.076c-85.891-25.827-184.617-40.804-286.805-41.045l-0.128-0c-85.248 0-170.581 10.88-256 32.64v422.997c0.016 47.32 25.707 88.636 63.898 110.775l0.614 0.329 191.488 109.44 191.488-109.44c38.793-22.461 64.48-63.758 64.512-111.057l0-0.005v-224.683z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["shield-1"],"colorPermutations":{"11":[]},"defaultCode":59794},"attrs":[],"properties":{"order":703,"id":311,"name":"shield-1","prevSize":32,"code":59797},"setIdx":0,"setId":1,"iconIdx":167},{"icon":{"paths":["M266.539 694.187l29.568-59.136-116.053-464.384h-52.053c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667v-0h85.333c19.881 0.001 36.587 13.599 41.322 32.003l0.065 0.296 45.227 181.035h596.053c23.553 0.015 42.641 19.112 42.641 42.667 0 2.959-0.301 5.849-0.875 8.638l0.047-0.276-42.667 213.333c-3.324 16.221-15.496 28.92-31.149 32.959l-0.296 0.065-341.333 85.333c-3.025 0.766-6.497 1.206-10.072 1.206-23.564 0-42.667-19.103-42.667-42.667 0-19.775 13.453-36.407 31.705-41.246l0.298-0.067 315.179-78.805 27.136-135.808h-522.667l61.44 245.632c0.808 3.104 1.272 6.667 1.272 10.339 0 6.963-1.668 13.537-4.626 19.343l0.112-0.242-42.667 85.333c-2.143 4.269-4.794 7.928-7.939 11.096l0.003-0.003c7.887 16.137 12.498 35.113 12.498 55.167 0 70.692-57.308 128-128 128s-128-57.308-128-128c0-70.692 57.308-128 128-128 19.277 0 37.558 4.261 53.954 11.893l-0.789-0.33zM213.333 853.333c0.002 0 0.004 0 0.007 0 23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667c-0.002 0-0.005 0-0.007 0l0-0c-23.561 0.004-42.66 19.105-42.66 42.667s19.099 42.663 42.66 42.667l0 0zM810.667 938.667c-70.692 0-128-57.308-128-128s57.308-128 128-128v0c70.692 0 128 57.308 128 128s-57.308 128-128 128v0zM810.667 853.333c0.002 0 0.004 0 0.007 0 23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667c-0.002 0-0.005 0-0.007 0l0-0c-23.561 0.004-42.66 19.105-42.66 42.667s19.099 42.663 42.66 42.667l0 0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["shop"],"colorPermutations":{"11":[]},"defaultCode":59795},"attrs":[],"properties":{"order":704,"id":312,"name":"shop","prevSize":32,"code":59798},"setIdx":0,"setId":1,"iconIdx":168},{"icon":{"paths":["M502.72 924.8c-8.153-2.921-17.56-4.609-27.361-4.609-1.632 0-3.253 0.047-4.861 0.139l0.223-0.010h-49.6l85.12-98.88c13.689-12.754 22.559-30.523 23.671-50.365l0.009-0.195c0-32-19.52-48.64-59.84-50.88h-131.52c-0.926-0.051-2.011-0.080-3.102-0.080-10.604 0-20.563 2.758-29.2 7.596l0.302-0.155c-12.379 7.816-20.48 21.422-20.48 36.921 0 0.070 0 0.14 0 0.21l-0-0.011c-0.001 0.127-0.002 0.278-0.002 0.429 0 17.864 11.175 33.119 26.915 39.155l0.287 0.097c7.333 2.877 15.825 4.544 24.707 4.544 2.569 0 5.105-0.14 7.602-0.411l-0.309 0.027h42.24l-93.76 107.84c-11.193 11.277-18.217 26.706-18.559 43.775l-0.001 0.065c-0.022 0.522-0.034 1.135-0.034 1.75 0 15.634 7.952 29.411 20.031 37.507l0.163 0.103c9.046 6.127 20.201 9.782 32.21 9.782 1.616 0 3.216-0.066 4.798-0.196l-0.208 0.014h147.84c1.732 0.242 3.733 0.381 5.766 0.381 24.212 0 43.84-19.628 43.84-43.84 0-0.246-0.002-0.492-0.006-0.738l0 0.037c0.006-0.258 0.009-0.562 0.009-0.867 0-17.747-11.028-32.918-26.604-39.034l-0.285-0.098zM950.72 668.8c-11.819-4.163-25.448-6.569-39.639-6.569-2.266 0-4.517 0.061-6.753 0.182l0.311-0.013h-104.64l152.64-177.28c20.867-18.98 34.427-45.675 36.146-75.544l0.014-0.296c0-67.84-64-71.36-87.040-72.32h-213.76c-1.379-0.076-2.993-0.119-4.618-0.119-15.538 0-30.152 3.955-42.89 10.913l0.468-0.234c-17.038 10.964-28.162 29.832-28.162 51.297 0 0.191 0.001 0.381 0.003 0.572l-0-0.029c-0.001 0.148-0.002 0.322-0.002 0.497 0 24.986 15.649 46.318 37.68 54.728l0.402 0.135c10.813 4.135 23.32 6.53 36.386 6.53 3.413 0 6.788-0.163 10.118-0.483l-0.424 0.033h90.56l-164.16 192c-16.705 16.345-27.32 38.857-28.156 63.846l-0.004 0.154c-0.037 0.812-0.058 1.765-0.058 2.723 0 22.131 11.233 41.639 28.309 53.132l0.229 0.145c13.012 8.655 29.001 13.81 46.193 13.81 2.777 0 5.523-0.134 8.231-0.397l-0.344 0.027h241.6c1.461 0.108 3.166 0.17 4.885 0.17 24.672 0 46.379-12.691 58.95-31.901l0.165-0.269c4.349-8.685 6.937-18.908 7.040-29.726l0-0.034c0.015-0.491 0.023-1.068 0.023-1.648 0-25.294-16.125-46.823-38.656-54.866l-0.407-0.127zM522.24 489.92c-14.116-4.803-30.377-7.576-47.285-7.576-2.84 0-5.663 0.078-8.464 0.233l0.39-0.017h-192l242.56-281.92c25.397-22.537 42.11-54.37 44.773-90.116l0.027-0.444c0-74.24-66.88-76.48-98.56-78.080h-297.6c-2.004-0.143-4.342-0.224-6.699-0.224-17.225 0-33.434 4.348-47.59 12.006l0.53-0.262c-17.241 11.221-28.481 30.399-28.481 52.202 0 0.098 0 0.196 0.001 0.293l-0-0.015c-0.008 0.357-0.012 0.777-0.012 1.199 0 25.408 16.094 47.058 38.643 55.31l0.409 0.131c13.017 5.017 28.078 7.924 43.818 7.924 4.177 0 8.306-0.205 12.378-0.605l-0.516 0.041h173.44l-258.24 299.84c-20.013 18.721-32.89 44.857-34.231 74.002l-0.009 0.238c-0.075 1.179-0.118 2.557-0.118 3.944 0 23.184 11.91 43.586 29.946 55.421l0.251 0.155c14.57 9.38 32.362 14.955 51.455 14.955 3.63 0 7.213-0.201 10.738-0.594l-0.434 0.039h333.44c2.324 0.252 5.021 0.395 7.75 0.395 25.67 0 48.373-12.7 62.171-32.159l0.159-0.237c4.643-9.279 7.36-20.216 7.36-31.787 0-0.075-0-0.15-0-0.224l0 0.012c-0.55-25.146-16.954-46.319-39.589-53.96l-0.411-0.12z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["sleep"],"colorPermutations":{"11":[]},"defaultCode":59796},"attrs":[],"properties":{"order":705,"id":313,"name":"sleep","prevSize":32,"code":59799},"setIdx":0,"setId":1,"iconIdx":169},{"icon":{"paths":["M887.904 298.208c-12.864-12.064-33.152-11.488-45.216 1.408l-426.752 454.368-233.12-229.696c-12.608-12.416-32.864-12.288-45.28 0.32-12.416 12.576-12.256 32.864 0.352 45.248l256.48 252.672c0.096 0.096 0.224 0.128 0.32 0.224s0.128 0.224 0.224 0.32c2.016 1.92 4.448 3.008 6.784 4.288 1.152 0.672 2.144 1.664 3.36 2.144 3.776 1.472 7.776 2.24 11.744 2.24 4.192 0 8.384-0.832 12.288-2.496 1.312-0.544 2.336-1.664 3.552-2.368 2.4-1.408 4.896-2.592 6.944-4.672 0.096-0.096 0.128-0.256 0.224-0.352 0.064-0.096 0.192-0.128 0.288-0.224l449.184-478.208c12.16-12.832 11.488-33.088-1.376-45.216z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["success"],"colorPermutations":{"11":[]},"defaultCode":59797},"attrs":[],"properties":{"order":706,"id":314,"name":"success","prevSize":32,"code":59800},"setIdx":0,"setId":1,"iconIdx":170},{"icon":{"paths":["M464.248 677.488c9.967 9.161 25.418 8.714 34.838-1.009l299.819-309.441c9.598-9.906 9.349-25.718-0.558-35.316s-25.718-9.349-35.316 0.558l-299.819 309.441 34.838-1.009-181.442-166.771c-10.155-9.334-25.955-8.669-35.29 1.487s-8.669 25.955 1.487 35.29l181.442 166.771z","M1024 512c0-282.77-229.23-512-512-512s-512 229.23-512 512c0 282.77 229.23 512 512 512 117.411 0 228.826-39.669 318.768-111.313 10.789-8.594 12.568-24.307 3.974-35.097s-24.307-12.568-35.097-3.974c-81.176 64.662-181.644 100.433-287.646 100.433-255.182 0-462.049-206.866-462.049-462.049s206.866-462.049 462.049-462.049c255.182 0 462.049 206.866 462.049 462.049 0 87.493-24.334 171.337-69.578 243.961-7.294 11.708-3.716 27.111 7.992 34.405s27.111 3.716 34.405-7.992c50.146-80.493 77.132-173.475 77.132-270.374z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["success-1"],"colorPermutations":{"11":[]},"defaultCode":59798},"attrs":[],"properties":{"order":707,"id":315,"name":"success-1","prevSize":32,"code":59801},"setIdx":0,"setId":1,"iconIdx":171},{"icon":{"paths":["M506.3 950.6c-241.9 0-438.7-196.8-438.7-438.6s196.8-438.6 438.7-438.6c144.5 0 279.7 71.2 361.6 190.4 8.1 11.7 5.1 27.8-6.6 35.9s-27.8 5.1-35.9-6.6c-72.4-105.3-191.7-168.1-319.1-168.1-213.4 0-387 173.6-387 387s173.6 387 387 387 387-173.6 387-387c0-35.9-4.9-71.4-14.6-105.6-3.9-13.7 4.1-28 17.8-31.8 13.7-3.9 28 4.1 31.8 17.8 11 38.7 16.5 79 16.5 119.6 0.1 241.8-196.7 438.6-438.5 438.6z","M462.7 741.1c-6.9 0-13.7-2.7-18.8-8.1l-177.5-188c-9.8-10.4-9.3-26.7 1-36.5s26.7-9.3 36.5 1l160.1 169.6 449.1-410.3c10.5-9.6 26.8-8.9 36.5 1.6 9.6 10.5 8.9 26.8-1.6 36.5l-467.9 427.4c-5 4.6-11.2 6.8-17.4 6.8z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["success-2"],"colorPermutations":{"11":[]},"defaultCode":59799},"attrs":[],"properties":{"order":708,"id":316,"name":"success-2","prevSize":32,"code":59802},"setIdx":0,"setId":1,"iconIdx":172},{"icon":{"paths":["M512 768c-140.8 0-256-115.2-256-256s115.2-256 256-256 256 115.2 256 256-115.2 256-256 256zM512 341.333c-93.867 0-170.667 76.8-170.667 170.667s76.8 170.667 170.667 170.667 170.667-76.8 170.667-170.667-76.8-170.667-170.667-170.667zM512 170.667c-25.6 0-42.667-17.067-42.667-42.667v-85.333c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v85.333c0 25.6-17.067 42.667-42.667 42.667zM512 1024c-25.6 0-42.667-17.067-42.667-42.667v-85.333c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v85.333c0 25.6-17.067 42.667-42.667 42.667zM238.933 281.6c-12.8 0-21.333-4.267-29.867-12.8l-59.733-59.733c-17.067-17.067-17.067-42.667 0-59.733s42.667-17.067 59.733 0l59.733 59.733c17.067 17.067 17.067 42.667 0 59.733-4.267 8.533-17.067 12.8-29.867 12.8zM844.8 887.467c-12.8 0-21.333-4.267-29.867-12.8l-59.733-59.733c-17.067-17.067-17.067-42.667 0-59.733s42.667-17.067 59.733 0l59.733 59.733c17.067 17.067 17.067 42.667 0 59.733-8.533 8.533-21.333 12.8-29.867 12.8zM128 554.667h-85.333c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h85.333c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667zM981.333 554.667h-85.333c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h85.333c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667zM179.2 887.467c-12.8 0-21.333-4.267-29.867-12.8-17.067-17.067-17.067-42.667 0-59.733l59.733-59.733c17.067-17.067 42.667-17.067 59.733 0s17.067 42.667 0 59.733l-59.733 59.733c-8.533 8.533-17.067 12.8-29.867 12.8zM785.067 281.6c-12.8 0-21.333-4.267-29.867-12.8-17.067-17.067-17.067-42.667 0-59.733l59.733-59.733c17.067-17.067 42.667-17.067 59.733 0s17.067 42.667 0 59.733l-59.733 59.733c-8.533 8.533-21.333 12.8-29.867 12.8z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["sun"],"colorPermutations":{"11":[]},"defaultCode":59800},"attrs":[],"properties":{"order":709,"id":317,"name":"sun","prevSize":32,"code":59803},"setIdx":0,"setId":1,"iconIdx":173},{"icon":{"paths":["M613.052 339.505v-130.659c0.004-13.95 5.662-26.581 14.803-35.723l151.579-151.579c9.142-9.132 21.763-14.78 35.708-14.78 19.661 0 36.701 11.232 45.051 27.629l0.133 0.286 42.996 85.997 85.997 42.947c16.705 8.478 27.949 25.527 27.949 45.202 0 13.958-5.662 26.597-14.811 35.739l-151.579 151.579c-9.142 9.146-21.77 14.8-35.723 14.803h-130.66l-136.773 136.773c-9.078 8.776-21.456 14.185-35.101 14.185-27.905 0-50.527-22.622-50.527-50.527 0-13.645 5.409-26.023 14.196-35.116l136.761-136.761zM512 57.267c27.901 0.005 50.518 22.624 50.518 50.527s-22.617 50.522-50.518 50.527v0c-195.331 0-353.681 158.35-353.681 353.681s158.35 353.681 353.681 353.681c195.331 0 353.681-158.35 353.681-353.681v0c0.005-27.901 22.624-50.518 50.527-50.518s50.522 22.617 50.527 50.518v0c0 251.141-203.592 454.733-454.733 454.733s-454.733-203.592-454.733-454.733c0-251.141 203.592-454.733 454.733-454.733v0zM512 259.373c27.901 0.005 50.518 22.624 50.518 50.527s-22.617 50.522-50.518 50.527v0c-83.715 0-151.579 67.865-151.579 151.579s67.865 151.579 151.579 151.579c83.715 0 151.579-67.865 151.579-151.579v0c0.005-27.901 22.624-50.518 50.527-50.518s50.522 22.617 50.527 50.518v0c0 139.526-113.107 252.627-252.627 252.627s-252.627-113.107-252.627-252.627c0-139.526 113.107-252.627 252.627-252.627v0zM714.104 229.762v80.132h80.132l87.207-87.207-38.4-19.199c-9.797-4.992-17.563-12.775-22.403-22.296l-0.133-0.287-19.199-38.35-87.207 87.207z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["target"],"colorPermutations":{"11":[]},"defaultCode":59801},"attrs":[],"properties":{"order":710,"id":318,"name":"target","prevSize":32,"code":59804},"setIdx":0,"setId":1,"iconIdx":174},{"icon":{"paths":["M703.552 549.28v-389.856c0-83.392-68.32-151.232-151.712-151.232-83.36 0-151.68 67.84-151.68 151.232v389.76c-68.192 48.544-110.88 126.944-110.88 209.216 0 142.336 114.944 258.144 256.16 258.144 144.032 0 261.6-115.808 261.6-258.144-0.032-85.632-38.72-162.336-103.488-209.12zM545.504 944.416c-101.408 0-183.936-83.456-183.936-186.016 0-38.432 13.024-75.744 35.968-106.816h136.48c9.952 0 18.048-8.768 18.048-18.752 0-9.952-8.064-18.752-18.048-18.752h-99.968c6.592-5.152 13.12-9.92 20.448-14.272l17.28-10.464v-50.272h62.24c9.952 0 18.048-7.072 18.048-17.056 0-9.952-8.064-17.056-18.048-17.056h-62.24v-34.080h62.24c9.952 0 18.048-7.072 18.048-17.056 0-9.952-8.064-17.056-18.048-17.056h-62.24v-40.896h62.24c9.952 0 18.048-7.072 18.048-17.056s-8.064-17.056-18.048-17.056h-62.24v-34.080h62.24c9.952 0 18.048-7.072 18.048-17.056 0-9.952-8.064-17.056-18.048-17.056h-62.24v-40.864h62.24c9.952 0 18.048-7.072 18.048-17.056s-8.064-17.056-18.048-17.056h-62.24v-59.2c0-43.616 36.512-79.104 80.096-79.104 43.616 0 80.128 35.488 80.128 79.104v429.92l17.088 10.464c54.72 32.416 85.824 90.208 85.824 158.592-0.032 102.592-85.152 186.048-189.408 186.048z","M430.624 733.376c-3.904 13.632-6.56 25.152-6.56 38.496-0 0.019-0 0.042-0 0.064 0 68.504 55.479 124.051 123.958 124.16l0.010 0c68.505-0.182 123.968-55.758 123.968-124.288 0-0.023-0-0.045-0-0.068l0 0.004c0-13.344-2.656-24.704-6.56-38.368h-234.816z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["thermometer"],"colorPermutations":{"11":[]},"defaultCode":59802},"attrs":[],"properties":{"order":711,"id":319,"name":"thermometer","prevSize":32,"code":59805},"setIdx":0,"setId":1,"iconIdx":175},{"icon":{"paths":["M512-0.001c113.108 0 204.8 91.692 204.8 204.8v409.6c31.964 42.252 51.2 95.68 51.2 153.6 0 141.385-114.616 256-256 256s-256-114.616-256-256c0-57.92 19.235-111.348 51.666-154.244l-0.467 0.644v-409.6c0-113.108 91.692-204.8 204.8-204.8v0zM512 76.799c-70.692 0-128 57.307-128 128v0 409.6c0 17.376-5.771 33.404-15.5 46.273l0.14-0.193c-22.344 29.563-35.789 66.937-35.789 107.452 0 98.97 80.231 179.2 179.2 179.2s179.2-80.231 179.2-179.2c0-40.514-13.445-77.888-36.116-107.904l0.328 0.452c-9.625-12.666-15.431-28.692-15.462-46.073v-409.607c0-70.692-57.307-128-128-128v0z","M512 268.799c19.366 0.001 35.382 14.336 38.018 32.974l0.024 0.204 0.359 5.222v365.824c37.848 15.607 64.001 52.213 64.001 94.927 0 56.554-45.846 102.4-102.4 102.4s-102.4-45.846-102.4-102.4c0-39.869 22.786-74.417 56.045-91.331l0.582-0.269 7.373-3.328v-365.824c0-21.208 17.192-38.4 38.4-38.4v0zM512 742.4c-14.138 0-25.6 11.461-25.6 25.6s11.461 25.6 25.6 25.6v0c14.138 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["thermometer-1"],"colorPermutations":{"11":[]},"defaultCode":59803},"attrs":[],"properties":{"order":712,"id":320,"name":"thermometer-1","prevSize":32,"code":59806},"setIdx":0,"setId":1,"iconIdx":176},{"icon":{"paths":["M990.598 556.497c18.442-0.001 33.391-14.951 33.392-33.393v0-199.913c0.001-0.105 0.002-0.231 0.002-0.356 0-13.816-8.355-25.681-20.286-30.82l-0.218-0.084c-0.032-0.014-0.063-0.022-0.094-0.033l-667.328-289.191c-0.011-0.006-0.026-0.010-0.041-0.015l-0.002-0.001c-3.899-1.704-8.442-2.696-13.216-2.696-5.876 0-11.4 1.502-16.211 4.143l0.175-0.088-289.159 155.705c-10.561 5.769-17.606 16.796-17.61 29.469v0 333.887c0.003 18.441 14.953 33.389 33.394 33.389 0.001 0 0.001 0 0.002 0h128.171c10.376 28.555 32.484 50.664 60.339 60.819l0.7 0.223v339.668h-100.169c-18.359 0.111-33.199 15.020-33.199 33.393s14.84 33.283 33.188 33.393h467.481c18.359-0.111 33.199-15.020 33.199-33.393s-14.84-33.283-33.188-33.393h-100.183v-333.928h33.392c43.333-0.057 80.224-27.577 94.208-66.087l0.221-0.698h272.869v166.963c0 18.442 14.95 33.392 33.391 33.393v0c0.001 0 0.003 0 0.005 0 18.443 0 33.394 14.951 33.394 33.394s-14.951 33.394-33.394 33.394c-9.222 0-17.571-3.739-23.614-9.782v0c-6.029-5.963-14.322-9.647-23.476-9.647-18.441 0-33.391 14.95-33.391 33.391 0 9.155 3.685 17.449 9.651 23.482l-0.003-0.003c18.128 18.115 43.165 29.317 70.817 29.317 55.334 0 100.19-44.857 100.19-100.19 0-43.359-27.544-80.286-66.089-94.237l-0.698-0.221v-139.253h33.389zM356.175 289.355h33.391c80.628 0 148.082 57.453 163.594 133.57h-163.594c-18.433-0.023-33.369-14.96-33.391-33.391v-100.179zM155.832 489.713h-89.043v-133.57h89.043v133.57zM161.573 289.355h-94.785v-80.232l222.606-119.872v133.326h-33.393c-43.331 0.058-80.22 27.575-94.206 66.080l-0.221 0.699zM289.394 957.208v-86.346l86.34 86.346h-86.34zM422.956 909.984l-119.732-119.739 119.732-119.74v239.479zM289.394 709.628v-86.347h86.34zM556.52 523.104c-0.022 18.433-14.958 33.37-33.389 33.393h-267.13c-18.433-0.023-33.369-14.96-33.391-33.391v-200.357c0.022-18.433 14.958-33.37 33.389-33.393h33.394v100.179c0.063 55.299 44.873 100.112 100.165 100.179h166.962v33.391zM552.969 289.355c-42.007-41.292-99.659-66.784-163.266-66.784-0.048 0-0.096 0-0.145 0h-33.386v-138.365l473.398 205.143h-276.604zM623.304 489.713v-33.394c0-0.030 0-0.065 0-0.101 0-21.686-2.96-42.68-8.498-62.601l0.389 1.64 94.448 94.454h-86.342zM670.525 356.141h239.463l-119.732 119.739zM870.868 489.713l86.341-86.344v86.344h-86.341z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["tower-crane"],"colorPermutations":{"11":[]},"defaultCode":59804},"attrs":[],"properties":{"order":713,"id":321,"name":"tower-crane","prevSize":32,"code":59812},"setIdx":0,"setId":1,"iconIdx":177},{"icon":{"paths":["M844.8 326.4c-19.2 0-38.4 19.2-38.4 38.4v550.4c0 19.2-19.2 38.4-38.4 38.4h-512c-19.2 0-38.4-19.2-38.4-38.4v-550.4c0-19.2-12.8-38.4-38.4-38.4-19.2 0-38.4 19.2-38.4 38.4v550.4c6.4 57.6 51.2 108.8 115.2 108.8h512c64 0 115.2-51.2 115.2-115.2v-544c0-19.2-19.2-38.4-38.4-38.4zM435.2 761.6v-396.8c0-19.2-12.8-38.4-38.4-38.4-19.2 0-38.4 19.2-38.4 38.4v403.2c0 19.2 12.8 38.4 38.4 38.4 25.6-6.4 38.4-19.2 38.4-44.8zM659.2 761.6v-396.8c0-19.2-19.2-38.4-38.4-38.4s-38.4 19.2-38.4 38.4v403.2c0 19.2 19.2 38.4 38.4 38.4 19.2-6.4 38.4-19.2 38.4-44.8zM985.6 179.2h-179.2v-70.4c0-57.6-51.2-108.8-108.8-108.8h-371.2c-64 0-108.8 44.8-108.8 108.8v76.8h-179.2c-19.2-6.4-38.4 12.8-38.4 32s19.2 32 38.4 32h947.2c19.2 0 38.4-12.8 38.4-32s-19.2-38.4-38.4-38.4zM729.6 179.2h-441.6v-70.4c0-19.2 19.2-38.4 38.4-38.4h371.2c19.2 0 32 12.8 32 38.4v70.4zM729.6 179.2z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["trash-1"],"colorPermutations":{"11":[]},"defaultCode":59805},"attrs":[],"properties":{"order":714,"id":322,"name":"trash-1","prevSize":32,"code":59813},"setIdx":0,"setId":1,"iconIdx":178},{"icon":{"paths":["M979.657 493.029l-365.714-156.686c-9.6-4.114-19.314-5.943-28.8-5.943v-293.829c0-21.143-17.371-36.571-36.571-36.571-5.371 0-10.971 1.257-16.343 3.886l-491.771 268.457c-24.8 12.343-40.457 37.714-40.457 65.371v613.143c0 40.343 32.8 73.143 73.143 73.143h877.714c40.343 0 73.143-32.8 73.143-73.143v-390.629c0-29.257-17.486-55.657-44.343-67.2zM329.143 950.857v-109.714c0-20.229-16.343-36.571-36.571-36.571s-36.571 16.343-36.571 36.571v109.714h-182.857v-613.029l438.857-239.543v852.571h-182.857zM950.857 950.857h-146.286v-36.571c0-20.229-16.343-36.571-36.571-36.571s-36.571 16.343-36.571 36.571v36.571h-146.286l0.229-547.314 365.486 156.686v390.629z","M256 402.286c0 20.198 16.374 36.571 36.571 36.571s36.571-16.374 36.571-36.571v0c0-20.198-16.374-36.571-36.571-36.571s-36.571 16.374-36.571 36.571v0z","M256 548.571c0 20.198 16.374 36.571 36.571 36.571s36.571-16.374 36.571-36.571v0c0-20.198-16.374-36.571-36.571-36.571s-36.571 16.374-36.571 36.571v0z","M256 694.857c0 20.198 16.374 36.571 36.571 36.571s36.571-16.374 36.571-36.571v0c0-20.198-16.374-36.571-36.571-36.571s-36.571 16.374-36.571 36.571v0z","M731.429 621.714c0 20.198 16.374 36.571 36.571 36.571s36.571-16.374 36.571-36.571v0c0-20.198-16.374-36.571-36.571-36.571s-36.571 16.374-36.571 36.571v0z","M731.429 768c0 20.198 16.374 36.571 36.571 36.571s36.571-16.374 36.571-36.571v0c0-20.198-16.374-36.571-36.571-36.571s-36.571 16.374-36.571 36.571v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["variable-power-plant"],"colorPermutations":{"11":[]},"defaultCode":59806},"attrs":[],"properties":{"order":715,"id":323,"name":"variable-power-plant","prevSize":32,"code":59814},"setIdx":0,"setId":1,"iconIdx":179},{"icon":{"paths":["M161.346 164.707c-32.391 37.587-33.614 70.284-33.614 70.284s22.919-8.25 50.116-38.197c19.557-24.753 37.587-50.421 54.393-77.312-0.306 0.306-31.169 5.806-70.894 45.227z","M166.847 255.465l-0.306 0.611c-18.335 21.696-40.642 41.56-58.060 57.449-7.945 7.334-15.279 15.279-22.308 23.53 0 0-12.529-65.7 1.833-110.009 8.25-30.863 26.586-58.060 52.255-77.006-7.028 13.752-12.223 28.114-15.279 43.087-3.973 18.335-7.64 39.725-11.001 56.532-1.833 9.779-4.278 19.252-7.028 28.418 0 0 6.418-16.196 25.974-32.085 14.056-11.612 31.781-21.696 46.143-31.781 9.779-7.334 18.946-15.279 27.196-24.447 0 0.306-4.889 25.057-39.419 65.7z","M130.789 348.972c-14.668 26.891-31.169 52.865-50.116 77.006-7.028 11.917-11.612 24.753-13.752 38.197 0 0-2.139 2.139-3.361-1.833-2.751-8.862-7.64-27.502-13.752-48.894-7.64-26.28-16.501-58.671-15.585-85.562 1.833-39.115 15.89-77.006 40.031-107.87 0 0-2.445 11.917-8.862 43.698-2.139 33.003 6.112 53.171 7.334 72.729 0.916 16.196 0.306 32.697-2.139 48.894 6.418-15.89 15.585-30.558 26.586-43.698 12.834-14.056 26.586-27.502 40.642-40.031 11.917-10.695 18.641-17.723 18.641-17.723s-9.167 36.364-25.669 65.089z","M38.503 508.791c-35.142-44.921-35.752-86.479-38.503-104.814 0.611-18.029 3.055-35.752 7.64-53.171 4.278 14.974 9.473 29.336 15.585 43.698 9.167 21.39 22.002 41.56 30.253 67.227 7.028 19.252 12.834 39.115 16.807 59.283-0.611-21.086 3.055-42.17 10.695-62.033 13.752-35.752 41.864-74.561 41.864-74.561 2.751 14.362 2.445 29.030-0.916 43.087-3.055 22.919-8.556 45.531-16.501 67.227-2.751 7.945-13.14 29.030-21.39 51.032-1.222 7.945-0.611 15.89 2.139 23.53l-4.583 0.306c-0.306 0-10.085-17.723-43.087-60.811z","M34.836 589.464c4.583 11.001 11.307 20.78 19.557 29.336 18.641 19.557 43.087 33.614 58.671 47.059 17.419 14.668 27.808 24.141 27.808 24.141l4.278-0.306c0 0-7.64-14.668-8.25-39.115 2.751-33.614 6.112-80.063 2.139-115.509-4.278-38.197-17.113-58.977-17.113-58.977s-14.974 53.171-14.974 95.647c-0.611 42.17 7.945 56.838 12.223 70.59 1.222 3.361 1.833 7.028 2.139 10.389-10.085-20.474-22.002-40.031-35.752-58.366-15.89-21.39-37.892-38.809-52.559-61.116-9.167-13.14-16.807-27.502-23.224-42.17 0 0-3.667 46.143 25.057 98.398z","M206.879 784.119c-21.39-2.445-48.894-8.556-66.005-16.501-27.808-13.14-38.197-25.057-42.782-29.030-42.476-42.782-57.755-113.064-57.755-113.064s3.055 0.611 11.001 9.779c6.112 10.389 16.196 22.613 30.863 35.448 18.641 16.501 51.949 38.197 73.034 55.004 13.446 10.389 25.669 21.696 36.975 34.225 3.361 3.361 7.028 6.722 10.695 9.473-18.029-20.474-31.475-44.615-39.115-70.59-6.418-22.919-7.64-52.559-8.25-72.729-0.916-22.308-2.445-33.92-2.445-33.92s32.085 44.004 49.81 88.924c9.779 24.447 11.612 51.643 16.196 71.506 5.195 27.196 12.834 37.281 12.834 37.281l-6.722 0.306c0 0-4.278-2.751-18.335-6.112z","M317.804 845.847c-17.419 3.973-35.142 7.028-53.171 9.167-33.003 3.055-44.615-3.667-56.226-7.334-66.617-19.863-97.48-79.757-97.48-79.757s15.89 10.695 59.283 23.835c28.114 9.167 57.144 15.89 86.174 20.474 14.668 3.667 29.336 7.945 43.698 13.14 0 0-32.391-12.834-49.504-41.864-11.917-20.474-19.863-44.921-25.057-65.089-5.195-19.252-8.25-34.836-8.25-34.836 17.419 15.279 33.614 31.781 48.894 49.198 36.058 37.587 42.476 61.116 60.199 86.479 11.001 14.056 23.224 16.196 23.224 16.196l-1.833 3.055c0 0.306-12.834 3.667-29.947 7.334z","M452.565 871.516c-40.642 17.113-85.562 36.67-146.679 37.892-72.423 0.916-116.731-38.503-116.731-38.503s10.695 5.5 57.755 6.418c43.392 0 94.425-29.336 174.792-32.697 34.225-1.222 95.647 15.89 95.647 15.89s52.255-14.362 103.898-12.223c39.419 3.055 105.12 23.224 143.623 31.475 42.782 6.112 72.729-6.112 72.729-6.112s-42.476 37.281-114.593 38.503c-50.116-0.611-93.813-14.362-145.457-36.67-5.806-3.361-35.448-7.945-35.448-7.945 25.057 11.307 48.894 25.363 71.506 41.56 12.529 9.167 23.835 20.168 33.614 32.391-3.055 2.139-6.112 3.973-9.167 5.5-3.361 1.833-6.722 3.361-10.389 4.583-11.307-17.723-25.363-33.003-42.17-45.531-20.78-14.362-43.698-25.974-67.533-34.53 0 0-41.254 12.834-73.645 35.752-18.029 12.529-33.003 28.724-44.309 47.365-3.361-0.916-6.418-2.445-9.473-3.973-3.667-1.833-7.028-3.973-10.389-6.418 0 0 16.196-22.919 51.337-44.921 27.502-18.335 63.866-33.003 63.866-33.003s-14.362-3.361-42.782 5.195z","M698.863 821.706c14.362-18.029 22.613-44.004 52.255-76.396 28.114-32.085 57.144-58.671 57.144-58.671s-2.139 13.14-7.028 31.169c-5.5 20.474-14.362 47.059-27.808 68.756-19.557 33.614-47.671 41.56-47.671 41.56s14.974-4.889 40.031-11.001c25.974-6.112 62.338-13.752 90.146-22.002 20.168-6.112 39.725-14.362 58.366-24.447 0 0-28.418 60.505-107.565 84.034-34.53 8.25-69.062 2.139-98.092-5.5-18.946-3.973-32.391-6.112-32.391-6.112l-0.916-4.278c0 0 9.473 0.611 23.53-17.113z","M830.568 678.999c-18.946 43.087-20.78 68.756-27.808 91.064-2.139 8.25-5.806 15.89-10.389 22.919l3.973 1.222c7.334-3.361 14.974-5.5 22.919-7.028 27.196-5.5 62.338-7.64 100.231-38.503 51.032-44.921 65.394-120.094 65.394-120.094-3.055 2.445-6.112 5.195-8.25 8.25-9.167 13.752-20.168 25.974-32.697 36.67-21.696 18.641-58.366 43.392-84.34 64.478-9.779 7.945-19.557 19.252-25.974 25.363-3.361 3.667-7.334 7.028-11.612 9.779 0 0 31.781-34.836 39.725-73.339 6.722-26.586 6.112-45.837 7.334-66.005 1.528-21.696 2.751-37.892 2.751-37.892-15.585 26.28-29.336 54.393-41.254 83.118z","M879.156 692.445c6.112-12.223 9.473-25.669 9.167-39.419-0.306-27.196-7.945-63.256-4.583-95.647 5.195-54.088 18.946-79.145 18.946-79.145s14.974 49.198 14.974 95.341c0 54.393-14.974 82.812-14.974 82.812 8.862-16.807 18.641-33.003 29.336-48.588 15.279-22.002 36.67-41.254 52.559-62.644 11.612-15.89 21.696-33.003 30.253-51.032 0 0 4.889 54.699-32.085 110.926-14.668 22.308-45.227 43.392-67.839 61.116-11.001 8.556-21.696 18.029-31.475 27.808l-4.278-1.528z","M939.355 542.405c-7.945-24.753-26.28-57.144-32.697-88.619-9.779-47.365-3.973-66.311-3.973-66.311s28.114 38.809 42.476 77.923c10.695 29.030 9.167 61.116 9.167 61.116 3.361-17.419 7.64-34.53 13.446-51.032 11.612-34.53 31.475-76.7 41.254-102.063 2.751-7.028 4.278-14.668 4.583-22.002 0 0 1.528 6.112 4.278 16.807 3.973 13.14 5.806 26.586 6.112 40.337-0.611 18.029-3.973 35.752-9.779 52.559-8.556 27.196-33.92 58.977-51.949 84.034-11.917 16.501-18.946 28.114-18.946 28.114h-3.361c2.445-10.085 2.445-20.78-0.611-30.863z","M888.323 340.417c24.753 47.365 43.698 65.7 58.977 91.368 5.806 10.085 10.085 20.78 12.223 32.085l2.445-2.445c0 0 3.973-14.056 9.473-33.92 8.25-29.336 19.557-72.117 17.723-108.787-1.222-17.419-5.5-34.53-12.834-50.421-11.612-30.253-26.28-45.227-26.28-45.227 3.667 17.113 6.112 34.53 7.64 51.949-1.528 25.363-5.806 46.449-7.028 68.756-0.306 14.056 0.611 28.418 3.055 42.476-6.418-15.585-15.279-30.253-26.586-42.782-11.612-13.14-25.974-25.363-37.892-35.752s-21.086-19.557-21.086-19.557c4.889 18.029 11.612 35.752 20.168 52.255z","M861.127 260.66c17.419 20.78 36.67 39.725 57.449 56.838 7.334 6.722 13.752 14.056 19.252 22.002h1.528c0 0 0.611-10.389 1.833-25.057 2.139-22.919 5.806-50.421-3.667-85.257-5.806-20.168-15.89-38.809-29.336-55.004-6.418-7.64-14.056-14.668-22.308-20.168 0 0 1.528 3.055 5.195 13.14 4.583 12.223 8.556 24.753 11.612 37.892 3.361 15.279 5.806 31.169 8.556 45.227 3.361 17.723 7.028 31.475 7.028 31.475s-4.278-12.223-22.002-28.114c-14.362-12.834-36.975-25.974-52.865-37.892-8.862-6.418-16.807-14.056-24.141-22.308-0.306 0 2.445 22.613 41.864 67.227z","M861.739 214.211c-28.724-30.558-40.031-51.949-53.782-71.812-8.25-11.917-14.668-19.863-14.668-19.863s42.17 13.446 65.7 39.419c42.476 47.365 39.725 76.7 39.725 76.7s-23.835-10.085-36.975-24.447z","M543.323 85.562c-57.144 36.975-117.037 163.18-148.818 313.525-41.254 195.266-22.002 359.058 44.004 372.808s150.041-128.344 191.599-323.916c31.781-150.346 28.114-289.691-9.167-346.529-9.779-14.668-21.39-23.53-34.836-26.28v0c-13.752-2.751-27.808 0.611-42.782 10.389zM440.953 760.895c-57.755-11.917-73.951-176.626-35.142-359.363 15.585-73.339 37.892-141.79 64.478-197.406 25.363-53.477 53.782-91.98 79.451-108.787 12.223-7.945 23.53-10.695 33.92-8.556v0c10.389 2.139 19.557 9.473 27.502 21.39 16.807 25.669 26.891 72.117 28.724 131.4 1.833 61.727-5.5 133.234-21.086 206.573-38.809 182.432-120.094 326.667-177.848 314.748v0z","M553.407 74.255c12.834-3.973 26.586-3.973 39.115 0 12.834 4.278 25.057 14.056 34.53 34.225 30.863 64.172 22.919 164.097 22.919 164.097h-9.779c0 0 0.306-100.842-22.919-147.902-21.39-49.198-57.144-32.697-57.144-32.697l-6.722-17.723z","M567.158 86.173c0 9.282-7.525 16.807-16.807 16.807s-16.807-7.525-16.807-16.807c0-9.282 7.525-16.807 16.807-16.807s16.807 7.525 16.807 16.807z","M397.255 223.378v0c-9.473 4.278-16.501 12.834-21.39 25.363-17.419 47.059 2.751 148.206 50.726 251.799 29.336 63.256 64.783 118.871 100.231 157.069 36.67 39.725 69.672 55.616 92.591 45.227s31.781-45.837 25.363-99.314c-6.112-51.643-25.669-114.593-55.004-177.848s-64.783-118.871-100.231-157.069c-36.364-39.725-69.367-55.616-92.286-45.227zM579.687 430.563c63.56 137.205 69.672 246.298 35.142 261.883s-113.676-59.589-177.237-196.794c-35.448-76.7-55.922-153.708-55.922-205.045-0.306-12.834 1.528-25.669 5.5-38.197 3.667-9.473 8.556-15.89 15.279-18.946 34.225-15.585 113.676 59.893 177.237 197.1v0z","M398.783 219.406c12.834-4.889 30.863 1.222 30.863 1.222 11.917 4.889 23.224 11.307 33.003 19.863 32.391 26.891 58.060 67.227 58.060 67.227l-8.862 5.5c0 0-23.835-36.975-51.032-59.283-10.085-8.25-21.39-14.362-33.92-18.335 0 0-12.223-3.667-21.696 0-7.334 2.751-12.834 13.446-12.834 13.446-7.334 14.974-6.722 40.642-6.722 40.642l-17.419 1.222c0 0-0.306-32.391 10.695-51.032 0.306-0.306 7.334-15.89 19.863-20.474z","M392.977 299.774c0 8.101-6.567 14.668-14.668 14.668s-14.668-6.567-14.668-14.668c0-8.101 6.567-14.668 14.668-14.668s14.668 6.567 14.668 14.668z","M495.041 368.225c-73.339 11.001-140.872 30.558-190.376 55.004-51.337 25.363-77.312 53.782-73.339 79.757v0c1.528 10.695 8.25 20.474 19.557 28.724 43.087 31.475 152.79 40.642 272.578 22.308 73.339-11.001 140.872-30.558 190.376-55.004 51.337-25.363 77.312-53.782 73.339-79.757s-37.281-45.227-94.119-54.393c-54.088-8.862-124.677-7.64-198.016 3.361zM242.325 498.096c0-39.419 99.314-95.035 254.549-118.566 159.513-24.141 273.19 2.139 279.301 41.56s-94.731 97.786-254.243 121.927c-115.509 17.419-223.991 9.167-264.327-20.474-8.862-6.418-13.752-13.446-14.974-21.086-0.306-0.916-0.306-2.139-0.306-3.361v0z","M406.728 550.045c0 0-85.562 0.611-128.955-18.029-17.723-7.64-29.947-16.807-33.308-27.196s2.445-23.224 2.445-23.224l-14.668 9.473c7.64 24.753 25.669 44.615 49.504 54.699 47.059 19.557 125.9 18.641 125.9 18.641l-0.916-14.362z","M428.73 556.767c0 7.594-6.156 13.752-13.752 13.752s-13.752-6.156-13.752-13.752c0-7.594 6.156-13.752 13.752-13.752s13.752 6.156 13.752 13.752z","M329.416 356.918v0c-10.085 17.113 0 44.309 28.724 76.396 27.502 30.863 69.062 63.256 117.037 91.368s96.869 48.588 137.205 57.449c42.17 9.473 71.2 5.195 81.285-12.223s0-44.309-28.724-76.396c-27.502-30.863-69.062-63.256-117.037-91.368s-96.869-48.588-137.205-57.449c-42.17-9.473-70.894-5.195-81.285 12.223zM543.323 410.395c104.203 60.811 157.679 129.261 142.401 154.93s-101.453 12.223-205.35-48.894c-92.286-54.088-145.151-113.982-145.151-144.539 0-3.667 0.916-7.028 2.445-10.085 15.279-25.669 101.453-12.223 205.656 48.588v0z","M567.158 559.823c0 0 50.726 15.279 84.34 15.279 10.695 0.306 20.78-3.361 28.724-10.389 1.222-1.222 1.833-3.055 1.528-4.583l17.723 0.611c0 0-3.055 26.586-41.254 26.586-30.253 1.222-94.119-21.39-94.119-21.39l3.055-6.112z","M705.586 552.795c0 8.101-6.704 14.668-14.974 14.668s-14.974-6.567-14.974-14.668c0-8.101 6.704-14.668 14.974-14.668s14.974 6.567 14.974 14.668z","M573.575 508.18c0 10.125-8.346 18.335-18.641 18.335s-18.641-8.208-18.641-18.335c0-10.125 8.346-18.335 18.641-18.335s18.641 8.208 18.641 18.335z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["IAEA"],"colorPermutations":{"11":[]},"defaultCode":59772},"attrs":[],"properties":{"order":716,"id":324,"name":"iaea","prevSize":32,"code":59815},"setIdx":0,"setId":1,"iconIdx":180},{"icon":{"paths":["M130.282 76.985c-26.155 30.35-27.142 56.752-27.142 56.752s18.506-6.662 40.467-30.843c15.792-19.987 30.35-40.713 43.921-62.427-0.247 0.247-25.168 4.688-57.245 36.519z","M134.724 150.269l-0.247 0.493c-14.805 17.519-32.817 33.558-46.882 46.388-6.415 5.922-12.337 12.337-18.013 19 0 0-10.117-53.051 1.48-88.829 6.662-24.921 21.467-46.882 42.194-62.18-5.675 11.104-9.87 22.701-12.337 34.791-3.208 14.805-6.169 32.077-8.883 45.648-1.48 7.896-3.454 15.545-5.675 22.947 0 0 5.182-13.078 20.973-25.908 11.35-9.376 25.662-17.519 37.259-25.662 7.896-5.922 15.298-12.337 21.96-19.74-0 0.247-3.948 20.233-31.83 53.051z","M105.608 225.773c-11.844 21.714-25.168 42.687-40.467 62.18-5.675 9.623-9.376 19.987-11.104 30.843 0 0-1.727 1.727-2.714-1.48-2.221-7.156-6.169-22.207-11.104-39.48-6.169-21.22-13.324-47.375-12.584-69.089 1.48-31.584 12.831-62.18 32.324-87.102 0 0-1.974 9.623-7.156 35.285-1.727 26.649 4.935 42.934 5.922 58.726 0.74 13.078 0.247 26.402-1.727 39.48 5.182-12.831 12.584-24.675 21.467-35.285 10.363-11.35 21.467-22.207 32.817-32.324 9.623-8.636 15.052-14.311 15.052-14.311s-7.402 29.363-20.727 52.557z","M31.090 354.822c-28.376-36.272-28.869-69.829-31.090-84.634 0.493-14.558 2.467-28.869 6.169-42.934 3.454 12.091 7.649 23.688 12.584 35.285 7.402 17.272 17.766 33.558 24.428 54.284 5.675 15.545 10.363 31.584 13.571 47.869-0.493-17.026 2.467-34.051 8.636-50.090 11.104-28.869 33.804-60.206 33.804-60.206 2.221 11.597 1.974 23.441-0.74 34.791-2.467 18.506-6.909 36.765-13.324 54.284-2.221 6.415-10.61 23.441-17.272 41.207-0.987 6.415-0.493 12.831 1.727 19l-3.701 0.247c-0.247 0-8.143-14.311-34.791-49.103z","M28.129 419.963c3.701 8.883 9.13 16.779 15.792 23.688 15.052 15.792 34.791 27.142 47.375 37.999 14.065 11.844 22.454 19.493 22.454 19.493l3.454-0.247c0 0-6.169-11.844-6.662-31.584 2.221-27.142 4.935-64.648 1.727-93.27-3.454-30.843-13.818-47.622-13.818-47.622s-12.091 42.934-12.091 77.232c-0.493 34.051 6.415 45.895 9.87 56.999 0.987 2.714 1.48 5.675 1.727 8.389-8.143-16.532-17.766-32.324-28.869-47.129-12.831-17.272-30.597-31.337-42.44-49.349-7.402-10.61-13.571-22.207-18.753-34.051-0 0-2.961 37.259 20.233 79.453z","M167.048 577.141c-17.272-1.974-39.48-6.909-53.297-13.324-22.454-10.61-30.843-20.233-34.545-23.441-34.298-34.545-46.635-91.296-46.635-91.296s2.467 0.493 8.883 7.896c4.935 8.389 13.078 18.259 24.921 28.623 15.052 13.324 41.947 30.843 58.973 44.414 10.857 8.389 20.727 17.519 29.856 27.636 2.714 2.714 5.675 5.428 8.636 7.649-14.558-16.532-25.415-36.025-31.584-56.999-5.182-18.506-6.169-42.44-6.662-58.726-0.74-18.013-1.974-27.389-1.974-27.389s25.908 35.532 40.22 71.803c7.896 19.74 9.376 41.7 13.078 57.739 4.195 21.96 10.363 30.103 10.363 30.103l-5.428 0.247c0 0-3.454-2.221-14.805-4.935z","M256.617 626.984c-14.065 3.208-28.376 5.675-42.934 7.402-26.649 2.467-36.025-2.961-45.401-5.922-53.791-16.039-78.712-64.401-78.712-64.401s12.831 8.636 47.869 19.246c22.701 7.402 46.142 12.831 69.583 16.532 11.844 2.961 23.688 6.415 35.285 10.61 0 0-26.155-10.363-39.973-33.804-9.623-16.532-16.039-36.272-20.233-52.557-4.195-15.545-6.662-28.129-6.662-28.129 14.065 12.337 27.142 25.662 39.48 39.726 29.116 30.35 34.298 49.349 48.609 69.829 8.883 11.35 18.753 13.078 18.753 13.078l-1.48 2.467c0 0.247-10.363 2.961-24.181 5.922z","M365.432 647.711c-32.817 13.818-69.089 29.61-118.439 30.597-58.479 0.74-94.257-31.090-94.257-31.090s8.636 4.441 46.635 5.182c35.038 0 76.245-23.688 141.139-26.402 27.636-0.987 77.232 12.831 77.232 12.831s42.194-11.597 83.894-9.87c31.83 2.467 84.881 18.753 115.971 25.415 34.545 4.935 58.726-4.935 58.726-4.935s-34.298 30.103-92.53 31.090c-40.467-0.493-75.751-11.597-117.452-29.61-4.688-2.714-28.623-6.415-28.623-6.415 20.233 9.13 39.48 20.48 57.739 33.558 10.117 7.402 19.246 16.285 27.142 26.155-2.467 1.727-4.935 3.208-7.402 4.441-2.714 1.48-5.428 2.714-8.389 3.701-9.13-14.311-20.48-26.649-34.051-36.765-16.779-11.597-35.285-20.973-54.531-27.882 0 0-33.311 10.363-59.466 28.869-14.558 10.117-26.649 23.194-35.778 38.246-2.714-0.74-5.182-1.974-7.649-3.208-2.961-1.48-5.675-3.208-8.389-5.182 0 0 13.078-18.506 41.453-36.272 22.207-14.805 51.57-26.649 51.57-26.649s-11.597-2.714-34.545 4.195z","M564.31 607.491c11.597-14.558 18.259-35.532 42.194-61.687 22.701-25.908 46.142-47.375 46.142-47.375s-1.727 10.61-5.675 25.168c-4.441 16.532-11.597 37.999-22.454 55.518-15.792 27.142-38.493 33.558-38.493 33.558s12.091-3.948 32.324-8.883c20.973-4.935 50.336-11.104 72.79-17.766 16.285-4.935 32.077-11.597 47.129-19.74 0 0-22.947 48.856-86.855 67.855-27.882 6.662-55.765 1.727-79.206-4.441-15.298-3.208-26.155-4.935-26.155-4.935l-0.74-3.454c-0 0 7.649 0.493 19-13.818z","M670.658 492.26c-15.298 34.791-16.779 55.518-22.454 73.531-1.727 6.662-4.688 12.831-8.389 18.506l3.208 0.987c5.922-2.714 12.091-4.441 18.506-5.675 21.96-4.441 50.336-6.169 80.933-31.090 41.207-36.272 52.804-96.972 52.804-96.972-2.467 1.974-4.935 4.195-6.662 6.662-7.402 11.104-16.285 20.973-26.402 29.61-17.519 15.052-47.129 35.038-68.102 52.064-7.896 6.415-15.792 15.545-20.973 20.48-2.714 2.961-5.922 5.675-9.376 7.896 0 0 25.662-28.129 32.077-59.219 5.428-21.467 4.935-37.012 5.922-53.297 1.234-17.519 2.221-30.597 2.221-30.597-12.584 21.22-23.688 43.921-33.311 67.115z","M709.891 503.117c4.935-9.87 7.649-20.727 7.402-31.83-0.247-21.96-6.415-51.077-3.701-77.232 4.195-43.674 15.298-63.907 15.298-63.907s12.091 39.726 12.091 76.985c0 43.921-12.091 66.868-12.091 66.868 7.156-13.571 15.052-26.649 23.688-39.233 12.337-17.766 29.61-33.311 42.44-50.583 9.376-12.831 17.519-26.649 24.428-41.207 0 0 3.948 44.168-25.908 89.569-11.844 18.013-36.519 35.038-54.778 49.349-8.883 6.909-17.519 14.558-25.415 22.454l-3.454-1.234z","M758.5 381.964c-6.415-19.987-21.22-46.142-26.402-71.557-7.896-38.246-3.208-53.544-3.208-53.544s22.701 31.337 34.298 62.92c8.636 23.441 7.402 49.349 7.402 49.349 2.714-14.065 6.169-27.882 10.857-41.207 9.376-27.882 25.415-61.933 33.311-82.413 2.221-5.675 3.454-11.844 3.701-17.766 0 0 1.234 4.935 3.454 13.571 3.208 10.61 4.688 21.467 4.935 32.571-0.493 14.558-3.208 28.869-7.896 42.44-6.909 21.96-27.389 47.622-41.947 67.855-9.623 13.324-15.298 22.701-15.298 22.701h-2.714c1.974-8.143 1.974-16.779-0.493-24.921z","M717.293 218.865c19.987 38.246 35.285 53.051 47.622 73.777 4.688 8.143 8.143 16.779 9.87 25.908l1.974-1.974c0 0 3.208-11.35 7.649-27.389 6.662-23.688 15.792-58.232 14.311-87.842-0.987-14.065-4.441-27.882-10.363-40.713-9.376-24.428-21.22-36.519-21.22-36.519 2.961 13.818 4.935 27.882 6.169 41.947-1.234 20.48-4.688 37.506-5.675 55.518-0.247 11.35 0.493 22.947 2.467 34.298-5.182-12.584-12.337-24.428-21.467-34.545-9.376-10.61-20.973-20.48-30.597-28.869s-17.026-15.792-17.026-15.792c3.948 14.558 9.376 28.869 16.285 42.194z","M695.333 154.464c14.065 16.779 29.61 32.077 46.388 45.895 5.922 5.428 11.104 11.35 15.545 17.766h1.234c0 0 0.493-8.389 1.48-20.233 1.727-18.506 4.688-40.713-2.961-68.842-4.688-16.285-12.831-31.337-23.688-44.414-5.182-6.169-11.35-11.844-18.013-16.285 0 0 1.234 2.467 4.195 10.61 3.701 9.87 6.909 19.987 9.376 30.597 2.714 12.337 4.688 25.168 6.909 36.519 2.714 14.311 5.675 25.415 5.675 25.415s-3.454-9.87-17.766-22.701c-11.597-10.363-29.856-20.973-42.687-30.597-7.156-5.182-13.571-11.35-19.493-18.013-0.247 0 1.974 18.259 33.804 54.284z","M695.827 116.958c-23.194-24.675-32.324-41.947-43.427-57.986-6.662-9.623-11.844-16.039-11.844-16.039s34.051 10.857 53.051 31.83c34.298 38.246 32.077 61.933 32.077 61.933s-19.246-8.143-29.856-19.74z","M438.716 13.078c-46.142 29.856-94.504 131.763-120.166 253.162-33.311 157.671-17.766 289.928 35.532 301.031s121.153-103.634 154.71-261.552c25.662-121.4 22.701-233.916-7.402-279.811-7.896-11.844-17.272-19-28.129-21.22v0c-11.104-2.221-22.454 0.493-34.545 8.389zM356.056 558.388c-46.635-9.623-59.713-142.62-28.376-290.174 12.584-59.219 30.597-114.491 52.064-159.399 20.48-43.181 43.427-74.271 64.154-87.842 9.87-6.415 19-8.636 27.389-6.909v0c8.389 1.727 15.792 7.649 22.207 17.272 13.571 20.727 21.714 58.232 23.194 106.101 1.48 49.843-4.441 107.582-17.026 166.801-31.337 147.308-96.972 263.773-143.607 254.149v0z","M446.859 3.948c10.363-3.208 21.467-3.208 31.584 0 10.363 3.454 20.233 11.35 27.882 27.636 24.921 51.817 18.506 132.503 18.506 132.503h-7.896c0 0 0.247-81.427-18.506-119.426-17.272-39.726-46.142-26.402-46.142-26.402l-5.428-14.311z","M457.962 13.571c0 7.495-6.076 13.571-13.571 13.571s-13.571-6.076-13.571-13.571c0-7.495 6.076-13.571 13.571-13.571s13.571 6.076 13.571 13.571z","M320.771 124.36v0c-7.649 3.454-13.324 10.363-17.272 20.48-14.065 37.999 2.221 119.672 40.96 203.32 23.688 51.077 52.31 95.985 80.933 126.828 29.61 32.077 56.258 44.908 74.764 36.519s25.662-37.012 20.48-80.193c-4.935-41.7-20.727-92.53-44.414-143.607s-52.31-95.985-80.933-126.828c-29.363-32.077-56.012-44.908-74.518-36.519zM468.079 291.655c51.323 110.789 56.258 198.878 28.376 211.462s-91.79-48.116-143.113-158.905c-28.623-61.933-45.155-124.114-45.155-165.567-0.247-10.363 1.234-20.727 4.441-30.843 2.961-7.649 6.909-12.831 12.337-15.298 27.636-12.584 91.79 48.362 143.113 159.152v0z","M322.005 121.153c10.363-3.948 24.921 0.987 24.921 0.987 9.623 3.948 18.753 9.13 26.649 16.039 26.155 21.714 46.882 54.284 46.882 54.284l-7.156 4.441c0 0-19.246-29.856-41.207-47.869-8.143-6.662-17.272-11.597-27.389-14.805 0 0-9.87-2.961-17.519 0-5.922 2.221-10.363 10.857-10.363 10.857-5.922 12.091-5.428 32.817-5.428 32.817l-14.065 0.987c0 0-0.247-26.155 8.636-41.207 0.247-0.247 5.922-12.831 16.039-16.532z","M317.317 186.047c0 6.541-5.303 11.844-11.844 11.844s-11.844-5.303-11.844-11.844c0-6.541 5.303-11.844 11.844-11.844s11.844 5.303 11.844 11.844z","M399.73 241.319c-59.219 8.883-113.75 24.675-153.723 44.414-41.453 20.48-62.427 43.427-59.219 64.401v0c1.234 8.636 6.662 16.532 15.792 23.194 34.791 25.415 123.373 32.817 220.098 18.013 59.219-8.883 113.75-24.675 153.723-44.414 41.453-20.48 62.427-43.427 59.219-64.401s-30.103-36.519-75.998-43.921c-43.674-7.156-100.673-6.169-159.892 2.714zM195.67 346.186c0-31.83 80.193-76.738 205.54-95.738 128.802-19.493 220.592 1.727 225.527 33.558s-76.492 78.959-205.293 98.452c-93.27 14.065-180.866 7.402-213.436-16.532-7.156-5.182-11.104-10.857-12.091-17.026-0.247-0.74-0.247-1.727-0.247-2.714v0z","M328.42 388.133c0 0-69.089 0.493-104.127-14.558-14.311-6.169-24.181-13.571-26.895-21.96s1.974-18.753 1.974-18.753l-11.844 7.649c6.169 19.987 20.727 36.025 39.973 44.168 37.999 15.792 101.66 15.052 101.66 15.052l-0.74-11.597z","M346.186 393.561c0 6.132-4.971 11.104-11.104 11.104s-11.104-4.971-11.104-11.104c0-6.132 4.971-11.104 11.104-11.104s11.104 4.971 11.104 11.104z","M265.993 232.189v0c-8.143 13.818 0 35.778 23.194 61.687 22.207 24.921 55.765 51.077 94.504 73.777s78.219 39.233 110.789 46.388c34.051 7.649 57.492 4.195 65.635-9.87s0-35.778-23.194-61.687c-22.207-24.921-55.765-51.077-94.504-73.777s-78.219-39.233-110.789-46.388c-34.051-7.649-57.245-4.195-65.635 9.87zM438.716 275.37c84.141 49.103 127.321 104.374 114.984 125.101s-81.92 9.87-165.814-39.48c-74.518-43.674-117.205-92.037-117.205-116.711 0-2.961 0.74-5.675 1.974-8.143 12.337-20.727 81.92-9.87 166.061 39.233v0z","M457.962 396.029c0 0 40.96 12.337 68.102 12.337 8.636 0.247 16.779-2.714 23.194-8.389 0.987-0.987 1.48-2.467 1.234-3.701l14.311 0.493c0 0-2.467 21.467-33.311 21.467-24.428 0.987-75.998-17.272-75.998-17.272l2.467-4.935z","M569.739 390.354c0 6.541-5.413 11.844-12.091 11.844s-12.091-5.303-12.091-11.844c0-6.541 5.413-11.844 12.091-11.844s12.091 5.303 12.091 11.844z","M463.144 354.329c0 8.176-6.739 14.805-15.052 14.805s-15.052-6.628-15.052-14.805c0-8.176 6.739-14.805 15.052-14.805s15.052 6.628 15.052 14.805z","M359.017 1022.766l-76.492-192.463h-39.48l-76.492 192.463h41.947l15.545-41.947h77.232l15.545 41.947h42.194zM287.46 946.275h-50.336l25.662-69.089 25.662 69.089h-0.987z","M561.349 1022.766v-32.077h-108.569v-51.817h96.231v-32.077h-96.231v-44.414h103.634v-32.077h-143.113v192.463z","M798.227 1024l-76.492-192.463h-39.48l-76.492 192.463h41.947l15.545-41.947h77.232l15.545 41.947h42.194zM726.67 947.508h-50.336l25.662-69.089 25.662 69.089h-0.987z","M77.725 830.304l2.467 192.463h37.012v-192.463z"],"attrs":[],"width":827,"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["IAEA"],"colorPermutations":{"11":[]},"defaultCode":59773},"attrs":[],"properties":{"order":717,"id":325,"prevSize":32,"name":"iaea1","code":59816},"setIdx":0,"setId":1,"iconIdx":181},{"icon":{"paths":["M512 554.667c-23.564 0-42.667-19.103-42.667-42.667v0c0.073-5.873 1.322-11.435 3.52-16.489l-0.107 0.275c2.152-5.464 5.187-10.143 8.974-14.095l-0.014 0.015 6.4-5.12 7.68-3.84 7.68-3.413c2.625-0.574 5.639-0.903 8.731-0.903 11.745 0 22.382 4.746 30.097 12.425l-0.002-0.002c3.646 4.001 6.662 8.658 8.838 13.76l0.122 0.32c2.159 4.933 3.415 10.683 3.415 16.725 0 0.12 0 0.24-0.001 0.36v-0.018c0 23.564-19.103 42.667-42.667 42.667v0z","M704 887.040c-1.668 0.308-3.587 0.484-5.547 0.484s-3.879-0.176-5.742-0.514l0.195 0.029c-11.146-2.961-20.293-10.023-25.919-19.432l-0.108-0.195-192-332.373c-3.58-6.123-5.694-13.481-5.694-21.333 0-23.645 19.168-42.814 42.814-42.814 15.793 0 29.589 8.552 37.010 21.277l0.11 0.203 170.667 293.12c70.901-55.228 119.299-136.467 130.817-229.149l0.17-1.678h-121.6c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667v0h166.827c23.564 0 42.667 19.103 42.667 42.667v0c-0.166 156.926-85.024 293.995-211.32 367.977l-2.013 1.090c-6.1 3.68-13.45 5.889-21.31 5.973h-0.024z","M320 887.040c-7.883-0.084-15.233-2.294-21.526-6.081l0.192 0.107c-128.31-75.073-213.167-212.141-213.333-369.043v-0.023c0-23.564 19.103-42.667 42.667-42.667v0h384c0.050 0 0.11 0 0.169 0 15.71 0 29.436 8.49 36.842 21.132l0.109 0.201c3.594 6.12 5.716 13.479 5.716 21.333s-2.123 15.214-5.825 21.535l0.109-0.201-192 332.373c-5.734 9.604-14.881 16.665-25.729 19.559l-0.298 0.068c-3.082 1.087-6.636 1.716-10.337 1.716-0.266 0-0.531-0.003-0.795-0.010l0.039 0.001zM173.227 554.667c12.59 93.932 61.493 174.526 131.875 228.517l0.818 0.603 132.267-229.12z","M512 554.667c-0.050 0-0.11 0-0.169 0-15.71 0-29.436-8.49-36.842-21.132l-0.109-0.201-191.573-332.373c-3.565-6.1-5.67-13.431-5.67-21.253 0-15.586 8.357-29.22 20.835-36.666l0.195-0.108c61.276-35.617 134.85-56.64 213.333-56.64s152.057 21.022 215.397 57.744l-2.063-1.104c12.673 7.554 21.030 21.188 21.030 36.774 0 7.822-2.105 15.153-5.779 21.456l0.109-0.203-191.573 332.373c-7.514 12.844-21.241 21.334-36.951 21.334-0.060 0-0.119 0-0.179 0h0.009zM379.733 197.547l132.267 229.12 132.267-229.12c-39.048-16.862-84.512-26.668-132.267-26.668s-93.219 9.807-134.489 27.517l2.222-0.848z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["atomic-nuclear-radiation"],"defaultCode":59657,"colorPermutations":{"11":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":718,"id":326,"prevSize":32,"name":"nuclear-radiation","code":59817},"setIdx":0,"setId":1,"iconIdx":182},{"icon":{"paths":["M877.254 786.746l-530.744-530.746h229.49c35.346 0 64-28.654 64-64s-28.654-64-64-64h-384c-25.886 0-49.222 15.592-59.128 39.508-3.282 7.924-4.84 16.242-4.838 24.492h-0.034v384c0 35.346 28.654 64 64 64s64-28.654 64-64v-229.49l530.746 530.744c12.496 12.498 28.876 18.746 45.254 18.746s32.758-6.248 45.254-18.746c24.994-24.992 24.994-65.516 0-90.508z"],"tags":["arrow-up-left","up-left","arrow-top-left"],"defaultCode":59961,"grid":16,"attrs":[],"colorPermutations":{"11":[]}},"attrs":[],"properties":{"ligatures":"arrow-up-left2, up-left2","name":"arrow-up-left-2","order":719,"id":327,"prevSize":32,"code":59961},"setIdx":0,"setId":1,"iconIdx":183},{"icon":{"paths":["M877.254 402.746l-320-320c-24.992-24.994-65.514-24.994-90.508 0l-320 320c-24.994 24.994-24.994 65.516 0 90.51 24.994 24.996 65.516 24.996 90.51 0l210.744-210.746v613.49c0 35.346 28.654 64 64 64s64-28.654 64-64v-613.49l210.746 210.746c12.496 12.496 28.876 18.744 45.254 18.744s32.758-6.248 45.254-18.746c24.994-24.994 24.994-65.514 0-90.508z"],"tags":["arrow-up","up","upload","top"],"defaultCode":59962,"grid":16,"attrs":[],"colorPermutations":{"11":[]}},"attrs":[],"properties":{"ligatures":"arrow-up2, up2","name":"arrow-up-2","order":720,"id":328,"prevSize":32,"code":59962},"setIdx":0,"setId":1,"iconIdx":184},{"icon":{"paths":["M237.254 877.254l530.746-530.744v229.49c0 35.346 28.654 64 64 64s64-28.654 64-64v-384c0-25.884-15.594-49.222-39.508-59.126-7.924-3.284-16.242-4.84-24.492-4.838v-0.036h-384c-35.346 0-64 28.654-64 64 0 35.348 28.654 64 64 64h229.49l-530.744 530.746c-12.498 12.496-18.746 28.876-18.746 45.254s6.248 32.758 18.746 45.254c24.992 24.994 65.516 24.994 90.508 0z"],"tags":["arrow-up-right","up-right","arrow-top-right"],"defaultCode":59963,"grid":16,"attrs":[],"colorPermutations":{"11":[]}},"attrs":[],"properties":{"ligatures":"arrow-up-right2, up-right2","name":"arrow-up-right-2","order":721,"id":329,"prevSize":32,"code":59963},"setIdx":0,"setId":1,"iconIdx":185},{"icon":{"paths":["M146.746 237.254l530.742 530.746h-229.488c-35.346 0-64 28.654-64 64s28.654 64 64 64h384c25.884 0 49.222-15.594 59.126-39.508 3.284-7.924 4.84-16.242 4.838-24.492h0.036v-384c0-35.346-28.654-64-64-64-35.348 0-64 28.654-64 64v229.49l-530.746-530.744c-12.496-12.498-28.874-18.746-45.254-18.746s-32.758 6.248-45.254 18.746c-24.994 24.992-24.994 65.516 0 90.508z"],"tags":["arrow-down-right","down-right","arrow-bottom-right"],"defaultCode":59965,"grid":16,"attrs":[],"colorPermutations":{"11":[]}},"attrs":[],"properties":{"ligatures":"arrow-down-right2, down-right2","name":"arrow-down-right-2","order":722,"id":330,"prevSize":32,"code":59965},"setIdx":0,"setId":1,"iconIdx":186},{"icon":{"paths":["M877.254 621.254l-320 320c-24.992 24.994-65.514 24.994-90.508 0l-320-320c-24.994-24.994-24.994-65.516 0-90.51 24.994-24.996 65.516-24.996 90.51 0l210.744 210.746v-613.49c0-35.346 28.654-64 64-64s64 28.654 64 64v613.49l210.746-210.746c12.496-12.496 28.876-18.744 45.254-18.744s32.758 6.248 45.254 18.746c24.994 24.994 24.994 65.514 0 90.508z"],"tags":["arrow-down","down","download","bottom"],"defaultCode":59966,"grid":16,"attrs":[],"colorPermutations":{"11":[]}},"attrs":[],"properties":{"ligatures":"arrow-down2, down2","name":"arrow-down-2","order":723,"id":331,"prevSize":32,"code":59966},"setIdx":0,"setId":1,"iconIdx":187},{"icon":{"paths":["M786.744 146.744l-530.744 530.744v-229.49c0-35.346-28.654-64-64-64s-64 28.654-64 64v384.002c0 25.886 15.592 49.222 39.508 59.128 7.924 3.282 16.242 4.84 24.492 4.836v0.036l384-0.002c35.344 0 64-28.654 64-63.998 0-35.348-28.656-64-64-64h-229.49l530.744-530.746c12.496-12.496 18.746-28.876 18.746-45.256 0-16.376-6.25-32.758-18.746-45.254-24.992-24.992-65.518-24.992-90.51 0v0z"],"tags":["arrow-down-left","down-left","arrow-bottom-left"],"defaultCode":59967,"grid":16,"attrs":[],"colorPermutations":{"11":[]}},"attrs":[],"properties":{"ligatures":"arrow-down-left2, down-left2","name":"arrow-down-left-2","order":752,"id":332,"prevSize":32,"code":59967},"setIdx":0,"setId":1,"iconIdx":188}],"height":1024,"metadata":{"name":"NukeHub","url":"https://nukehub.org","license":"BSD"},"preferences":{"showGlyphs":true,"showQuickUse":true,"showQuickUse2":true,"showSVGs":true,"fontPref":{"prefix":"nuke-","metadata":{"fontFamily":"NukeHub","majorVersion":1,"minorVersion":0,"fontURL":"https://nukehub.org","description":"NukeHub font","copyright":"NukeHub","license":"BSD"},"metrics":{"emSize":1024,"baseline":6.25,"whitespace":50},"embed":false,"showSelector":true,"selector":"i","classSelector":".icon","showMetrics":false,"showMetadata":true,"showVersion":true,"includeMetadata":false},"imagePref":{"prefix":"icon-","png":true,"useClassSelector":true,"color":0,"bgColor":16777215,"classSelector":".icon","name":"icomoon"},"historySize":50,"showCodes":true,"gridSize":16,"showGrid":true,"showLiga":true}}
\ No newline at end of file
diff --git a/css/style.css b/css/style.css
index 767fb86..2d5f42f 100644
--- a/css/style.css
+++ b/css/style.css
@@ -1,2099 +1,610 @@
-/*TODO GOOGLE FONTS */
-@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap");
-/*TODO VARIABLES CSS */
-:root {
- --header-height: 3rem;
-
- /*===== Colors =====*/
-
- --hue-color: 5;
-
- --color: hsl(var(--hue-color), 69%, 61%);
- --color-2: hsl(var(--hue-color), 69%, 61%);
- --color-svg: invert(67%) sepia(60%) saturate(4648%) hue-rotate(324deg)
- brightness(93%) contrast(88%);
- --color-alt: hsl(var(--hue-color), 57%, 53%);
- --color-alt-svg: invert(35%) sepia(34%) saturate(1189%) hue-rotate(318deg)
- brightness(108%) contrast(90%);
- --color-lighter: hsl(var(--hue-color), 92%, 85%);
- --title-color: hsl(var(--hue-color), 8%, 15%);
- --text-color: hsl(var(--hue-color), 8%, 45%);
- --text-color-light: hsl(var(--hue-color), 8%, 65%);
- --input-color: hsl(var(--hue-color), 70%, 96%);
- --body-color: hsl(var(--hue-color), 60%, 99%);
- --container-color: #fff;
- --svg-fill: #000;
- --scroll-bar: hsl(var(--hue-color), 12%, 90%);
- --scroll-thumb: hsl(var(--hue-color), 12%, 80%);
- --skill-color: #000;
-
- /*===== Font and typography =====*/
- --body-font: "Ubuntu", sans-serif;
-
- /* 1rem = 16px */
- --big-font: 2rem;
- --h1-font: 1.5rem;
- --h2-font: 1.25rem;
- --h3-font: 1.125rem;
- --normal-font: 0.938rem;
- --small-font: 0.813rem;
- --smallest-font: 0.75rem;
-
- /*===== Font weight =====*/
- --font-medium: 500;
- --font-semi-bold: 600;
-
- /*===== Margenes Bottom =====*/
- --mb-0-25: 0.25rem;
- --mb-0-5: 0.5rem;
- --mb-0-75: 0.75rem;
- --mb-1: 1rem;
- --mb-1-5: 1.5rem;
- --mb-2: 2rem;
- --mb-2-5: 2.5rem;
- --mb-3: 3rem;
-
- /*===== z index =====*/
- --z-tooltip: 10;
- --z-fixed: 100;
- --z-modal: 1000;
+@font-face {
+ font-family: 'NukeHub';
+ src: url('fonts/NukeHub.eot?69h7nt');
+ src: url('fonts/NukeHub.eot?69h7nt#iefix') format('embedded-opentype'),
+ url('fonts/NukeHub.ttf?69h7nt') format('truetype'),
+ url('fonts/NukeHub.woff?69h7nt') format('woff'),
+ url('fonts/NukeHub.svg?69h7nt#NukeHub') format('svg');
+ font-weight: normal;
+ font-style: normal;
+ font-display: block;
}
-/*=====Font size for large devices=====*/
-
-@media screen and (min-width: 968px) {
- :root {
- --big-font: 3rem;
- --h1-font: 2.25rem;
- --h2-font: 1.5rem;
- --h3-font: 1.25rem;
- --normal-font: 1rem;
- --small-font: 0.875rem;
- --smaller-font: 0.813rem;
- }
+i, .icomoon-liga {
+ /* use !important to prevent issues with browser extensions that change fonts */
+ font-family: 'NukeHub' !important;
+ speak: never;
+ font-style: normal;
+ font-weight: normal;
+ font-variant: normal;
+ text-transform: none;
+ line-height: 1;
+
+ /* Enable Ligatures ================ */
+ letter-spacing: 0;
+ -webkit-font-feature-settings: "liga";
+ -moz-font-feature-settings: "liga=1";
+ -moz-font-feature-settings: "liga";
+ -ms-font-feature-settings: "liga" 1;
+ font-feature-settings: "liga";
+ -webkit-font-variant-ligatures: discretionary-ligatures;
+ font-variant-ligatures: discretionary-ligatures;
+
+ /* Better Font Rendering =========== */
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
}
-/*TODO Change Theme */
-
-body.dark-theme {
- /*===== Colors =====*/
-
- --color: hsl(var(--hue-color), 69%, 61%);
- --color-2: hsl(var(--hue-color), 30%, 8%);
- --title-color: hsl(var(--hue-color), 8%, 95%);
- --text-color: hsl(var(--hue-color), 8%, 75%);
- --input-color: hsl(var(--hue-color), 29%, 16%);
- --body-color: hsl(var(--hue-color), 28%, 12%);
- --container-color: hsl(var(--hue-color), 29%, 16%);
- --color-alt: hsl(var(--hue-color), 57%, 53%);
- --color-lighter: hsl(var(--hue-color), 92%, 85%);
- --text-color-light: hsl(var(--hue-color), 8%, 65%);
- --svg-fill: #fff;
- --scroll-bar: hsl(var(--hue-color), 29%, 16%);
- --scroll-thumb: hsl(var(--hue-color), 12%, 36%);
- --skill-color: #fff;
+.nuke-nukehub:before {
+ content: "\e9b6";
}
-
-.nav_btns {
- display: flex;
- align-items: center;
+.nuke-zoom:before {
+ content: "\e9b7";
}
-
-.change-theme {
- font-size: 1.25;
- color: var(--title-color);
- margin-right: var(--mb-1);
- cursor: pointer;
+.nuke-book-3:before {
+ content: "\e9ae";
}
-.change-theme:hover {
- color: var(--color);
+.nuke-book-2:before {
+ content: "\e9af";
}
-/*TODO BASE */
-
-* {
- box-sizing: border-box;
- padding: 0;
- margin: 0;
- -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
-}
-html {
- scroll-behavior: smooth;
- overflow-x: hidden;
-}
-body {
- font-family: var(--body-font);
- font-size: var(--normal-font);
- margin: 0 0 var(--header-height) 0;
- background-color: var(--body-color);
- color: var(--text-color);
- overflow: hidden;
-}
-h1,
-h2,
-h3,
-h4 {
- color: var(--title-color);
- font-weight: var(--font-semi-bold);
-}
-img {
- max-width: 100%;
- max-height: auto;
-}
-a {
- text-decoration: none;
-}
-ul {
- list-style: none;
+.nuke-book-1 .path1:before {
+ content: "\e9b0";
+ color: rgb(0, 0, 0);
}
-
-/*TODO REUSABLE CSS CLASSES */
-
-.section {
- padding: 2rem 0 4rem;
+.nuke-book-1 .path2:before {
+ content: "\e9b1";
+ margin-left: -1em;
+ color: rgb(0, 0, 0);
}
-.section_title {
- font-size: var(--h1-font);
+.nuke-help-4:before {
+ content: "\e9b2";
}
-.section_subtitle {
- display: block;
- font-size: var(--small-font);
- margin-bottom: var(--mb-3);
+.nuke-help-3:before {
+ content: "\e9b3";
}
-.section_title,
-.section_subtitle {
- text-align: center;
+.nuke-help-2:before {
+ content: "\e9b4";
}
-::selection {
- background: var(--color);
- color: #fff;
- user-select: none;
- cursor: default;
+.nuke-help-1:before {
+ content: "\e9b5";
}
-
-/*TODO LAYOUT */
-
-#loading {
- position: fixed;
- width: 100%;
- height: 100vh;
- background-color: var(--body-color);
- z-index: var(--z-modal);
- display: flex;
- align-items: center;
- justify-content: center;
-}
-.load_tahmid {
- width: 40%;
- max-height: 40%;
- fill: var(--svg-fill);
- justify-self: center;
- animation: loading 1s;
- animation-iteration-count: infinite;
-}
-@keyframes loading {
- 0% {
- opacity: 0;
- }
- 10% {
- opacity: 0.2;
- }
- 20% {
- opacity: 0.4;
- }
- 30% {
- opacity: 0.6;
- }
- 40% {
- opacity: 0.8;
- }
- 50% {
- opacity: 1;
- }
- 60% {
- opacity: 0.8;
- }
- 70% {
- opacity: 0.6;
- }
- 80% {
- opacity: 0.4;
- }
- 90% {
- opacity: 0.2;
- }
- 100% {
- opacity: 0;
- }
+.nuke-nuclear-power-plant-2-remove:before {
+ content: "\e9ac";
}
-
-/*TODO LAYOUT */
-
-.container {
- max-width: 768px;
- margin-left: var(--mb-1-5);
- margin-right: var(--mb-1-5);
-}
-.grid {
- display: grid;
- gap: 1.5rem;
-}
-.header {
- width: 100%;
- position: fixed;
- left: 0;
- bottom: 0;
- z-index: var(--z-fixed);
-}
-.header_bg {
- position: absolute;
- width: 100%;
- height: 100%;
- background-color: var(--body-color);
- top: -15px;
- left: 0;
- z-index: -1;
- filter: blur(10px);
-}
-.header_bg-mobile {
- position: absolute;
- width: 100%;
- height: 100%;
- background-color: var(--body-color);
- top: 0;
- left: 0;
- z-index: -1;
- box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.15);
+.nuke-nuclear-power-plant-add:before {
+ content: "\e9ad";
}
-
-/*TODO NAV */
-.nav {
- max-width: 968;
- height: var(--header-height);
- display: flex;
- justify-content: space-between;
- align-items: center;
+.nuke-clock-2:before {
+ content: "\e9aa";
}
-.nav_logo,
-.nav_toggle {
- color: var(--title-color);
- font-weight: var(--font-medium);
+.nuke-bell-1:before {
+ content: "\e9ab";
}
-.nav_logo:hover {
- color: var(--color);
+.nuke-edit-node:before {
+ content: "\e900";
}
-.nav_toggle {
- font-size: 1.1rem;
- cursor: pointer;
+.nuke-edit-profile:before {
+ content: "\e901";
}
-.nav_toggle:hover {
- color: var(--color);
+.nuke-profile-1:before {
+ content: "\e902";
}
-
-@media screen and (max-width: 767px) {
- .nav_menu {
- position: fixed;
- bottom: -100%;
- left: 0;
- width: 100%;
- background-color: var(--body-color);
- padding: 2rem 1.5rem 4rem;
- box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.15);
- border-radius: 1.5rem 1.5rem 0 0;
- transition: 0.3s;
- }
-}
-.nav_list {
- grid-template-columns: repeat(3, 1fr);
- gap: 2rem;
-}
-.grid_span {
- text-align: center;
- margin-left: auto;
- margin-right: auto;
- grid-column: auto / span 3;
-}
-.nav_link {
- display: flex;
- flex-direction: column;
- align-items: center;
- font-size: var(--small-font);
- color: var(--title-color);
- font-weight: var(--font-medium);
-}
-.nav_link:hover {
- color: var(--color);
-}
-.nav_icon {
- font-size: 1.2rem;
-}
-.nav_close {
- position: absolute;
- right: 1.3rem;
- bottom: 0.5rem;
- font-size: 1.5rem;
- cursor: pointer;
- color: var(--color);
-}
-.nav_close:hover {
- color: var(--color-alt);
-}
-.show_menu {
- bottom: 0;
+.nuke-settings-1:before {
+ content: "\e903";
}
-
-.active-link {
- color: var(--color);
+.nuke-settings-2:before {
+ content: "\e904";
}
-.scroll-header {
- top: -3px;
- filter: blur(2px);
+.nuke-settings-3:before {
+ content: "\e905";
}
-
-/*TODO Home */
-
-.home_container {
- gap: 1rem;
-}
-.home_content {
- grid-template-columns: 0.5fr 3fr;
- padding-top: 3.5rem;
- align-items: center;
- display: flex;
-}
-.home_social {
- display: grid;
- grid-template-columns: max-content;
- row-gap: 1rem;
-}
-.home_social-icon {
- font-size: 1.2rem;
- color: var(--color);
-}
-.home_social-icon:hover {
- color: var(--color-alt);
-}
-.home_tahmid {
- fill: var(--svg-fill);
-}
-.home_tahmid-circle-light {
- fill: var(--color);
-}
-.home_tahmid-circle {
- fill: var(--color-alt);
-}
-.home_tahmid:hover {
- animation: shake 0.5s;
-}
-.home_tahmid:active {
- animation: shake 0.5s;
- animation-iteration-count: infinite;
-}
-@keyframes shake {
- 0% {
- transform: translate(1px, 1px) rotate(0deg);
- }
- 10% {
- transform: translate(-1px, -2px) rotate(-1deg);
- }
- 20% {
- transform: translate(-3px, 0px) rotate(1deg);
- }
- 30% {
- transform: translate(3px, 2px) rotate(0deg);
- }
- 40% {
- transform: translate(1px, -1px) rotate(1deg);
- }
- 50% {
- transform: translate(-1px, 2px) rotate(-1deg);
- }
- 60% {
- transform: translate(-3px, 1px) rotate(0deg);
- }
- 70% {
- transform: translate(3px, 1px) rotate(-1deg);
- }
- 80% {
- transform: translate(-1px, -1px) rotate(1deg);
- }
- 90% {
- transform: translate(1px, 2px) rotate(0deg);
- }
- 100% {
- transform: translate(1px, -2px) rotate(-1deg);
- }
-}
-.home_data {
- grid-column: 1/3;
-}
-.home_title {
- font-size: var(--big-font);
- margin-bottom: var(--mb-0-75);
-}
-.home_subtitle {
- font-size: var(--h3-font);
- color: var(--text-color);
- font-weight: var(--font-medium);
- margin-bottom: var(--mb-0-75);
-}
-.home_description {
- margin-bottom: var(--mb-2);
+.nuke-application:before {
+ content: "\e92b";
}
-
-.home_scroll-button {
- color: var(--color);
- transition: 0.3s;
+.nuke-break:before {
+ content: "\e92c";
}
-.home_scroll-button:hover {
- transform: translateY(0.25rem);
+.nuke-construction1:before {
+ content: "\e92d";
}
-.home_scroll-mouse {
- font-size: 2rem;
+.nuke-construction-traffic-monochrome:before {
+ content: "\e93d";
}
-.home_scroll-name {
- font-size: var(--small-font);
- color: var(--title-color);
- font-weight: var(--font-medium);
- margin-right: var(--mb-2-5);
+.nuke-device-search:before {
+ content: "\e93e";
}
-.home_social-arrow {
- font-size: 1.25rem;
+.nuke-fail:before {
+ content: "\e93f";
}
-.home_scroll {
- display: none;
+.nuke-filter-1:before {
+ content: "\e969";
}
-
-/*TODO Buttons */
-button {
- cursor: pointer;
- border: none;
- outline: none;
- font-size: var(--normal-font);
- font-weight: var(--font-medium);
- font-family: var(--body-font);
-}
-.button {
- display: inline-block;
- background-color: var(--color);
- color: #fff;
- padding: 1rem;
- border-radius: 0.5rem;
- font-weight: var(--font-medium);
-}
-.button:hover {
- background-color: var(--color-alt);
-}
-.button_icon {
- font-size: 1.25rem;
- margin-left: var(--mb-0-5);
- transition: 0.3s;
-}
-.button--flex {
- display: inline-flex;
- align-items: center;
-}
-/*TODO Color button */
-.theme-colors {
- display: inline-flex;
- margin-top: auto;
- margin-bottom: auto;
- gap: 0.25rem;
-}
-.theme-colors .color {
- margin-top: auto;
- margin-bottom: auto;
- border-radius: 1rem;
- height: var(--small-font);
- width: var(--small-font);
- transition: 0.1s;
- cursor: pointer;
+.nuke-filter-2:before {
+ content: "\e96a";
}
-
-.theme-colors .color:hover {
- border: 2px solid var(--body-color);
- transition: 0.1s;
+.nuke-group:before {
+ content: "\e96b";
}
-
-@media screen and (max-width: 767px) {
- .theme-colors {
- gap: 1rem;
- }
- .theme-colors .color {
- border-radius: 1.2rem;
- height: 1.2rem;
- width: 1.2rem;
- }
+.nuke-login-1:before {
+ content: "\e96c";
}
-
-/*TODO About */
-
-.about_img {
- width: 90%;
- border-radius: 0.5rem;
- justify-self: center;
- align-self: center;
- object-fit: cover;
- transition: all 0.3s ease-out;
- cursor: pointer;
-}
-.about_img:hover {
- transform: scale(1.1);
- transition: 0.3s;
+.nuke-logout-1:before {
+ content: "\e99f";
}
-
-.about_description {
- text-align: center;
- margin-bottom: var(--mb-2-5);
+.nuke-merge-cells:before {
+ content: "\e9a0";
}
-.about_info {
- display: flex;
- justify-content: space-evenly;
- margin-bottom: var(--mb-2-5);
+.nuke-power-plant-3:before {
+ content: "\e9a1";
}
-
-.about_info-title {
- font-size: var(--h2-font);
- font-weight: var(--font-semi-bold);
- color: var(--title-color);
+.nuke-solit-cells:before {
+ content: "\e9a2";
}
-.about_info-name {
- font-size: var(--smaller-font);
+.nuke-ungroup:before {
+ content: "\e9a3";
}
-.about_info-title,
-.about_info-name {
- display: block;
- text-align: center;
+.nuke-signup:before {
+ content: "\e920";
}
-.about_buttons {
- display: flex;
- justify-content: center;
+.nuke-update-1:before {
+ content: "\e921";
}
-.button--white {
- background-color: var(--color-lighter);
- color: var(--color);
+.nuke-update:before {
+ content: "\e922";
}
-.button--white:hover {
- background-color: #fff;
- transition: 0.3s;
+.nuke-map:before {
+ content: "\e92a";
}
-
-/*TODO Skills */
-
-.skills_header {
- display: flex;
- align-items: center;
- margin-bottom: var(--mb-1-5);
- cursor: pointer;
- padding-top: 0.5rem;
+.nuke-arrow-circle-right-ou:before {
+ content: "\e906";
}
-.skills_icon,
-.skills_arrow {
- font-size: 2rem;
- color: var(--color);
+.nuke-dashboard-1:before {
+ content: "\e907";
}
-.skills_icon {
- margin-right: var(--mb-0-75);
+.nuke-arrow-circle-up-ou:before {
+ content: "\e908";
}
-/* TODO */
-.skills_title-main {
- font-size: var(--h3-font);
+.nuke-arrow-ios-back:before {
+ content: "\e909";
}
-.skills_subtitle {
- font-size: var(--small-font);
- color: var(--text-color-light);
+.nuke-arrow-ios-downward:before {
+ content: "\e90a";
}
-.skills_arrow {
- margin-left: auto;
- transition: 0.4s;
+.nuke-arrow-ios-upward:before {
+ content: "\e90b";
}
-.skills_title {
- display: flex;
- justify-content: space-between;
- margin-bottom: var(--mb-0-5);
- /* max-height: 0;
- overflow: hidden;
- transition: max-height 0.2s ease-out; */
+.nuke-arrow-ios-forward:before {
+ content: "\e90c";
}
-.skills_name,
-.skills_number {
- font-size: var(--normal-font);
- font-weight: var(--font-medium);
- color: var(--skill-color);
+.nuke-expand:before {
+ content: "\e90d";
}
-.skills_bar,
-.skills_percentage {
- height: 5px;
- border-radius: 0.25rem;
+.nuke-collapse:before {
+ content: "\e90e";
}
-.skills_bar {
- background-color: var(--color-lighter);
- /* max-height: 0;
- overflow: hidden;
- transition: max-height 0.2s ease-out; */
+.nuke-move:before {
+ content: "\e90f";
}
-.skills_percentage {
- display: block;
- background-color: var(--color);
+.nuke-arrow-circle-down-ou:before {
+ content: "\e910";
}
-.skills_datascience {
- width: 90%;
+.nuke-arrow-circle-left-ou:before {
+ content: "\e911";
}
-.skills_ml {
- width: 50%;
+.nuke-arrow-back:before {
+ content: "\e912";
}
-.skills_web {
- width: 80%;
+.nuke-arrow-forward:before {
+ content: "\e913";
}
-.skills_app {
- width: 40%;
+.nuke-shield-success:before {
+ content: "\e914";
}
-.skills_pcb {
- width: 85%;
+.nuke-shield-error:before {
+ content: "\e915";
}
-.skills_3d {
- width: 75%;
+.nuke-share-1:before {
+ content: "\e916";
}
-.skills_design {
- width: 40%;
+.nuke-share:before {
+ content: "\e917";
}
-.skills_html {
- width: 95%;
+.nuke-log:before {
+ content: "\e918";
}
-.skills_python {
- width: 85%;
+.nuke-dashboard:before {
+ content: "\e919";
}
-.skills_dart {
- width: 60%;
+.nuke-active:before {
+ content: "\e91a";
}
-.skills_cplus {
- width: 50%;
+.nuke-active--1:before {
+ content: "\e91b";
}
-.skills_javascript {
- width: 80%;
+.nuke-add:before {
+ content: "\e91c";
}
-.skills_shell {
- width: 40%;
+.nuke-add-1:before {
+ content: "\e91d";
}
-.skills_vscode {
- width: 95%;
+.nuke-alert:before {
+ content: "\e91e";
}
-.skills_tinkercad {
- width: 95%;
+.nuke-alert-1:before {
+ content: "\e91f";
}
-.skills_powerpoint {
- width: 95%;
+.nuke-alert-2:before {
+ content: "\e923";
}
-.skills_matlab {
- width: 70%;
+.nuke-atom:before {
+ content: "\e924";
}
-.skills_nodered {
- width: 75%;
+.nuke-atom-1:before {
+ content: "\e925";
}
-.skills_azure {
- width: 70%;
+.nuke-atom-2:before {
+ content: "\e926";
}
-.skills_sql {
- width: 75%;
+.nuke-atomic-nuclear-radiation:before {
+ content: "\e927";
}
-.skills_kicad {
- width: 80%;
+.nuke-bell:before {
+ content: "\e928";
}
-
-.skills_close .skills_data {
- height: 0;
- overflow: hidden;
- transition: 0.5s;
+.nuke-bomb:before {
+ content: "\e929";
}
-.skills_open .skills_data {
- height: 1.8rem;
- transition: 0.5s;
+.nuke-bomb-1:before {
+ content: "\e92e";
}
-.skills_close .skills_list {
- height: 0;
- transition: 0.5s;
- overflow-y: auto;
+.nuke-bomb-grenade:before {
+ content: "\e92f";
}
-.skills_open .skills_list {
- height: max-content;
- margin-bottom: var(--mb-2-5);
- transition: 0.5s;
+.nuke-bookmark:before {
+ content: "\e930";
}
-.skills_open .skills_arrow {
- transform: rotate(180deg);
+.nuke-bookmark-1:before {
+ content: "\e931";
}
-
-/*TODO Qualification */
-
-.qualification_tabs {
- display: flex;
- justify-content: space-evenly;
- margin-bottom: var(--mb-2);
-}
-.qualification_button {
- font-size: var(--h2-font);
- font-weight: var(--font-medium);
- cursor: pointer;
-}
-.qualification_button:hover {
- color: var(--color);
-}
-.qualification_icon {
- font-size: 1.8rem;
- margin-right: var(--mb-0-25);
-}
-.qualification_data {
- display: grid;
- grid-template-columns: 1fr max-content 1fr;
- column-gap: 1.5rem;
-}
-.qualification_title {
- font-size: var(--normal-font);
- font-weight: var(--font-medium);
-}
-.qualification_subtitle {
- display: inline-block;
- font-size: var(--small-font);
- margin-bottom: var(--mb-0-5);
-}
-.qualification_calendar {
- font-size: var(--smaller-font);
- color: var(--text-color-light);
-}
-.qualification_rounder {
- display: inline-block;
- width: 13px;
- height: 13px;
- background-color: var(--color);
- border-radius: 50%;
-}
-.qualification_line {
- display: block;
- width: 1px;
- height: 100%;
- background-color: var(--color);
- transform: translate(6px, -7px);
-}
-.qualification [data-content] {
- display: none;
+.nuke-bookmark-3:before {
+ content: "\e932";
}
-
-.qualification_active[data-content] {
- display: block;
+.nuke-bug:before {
+ content: "\e933";
}
-.qualification_active[data-target] {
- color: var(--color);
+.nuke-bug-1:before {
+ content: "\e934";
}
-
-/*TODO Services */
-.services_container {
- gap: 1.5rem;
- grid-template-columns: repeat(2, 1fr);
-}
-.services_bg {
- position: absolute;
- width: 100%;
- height: 100%;
- background-color: var(--container-color);
- opacity: 0.5;
- top: 0;
- left: 0;
- z-index: -1;
-}
-.services_content {
- position: relative;
-
- padding: 3.5rem 0.5rem 1.25rem 1.5rem;
- border-radius: 0.25rem;
- box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
- transition: 0.3s;
-}
-.services_content:hover {
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
-}
-.services_icon {
- display: block;
- font-size: 1.5rem;
- color: var(--color);
- margin-bottom: var(--mb-1);
-}
-.services_title {
- font-size: var(--h3-font);
- margin-bottom: var(--mb-1);
- font-weight: var(--font-medium);
-}
-.services_button {
- cursor: pointer;
- font-size: var(--small-font);
-}
-.button--small {
- padding: 0.75rem 1rem;
-}
-.button--link {
- padding: 0;
- background-color: transparent;
- color: var(--color);
-}
-.button--link:hover {
- background-color: transparent;
- color: var(--color-alt);
-}
-.services_button:hover .button_icon {
- transform: translateX(0.25rem);
-}
-.services_modal {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background-color: rgba(0, 0, 0, 0.5);
- display: flex;
- align-items: center;
- justify-content: center;
- padding: 0 1rem;
- z-index: var(--z-modal);
- transition: 0.3s;
- opacity: 0;
- visibility: hidden;
-}
-.services_modal-content {
- position: relative;
- background-color: var(--container-color);
- padding: 1.5rem;
- border-radius: 0.5rem;
-}
-.services_modal-services {
- row-gap: 1rem;
-}
-.services_modal-service {
- display: flex;
-}
-.services_modal-title {
- font-size: var(--h3-font);
- font-weight: var(--font-medium);
- margin-bottom: var(--mb-1-5);
-}
-.services_modal-close {
- position: absolute;
- top: 1rem;
- right: 1rem;
- font-size: 1.5rem;
- color: var(--color);
- cursor: pointer;
-}
-.services_modal-icon {
- color: var(--color);
- margin-right: var(--mb-0-25);
+.nuke-call:before {
+ content: "\e935";
}
-
-.active-modal {
- opacity: 1;
- visibility: visible;
+.nuke-call-1:before {
+ content: "\e936";
}
-/*TODO Portfolio */
-.portfolio_container {
- overflow: initial;
+.nuke-cell-tower:before {
+ content: "\e937";
}
-.portfolio_content {
- padding: 0 1.5rem;
+.nuke-chart-1:before {
+ content: "\e938";
}
-.portfolio_img {
- width: 265px;
- border-radius: 0.5rem;
- justify-self: center;
+.nuke-chart-2:before {
+ content: "\e939";
}
-.portfolio_title {
- font-size: var(--h3-font);
- margin-bottom: var(--mb-0-5);
+.nuke-chart-3:before {
+ content: "\e93a";
}
-.portfolio_description {
- margin-bottom: var(--mb-0-75);
+.nuke-chat-1:before {
+ content: "\e93b";
}
-.portfolio_button:hover .button_icon {
- transform: translateX(0.25rem);
+.nuke-chat-2:before {
+ content: "\e93c";
}
-.swiper-button-prev::after,
-.swiper-button-next::after {
- content: "";
+.nuke-clock:before {
+ content: "\e940";
}
-.swiper-portfolio-icon {
- font-size: 2rem;
- color: var(--color);
+.nuke-clock-1:before {
+ content: "\e941";
}
-.swiper-button-prev {
- left: -0.5rem;
+.nuke-code:before {
+ content: "\e942";
}
-.swiper-button-next {
- right: -0.5rem;
+.nuke-compass:before {
+ content: "\e943";
}
-.swiper-container-horizontal > .swiper-pagination-bullets {
- bottom: -2.5rem;
+.nuke-construction:before {
+ content: "\e944";
}
-.swiper-pagination-bullet-active {
- background-color: var(--color);
+.nuke-construction-1:before {
+ content: "\e945";
}
-.swiper-button-prev,
-.swiper-button-next,
-.swiper-pagination-bullet {
- outline: none;
+.nuke-construction-2:before {
+ content: "\e946";
}
-/*TODO Research and development */
-.project {
- text-align: center;
+.nuke-construction-3:before {
+ content: "\e947";
}
-.project_bg {
- background-color: var(--color);
- margin-top: 2.5rem;
+.nuke-contacts:before {
+ content: "\e948";
}
-.project_title {
- font-size: var(--h2-font);
- margin-bottom: var(--mb-0-75);
- margin-top: var(--mb-0-75);
+.nuke-cpu:before {
+ content: "\e949";
}
-.project_description {
- margin-bottom: var(--mb-1-5);
+.nuke-database:before {
+ content: "\e94a";
}
-.project_title {
- color: #fff;
+.nuke-database-1:before {
+ content: "\e94b";
}
-.project_description {
- color: var(--color-lighter);
+.nuke-database-2:before {
+ content: "\e94c";
}
-.project_description:hover {
- color: #fff;
- transition: 0.3s;
+.nuke-document:before {
+ content: "\e94d";
}
-.project_img {
- height: 260px;
- justify-self: center;
- filter: invert(100%) sepia(0%) saturate(4214%) hue-rotate(121deg)
- brightness(111%) contrast(99%);
- opacity: 0.2;
- padding-bottom: 1rem;
- display:none;
- transition: 0.3s;
+.nuke-download-1:before {
+ content: "\e94e";
}
-.project_img:hover {
- transition: 1s;
- opacity: 1;
+.nuke-edit:before {
+ content: "\e94f";
}
-.project_buttons {
- padding-bottom: 1rem;
+.nuke-electric-tower:before {
+ content: "\e950";
}
-
-/*TODO Recommendations */
-
-.recommendation_data,
-.recommendation_header {
- display: flex;
+.nuke-error:before {
+ content: "\e951";
}
-.recommendation_data {
- justify-content: space-between;
- margin-bottom: var(--mb-1);
+.nuke-error-1:before {
+ content: "\e952";
}
-.recommendation_img {
- width: 60px;
- height: 60px;
- border-radius: 50%;
- margin-right: var(--mb-0-75);
- filter: var(--color-svg);
+.nuke-eye:before {
+ content: "\e953";
}
-.recommendation_img:hover {
- opacity: 0.8;
- transition: 1s;
+.nuke-gallery:before {
+ content: "\e954";
}
-.recommendation_name {
- font-size: var(--h3-font);
- font-weight: var(--font-medium);
+.nuke-gallery-1:before {
+ content: "\e955";
}
-.recommendation_relation {
- font-size: var(--small-font);
- color: var(--text-color-light);
+.nuke-gauge:before {
+ content: "\e956";
}
-.recommendation_description {
- margin-bottom: var(--mb-2-5);
+.nuke-gauge-1:before {
+ content: "\e957";
}
-.recommendation_icon-star {
- color: var(--color);
+.nuke-gear:before {
+ content: "\e958";
}
-.swiper-container .swiper-pagination-recommendation {
- bottom: 0;
+.nuke-gear-1:before {
+ content: "\e959";
}
-
-/*TODO join */
-.join_container {
- row-gap: 3rem;
-}
-.join_information {
- display: flex;
- margin-bottom: var(--mb-2);
-}
-.join_icon {
- font-size: 2rem;
- color: var(--color);
- margin-right: var(--mb-0-75);
-}
-.join_title {
- font-size: var(--h3-font);
- font-weight: var(--font-medium);
-}
-.join_subtitle {
- font-size: var(--small-font);
- color: var(--text-color-light);
-}
-.join_content {
- background-color: var(--input-color);
- border: 0.1rem solid var(--text-color);
- border-radius: 0.5rem;
- padding: 0.75rem 1rem 0.25rem;
-}
-.join_input {
- width: 100%;
- background-color: var(--input-color);
- color: var(--text-color);
- font-family: var(--body-font);
- font-size: var(--normal-font);
- border: none;
- outline: none;
- padding: 0.25rem 0.5rem 0.5rem 0;
-}
-.join_label {
- font-size: var(--smaller-font);
- color: var(--title-color);
-}
-textarea {
- resize: vertical;
-}
-/*TODO Footer */
-.footer {
- padding-top: 2rem;
-}
-.footer_container {
- row-gap: 3.5rem;
-}
-.footer_bg {
- background-color: var(--color);
- padding: 2rem 0 3rem;
-}
-.footer_title {
- font-size: var(--h1-font);
- margin-bottom: var(--mb-0-25);
-}
-.footer_subtitle {
- font-size: var(--small-font);
-}
-.footer_links {
- display: flex;
- flex-direction: column;
- row-gap: 1.5rem;
-}
-.footer_link:hover {
- color: var(--color-lighter);
-}
-.footer_social {
- font-size: 1.5rem;
- margin-right: var(--mb-1-5);
-}
-.footer_social:hover {
- color: var(--color-lighter);
-}
-.footer_copy {
- font-size: var(--smaller-font);
- text-align: center;
- color: var(--color-lighter);
- margin-top: var(--mb-3);
-}
-.footer_title,
-.footer_subtitle,
-.footer_link,
-.footer_social {
- color: #fff;
-}
-/*TODO Scroll Up */
-.scroll_up {
- position: fixed;
- right: 1rem;
- bottom: -20%;
- background-color: var(--color);
- opacity: 0.5;
- padding: 0 0.3rem;
- border-radius: 0.4rem;
- z-index: var(--z-tooltip);
- transition: 0.4s;
-}
-.scroll_up:hover {
- background-color: var(--color-alt);
- opacity: 0.8;
-}
-.scroll_up-icon {
- font-size: 1.5rem;
- color: var(--color-lighter);
-}
-.show-scroll {
- bottom: 5rem;
+.nuke-gear-2:before {
+ content: "\e95a";
}
-
-/*TODO Scroll Bar */
-::-webkit-scrollbar {
- width: 0.6rem;
- background-color: var(--scroll-bar);
- border-radius: 0.5rem;
-}
-::-webkit-scrollbar-thumb {
- background-color: var(--scroll-thumb);
- border-radius: 0.5rem;
-}
-::-webkit-scrollbar-thumb:hover {
- background-color: var(--text-color-light);
-}
-/*TODO Modal */
-.modal_img {
- background: rgba(0, 0, 0, 0.8);
- backdrop-filter: blur(8px);
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- opacity: 0;
- pointer-events: none;
- z-index: var(--z-modal);
- position: fixed;
- transition: all 0.3s ease-out;
-}
-.modal_img.open {
- opacity: 1;
- pointer-events: all;
-}
-.full_img {
- position: absolute;
- max-width: 90%;
- max-height: 90%;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%) scale(0.5);
- transition: all 0.3s ease-in-out;
- border-radius: 0.5rem;
-}
-.full_img.open {
- transform: translate(-50%, -50%) scale(1);
-}
-.modal_caption {
- text-align: center;
- color: #fff;
- font-size: var(--small-font);
- position: absolute;
- bottom: 7%;
- left: 50%;
- transform: translate(-50%, -7%);
-}
-/*TODO Notification */
-@keyframes awn-fade-in {
- 0% {
- opacity: 0;
- }
- to {
- opacity: 1;
- }
-}
-@keyframes awn-fade-out {
- 0% {
- opacity: 1;
- }
- to {
- opacity: 0;
- }
-}
-@keyframes awn-slide-right {
- 0% {
- left: 100%;
- opacity: 0;
- }
- to {
- left: 0;
- opacity: 1;
- }
-}
-@keyframes awn-slide-left {
- 0% {
- opacity: 0;
- right: 100%;
- }
- to {
- opacity: 1;
- right: 0;
- }
-}
-@keyframes awn-bar {
- 0% {
- right: 100%;
- }
- to {
- right: 0;
- }
-}
-.awn-popup-loading-dots,
-.awn-popup-loading-dots:after,
-.awn-popup-loading-dots:before {
- animation-fill-mode: both;
- animation: awn-loading-dots 1s ease-in-out infinite;
- background: #fff;
- border-radius: 50%;
- height: 6px;
- width: 6px;
-}
-.awn-popup-loading-dots {
- animation-delay: -0.16s;
- color: #fff;
- display: inline-block;
- margin-left: 24px;
- position: relative;
-}
-.awn-popup-loading-dots:after,
-.awn-popup-loading-dots:before {
- content: "";
- position: absolute;
- top: 0;
-}
-.awn-popup-loading-dots:before {
- animation-delay: -0.32s;
- left: -16px;
-}
-.awn-popup-loading-dots:after {
- left: 16px;
-}
-@keyframes awn-loading-dots {
- 0%,
- 80%,
- to {
- box-shadow: 0 0 0 0;
- }
- 40% {
- box-shadow: 0 0 0 2px;
- }
-}
-#awn-popup-wrapper {
- align-items: center;
- animation-fill-mode: both;
- animation-name: awn-fade-in;
- animation-timing-function: ease-out;
- bottom: 0;
- display: flex;
- justify-content: center;
- left: 0;
- opacity: 0;
- position: fixed;
- right: 0;
- top: 0;
- z-index: 99999;
- backdrop-filter: blur(8px);
-}
-#awn-popup-wrapper.awn-hiding {
- animation-name: awn-fade-out;
-}
-#awn-popup-wrapper .awn-popup-body {
- background: #fff;
- border-radius: 6px;
- font-size: 14px;
- max-width: 500px;
- min-width: 320px;
- padding: 24px;
- position: relative;
- word-break: break-word;
-}
-#awn-popup-wrapper .awn-popup-body.awn-popup-confirm {
- align-items: center;
- display: flex;
- flex-direction: column;
-}
-#awn-popup-wrapper .awn-popup-body.awn-popup-confirm .fa {
- color: #c26700;
- font-size: 44px;
-}
-#awn-popup-wrapper .awn-popup-body.awn-popup-async-block {
- background: transparent;
- color: #fff;
- font-size: 32px;
- font-weight: 700;
- text-align: center;
-}
-#awn-popup-wrapper .awn-popup-title {
- font-size: 14px;
- font-weight: 700;
- margin-top: 8px;
- text-transform: uppercase;
-}
-#awn-popup-wrapper .awn-buttons {
- display: flex;
- justify-content: space-between;
- margin-top: 24px;
- width: 100%;
-}
-#awn-popup-wrapper .awn-buttons .awn-btn {
- border: 0;
- border-radius: 4px;
- color: #fff;
- font-size: 14px;
- font-weight: 700;
- line-height: 32px;
- transition: background 0.2s linear;
- width: 45%;
-}
-#awn-popup-wrapper .awn-buttons-1 .awn-btn {
- width: 100%;
-}
-#awn-popup-wrapper .awn-buttons .awn-btn-success {
- background: #40871d;
-}
-#awn-popup-wrapper .awn-buttons .awn-btn-success:hover {
- background: #367218;
-}
-#awn-popup-wrapper .awn-buttons .awn-btn-cancel {
- background: #1c76a6;
-}
-#awn-popup-wrapper .awn-buttons .awn-btn-cancel:hover {
- background: #186690;
-}
-#awn-toast-container {
- bottom: 24px;
- box-sizing: border-box;
- position: fixed;
- right: 24px;
- z-index: 99998;
-}
-#awn-toast-container.awn-top-left,
-#awn-toast-container.awn-top-right {
- bottom: auto;
- top: 4rem;
-}
-#awn-toast-container.awn-top-left .awn-toast:first-child,
-#awn-toast-container.awn-top-right .awn-toast:first-child {
- margin-top: 1px;
-}
-#awn-toast-container.awn-bottom-left,
-#awn-toast-container.awn-top-left {
- left: 24px;
- right: auto;
-}
-#awn-toast-container.awn-bottom-left .awn-toast,
-#awn-toast-container.awn-top-left .awn-toast {
- animation-name: awn-slide-left;
- right: 100%;
-}
-#awn-toast-container.awn-bottom-left .awn-toast.awn-hiding,
-#awn-toast-container.awn-top-left .awn-toast.awn-hiding {
- right: 0;
-}
-#awn-toast-container.awn-bottom-right .awn-toast,
-#awn-toast-container.awn-top-right .awn-toast {
- animation-name: awn-slide-right;
- left: 100%;
-}
-#awn-toast-container.awn-bottom-right .awn-toast.awn-hiding,
-#awn-toast-container.awn-top-right .awn-toast.awn-hiding {
- left: 0;
-}
-.awn-toast {
- animation-fill-mode: both;
- animation-timing-function: linear;
- border-radius: 0.5rem;
- color: var(--color);
- cursor: pointer;
- font-size: var(--font-medium);
- margin-top: 1rem;
- opacity: 0;
- overflow: hidden;
- position: relative;
- width: 320px;
- backdrop-filter: blur(8px);
-}
-.awn-toast-content {
- word-break: break-word;
-}
-.awn-toast-label {
- color: #fff;
- display: block;
- font-size: var(--h3-font);
- text-transform: uppercase;
-}
-.awn-toast-icon {
- align-items: center;
- bottom: 0;
- display: flex;
- justify-content: flex-end;
- position: absolute;
- right: 16px;
- top: 2px;
- font-size: 42px;
-}
-.awn-toast-icon .fa {
- color: #fff;
- font-size: 44px;
-}
-.awn-toast-wrapper {
- border-radius: 0.5rem;
- padding: 10px 75px 10px 16px;
- box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
-}
-.awn-toast-progress-bar {
- height: 3px;
- left: 0;
- position: absolute;
- right: 0;
- bottom: 0;
-}
-.awn-toast-progress-bar:after {
- animation-duration: inherit;
- animation-fill-mode: both;
- animation-name: awn-bar;
- animation-timing-function: linear;
- background: #fff;
- content: " ";
- height: 3px;
- position: absolute;
- right: 100%;
- top: 0;
- width: 100%;
-}
-.awn-toast.awn-toast-progress-bar-paused .awn-toast-progress-bar:after {
- animation-play-state: paused;
-}
-.awn-toast.awn-hiding {
- animation-name: awn-fade-out !important;
-}
-.awn-toast.awn-toast-success {
- background: #dff8d3;
- color: #40871d;
-}
-.awn-toast.awn-toast-success .awn-toast-wrapper {
- border-color: #a7d590;
-}
-.awn-toast.awn-toast-success .fa,
-.awn-toast.awn-toast-success b {
- color: #40871d;
-}
-.awn-toast.awn-toast-success .awn-toast-progress-bar:after {
- background: #40871d;
-}
-.awn-toast.awn-toast-info {
- background: #d3ebf8;
- color: #1c76a6;
-}
-.awn-toast.awn-toast-info .awn-toast-wrapper {
- border-color: #9fd3ef;
-}
-.awn-toast.awn-toast-info .fa,
-.awn-toast.awn-toast-info b {
- color: #1c76a6;
-}
-.awn-toast.awn-toast-info .awn-toast-progress-bar:after {
- background: #1c76a6;
-}
-.awn-toast.awn-toast-alert {
- background: #f8d5d3;
- color: #a92019;
-}
-.awn-toast.awn-toast-alert .awn-toast-wrapper {
- border-color: #f0a29d;
-}
-.awn-toast.awn-toast-alert .fa,
-.awn-toast.awn-toast-alert b {
- color: #a92019;
-}
-.awn-toast.awn-toast-alert .awn-toast-progress-bar:after {
- background: #a92019;
-}
-.awn-toast.awn-toast-warNukeHubg {
- background: #ffe7cc;
- color: #c26700;
-}
-.awn-toast.awn-toast-warNukeHubg .awn-toast-wrapper {
- border-color: #ffc480;
-}
-.awn-toast.awn-toast-warNukeHubg .fa,
-.awn-toast.awn-toast-warNukeHubg b {
- color: #c26700;
-}
-.awn-toast.awn-toast-warNukeHubg .awn-toast-progress-bar:after {
- background: #c26700;
-}
-[class^="awn-"] {
- box-sizing: border-box;
-}
-/*TODO Context Menu */
-@-webkit-keyframes cm-spin {
- 0% {
- -webkit-transform: translateY(-50%) rotate(0deg);
- transform: translateY(-50%) rotate(0deg);
- }
- 100% {
- -webkit-transform: translateY(-50%) rotate(359deg);
- transform: translateY(-50%) rotate(359deg);
- }
-}
-@-o-keyframes cm-spin {
- 0% {
- -webkit-transform: translateY(-50%) rotate(0deg);
- -o-transform: translateY(-50%) rotate(0deg);
- transform: translateY(-50%) rotate(0deg);
- }
- 100% {
- -webkit-transform: translateY(-50%) rotate(359deg);
- -o-transform: translateY(-50%) rotate(359deg);
- transform: translateY(-50%) rotate(359deg);
- }
-}
-@keyframes cm-spin {
- 0% {
- -webkit-transform: translateY(-50%) rotate(0deg);
- -o-transform: translateY(-50%) rotate(0deg);
- transform: translateY(-50%) rotate(0deg);
- }
- 100% {
- -webkit-transform: translateY(-50%) rotate(359deg);
- -o-transform: translateY(-50%) rotate(359deg);
- transform: translateY(-50%) rotate(359deg);
- }
+.nuke-gear-3:before {
+ content: "\e95b";
}
-
-.context-menu-icon::before {
- position: absolute;
- top: 50%;
- left: 0;
- width: 2em;
- font-size: 1em;
- font-style: normal;
- font-weight: normal;
- line-height: 1;
- color: #2980b9;
- text-align: center;
- -webkit-transform: translateY(-50%);
- -ms-transform: translateY(-50%);
- -o-transform: translateY(-50%);
- transform: translateY(-50%);
-
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
+.nuke-settings-4:before {
+ content: "\e95c";
}
-
-.context-menu-icon.context-menu-hover:before {
- color: #fff;
+.nuke-github:before {
+ content: "\e95d";
}
-
-.context-menu-icon.context-menu-disabled::before {
- color: #bbb;
+.nuke-github-1:before {
+ content: "\e95e";
}
-
-.context-menu-icon.context-menu-icon-loading:before {
- -webkit-animation: cm-spin 2s infinite;
- -o-animation: cm-spin 2s infinite;
- animation: cm-spin 2s infinite;
+.nuke-idea:before {
+ content: "\e95f";
}
-
-.context-menu-icon.context-menu-icon--fa {
- display: list-item;
- font-family: inherit;
- line-height: inherit;
-}
-.context-menu-icon.context-menu-icon--fa::before {
- position: absolute;
- top: 50%;
- left: 0;
- width: 2em;
- font-family: FontAwesome;
- font-size: 1em;
- font-style: normal;
- font-weight: normal;
- line-height: 1;
- color: #2980b9;
- text-align: center;
- -webkit-transform: translateY(-50%);
- -ms-transform: translateY(-50%);
- -o-transform: translateY(-50%);
- transform: translateY(-50%);
-
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
+.nuke-idea-1:before {
+ content: "\e960";
}
-.context-menu-icon.context-menu-icon--fa.context-menu-hover:before {
- color: #fff;
+.nuke-info-3:before {
+ content: "\e961";
}
-.context-menu-icon.context-menu-icon--fa.context-menu-disabled::before {
- color: #bbb;
+.nuke-internet:before {
+ content: "\e962";
}
-
-.context-menu-icon.context-menu-icon--fa5 {
- display: list-item;
- font-family: inherit;
- line-height: inherit;
-}
-.context-menu-icon.context-menu-icon--fa5 i,
-.context-menu-icon.context-menu-icon--fa5 svg {
- position: absolute;
- top: 0.3em;
- left: 0.5em;
- color: #2980b9;
-}
-.context-menu-icon.context-menu-icon--fa5.context-menu-hover > i,
-.context-menu-icon.context-menu-icon--fa5.context-menu-hover > svg {
- color: #fff;
-}
-.context-menu-icon.context-menu-icon--fa5.context-menu-disabled i,
-.context-menu-icon.context-menu-icon--fa5.context-menu-disabled svg {
- color: #bbb;
+.nuke-internet-1:before {
+ content: "\e963";
}
-
-.context-menu-list {
- position: absolute;
- display: inline-block;
- min-width: 12rem;
- max-width: 24rem;
- padding: 0.5rem 0;
- margin: 0.2rem;
- font-family: inherit;
- font-size: inherit;
- list-style-type: none;
- background: rgba(255, 255, 255, 0.8);
- backdrop-filter: blur(5px);
- border-radius: 0.5rem;
- -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
- box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
+.nuke-internet-2:before {
+ content: "\e964";
}
-
-.context-menu-item {
- position: relative;
- -webkit-box-sizing: content-box;
- -moz-box-sizing: content-box;
- box-sizing: content-box;
- padding: 0.5rem 1rem;
- color: #2f2f2f;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
-}
-.context_menu-icon {
- margin-right: 0.25rem;
+.nuke-loading-1:before {
+ content: "\e965";
}
-
-.context-menu-separator {
- padding: 0;
- margin: 0.35em 0;
- border-bottom: 1px solid rgba(0, 0, 0, 0.2);
+.nuke-location:before {
+ content: "\e966";
}
-
-.context-menu-item > label > input,
-.context-menu-item > label > textarea {
- -webkit-user-select: text;
- -moz-user-select: text;
- -ms-user-select: text;
- user-select: text;
+.nuke-location-1:before {
+ content: "\e967";
}
-
-.context-menu-item.context-menu-hover {
- color: #fff;
- cursor: pointer;
- background-color: var(--color);
+.nuke-location-2:before {
+ content: "\e968";
}
-
-.context-menu-item.context-menu-disabled {
- color: #bbb;
- cursor: default;
- background-color: #fff;
+.nuke-login:before {
+ content: "\e96d";
}
-
-.context-menu-input.context-menu-hover {
- color: #2f2f2f;
- cursor: default;
+.nuke-loguot:before {
+ content: "\e96e";
}
-
-.context-menu-submenu:after {
- position: absolute;
- top: 50%;
- right: 0.5em;
- z-index: 1;
- width: 0;
- height: 0;
- content: "";
- border-color: transparent transparent transparent #2f2f2f;
- border-style: solid;
- border-width: 0.25em 0 0.25em 0.25em;
- -webkit-transform: translateY(-50%);
- -ms-transform: translateY(-50%);
- -o-transform: translateY(-50%);
- transform: translateY(-50%);
+.nuke-love:before {
+ content: "\e96f";
}
-
-/**
- * Inputs
- */
-.context-menu-item.context-menu-input {
- padding: 0.3em 0.6em;
+.nuke-love-solid:before {
+ content: "\e970";
}
-
-/* vertically align inside labels */
-.context-menu-input > label > * {
- vertical-align: top;
+.nuke-mail-1:before {
+ content: "\e971";
}
-
-/* position checkboxes and radios as icons */
-.context-menu-input > label > input[type="checkbox"],
-.context-menu-input > label > input[type="radio"] {
- position: relative;
- top: 0.12em;
- margin-right: 0.4em;
+.nuke-map-1:before {
+ content: "\e972";
}
-
-.context-menu-input > label {
- margin: 0;
+.nuke-map-2:before {
+ content: "\e973";
}
-
-.context-menu-input > label,
-.context-menu-input > label > input[type="text"],
-.context-menu-input > label > textarea,
-.context-menu-input > label > select {
- display: block;
- width: 100%;
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
+.nuke-map-3:before {
+ content: "\e974";
}
-
-.context-menu-input > label > textarea {
- height: 7em;
+.nuke-map-4:before {
+ content: "\e975";
}
-
-.context-menu-item > .context-menu-list {
- top: 0.3em;
- /* re-positioned by js */
- right: -0.3em;
- display: none;
+.nuke-moon:before {
+ content: "\e976";
}
-
-.context-menu-item.context-menu-visible > .context-menu-list {
- display: block;
+.nuke-news:before {
+ content: "\e977";
}
-
-.context-menu-accesskey {
- text-decoration: underline;
+.nuke-notification-1:before {
+ content: "\e978";
}
-
-/*TODO Responsive */
-
-@media screen and (max-width: 350px) {
- .container {
- margin-left: var(--mb-1);
- margin-right: var(--mb-1);
- }
- .nav_menu {
- padding: 2rem 0.25rem 4rem;
- }
- .nav_list {
- column-gap: 0;
- }
- .home_content {
- grid-template-columns: 0.25fr 3fr;
- }
-
- .skills_title {
- font-size: var(--normal-font);
- }
- .qualification_data {
- gap: 0.5rem;
- }
- .services_container {
- grid-template-columns: max-content;
- justify-content: center;
- }
- .services_content {
- padding-right: 3.5rem;
- }
- .services_modal {
- padding: 0 0.5rem;
- }
- .project_img {
- width: 220px;
- }
- .recommendation_data,
- .recommendation_header {
- flex-direction: column;
- align-items: center;
- }
- .recommendation_img {
- margin: 0;
- margin-bottom: var(--mb-0-25);
- }
- .recommendation_data,
- .recommendation_description {
- text-align: center;
- }
- .footer_social {
- font-size: 1.2rem;
- margin-right: var(--mb-0-75);
- }
+.nuke-nuclear-equipment:before {
+ content: "\e979";
}
-
-@media screen and (min-width: 600px) {
- .home_content {
- grid-template-columns: max-content 1fr 1fr;
- }
- .home_data {
- grid-column: initial;
- }
- .home_tahmid {
- width: 320px;
- transform: translateX(0);
- }
- .home_img {
- order: 1;
- justify-self: center;
- }
- .about_container,
- .portfolio_content,
- .project_container,
- .join_container,
- .footer_container {
- grid-template-columns: repeat(2, 1fr);
- }
- .qualification_sections {
- display: grid;
- grid-template-columns: 0.6fr;
- justify-content: center;
- }
- .project_img{
- display:block;
- }
+.nuke-nuclear-equipment-1:before {
+ content: "\e97a";
}
-
-@media screen and (min-width: 768px) {
- .container {
- margin-left: auto;
- margin-right: auto;
- }
- body {
- margin: 0;
- }
- .section {
- padding: 5rem 0 2rem;
- }
- .section_subtitle {
- margin-bottom: 4rem;
- }
- .header {
- top: 0;
- bottom: initial;
- }
- .header,
- .main,
- .footer_container {
- padding: 0 1rem;
- }
- .nav {
- height: calc(var(--header-height) + 1.5rem);
- column-gap: 1rem;
- }
- .nav_icon,
- .nav_close,
- .nav_toggle {
- display: none;
- }
- .nav_list {
- display: flex;
- column-gap: 2rem;
- }
- .nav_menu {
- margin-left: auto;
- }
- .change-theme {
- margin: 0;
- }
- .home_container {
- row-gap: 4rem;
- }
- .home_content {
- padding-top: 5.5rem;
- column-gap: 2rem;
- }
- .home_tahmid {
- width: 360px;
- }
- .home_scroll {
- display: block;
- }
- .home_scroll-button {
- margin-left: 3rem;
- }
- .about_container {
- column-gap: 5rem;
- }
-
- .about_description {
- text-align: initial;
- }
- .about_info {
- justify-content: space-between;
- }
- .about_buttons {
- justify-content: initial;
- }
- .qualification_tabs {
- justify-content: center;
- }
- .qualification_button {
- margin: 0 var(--mb-1);
- }
- .qualification_sections {
- grid-template-columns: 0.5fr;
- }
- .services_container {
- grid-template-columns: repeat(3, 218px);
- justify-content: center;
- }
- .services_icon {
- font-size: 2rem;
- }
- .services_content {
- padding: 6rem 0 2rem 2.5rem;
- }
- .services_modal-content {
- width: 490px;
- }
- .portfolio_img {
- width: 320px;
- }
- .portfolio_content {
- align-items: center;
- }
- .project {
- text-align: initial;
- }
- .project_bg {
- background: none;
- }
- .project_container {
- border-radius: 1rem;
- padding: 3rem 2.5rem 0;
- grid-template-columns: 1fr max-content;
- column-gap: 3rem;
- backdrop-filter: blur(15px);
- }
- .bg_project {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background-color: var(--color-2);
- z-index: -1;
- opacity: 0.9;
- border-radius: 1rem;
- }
- .footer_container {
- grid-template-columns: repeat(3, 1fr);
- }
- .footer_bg {
- padding: 3rem 0 3.5rem;
- }
- .footer_links {
- flex-direction: row;
- column-gap: 2rem;
- }
- .footer_socials {
- justify-self: flex-end;
- }
- .footer_copy {
- margin-top: 4.5rem;
- }
- .footer_social {
- font-size: 1.2rem;
- margin-right: var(--mb-1);
- }
- .modal_caption {
- color: #fff;
- font-size: var(--font-medium);
- position: absolute;
- bottom: 2%;
- left: 50%;
- transform: translate(-50%, -2%);
- }
- .full_img {
- width: 70%;
- }
+.nuke-power-plant-1:before {
+ content: "\e97b";
}
-
-@media screen and (min-width: 1024px) {
- .header,
- .main,
- .footer_container {
- padding: 0;
- }
- .home_tahmid {
- width: 390px;
- }
- .home_social {
- transform: translateX(-6rem);
- }
- .about_img {
- width: 95%;
- }
- .services_container {
- grid-template-columns: repeat(3, 238px);
- }
- .portfolio_content {
- column-gap: 5rem;
- }
- .swiper-portfolio-icon {
- font-size: 3.5rem;
- }
- .swiper-button-prev {
- left: -3.5rem;
- }
- .swiper-button-next {
- right: -3.5rem;
- }
- .swiper-container-horizontal > .swiper-pagination-bullets {
- bottom: -4.5rem;
- }
- .join_form {
- width: 460px;
- }
- .join_inputs {
- grid-template-columns: repeat(2, 1fr);
- }
- .modal_caption {
- font-size: 1.25rem;
- bottom: 1%;
- left: 50%;
- transform: translate(-50%, -1%);
- }
-}
-@media screen and (min-width: 1960px) {
- body {
- zoom: 1.3;
- }
-}
-@media screen and (min-width: 2880px) {
- body {
- zoom: 2;
- }
-}
-@media screen and (min-width: 3840px) {
- body {
- zoom: 2.8;
- }
-}
-canvas {
- display: block;
-}
-#particles-js {
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- position: fixed;
- z-index: -1;
- background-color: var(--body-color);
- background-image: url("");
- background-repeat: no-repeat;
- background-position: 50% 50%;
- filter: blur(4px);
+.nuke-power-plant-2:before {
+ content: "\e97c";
+}
+.nuke-nuclear-symbol:before {
+ content: "\e97d";
+}
+.nuke-oil-tower:before {
+ content: "\e97e";
+}
+.nuke-paper-plane:before {
+ content: "\e97f";
+}
+.nuke-pdf:before {
+ content: "\e980";
+}
+.nuke-pen:before {
+ content: "\e981";
+}
+.nuke-pie-chart:before {
+ content: "\e982";
+}
+.nuke-pin:before {
+ content: "\e983";
+}
+.nuke-plant:before {
+ content: "\e984";
+}
+.nuke-plot:before {
+ content: "\e985";
+}
+.nuke-power:before {
+ content: "\e986";
+}
+.nuke-power-1:before {
+ content: "\e987";
+}
+.nuke-power-2:before {
+ content: "\e988";
+}
+.nuke-power-unit:before {
+ content: "\e989";
+}
+.nuke-print:before {
+ content: "\e98a";
+}
+.nuke-print-1:before {
+ content: "\e98b";
+}
+.nuke-profile:before {
+ content: "\e98c";
+}
+.nuke-qr-code:before {
+ content: "\e98d";
+}
+.nuke-radio-tower-1:before {
+ content: "\e98e";
+}
+.nuke-reload:before {
+ content: "\e98f";
+}
+.nuke-researchgate:before {
+ content: "\e990";
+}
+.nuke-researchgate-2:before {
+ content: "\e991";
+}
+.nuke-send-1:before {
+ content: "\e992";
+}
+.nuke-send-2:before {
+ content: "\e993";
+}
+.nuke-shield:before {
+ content: "\e994";
+}
+.nuke-shield-1:before {
+ content: "\e995";
+}
+.nuke-shop:before {
+ content: "\e996";
+}
+.nuke-sleep:before {
+ content: "\e997";
+}
+.nuke-success:before {
+ content: "\e998";
+}
+.nuke-success-1:before {
+ content: "\e999";
+}
+.nuke-success-2:before {
+ content: "\e99a";
+}
+.nuke-sun:before {
+ content: "\e99b";
+}
+.nuke-target:before {
+ content: "\e99c";
+}
+.nuke-thermometer:before {
+ content: "\e99d";
+}
+.nuke-thermometer-1:before {
+ content: "\e99e";
+}
+.nuke-tower-crane:before {
+ content: "\e9a4";
+}
+.nuke-trash-1:before {
+ content: "\e9a5";
+}
+.nuke-variable-power-plant:before {
+ content: "\e9a6";
+}
+.nuke-iaea:before {
+ content: "\e9a7";
+}
+.nuke-iaea1:before {
+ content: "\e9a8";
+}
+.nuke-nuclear-radiation:before {
+ content: "\e9a9";
+}
+.nuke-arrow-up-left-2:before {
+ content: "\ea39";
+}
+.nuke-arrow-up-2:before {
+ content: "\ea3a";
+}
+.nuke-arrow-up-right-2:before {
+ content: "\ea3b";
+}
+.nuke-arrow-down-right-2:before {
+ content: "\ea3d";
+}
+.nuke-arrow-down-2:before {
+ content: "\ea3e";
+}
+.nuke-arrow-down-left-2:before {
+ content: "\ea3f";
}
diff --git a/css/style.min.css b/css/style.min.css
deleted file mode 100644
index 1c1d8d5..0000000
--- a/css/style.min.css
+++ /dev/null
@@ -1 +0,0 @@
-@import url(https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap);:root{--header-height:3rem;--hue-color:5;--color:hsl(var(--hue-color), 69%, 61%);--color-2:hsl(var(--hue-color), 69%, 61%);--color-svg:invert(67%) sepia(60%) saturate(4648%) hue-rotate(324deg) brightness(93%) contrast(88%);--color-alt:hsl(var(--hue-color), 57%, 53%);--color-alt-svg:invert(35%) sepia(34%) saturate(1189%) hue-rotate(318deg) brightness(108%) contrast(90%);--color-lighter:hsl(var(--hue-color), 92%, 85%);--title-color:hsl(var(--hue-color), 8%, 15%);--text-color:hsl(var(--hue-color), 8%, 45%);--text-color-light:hsl(var(--hue-color), 8%, 65%);--input-color:hsl(var(--hue-color), 70%, 96%);--body-color:hsl(var(--hue-color), 60%, 99%);--container-color:#fff;--svg-fill:#000;--scroll-bar:hsl(var(--hue-color), 12%, 90%);--scroll-thumb:hsl(var(--hue-color), 12%, 80%);--skill-color:#000;--body-font:"Ubuntu",sans-serif;--big-font:2rem;--h1-font:1.5rem;--h2-font:1.25rem;--h3-font:1.125rem;--normal-font:0.938rem;--small-font:0.813rem;--smallest-font:0.75rem;--font-medium:500;--font-semi-bold:600;--mb-0-25:0.25rem;--mb-0-5:0.5rem;--mb-0-75:0.75rem;--mb-1:1rem;--mb-1-5:1.5rem;--mb-2:2rem;--mb-2-5:2.5rem;--mb-3:3rem;--z-tooltip:10;--z-fixed:100;--z-modal:1000}@media screen and (min-width:968px){:root{--big-font:3rem;--h1-font:2.25rem;--h2-font:1.5rem;--h3-font:1.25rem;--normal-font:1rem;--small-font:0.875rem;--smaller-font:0.813rem}}body.dark-theme{--color:hsl(var(--hue-color), 69%, 61%);--color-2:hsl(var(--hue-color), 30%, 8%);--title-color:hsl(var(--hue-color), 8%, 95%);--text-color:hsl(var(--hue-color), 8%, 75%);--input-color:hsl(var(--hue-color), 29%, 16%);--body-color:hsl(var(--hue-color), 28%, 12%);--container-color:hsl(var(--hue-color), 29%, 16%);--color-alt:hsl(var(--hue-color), 57%, 53%);--color-lighter:hsl(var(--hue-color), 92%, 85%);--text-color-light:hsl(var(--hue-color), 8%, 65%);--svg-fill:#fff;--scroll-bar:hsl(var(--hue-color), 29%, 16%);--scroll-thumb:hsl(var(--hue-color), 12%, 36%);--skill-color:#fff}.nav_btns{display:flex;align-items:center}.change-theme{font-size:1.25;color:var(--title-color);margin-right:var(--mb-1);cursor:pointer}.change-theme:hover{color:var(--color)}*{box-sizing:border-box;padding:0;margin:0;-webkit-tap-highlight-color:rgba(255,255,255,0)}html{scroll-behavior:smooth;overflow-x:hidden}body{font-family:var(--body-font);font-size:var(--normal-font);margin:0 0 var(--header-height) 0;background-color:var(--body-color);color:var(--text-color);overflow:hidden}h1,h2,h3,h4{color:var(--title-color);font-weight:var(--font-semi-bold)}img{max-width:100%;max-height:auto}a{text-decoration:none}ul{list-style:none}.section{padding:2rem 0 4rem}.section_title{font-size:var(--h1-font)}.section_subtitle{display:block;font-size:var(--small-font);margin-bottom:var(--mb-3)}.section_subtitle,.section_title{text-align:center}::selection{background:var(--color);color:#fff;user-select:none;cursor:default}#loading{position:fixed;width:100%;height:100vh;background-color:var(--body-color);z-index:var(--z-modal);display:flex;align-items:center;justify-content:center}.load_tahmid{width:40%;max-height:40%;fill:var(--svg-fill);justify-self:center;animation:loading 1s;animation-iteration-count:infinite}@keyframes loading{0%{opacity:0}10%{opacity:.2}20%{opacity:.4}30%{opacity:.6}40%{opacity:.8}50%{opacity:1}60%{opacity:.8}70%{opacity:.6}80%{opacity:.4}90%{opacity:.2}100%{opacity:0}}.container{max-width:768px;margin-left:var(--mb-1-5);margin-right:var(--mb-1-5)}.grid{display:grid;gap:1.5rem}.header{width:100%;position:fixed;left:0;bottom:0;z-index:var(--z-fixed)}.header_bg{position:absolute;width:100%;height:100%;background-color:var(--body-color);top:-15px;left:0;z-index:-1;filter:blur(10px)}.header_bg-mobile{position:absolute;width:100%;height:100%;background-color:var(--body-color);top:0;left:0;z-index:-1;box-shadow:0 -1px 4px rgba(0,0,0,.15)}.nav{max-width:968;height:var(--header-height);display:flex;justify-content:space-between;align-items:center}.nav_logo,.nav_toggle{color:var(--title-color);font-weight:var(--font-medium)}.nav_logo:hover{color:var(--color)}.nav_toggle{font-size:1.1rem;cursor:pointer}.nav_toggle:hover{color:var(--color)}@media screen and (max-width:767px){.nav_menu{position:fixed;bottom:-100%;left:0;width:100%;background-color:var(--body-color);padding:2rem 1.5rem 4rem;box-shadow:0 -1px 4px rgba(0,0,0,.15);border-radius:1.5rem 1.5rem 0 0;transition:.3s}}.nav_list{grid-template-columns:repeat(3,1fr);gap:2rem}.grid_span{text-align:center;margin-left:auto;margin-right:auto;grid-column:auto/span 3}.nav_link{display:flex;flex-direction:column;align-items:center;font-size:var(--small-font);color:var(--title-color);font-weight:var(--font-medium)}.nav_link:hover{color:var(--color)}.nav_icon{font-size:1.2rem}.nav_close{position:absolute;right:1.3rem;bottom:.5rem;font-size:1.5rem;cursor:pointer;color:var(--color)}.nav_close:hover{color:var(--color-alt)}.show_menu{bottom:0}.active-link{color:var(--color)}.scroll-header{top:-3px;filter:blur(2px)}.home_container{gap:1rem}.home_content{grid-template-columns:.5fr 3fr;padding-top:3.5rem;align-items:center;display:flex}.home_social{display:grid;grid-template-columns:max-content;row-gap:1rem}.home_social-icon{font-size:1.2rem;color:var(--color)}.home_social-icon:hover{color:var(--color-alt)}.home_tahmid{fill:var(--svg-fill)}.home_tahmid-circle-light{fill:var(--color)}.home_tahmid-circle{fill:var(--color-alt)}.home_tahmid:hover{animation:shake .5s}.home_tahmid:active{animation:shake .5s;animation-iteration-count:infinite}@keyframes shake{0%{transform:translate(1px,1px) rotate(0)}10%{transform:translate(-1px,-2px) rotate(-1deg)}20%{transform:translate(-3px,0) rotate(1deg)}30%{transform:translate(3px,2px) rotate(0)}40%{transform:translate(1px,-1px) rotate(1deg)}50%{transform:translate(-1px,2px) rotate(-1deg)}60%{transform:translate(-3px,1px) rotate(0)}70%{transform:translate(3px,1px) rotate(-1deg)}80%{transform:translate(-1px,-1px) rotate(1deg)}90%{transform:translate(1px,2px) rotate(0)}100%{transform:translate(1px,-2px) rotate(-1deg)}}.home_data{grid-column:1/3}.home_title{font-size:var(--big-font);margin-bottom:var(--mb-0-75)}.home_subtitle{font-size:var(--h3-font);color:var(--text-color);font-weight:var(--font-medium);margin-bottom:var(--mb-0-75)}.home_description{margin-bottom:var(--mb-2)}.home_scroll-button{color:var(--color);transition:.3s}.home_scroll-button:hover{transform:translateY(.25rem)}.home_scroll-mouse{font-size:2rem}.home_scroll-name{font-size:var(--small-font);color:var(--title-color);font-weight:var(--font-medium);margin-right:var(--mb-2-5)}.home_social-arrow{font-size:1.25rem}.home_scroll{display:none}button{cursor:pointer;border:none;outline:0;font-size:var(--normal-font);font-weight:var(--font-medium);font-family:var(--body-font)}.button{display:inline-block;background-color:var(--color);color:#fff;padding:1rem;border-radius:.5rem;font-weight:var(--font-medium)}.button:hover{background-color:var(--color-alt)}.button_icon{font-size:1.25rem;margin-left:var(--mb-0-5);transition:.3s}.button--flex{display:inline-flex;align-items:center}.theme-colors{display:inline-flex;margin-top:auto;margin-bottom:auto;gap:.25rem}.theme-colors .color{margin-top:auto;margin-bottom:auto;border-radius:1rem;height:var(--small-font);width:var(--small-font);transition:.1s;cursor:pointer}.theme-colors .color:hover{border:2px solid var(--body-color);transition:.1s}@media screen and (max-width:767px){.theme-colors{gap:1rem}.theme-colors .color{border-radius:1.2rem;height:1.2rem;width:1.2rem}}.about_img{width:90%;border-radius:.5rem;justify-self:center;align-self:center;object-fit:cover;transition:all .3s ease-out;cursor:pointer}.about_img:hover{transform:scale(1.1);transition:.3s}.about_description{text-align:center;margin-bottom:var(--mb-2-5)}.about_info{display:flex;justify-content:space-evenly;margin-bottom:var(--mb-2-5)}.about_info-title{font-size:var(--h2-font);font-weight:var(--font-semi-bold);color:var(--title-color)}.about_info-name{font-size:var(--smaller-font)}.about_info-name,.about_info-title{display:block;text-align:center}.about_buttons{display:flex;justify-content:center}.button--white{background-color:var(--color-lighter);color:var(--color)}.button--white:hover{background-color:#fff;transition:.3s}.skills_header{display:flex;align-items:center;margin-bottom:var(--mb-1-5);cursor:pointer;padding-top:.5rem}.skills_arrow,.skills_icon{font-size:2rem;color:var(--color)}.skills_icon{margin-right:var(--mb-0-75)}.skills_title-main{font-size:var(--h3-font)}.skills_subtitle{font-size:var(--small-font);color:var(--text-color-light)}.skills_arrow{margin-left:auto;transition:.4s}.skills_title{display:flex;justify-content:space-between;margin-bottom:var(--mb-0-5)}.skills_name,.skills_number{font-size:var(--normal-font);font-weight:var(--font-medium);color:var(--skill-color)}.skills_bar,.skills_percentage{height:5px;border-radius:.25rem}.skills_bar{background-color:var(--color-lighter)}.skills_percentage{display:block;background-color:var(--color)}.skills_datascience{width:90%}.skills_ml{width:50%}.skills_web{width:80%}.skills_app{width:40%}.skills_pcb{width:85%}.skills_3d{width:75%}.skills_design{width:40%}.skills_html{width:95%}.skills_python{width:85%}.skills_dart{width:60%}.skills_cplus{width:50%}.skills_javascript{width:80%}.skills_shell{width:40%}.skills_vscode{width:95%}.skills_tinkercad{width:95%}.skills_powerpoint{width:95%}.skills_matlab{width:70%}.skills_nodered{width:75%}.skills_azure{width:70%}.skills_sql{width:75%}.skills_kicad{width:80%}.skills_close .skills_data{height:0;overflow:hidden;transition:.5s}.skills_open .skills_data{height:1.8rem;transition:.5s}.skills_close .skills_list{height:0;transition:.5s;overflow-y:auto}.skills_open .skills_list{height:max-content;margin-bottom:var(--mb-2-5);transition:.5s}.skills_open .skills_arrow{transform:rotate(180deg)}.qualification_tabs{display:flex;justify-content:space-evenly;margin-bottom:var(--mb-2)}.qualification_button{font-size:var(--h2-font);font-weight:var(--font-medium);cursor:pointer}.qualification_button:hover{color:var(--color)}.qualification_icon{font-size:1.8rem;margin-right:var(--mb-0-25)}.qualification_data{display:grid;grid-template-columns:1fr max-content 1fr;column-gap:1.5rem}.qualification_title{font-size:var(--normal-font);font-weight:var(--font-medium)}.qualification_subtitle{display:inline-block;font-size:var(--small-font);margin-bottom:var(--mb-0-5)}.qualification_calendar{font-size:var(--smaller-font);color:var(--text-color-light)}.qualification_rounder{display:inline-block;width:13px;height:13px;background-color:var(--color);border-radius:50%}.qualification_line{display:block;width:1px;height:100%;background-color:var(--color);transform:translate(6px,-7px)}.qualification [data-content]{display:none}.qualification_active[data-content]{display:block}.qualification_active[data-target]{color:var(--color)}.services_container{gap:1.5rem;grid-template-columns:repeat(2,1fr)}.services_bg{position:absolute;width:100%;height:100%;background-color:var(--container-color);opacity:.5;top:0;left:0;z-index:-1}.services_content{position:relative;padding:3.5rem .5rem 1.25rem 1.5rem;border-radius:.25rem;box-shadow:0 2px 4px rgba(0,0,0,.15);transition:.3s}.services_content:hover{box-shadow:0 4px 8px rgba(0,0,0,.15)}.services_icon{display:block;font-size:1.5rem;color:var(--color);margin-bottom:var(--mb-1)}.services_title{font-size:var(--h3-font);margin-bottom:var(--mb-1);font-weight:var(--font-medium)}.services_button{cursor:pointer;font-size:var(--small-font)}.button--small{padding:.75rem 1rem}.button--link{padding:0;background-color:transparent;color:var(--color)}.button--link:hover{background-color:transparent;color:var(--color-alt)}.services_button:hover .button_icon{transform:translateX(.25rem)}.services_modal{position:fixed;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,.5);display:flex;align-items:center;justify-content:center;padding:0 1rem;z-index:var(--z-modal);transition:.3s;opacity:0;visibility:hidden}.services_modal-content{position:relative;background-color:var(--container-color);padding:1.5rem;border-radius:.5rem}.services_modal-services{row-gap:1rem}.services_modal-service{display:flex}.services_modal-title{font-size:var(--h3-font);font-weight:var(--font-medium);margin-bottom:var(--mb-1-5)}.services_modal-close{position:absolute;top:1rem;right:1rem;font-size:1.5rem;color:var(--color);cursor:pointer}.services_modal-icon{color:var(--color);margin-right:var(--mb-0-25)}.active-modal{opacity:1;visibility:visible}.portfolio_container{overflow:initial}.portfolio_content{padding:0 1.5rem}.portfolio_img{width:265px;border-radius:.5rem;justify-self:center}.portfolio_title{font-size:var(--h3-font);margin-bottom:var(--mb-0-5)}.portfolio_description{margin-bottom:var(--mb-0-75)}.portfolio_button:hover .button_icon{transform:translateX(.25rem)}.swiper-button-next::after,.swiper-button-prev::after{content:""}.swiper-portfolio-icon{font-size:2rem;color:var(--color)}.swiper-button-prev{left:-.5rem}.swiper-button-next{right:-.5rem}.swiper-container-horizontal>.swiper-pagination-bullets{bottom:-2.5rem}.swiper-pagination-bullet-active{background-color:var(--color)}.swiper-button-next,.swiper-button-prev,.swiper-pagination-bullet{outline:0}.project{text-align:center}.project_bg{background-color:var(--color);margin-top:2.5rem}.project_title{font-size:var(--h2-font);margin-bottom:var(--mb-0-75);margin-top:var(--mb-0-75)}.project_description{margin-bottom:var(--mb-1-5)}.project_title{color:#fff}.project_description{color:var(--color-lighter)}.project_description:hover{color:#fff;transition:.3s}.project_img{height:260px;justify-self:center;filter:invert(100%) sepia(0) saturate(4214%) hue-rotate(121deg) brightness(111%) contrast(99%);opacity:.2;padding-bottom:1rem;display:none;transition:.3s}.project_img:hover{transition:1s;opacity:1}.project_buttons{padding-bottom:1rem}.recommendation_data,.recommendation_header{display:flex}.recommendation_data{justify-content:space-between;margin-bottom:var(--mb-1)}.recommendation_img{width:60px;height:60px;border-radius:50%;margin-right:var(--mb-0-75);filter:var(--color-svg)}.recommendation_img:hover{opacity:.8;transition:1s}.recommendation_name{font-size:var(--h3-font);font-weight:var(--font-medium)}.recommendation_relation{font-size:var(--small-font);color:var(--text-color-light)}.recommendation_description{margin-bottom:var(--mb-2-5)}.recommendation_icon-star{color:var(--color)}.swiper-container .swiper-pagination-recommendation{bottom:0}.join_container{row-gap:3rem}.join_information{display:flex;margin-bottom:var(--mb-2)}.join_icon{font-size:2rem;color:var(--color);margin-right:var(--mb-0-75)}.join_title{font-size:var(--h3-font);font-weight:var(--font-medium)}.join_subtitle{font-size:var(--small-font);color:var(--text-color-light)}.join_content{background-color:var(--input-color);border:.1rem solid var(--text-color);border-radius:.5rem;padding:.75rem 1rem .25rem}.join_input{width:100%;background-color:var(--input-color);color:var(--text-color);font-family:var(--body-font);font-size:var(--normal-font);border:none;outline:0;padding:.25rem .5rem .5rem 0}.join_label{font-size:var(--smaller-font);color:var(--title-color)}textarea{resize:vertical}.footer{padding-top:2rem}.footer_container{row-gap:3.5rem}.footer_bg{background-color:var(--color);padding:2rem 0 3rem}.footer_title{font-size:var(--h1-font);margin-bottom:var(--mb-0-25)}.footer_subtitle{font-size:var(--small-font)}.footer_links{display:flex;flex-direction:column;row-gap:1.5rem}.footer_link:hover{color:var(--color-lighter)}.footer_social{font-size:1.5rem;margin-right:var(--mb-1-5)}.footer_social:hover{color:var(--color-lighter)}.footer_copy{font-size:var(--smaller-font);text-align:center;color:var(--color-lighter);margin-top:var(--mb-3)}.footer_link,.footer_social,.footer_subtitle,.footer_title{color:#fff}.scroll_up{position:fixed;right:1rem;bottom:-20%;background-color:var(--color);opacity:.5;padding:0 .3rem;border-radius:.4rem;z-index:var(--z-tooltip);transition:.4s}.scroll_up:hover{background-color:var(--color-alt);opacity:.8}.scroll_up-icon{font-size:1.5rem;color:var(--color-lighter)}.show-scroll{bottom:5rem}::-webkit-scrollbar{width:.6rem;background-color:var(--scroll-bar);border-radius:.5rem}::-webkit-scrollbar-thumb{background-color:var(--scroll-thumb);border-radius:.5rem}::-webkit-scrollbar-thumb:hover{background-color:var(--text-color-light)}.modal_img{background:rgba(0,0,0,.8);backdrop-filter:blur(8px);top:0;left:0;width:100%;height:100%;opacity:0;pointer-events:none;z-index:var(--z-modal);position:fixed;transition:all .3s ease-out}.modal_img.open{opacity:1;pointer-events:all}.full_img{position:absolute;max-width:90%;max-height:90%;top:50%;left:50%;transform:translate(-50%,-50%) scale(.5);transition:all .3s ease-in-out;border-radius:.5rem}.full_img.open{transform:translate(-50%,-50%) scale(1)}.modal_caption{text-align:center;color:#fff;font-size:var(--small-font);position:absolute;bottom:7%;left:50%;transform:translate(-50%,-7%)}@keyframes awn-fade-in{0%{opacity:0}to{opacity:1}}@keyframes awn-fade-out{0%{opacity:1}to{opacity:0}}@keyframes awn-slide-right{0%{left:100%;opacity:0}to{left:0;opacity:1}}@keyframes awn-slide-left{0%{opacity:0;right:100%}to{opacity:1;right:0}}@keyframes awn-bar{0%{right:100%}to{right:0}}.awn-popup-loading-dots,.awn-popup-loading-dots:after,.awn-popup-loading-dots:before{animation-fill-mode:both;animation:awn-loading-dots 1s ease-in-out infinite;background:#fff;border-radius:50%;height:6px;width:6px}.awn-popup-loading-dots{animation-delay:-.16s;color:#fff;display:inline-block;margin-left:24px;position:relative}.awn-popup-loading-dots:after,.awn-popup-loading-dots:before{content:"";position:absolute;top:0}.awn-popup-loading-dots:before{animation-delay:-.32s;left:-16px}.awn-popup-loading-dots:after{left:16px}@keyframes awn-loading-dots{0%,80%,to{box-shadow:0 0}40%{box-shadow:0 0 0 2px}}#awn-popup-wrapper{align-items:center;animation-fill-mode:both;animation-name:awn-fade-in;animation-timing-function:ease-out;bottom:0;display:flex;justify-content:center;left:0;opacity:0;position:fixed;right:0;top:0;z-index:99999;backdrop-filter:blur(8px)}#awn-popup-wrapper.awn-hiding{animation-name:awn-fade-out}#awn-popup-wrapper .awn-popup-body{background:#fff;border-radius:6px;font-size:14px;max-width:500px;min-width:320px;padding:24px;position:relative;word-break:break-word}#awn-popup-wrapper .awn-popup-body.awn-popup-confirm{align-items:center;display:flex;flex-direction:column}#awn-popup-wrapper .awn-popup-body.awn-popup-confirm .fa{color:#c26700;font-size:44px}#awn-popup-wrapper .awn-popup-body.awn-popup-async-block{background:0 0;color:#fff;font-size:32px;font-weight:700;text-align:center}#awn-popup-wrapper .awn-popup-title{font-size:14px;font-weight:700;margin-top:8px;text-transform:uppercase}#awn-popup-wrapper .awn-buttons{display:flex;justify-content:space-between;margin-top:24px;width:100%}#awn-popup-wrapper .awn-buttons .awn-btn{border:0;border-radius:4px;color:#fff;font-size:14px;font-weight:700;line-height:32px;transition:background .2s linear;width:45%}#awn-popup-wrapper .awn-buttons-1 .awn-btn{width:100%}#awn-popup-wrapper .awn-buttons .awn-btn-success{background:#40871d}#awn-popup-wrapper .awn-buttons .awn-btn-success:hover{background:#367218}#awn-popup-wrapper .awn-buttons .awn-btn-cancel{background:#1c76a6}#awn-popup-wrapper .awn-buttons .awn-btn-cancel:hover{background:#186690}#awn-toast-container{bottom:24px;box-sizing:border-box;position:fixed;right:24px;z-index:99998}#awn-toast-container.awn-top-left,#awn-toast-container.awn-top-right{bottom:auto;top:4rem}#awn-toast-container.awn-top-left .awn-toast:first-child,#awn-toast-container.awn-top-right .awn-toast:first-child{margin-top:1px}#awn-toast-container.awn-bottom-left,#awn-toast-container.awn-top-left{left:24px;right:auto}#awn-toast-container.awn-bottom-left .awn-toast,#awn-toast-container.awn-top-left .awn-toast{animation-name:awn-slide-left;right:100%}#awn-toast-container.awn-bottom-left .awn-toast.awn-hiding,#awn-toast-container.awn-top-left .awn-toast.awn-hiding{right:0}#awn-toast-container.awn-bottom-right .awn-toast,#awn-toast-container.awn-top-right .awn-toast{animation-name:awn-slide-right;left:100%}#awn-toast-container.awn-bottom-right .awn-toast.awn-hiding,#awn-toast-container.awn-top-right .awn-toast.awn-hiding{left:0}.awn-toast{animation-fill-mode:both;animation-timing-function:linear;border-radius:.5rem;color:var(--color);cursor:pointer;font-size:var(--font-medium);margin-top:1rem;opacity:0;overflow:hidden;position:relative;width:320px;backdrop-filter:blur(8px)}.awn-toast-content{word-break:break-word}.awn-toast-label{color:#fff;display:block;font-size:var(--h3-font);text-transform:uppercase}.awn-toast-icon{align-items:center;bottom:0;display:flex;justify-content:flex-end;position:absolute;right:16px;top:2px;font-size:42px}.awn-toast-icon .fa{color:#fff;font-size:44px}.awn-toast-wrapper{border-radius:.5rem;padding:10px 75px 10px 16px;box-shadow:0 2px 4px rgba(0,0,0,.15)}.awn-toast-progress-bar{height:3px;left:0;position:absolute;right:0;bottom:0}.awn-toast-progress-bar:after{animation-duration:inherit;animation-fill-mode:both;animation-name:awn-bar;animation-timing-function:linear;background:#fff;content:" ";height:3px;position:absolute;right:100%;top:0;width:100%}.awn-toast.awn-toast-progress-bar-paused .awn-toast-progress-bar:after{animation-play-state:paused}.awn-toast.awn-hiding{animation-name:awn-fade-out!important}.awn-toast.awn-toast-success{background:#dff8d3;color:#40871d}.awn-toast.awn-toast-success .awn-toast-wrapper{border-color:#a7d590}.awn-toast.awn-toast-success .fa,.awn-toast.awn-toast-success b{color:#40871d}.awn-toast.awn-toast-success .awn-toast-progress-bar:after{background:#40871d}.awn-toast.awn-toast-info{background:#d3ebf8;color:#1c76a6}.awn-toast.awn-toast-info .awn-toast-wrapper{border-color:#9fd3ef}.awn-toast.awn-toast-info .fa,.awn-toast.awn-toast-info b{color:#1c76a6}.awn-toast.awn-toast-info .awn-toast-progress-bar:after{background:#1c76a6}.awn-toast.awn-toast-alert{background:#f8d5d3;color:#a92019}.awn-toast.awn-toast-alert .awn-toast-wrapper{border-color:#f0a29d}.awn-toast.awn-toast-alert .fa,.awn-toast.awn-toast-alert b{color:#a92019}.awn-toast.awn-toast-alert .awn-toast-progress-bar:after{background:#a92019}.awn-toast.awn-toast-warNukeHubg{background:#ffe7cc;color:#c26700}.awn-toast.awn-toast-warNukeHubg .awn-toast-wrapper{border-color:#ffc480}.awn-toast.awn-toast-warNukeHubg .fa,.awn-toast.awn-toast-warNukeHubg b{color:#c26700}.awn-toast.awn-toast-warNukeHubg .awn-toast-progress-bar:after{background:#c26700}[class^=awn-]{box-sizing:border-box}@-webkit-keyframes cm-spin{0%{-webkit-transform:translateY(-50%) rotate(0);transform:translateY(-50%) rotate(0)}100%{-webkit-transform:translateY(-50%) rotate(359deg);transform:translateY(-50%) rotate(359deg)}}@-o-keyframes cm-spin{0%{-webkit-transform:translateY(-50%) rotate(0);-o-transform:translateY(-50%) rotate(0);transform:translateY(-50%) rotate(0)}100%{-webkit-transform:translateY(-50%) rotate(359deg);-o-transform:translateY(-50%) rotate(359deg);transform:translateY(-50%) rotate(359deg)}}@keyframes cm-spin{0%{-webkit-transform:translateY(-50%) rotate(0);-o-transform:translateY(-50%) rotate(0);transform:translateY(-50%) rotate(0)}100%{-webkit-transform:translateY(-50%) rotate(359deg);-o-transform:translateY(-50%) rotate(359deg);transform:translateY(-50%) rotate(359deg)}}.context-menu-icon::before{position:absolute;top:50%;left:0;width:2em;font-size:1em;font-style:normal;font-weight:400;line-height:1;color:#2980b9;text-align:center;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);-o-transform:translateY(-50%);transform:translateY(-50%);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.context-menu-icon.context-menu-hover:before{color:#fff}.context-menu-icon.context-menu-disabled::before{color:#bbb}.context-menu-icon.context-menu-icon-loading:before{-webkit-animation:cm-spin 2s infinite;-o-animation:cm-spin 2s infinite;animation:cm-spin 2s infinite}.context-menu-icon.context-menu-icon--fa{display:list-item;font-family:inherit;line-height:inherit}.context-menu-icon.context-menu-icon--fa::before{position:absolute;top:50%;left:0;width:2em;font-family:FontAwesome;font-size:1em;font-style:normal;font-weight:400;line-height:1;color:#2980b9;text-align:center;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);-o-transform:translateY(-50%);transform:translateY(-50%);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.context-menu-icon.context-menu-icon--fa.context-menu-hover:before{color:#fff}.context-menu-icon.context-menu-icon--fa.context-menu-disabled::before{color:#bbb}.context-menu-icon.context-menu-icon--fa5{display:list-item;font-family:inherit;line-height:inherit}.context-menu-icon.context-menu-icon--fa5 i,.context-menu-icon.context-menu-icon--fa5 svg{position:absolute;top:.3em;left:.5em;color:#2980b9}.context-menu-icon.context-menu-icon--fa5.context-menu-hover>i,.context-menu-icon.context-menu-icon--fa5.context-menu-hover>svg{color:#fff}.context-menu-icon.context-menu-icon--fa5.context-menu-disabled i,.context-menu-icon.context-menu-icon--fa5.context-menu-disabled svg{color:#bbb}.context-menu-list{position:absolute;display:inline-block;min-width:12rem;max-width:24rem;padding:.5rem 0;margin:.2rem;font-family:inherit;font-size:inherit;list-style-type:none;background:rgba(255,255,255,.8);backdrop-filter:blur(5px);border-radius:.5rem;-webkit-box-shadow:0 4px 6px rgba(0,0,0,.25);box-shadow:0 4px 6px rgba(0,0,0,.25)}.context-menu-item{position:relative;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;padding:.5rem 1rem;color:#2f2f2f;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.context_menu-icon{margin-right:.25rem}.context-menu-separator{padding:0;margin:.35em 0;border-bottom:1px solid rgba(0,0,0,.2)}.context-menu-item>label>input,.context-menu-item>label>textarea{-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.context-menu-item.context-menu-hover{color:#fff;cursor:pointer;background-color:var(--color)}.context-menu-item.context-menu-disabled{color:#bbb;cursor:default;background-color:#fff}.context-menu-input.context-menu-hover{color:#2f2f2f;cursor:default}.context-menu-submenu:after{position:absolute;top:50%;right:.5em;z-index:1;width:0;height:0;content:"";border-color:transparent transparent transparent #2f2f2f;border-style:solid;border-width:.25em 0 .25em .25em;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);-o-transform:translateY(-50%);transform:translateY(-50%)}.context-menu-item.context-menu-input{padding:.3em .6em}.context-menu-input>label>*{vertical-align:top}.context-menu-input>label>input[type=checkbox],.context-menu-input>label>input[type=radio]{position:relative;top:.12em;margin-right:.4em}.context-menu-input>label{margin:0}.context-menu-input>label,.context-menu-input>label>input[type=text],.context-menu-input>label>select,.context-menu-input>label>textarea{display:block;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.context-menu-input>label>textarea{height:7em}.context-menu-item>.context-menu-list{top:.3em;right:-.3em;display:none}.context-menu-item.context-menu-visible>.context-menu-list{display:block}.context-menu-accesskey{text-decoration:underline}@media screen and (max-width:350px){.container{margin-left:var(--mb-1);margin-right:var(--mb-1)}.nav_menu{padding:2rem .25rem 4rem}.nav_list{column-gap:0}.home_content{grid-template-columns:.25fr 3fr}.skills_title{font-size:var(--normal-font)}.qualification_data{gap:.5rem}.services_container{grid-template-columns:max-content;justify-content:center}.services_content{padding-right:3.5rem}.services_modal{padding:0 .5rem}.project_img{width:220px}.recommendation_data,.recommendation_header{flex-direction:column;align-items:center}.recommendation_img{margin:0;margin-bottom:var(--mb-0-25)}.recommendation_data,.recommendation_description{text-align:center}.footer_social{font-size:1.2rem;margin-right:var(--mb-0-75)}}@media screen and (min-width:600px){.home_content{grid-template-columns:max-content 1fr 1fr}.home_data{grid-column:initial}.home_tahmid{width:320px;transform:translateX(0)}.home_img{order:1;justify-self:center}.about_container,.footer_container,.join_container,.portfolio_content,.project_container{grid-template-columns:repeat(2,1fr)}.qualification_sections{display:grid;grid-template-columns:.6fr;justify-content:center}.project_img{display:block}}@media screen and (min-width:768px){.container{margin-left:auto;margin-right:auto}body{margin:0}.section{padding:5rem 0 2rem}.section_subtitle{margin-bottom:4rem}.header{top:0;bottom:initial}.footer_container,.header,.main{padding:0 1rem}.nav{height:calc(var(--header-height) + 1.5rem);column-gap:1rem}.nav_close,.nav_icon,.nav_toggle{display:none}.nav_list{display:flex;column-gap:2rem}.nav_menu{margin-left:auto}.change-theme{margin:0}.home_container{row-gap:4rem}.home_content{padding-top:5.5rem;column-gap:2rem}.home_tahmid{width:360px}.home_scroll{display:block}.home_scroll-button{margin-left:3rem}.about_container{column-gap:5rem}.about_description{text-align:initial}.about_info{justify-content:space-between}.about_buttons{justify-content:initial}.qualification_tabs{justify-content:center}.qualification_button{margin:0 var(--mb-1)}.qualification_sections{grid-template-columns:.5fr}.services_container{grid-template-columns:repeat(3,218px);justify-content:center}.services_icon{font-size:2rem}.services_content{padding:6rem 0 2rem 2.5rem}.services_modal-content{width:490px}.portfolio_img{width:320px}.portfolio_content{align-items:center}.project{text-align:initial}.project_bg{background:0 0}.project_container{border-radius:1rem;padding:3rem 2.5rem 0;grid-template-columns:1fr max-content;column-gap:3rem;backdrop-filter:blur(15px)}.bg_project{position:absolute;top:0;left:0;width:100%;height:100%;background-color:var(--color-2);z-index:-1;opacity:.9;border-radius:1rem}.footer_container{grid-template-columns:repeat(3,1fr)}.footer_bg{padding:3rem 0 3.5rem}.footer_links{flex-direction:row;column-gap:2rem}.footer_socials{justify-self:flex-end}.footer_copy{margin-top:4.5rem}.footer_social{font-size:1.2rem;margin-right:var(--mb-1)}.modal_caption{color:#fff;font-size:var(--font-medium);position:absolute;bottom:2%;left:50%;transform:translate(-50%,-2%)}.full_img{width:70%}}@media screen and (min-width:1024px){.footer_container,.header,.main{padding:0}.home_tahmid{width:390px}.home_social{transform:translateX(-6rem)}.about_img{width:95%}.services_container{grid-template-columns:repeat(3,238px)}.portfolio_content{column-gap:5rem}.swiper-portfolio-icon{font-size:3.5rem}.swiper-button-prev{left:-3.5rem}.swiper-button-next{right:-3.5rem}.swiper-container-horizontal>.swiper-pagination-bullets{bottom:-4.5rem}.join_form{width:460px}.join_inputs{grid-template-columns:repeat(2,1fr)}.modal_caption{font-size:1.25rem;bottom:1%;left:50%;transform:translate(-50%,-1%)}}@media screen and (min-width:1960px){body{zoom:1.3}}@media screen and (min-width:2880px){body{zoom:2}}@media screen and (min-width:3840px){body{zoom:2.8}}canvas{display:block}#particles-js{top:0;left:0;width:100%;height:100%;position:fixed;z-index:-1;background-color:var(--body-color);background-image:url("");background-repeat:no-repeat;background-position:50% 50%;filter:blur(4px)}
\ No newline at end of file
diff --git a/index.html b/index.html
index 566b5bd..d970b38 100644
--- a/index.html
+++ b/index.html
@@ -1,616 +1,79 @@
-
-
-
- NukeHub
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+---
+layout: base
+title: Home
+permalink: /
+---
-
-