From 95df45ca35effb4854cf71c5713b0da7d91927d7 Mon Sep 17 00:00:00 2001 From: Bomme <13520622+Bomme@users.noreply.github.com> Date: Tue, 18 Jun 2024 10:05:24 +0200 Subject: [PATCH 1/8] custom management command that sets an announcement banner on front page needs more styling --- .../management/commands/announcement_cache.py | 45 +++++++++++++++++++ templates/front.html | 4 ++ templates/molecules/announcement_banner.html | 8 ++++ 3 files changed, 57 insertions(+) create mode 100644 general/management/commands/announcement_cache.py create mode 100644 templates/molecules/announcement_banner.html diff --git a/general/management/commands/announcement_cache.py b/general/management/commands/announcement_cache.py new file mode 100644 index 000000000..b2b80ce6e --- /dev/null +++ b/general/management/commands/announcement_cache.py @@ -0,0 +1,45 @@ +"""Custom management command to set/clear announcement_cache for front page announcements banner. + +The announcement banner is a simple HTML snippet cached in the Django cache. It is formed by a title and a text +that are passed as arguments to the command. The command can be used to set the cache, clear it, or show the current +value of the cache. + +Example usage: + python manage.py announcement_cache set "New feature!" "Now you can do this and that. Learn more" + python manage.py announcement_cache clear + python manage.py announcement_cache show + +""" +from django.core.cache import cache +from django.core.management.base import BaseCommand +from django.template.loader import render_to_string + + +class Command(BaseCommand): + help = 'Set/clear "announcement_cache" for front page announcements banner' + + def add_arguments(self, parser): + parser.add_argument("action", type=str, help="Indicates whether to set or clear the cache") + parser.add_argument("title", type=str, nargs="?", help="Title of the announcement") + parser.add_argument("text", type=str, nargs="?", help="Text of the announcement") + + def handle(self, *args, **kwargs): + action = kwargs["action"] + title = kwargs["title"] + text = kwargs["text"] + + announcement_cache_key = "announcement_cache" + if action == "set": + one_day = 60 * 60 * 24 + value = render_to_string("molecules/announcement_banner.html", {"title": title, "text": text}) + cache.set(announcement_cache_key, value, one_day) + self.stdout.write(self.style.SUCCESS("Successfully set announcement_cache")) + elif action == "clear": + cache.delete(announcement_cache_key) + self.stdout.write(self.style.SUCCESS("Successfully cleared announcement_cache")) + elif action == "show": + current_value = cache.get(announcement_cache_key, "<>") + self.stdout.write(self.style.SUCCESS("Current value of announcement_cache:")) + self.stdout.write(current_value) + else: + self.stdout.write(self.style.ERROR('Invalid action. Use "set" or "clear".')) diff --git a/templates/front.html b/templates/front.html index e6b81eedd..94809c67a 100644 --- a/templates/front.html +++ b/templates/front.html @@ -41,6 +41,10 @@

Latest additions

{% endcache %} {% endif %} + + {% if announcement_cache %} + {{ announcement_cache }} + {% endif %} {% if rss_cache %} {{ rss_cache }} diff --git a/templates/molecules/announcement_banner.html b/templates/molecules/announcement_banner.html new file mode 100644 index 000000000..90325144d --- /dev/null +++ b/templates/molecules/announcement_banner.html @@ -0,0 +1,8 @@ +
+
+

{{ title }}

+
+ {{ text | safe }} +
+
+
From 2606c60012f021d565b214697804bae59662ec28 Mon Sep 17 00:00:00 2001 From: Bomme <13520622+Bomme@users.noreply.github.com> Date: Tue, 18 Jun 2024 22:20:30 +0200 Subject: [PATCH 2/8] use subparsers for individual commands --- .../management/commands/announcement_cache.py | 23 +++++++++++++------ 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/general/management/commands/announcement_cache.py b/general/management/commands/announcement_cache.py index b2b80ce6e..87d6ffb1e 100644 --- a/general/management/commands/announcement_cache.py +++ b/general/management/commands/announcement_cache.py @@ -19,20 +19,29 @@ class Command(BaseCommand): help = 'Set/clear "announcement_cache" for front page announcements banner' def add_arguments(self, parser): - parser.add_argument("action", type=str, help="Indicates whether to set or clear the cache") - parser.add_argument("title", type=str, nargs="?", help="Title of the announcement") - parser.add_argument("text", type=str, nargs="?", help="Text of the announcement") + subparsers = parser.add_subparsers(title="action", dest="action", required=True) + set_parser = subparsers.add_parser("set", help="Set the announcement_cache") + set_parser.set_defaults(action="set") + set_parser.add_argument("title", type=str, help="Title of the announcement") + set_parser.add_argument("text", type=str, help="Text of the announcement") + set_parser.add_argument("--timeout", type=int, help="Timeout for the cache in seconds") + + clear_parser = subparsers.add_parser("clear", help="Clear the announcement_cache") + clear_parser.set_defaults(action="clear") + + show_parser = subparsers.add_parser("show", help="Show the current value of the announcement_cache") + show_parser.set_defaults(action="show") def handle(self, *args, **kwargs): action = kwargs["action"] - title = kwargs["title"] - text = kwargs["text"] announcement_cache_key = "announcement_cache" if action == "set": - one_day = 60 * 60 * 24 + title = kwargs["title"] + text = kwargs["text"] + timeout = kwargs.get("timeout") value = render_to_string("molecules/announcement_banner.html", {"title": title, "text": text}) - cache.set(announcement_cache_key, value, one_day) + cache.set(announcement_cache_key, value, timeout) self.stdout.write(self.style.SUCCESS("Successfully set announcement_cache")) elif action == "clear": cache.delete(announcement_cache_key) From e6aaff43e92c0abb0dc4ef539f92115717afedf9 Mon Sep 17 00:00:00 2001 From: Bomme <13520622+Bomme@users.noreply.github.com> Date: Tue, 18 Jun 2024 22:27:22 +0200 Subject: [PATCH 3/8] pass announcement_cache value to front page template --- sounds/views.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sounds/views.py b/sounds/views.py index 552c4f705..0298c4571 100644 --- a/sounds/views.py +++ b/sounds/views.py @@ -200,6 +200,7 @@ def front_page(request): 'enable_query_suggestions': settings.ENABLE_QUERY_SUGGESTIONS, 'query_suggestions_url': reverse('query-suggestions'), 'enable_popular_searches': settings.ENABLE_POPULAR_SEARCHES_IN_FRONTPAGE, + 'announcement_cache': cache.get(settings.ANNOUNCEMENT_CACHE_KEY, None), } return render(request, 'front.html', tvars) @@ -833,7 +834,7 @@ def similar(request, username, sound_id): else: # Get similar sounds from solr try: - results = get_search_engine().search_sounds(similar_to=sound.id, + results = get_search_engine().search_sounds(similar_to=sound.id, similar_to_max_num_sounds=num_similar_sounds, num_sounds=num_similar_sounds) similarity_results = [(result['id'], result['score']) for result in results.docs] From 1067731fd91223309ff572518e9548b39071beb3 Mon Sep 17 00:00:00 2001 From: Bomme <13520622+Bomme@users.noreply.github.com> Date: Tue, 18 Jun 2024 22:29:51 +0200 Subject: [PATCH 4/8] use settings value for a common cache key --- freesound/settings.py | 2 ++ general/management/commands/announcement_cache.py | 8 ++++---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/freesound/settings.py b/freesound/settings.py index 6398ede81..e88f9a5cb 100644 --- a/freesound/settings.py +++ b/freesound/settings.py @@ -455,6 +455,8 @@ ADVANCED_SEARCH_MENU_ALWAYS_CLOSED_ON_PAGE_LOAD = True USER_DOWNLOADS_PUBLIC = True +ANNOUNCEMENT_CACHE_KEY = 'announcement_cache' + # ------------------------------------------------------------------------------- # Freesound data paths and urls diff --git a/general/management/commands/announcement_cache.py b/general/management/commands/announcement_cache.py index 87d6ffb1e..728aad126 100644 --- a/general/management/commands/announcement_cache.py +++ b/general/management/commands/announcement_cache.py @@ -10,6 +10,7 @@ python manage.py announcement_cache show """ +from django.conf import settings from django.core.cache import cache from django.core.management.base import BaseCommand from django.template.loader import render_to_string @@ -35,19 +36,18 @@ def add_arguments(self, parser): def handle(self, *args, **kwargs): action = kwargs["action"] - announcement_cache_key = "announcement_cache" if action == "set": title = kwargs["title"] text = kwargs["text"] timeout = kwargs.get("timeout") value = render_to_string("molecules/announcement_banner.html", {"title": title, "text": text}) - cache.set(announcement_cache_key, value, timeout) + cache.set(settings.ANNOUNCEMENT_CACHE_KEY, value, timeout) self.stdout.write(self.style.SUCCESS("Successfully set announcement_cache")) elif action == "clear": - cache.delete(announcement_cache_key) + cache.delete(settings.ANNOUNCEMENT_CACHE_KEY) self.stdout.write(self.style.SUCCESS("Successfully cleared announcement_cache")) elif action == "show": - current_value = cache.get(announcement_cache_key, "<>") + current_value = cache.get(settings.ANNOUNCEMENT_CACHE_KEY, "<>") self.stdout.write(self.style.SUCCESS("Current value of announcement_cache:")) self.stdout.write(current_value) else: From 0a60a406311ee00f2e106a4b6b26004bf645e7c2 Mon Sep 17 00:00:00 2001 From: ffont Date: Wed, 19 Jun 2024 13:24:12 +0200 Subject: [PATCH 5/8] Add proper styling to announcement banner --- .../styles/atoms/announcementBanner.scss | 14 ++++++++++++++ .../static/bw-frontend/styles/atoms/index.scss | 3 ++- templates/front.html | 4 ++-- templates/molecules/announcement_banner.html | 18 ++++++++++++------ 4 files changed, 30 insertions(+), 9 deletions(-) create mode 100644 freesound/static/bw-frontend/styles/atoms/announcementBanner.scss diff --git a/freesound/static/bw-frontend/styles/atoms/announcementBanner.scss b/freesound/static/bw-frontend/styles/atoms/announcementBanner.scss new file mode 100644 index 000000000..1b207440c --- /dev/null +++ b/freesound/static/bw-frontend/styles/atoms/announcementBanner.scss @@ -0,0 +1,14 @@ +.bw-announcement_banner { + display: flex; + flex-direction: row; + align-items: stretch; + + padding: $small-spacing; + background-color: $red; + border-radius: 2px; + color: #ffffff; + + a { + color: #000000; + } +} \ No newline at end of file diff --git a/freesound/static/bw-frontend/styles/atoms/index.scss b/freesound/static/bw-frontend/styles/atoms/index.scss index 9c8465903..0b7dddaa4 100644 --- a/freesound/static/bw-frontend/styles/atoms/index.scss +++ b/freesound/static/bw-frontend/styles/atoms/index.scss @@ -16,4 +16,5 @@ @import 'recaptcha'; @import 'selectableObject'; @import 'remixArrows'; -@import 'table'; \ No newline at end of file +@import 'table'; +@import 'announcementBanner'; \ No newline at end of file diff --git a/templates/front.html b/templates/front.html index 94809c67a..8bf83d432 100644 --- a/templates/front.html +++ b/templates/front.html @@ -41,8 +41,8 @@

Latest additions

{% endcache %} {% endif %} - - {% if announcement_cache %} + + {% if announcement_cache %} {{ announcement_cache }} {% endif %} diff --git a/templates/molecules/announcement_banner.html b/templates/molecules/announcement_banner.html index 90325144d..35f8d446b 100644 --- a/templates/molecules/announcement_banner.html +++ b/templates/molecules/announcement_banner.html @@ -1,8 +1,14 @@ -
-
-

{{ title }}

-
- {{ text | safe }} +{% load bw_templatetags %} +
+
+
+
{% bw_icon 'notification' %}
+
+
+ {% if title %}

{{ title }}

{% endif %} +
+ {{ text | safe }} +
-
+
\ No newline at end of file From ef30a2765b050f5753342aecc58817eeaeb29375 Mon Sep 17 00:00:00 2001 From: ffont Date: Wed, 19 Jun 2024 13:28:19 +0200 Subject: [PATCH 6/8] Rename management command, add more examples --- .../commands/{announcement_cache.py => announcement_banner.py} | 2 ++ 1 file changed, 2 insertions(+) rename general/management/commands/{announcement_cache.py => announcement_banner.py} (91%) diff --git a/general/management/commands/announcement_cache.py b/general/management/commands/announcement_banner.py similarity index 91% rename from general/management/commands/announcement_cache.py rename to general/management/commands/announcement_banner.py index 728aad126..1352390ca 100644 --- a/general/management/commands/announcement_cache.py +++ b/general/management/commands/announcement_banner.py @@ -6,6 +6,8 @@ Example usage: python manage.py announcement_cache set "New feature!" "Now you can do this and that. Learn more" + python manage.py announcement_cache set "" "This banner will have no title. Now you can do this and that. Learn more" + python manage.py announcement_cache set "" "short text with a 60 seconds timeout" --timeout 60 python manage.py announcement_cache clear python manage.py announcement_cache show From 03f1becc11699d9b0d34ad1ed52d36f472d94294 Mon Sep 17 00:00:00 2001 From: Bomme <13520622+Bomme@users.noreply.github.com> Date: Thu, 20 Jun 2024 08:50:00 +0200 Subject: [PATCH 7/8] update examples after name change --- general/management/commands/announcement_banner.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/general/management/commands/announcement_banner.py b/general/management/commands/announcement_banner.py index 1352390ca..d4fa49a0c 100644 --- a/general/management/commands/announcement_banner.py +++ b/general/management/commands/announcement_banner.py @@ -5,11 +5,11 @@ value of the cache. Example usage: - python manage.py announcement_cache set "New feature!" "Now you can do this and that. Learn more" - python manage.py announcement_cache set "" "This banner will have no title. Now you can do this and that. Learn more" - python manage.py announcement_cache set "" "short text with a 60 seconds timeout" --timeout 60 - python manage.py announcement_cache clear - python manage.py announcement_cache show + python manage.py announcement_banner set "New feature!" "Now you can do this and that. Learn more" + python manage.py announcement_banner set "" "This banner will have no title. Now you can do this and that. Learn more" + python manage.py announcement_banner set "" "short text with a 60 seconds timeout" --timeout 60 + python manage.py announcement_banner clear + python manage.py announcement_banner show """ from django.conf import settings From 3e228ea4fd096b6e42a011fbc7ce4ea9d6d2d9bc Mon Sep 17 00:00:00 2001 From: Bomme <13520622+Bomme@users.noreply.github.com> Date: Thu, 20 Jun 2024 09:57:02 +0200 Subject: [PATCH 8/8] add two new icons `info` and `bullhorn` --- freesound/static/bw-frontend/README.md | 4 +-- .../static/bw-frontend/bw-icons/Read Me.txt | 2 +- .../static/bw-frontend/bw-icons/demo.html | 30 +++++++++++++++++- .../bw-frontend/bw-icons/fonts/bw-icons.eot | Bin 15380 -> 16060 bytes .../bw-frontend/bw-icons/fonts/bw-icons.svg | 2 ++ .../bw-frontend/bw-icons/fonts/bw-icons.ttf | Bin 15212 -> 15892 bytes .../bw-frontend/bw-icons/fonts/bw-icons.woff | Bin 15288 -> 15968 bytes .../bw-frontend/bw-icons/selection.json | 2 +- .../static/bw-frontend/bw-icons/style.css | 19 ++++++++--- templates/molecules/announcement_banner.html | 4 +-- 10 files changed, 51 insertions(+), 12 deletions(-) diff --git a/freesound/static/bw-frontend/README.md b/freesound/static/bw-frontend/README.md index e44ff6806..8b5bf4cb5 100644 --- a/freesound/static/bw-frontend/README.md +++ b/freesound/static/bw-frontend/README.md @@ -18,9 +18,9 @@ To update icons: * Open iconmoon app in web browser * Import `bw-icons/selection.json` file * Add/modify icons using the online editor -* Go to "generate font", it will complain that "Strokes get ignored when generating fonts. You can convert them to fills to prevent this.", say "Continue" +* Go to "generate font". It will complain that "Strokes get ignored when generating fonts. You can convert them to fills to prevent this.", say "Continue" * Click "download". A compressed folder will be downloaded which wou use to replace whole bw-icons folder from this directory. -* Check the differences in `bw-icons/style.css` after you replaced folder contents, and make sure you copy code bits from old `style.css` that were added manually to the new version (the diff editor will make thos changes very clear). +* Check the differences in `bw-icons/style.css` after you replaced folder contents, and make sure you copy code bits from old `style.css` that were added manually to the new version (the diff editor will make those changes very clear). ## Running the new frontend in Django diff --git a/freesound/static/bw-frontend/bw-icons/Read Me.txt b/freesound/static/bw-frontend/bw-icons/Read Me.txt index 8491652f8..723a49eee 100644 --- a/freesound/static/bw-frontend/bw-icons/Read Me.txt +++ b/freesound/static/bw-frontend/bw-icons/Read Me.txt @@ -1,6 +1,6 @@ Open *demo.html* to see a list of all the glyphs in your font along with their codes/ligatures. -To use the generated font in desktop programs, you can install the TTF font. In order to copy the character associated with each icon, refer to the text box at the bottom right corner of each glyph in demo.html. The character inside this text box may be invisible; but it can still be copied. See this guide for more info: https://icomoon.io/#docs/local-fonts +To use the generated font in desktop programs, you can install the TTF font. In order to copy the character associated with each icon, refer to the text box at the bottom right corner of each glyph in demo.html. The character inside this text box may be invisible; but it can still be copied. See this guide for more info: https://icomoon.io/docs/#local-fonts You won't need any of the files located under the *demo-files* directory when including the generated font in your own projects. diff --git a/freesound/static/bw-frontend/bw-icons/demo.html b/freesound/static/bw-frontend/bw-icons/demo.html index 63ffac774..1c7391fee 100644 --- a/freesound/static/bw-frontend/bw-icons/demo.html +++ b/freesound/static/bw-frontend/bw-icons/demo.html @@ -9,7 +9,7 @@
-

Font Name: bw-icons (Glyphs: 87)

+

Font Name: bw-icons (Glyphs: 89)

Grid Size: 16

@@ -1231,6 +1231,34 @@

Grid Size: 16

+
+
+ + bw-icon-bullhorn +
+
+ + +
+
+ liga: + +
+
+
+
+ + bw-icon-info +
+
+ + +
+
+ liga: + +
+
diff --git a/freesound/static/bw-frontend/bw-icons/fonts/bw-icons.eot b/freesound/static/bw-frontend/bw-icons/fonts/bw-icons.eot index d478c87297677ae73a419ef209f1d11003b72814..685c7d18db8fb5d56fc9c4ff3a364b1019f3cd9f 100644 GIT binary patch delta 1005 zcma)4O>7fa5T4l|?f*DIG+zrhpt0Wbyt*H1RiE>Z3$+@UO=od58| zqlbe#gns}icIJ*ZW{0M-QvhR^h%d}hLAfozM%dL4&Mhpjd`8^}|4N><`Nd{K{^;qK z0OQM4ytB|)S%P^q0ZJ9Zi4PhJ;p2ZC8+QvcWY}0*Ji81$QLz6{dj>yky2lLAKs@*W zA>q8|)SSBWxwGkPIX`a8+urTz?N7STyIt2qJUEli(f{PJ`->)M$eyw9+1G51U12qL zn0Z4F>~L;mv{=SsAu0!4UoaL(L$npXzaxiDWnaLx&jlmOmG0-TE#ME z@PG6WpjR<;J$fi*TsTrY<&kC2soIeXM(R*h*A1ojn&cCD0&;*t4)h2<=>_%&gZ^Fo z{Ho{~w9;9BvFOjHtwE2teDQsrt$NRSdn7!^iySZU5(Onr3OU$$U0%~J`$Vkf31)Y$IU=|ZK_sa&+z6>aGB zbhUaWkxVAeRIAhfc<0t$s$=TTK~i^t>)4BZdgR&6zqBuXt#=EDF?MFf$1{{RDnsZK^}Vv3g8dTs^=vo}C_vkagB_aP2t1_pB#AYUaTx1^%xE|A4w z?g7-(k&~aC_{#9^90mr93qZkRxrr483|WkN3=EbtfP96##9YbLPf6Aw0icD9lM3>S zOBk3z23Y${PGD?KYydK4fDU42;9+27PEnXbuheyAuS zw)v?=Fr&;mp}m{q`E9;3aI=67e%QU$9mD|9lS8b`8Iv~mSottczGH1OS;l6*{wsk; zg6D*Igp)+YL@$ZH5R(zB5t|^kN9>jOD+xP^1CmLSAEZ2_rU6Z01mdL4?`+O70swC~ Bg1P_z diff --git a/freesound/static/bw-frontend/bw-icons/fonts/bw-icons.svg b/freesound/static/bw-frontend/bw-icons/fonts/bw-icons.svg index 56bbbfe55..94cd3d29e 100644 --- a/freesound/static/bw-frontend/bw-icons/fonts/bw-icons.svg +++ b/freesound/static/bw-frontend/bw-icons/fonts/bw-icons.svg @@ -81,6 +81,7 @@ + @@ -99,6 +100,7 @@ + \ No newline at end of file diff --git a/freesound/static/bw-frontend/bw-icons/fonts/bw-icons.ttf b/freesound/static/bw-frontend/bw-icons/fonts/bw-icons.ttf index 65cd54d0ba445ffc9f9f14dcead5877c8cf15025..8cda1fffee63a35ef00674de82ffa5dffce8247d 100644 GIT binary patch delta 947 zcma)4O>7fa5T5bw+MDdg_-Flg{TFO+YD+-3N!HGWh6b~}6k?&eh+y>+oCK1fqy!NK z5EVgf4@WU16cMRI@(2ZZDvQWOb`3y4Y)NL*VL$^l2HhpLDJBxq_0U=S}Q!mwr>Oa(%>MQjJ ztKzEce2JSg^6KE~H;uJM1F-R@%B#p;u{-Q4tFQ~K#P%~e^oS~;Q|ya6H;}LXf)C?! z0zjk216PABuop&P3NF$F*^Ggibfy=(^iGc#J#IQe3R9WdjwrMCrg8J+&{YX}Z+9;PLV;0Wm-(23mNp=QZ{RgZ>S?c1dt|*lE*mS$;EZ zcesU_vtMv*PM(!pJUGhZI_;6siN^wF%{BN zwx(e`K4RO2^?MR8B|^pt+dg3^$yPySUxQ zrf8Y1=Vo9qdjpg=%K!>+AL3AEU@%t!@>Mc&ODbya0$B{^9zZ=EIr+(nuMF?bVPLSh z02Dlyn^;l6kj1FSz+gE8$XCcq%#}?2lw=JO09wd6sUW|&gn=1kfVI!W9nJC$K$Z;9 zJdmRnz~!|Nk>E{(mgaBF-T8TkM$F z60v@t7TO!SiI3o#k78nFptd&FLezml+% lI3SrM`9aDNN@ diff --git a/freesound/static/bw-frontend/bw-icons/fonts/bw-icons.woff b/freesound/static/bw-frontend/bw-icons/fonts/bw-icons.woff index 11ad1d10f130aa99353727d13c506680aca46157..f2a3ff0f3d8beac4006700ee694027bb0465e43a 100644 GIT binary patch delta 1004 zcma)3Uuaup6h9~T-sHCTHtS7pzI)RoZIW9PnB|)0Cb{iWYQ4h1HB94Jmj|Ki+HKuv z-Nwo~QPv?oD9UJiC-@-DLFa>r4B|tPf?+Shgu-ACzD(+TSt5uC;)7e`xmhQIFCM<% zcfRxce&?L;&*t*ZJ8b#Yg9ibDZ2UM#9j^kqH_L2oXkcZ7h>b7s)PvJA7taIuWQxT- z^qyXL>lAS+fZg!$=;7e*{K=U)fYJM;DR~>Ge?X0Sllve|@?*bD0{CeMCgEg9S9-oLM|c+?SNN?&0?nW%K;Gi%WEe ziM7WcrrsxEKlB0zLAqM9d8k=yPB%YpZZ@}@_gZ30c0b2~tlXMvz1x1$ZUeS|)_4us zWA+`p#a7uhR%1t*9QlbVcu%3Zx65K(@ZC?W2mtK{4_pKG!(o_(MOdQ~6tX5}GuaUw zHgbU=2K+QdRHiYlA2l{?BJ}tP z=uW9m<4BS=v6P)O1Yx>1EeOWsSNiU^J(7^g@tTYdb?XrovoC6fM49*TG-NSkM*B=f z?4kbk9|j`K_|*t6#S(=>9gsyE`Le9UmXPVQuzqDPM;^3;n1T rB9GVx`-c6h9o9~0*R(BtE7}`f?<@4(i5-Zo$9AY366Wfy(QW)2p^w|+ delta 422 zcmaD*v!h(B+~3WOfsp|StamVQgXtUw#>pQU#U|>=*Ute8%$dwH**iV4xPXCyi3P~# zfMS94oXRwy7!L!3sSXHFlg_TlNKH&(U@*4;sxbp$EwlC989+gx7*Ich3J7x_;!w`W zEvW#CO<`bQ>;U1Ky9^9D`N=?amNGy!$3Xa%q0!wrxrr4(jh0V<0t#T9#i*B;n48ML zUlF(Z;}X3O)C&p(naw;*S7kT1 zDvF40?z9MIlvyXVcXK?y%~u9)pzT2LuzRaJjGp|%(ws4Avw@Wl6$gLuwk(2v8g(G3qd|gN$Qf N0$MJ-dA-d>MgRhNbcg@| diff --git a/freesound/static/bw-frontend/bw-icons/selection.json b/freesound/static/bw-frontend/bw-icons/selection.json index f6fea947a..2fbba743e 100644 --- a/freesound/static/bw-frontend/bw-icons/selection.json +++ b/freesound/static/bw-frontend/bw-icons/selection.json @@ -1 +1 @@ -{"IcoMoonType":"selection","icons":[{"icon":{"paths":["M390.208 408.971l-0.596-0.617-29.586 30.402h-360.026v146.49h360.956l29.252 30.332v0.287l196.398 203.855c13.216 13.719 31.138 21.426 49.826 21.426h140.934v182.857l246.634-256-246.634-256v182.857h-111.744l-176.11-182.914 176.11-182.799h111.744v182.857l246.634-256-246.634-256v182.857h-140.934c-18.688 0-36.61 7.709-49.826 21.426l-196.398 203.855v0.834z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["remix"],"grid":16},"attrs":[{}],"properties":{"order":528,"id":0,"name":"remix","prevSize":32,"code":59708},"setIdx":0,"setId":2,"iconIdx":0},{"icon":{"paths":["M512.002 0.006l0.002-0.006 123.733 400.696h388.263l-316.583 235.074 121.173 388.23-316.587-240.418v-783.576z","M512 0.006l-0.002-0.006-123.734 400.696h-388.266l316.586 235.074-121.174 388.23 316.59-240.418v-783.576z"],"attrs":[{"fill":"rgb(126, 126, 141)"},{"fill":"rgb(255, 53, 70)"}],"isMulticolor":true,"isMulticolor2":false,"colorPermutations":{"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{"f":2},{"f":3}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{"f":2},{"f":3}]},"tags":["half-star"],"grid":16},"attrs":[{"fill":"rgb(126, 126, 141)"},{"fill":"rgb(255, 53, 70)"}],"properties":{"order":527,"id":1,"name":"half-star","prevSize":32,"code":59733,"codes":[59733,59736]},"setIdx":0,"setId":2,"iconIdx":1},{"icon":{"paths":["M219.432 513.716c0.946 159.736 132.644 290.858 292.566 290.858 160.498 0 292.57-132.072 292.57-292.572 0-160.354-131.834-292.332-292.128-292.568v-73.148c200.416 0.232 365.274 165.23 365.274 365.714h-0.010c0.008 0.962 0.012 1.944 0.012 2.926 0 200.626-165.090 365.714-365.712 365.714v70.216c-240.752 0-438.86-198.108-438.86-438.858s198.108-438.856 438.856-438.856v-73.142c-280.874 0-512 231.126-512 512s231.126 512 512 512c280.874 0 512-231.126 512-512h-73.144c0-240.606-197.87-438.618-438.416-438.856v73.142c-200.626 0-365.714 165.864-365.714 367.43h72.706zM512.004 368.61c-80.156 0.118-146.072 66.108-146.072 146.286 0 80.252 66.036 146.288 146.286 146.288l0.002-76.072h-0.002c-40.124 0-73.142-33.018-73.142-73.144 0-40.052 32.898-73.024 72.928-73.142v0.030c40.12 0 73.138 33.020 73.138 73.142v0.004h146.29c0 120.378-99.054 219.432-219.428 219.432-119.81-0.002-218.498-98.126-219.422-217.718h0.43c0-120.792 98.816-220.218 218.992-220.454v75.348z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["fcw"],"grid":16},"attrs":[{}],"properties":{"order":525,"id":2,"name":"fcw","prevSize":32,"code":59732},"setIdx":0,"setId":2,"iconIdx":2},{"icon":{"paths":["M511.088 0c143.808 0 265.12 49.36 363.872 148.112 99.328 99.36 149.040 220.656 149.040 363.888 0 143.856-48.784 263.616-146.32 359.296-103.616 101.808-225.808 152.704-366.592 152.704-138.384 0-258.448-50.304-360.224-150.88-100.56-100.576-150.864-220.928-150.864-361.12 0-140.176 50.304-261.472 150.864-363.872 98.752-98.768 218.8-148.128 360.224-148.128zM512.912 92.352c-116.416 0-214.848 40.848-295.312 122.512-83.52 85.344-125.264 184.4-125.264 297.152 0 113.376 41.44 211.52 124.32 294.368 82.896 82.912 181.632 124.336 296.224 124.336 113.968 0 213.344-41.712 298.064-125.248 80.464-77.408 120.688-175.232 120.688-293.488 0-116.416-40.848-215.44-122.496-297.136-81.664-81.664-180.416-122.496-296.224-122.496zM650.064 384.912v209.36h-58.496v248.672h-159.104v-248.656h-58.496v-209.376c0-9.152 3.2-16.912 9.584-23.312 6.416-6.384 14.192-9.6 23.312-9.6h210.304c8.528 0 16.16 3.2 22.848 9.6 6.672 6.4 10.048 14.176 10.048 23.312zM440.672 253.264c0-48.128 23.76-72.224 71.328-72.224s71.312 24.064 71.312 72.224c0 47.536-23.776 71.312-71.312 71.312s-71.328-23.776-71.328-71.312z","M1535.072 0c143.84 0 265.136 49.36 363.888 148.096 99.328 98.752 149.040 220.048 149.040 363.904 0 143.872-48.768 263.616-146.32 359.328-103.6 101.792-225.824 152.672-366.608 152.672-138.976 0-259.040-50.592-360.208-151.76-100.56-100.592-150.864-220.64-150.864-360.24 0-140.192 50.304-261.488 150.864-363.888 98.736-98.736 218.8-148.112 360.208-148.112zM1139.2 373.952c-15.232 42.048-22.864 88.080-22.864 138.064 0 113.376 41.44 211.52 124.32 294.4 83.504 82.304 182.256 123.44 296.224 123.44 115.216 0 214.544-41.728 298.080-125.264 29.872-28.64 53.312-58.512 70.368-89.632l-192.896-85.936c-6.736 32.32-23.024 58.672-48.912 79.072-25.952 20.416-56.56 32.176-91.904 35.2v78.64h-59.424v-78.64c-56.688-0.576-108.512-20.992-155.424-61.232l70.4-71.312c33.504 31.072 71.616 46.608 114.288 46.608 17.664 0 32.768-3.936 45.28-11.888 12.48-7.904 18.752-20.992 18.752-39.312 0-12.816-4.592-23.168-13.728-31.088l-49.36-21.040-60.336-27.44-81.376-35.664-261.488-116.976zM1536.912 91.424c-116.416 0-214.848 41.136-295.312 123.424-20.128 20.128-39.024 42.976-56.688 68.592l195.664 87.76c8.528-26.816 24.672-48.304 48.464-64.448 23.744-16.144 51.488-25.136 83.2-26.976v-78.64h59.44v78.64c46.944 2.448 89.6 18.288 128 47.536l-66.752 68.576c-28.688-20.112-57.904-30.16-87.776-30.16-15.856 0-30.016 3.056-42.496 9.136-12.496 6.096-18.752 16.464-18.752 31.088 0 4.272 1.52 8.528 4.56 12.8l109.712 49.392 82.304 36.56 262.352 117.024c8.56-35.968 12.816-72.528 12.816-109.712 0-117.648-40.832-216.688-122.496-297.168-81.072-82.288-179.856-123.424-296.24-123.424z"],"width":2048,"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1150150170120203612022022121255255254125525525512555370159891521851722381":[{},{}],"150150170120203612022022121255255254125525525512555370159891521851722381":[{},{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{},{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{},{}]},"tags":["by-nc"],"grid":16},"attrs":[{},{}],"properties":{"order":523,"id":3,"name":"by-nc","prevSize":32,"code":59731,"codes":[59731,59732,59733,59736]},"setIdx":0,"setId":2,"iconIdx":3},{"icon":{"paths":["M511.36 0c-141.824 0-261.872 49.488-360.144 148.48-100.816 102.4-151.216 223.568-151.216 363.52 0 139.968 50.4 260.304 151.216 360.96 100.816 100.72 220.864 151.040 360.144 151.040 140.976 0 263.152-50.768 366.544-152.304 97.36-96.448 146.096-216.352 146.096-359.696 0-143.36-49.568-264.528-148.656-363.52-99.12-98.992-220.432-148.48-363.984-148.48zM512.64 92.144c116.208 0 214.88 40.96 296.048 122.896 82 81.056 123.008 180.032 123.008 296.96 0 117.744-40.128 215.488-120.448 293.12-84.592 83.648-184.144 125.456-298.608 125.456-114.496 0-213.168-41.44-296.032-124.176-82.896-82.768-124.336-180.944-124.336-294.4 0-113.504 41.856-212.496 125.6-296.96 80.32-81.936 178.56-122.896 294.768-122.896z","M733.792 516.656c-9.712 0-18.48 5.84-22.16 14.8l-8.176 19.648-22.784-191.664c-1.488-12.224-11.952-21.392-24.32-21.168-12.272 0.24-22.464 9.76-23.456 22.048l-8.784 106.192-10.736-142.112c-0.976-12.464-11.36-22.176-23.872-22.176-12.56-0.032-22.992 9.632-23.968 22.112l-7.216 92.736-12.256-194.592c-0.8-12.656-11.248-22.512-23.968-22.512-12.688 0.032-23.152 9.888-23.92 22.56l-10.544 172.8-8.912-136.832c-0.816-12.656-11.248-22.448-23.904-22.448-12.672 0-23.136 9.76-23.968 22.416l-10.896 165.536-8.544-117.584c-0.944-12.48-11.248-22.176-23.744-22.272-12.528-0.080-23.024 9.456-24.096 21.952l-15.984 185.44-3.68-25.216c-1.568-10.448-9.696-18.656-20.16-20.24-10.48-1.584-20.704 3.856-25.232 13.408l-27.168 57.152h-90.672v47.968h105.84c9.024 0 17.328-5.088 21.392-13.12l22.176 150.976c1.776 12.016 12.32 20.848 24.448 20.48 12.176-0.368 22.128-9.824 23.216-21.888l7.744-89.936 11.712 161.712c0.96 12.576 11.424 22.32 24.032 22.256 12.624-0.032 23.040-9.856 23.856-22.4l9.6-145.424 9.856 151.424c0.816 12.624 11.312 22.432 23.984 22.4 12.688 0 23.12-9.888 23.904-22.512l10.144-166.144 9.312 148.192c0.768 12.528 11.184 22.368 23.776 22.464 12.576 0.112 23.104-9.632 24.080-22.144l9.408-121.024 10.112 132.992c0.928 12.512 11.28 22.16 23.776 22.192 12.544 0.064 22.992-9.536 24-22l14.112-171.28 5.504 46.080c1.264 10.88 9.696 19.424 20.544 20.96 10.848 1.488 21.264-4.48 25.424-14.592l37.184-89.616h104.24v-47.984h-120.256zM572.736 527.44h-45.296v45.296c0 8.544-6.912 15.456-15.424 15.456-8.544 0-15.488-6.912-15.488-15.456v-45.296h-45.28c-8.528 0-15.472-6.912-15.472-15.424 0-8.544 6.944-15.472 15.472-15.472h45.28v-45.312c0-8.544 6.944-15.456 15.488-15.456 8.512 0 15.424 6.912 15.424 15.456v45.312h45.296c8.528 0 15.456 6.912 15.456 15.472 0 8.512-6.928 15.424-15.456 15.424z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1150150170120203612022022121255255254125525525512555370159891521851722381":[{},{}],"150150170120203612022022121255255254125525525512555370159891521851722381":[{},{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{},{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{},{}]},"tags":["splus"],"grid":16},"attrs":[{},{}],"properties":{"order":522,"id":4,"name":"splus","prevSize":32,"code":59730,"codes":[59730,59731,59732]},"setIdx":0,"setId":2,"iconIdx":4},{"icon":{"paths":["M0 426.667h1209.173l-305.493-306.347 120.32-120.32 512 512-512 512-120.32-120.32 305.493-306.347h-1209.173z"],"width":1536,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["arrow"],"grid":16},"attrs":[{}],"properties":{"order":97,"id":5,"name":"arrow","prevSize":32,"code":59657},"setIdx":0,"setId":2,"iconIdx":5},{"icon":{"paths":["M1024 512c0 282.77-229.23 512-512 512s-512-229.23-512-512c0-282.77 229.23-512 512-512s512 229.23 512 512z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["atom"],"grid":16},"attrs":[{}],"properties":{"order":96,"id":6,"name":"atom","prevSize":32,"code":59658},"setIdx":0,"setId":2,"iconIdx":6},{"icon":{"paths":["M0 455.111h1024v170.667h-1024z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["bar"],"grid":16},"attrs":[{}],"properties":{"order":121,"id":7,"name":"bar","prevSize":32,"code":59659},"setIdx":0,"setId":2,"iconIdx":7},{"icon":{"paths":["M629.029 496.64c70.949-49.006 120.686-129.463 120.686-204.069 0-165.303-128-292.571-292.571-292.571h-457.143v1024h514.926c152.869 0 271.36-124.343 271.36-277.211 0-111.177-62.903-206.263-157.257-250.149zM219.429 182.857h219.429c60.709 0 109.714 49.006 109.714 109.714s-49.006 109.714-109.714 109.714h-219.429v-219.429zM475.429 841.143h-256v-219.429h256c60.709 0 109.714 49.006 109.714 109.714s-49.006 109.714-109.714 109.714z"],"width":796,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["bold"],"grid":16},"attrs":[{}],"properties":{"order":94,"id":8,"name":"bold","prevSize":32,"code":59660},"setIdx":0,"setId":2,"iconIdx":8},{"icon":{"paths":["M1024 739.556v-99.556h-1024v99.556h1024zM1024 440.889v-99.556h-1024v99.556h1024z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["burger-condensed"],"grid":16},"attrs":[{}],"properties":{"order":93,"id":9,"name":"burger-condensed","prevSize":32,"code":59661},"setIdx":0,"setId":2,"iconIdx":9},{"icon":{"paths":["M0 1024h1536v-170.667h-1536v170.667zM0 597.333h1536v-170.667h-1536v170.667zM0 0v170.667h1536v-170.667h-1536z"],"width":1536,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["burger"],"grid":16},"attrs":[{}],"properties":{"order":92,"id":10,"name":"burger","prevSize":32,"code":59662},"setIdx":0,"setId":2,"iconIdx":10},{"icon":{"paths":["M774.717 287.372l-62.101-59.816-279.233 268.96 62.101 59.816 279.233-268.96zM961.459 227.556l-465.975 448.833-184.1-176.903-62.101 59.816 246.2 237.143 528.516-509.073-62.541-59.816zM0 559.301l246.2 237.143 62.101-59.816-245.76-237.143-62.541 59.816z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["check-double"],"grid":16},"attrs":[{}],"properties":{"order":91,"id":11,"name":"check-double","prevSize":32,"code":59663},"setIdx":0,"setId":2,"iconIdx":11},{"icon":{"paths":["M418.399 791.889l-312.115-312.115-106.284 105.535 418.399 418.399 898.173-898.173-105.535-105.535z"],"width":1317,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["check"],"grid":16},"attrs":[{}],"properties":{"order":90,"id":12,"name":"check","prevSize":32,"code":59664},"setIdx":0,"setId":2,"iconIdx":12},{"icon":{"paths":["M910.222 0h-796.444c-63.147 0-113.778 51.2-113.778 113.778v796.444c0 62.578 50.631 113.778 113.778 113.778h796.444c63.147 0 113.778-51.2 113.778-113.778v-796.444c0-62.578-50.631-113.778-113.778-113.778v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["checkbox-unselect"],"grid":16},"attrs":[{}],"properties":{"order":111,"id":13,"name":"checkbox-unselect","prevSize":32,"code":59665},"setIdx":0,"setId":2,"iconIdx":13},{"icon":{"paths":["M910.222 0h-796.444c-63.147 0-113.778 51.2-113.778 113.778v796.444c0 62.578 50.631 113.778 113.778 113.778h796.444c63.147 0 113.778-51.2 113.778-113.778v-796.444c0-62.578-50.631-113.778-113.778-113.778v0zM398.222 796.444l-284.444-272.979 80.213-76.98 204.231 195.453 431.787-414.383 80.213 77.526-512 491.363z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["checkbox"],"grid":16},"attrs":[{}],"properties":{"order":110,"id":14,"name":"checkbox","prevSize":32,"code":59666},"setIdx":0,"setId":2,"iconIdx":14},{"icon":{"paths":["M28.444 705.814l120.32 119.075 391.68-386.783 391.68 386.783 120.32-119.075-512-506.703z"],"width":1081,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["chevron-up"],"grid":16},"attrs":[{}],"properties":{"order":89,"id":15,"name":"chevron-up","prevSize":32,"code":59667},"setIdx":0,"setId":2,"iconIdx":15},{"icon":{"paths":["M119.075 0l-119.075 120.32 386.783 391.68-386.783 391.68 119.075 120.32 506.703-512z"],"width":626,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["chevron"],"grid":16},"attrs":[{}],"properties":{"order":88,"id":16,"name":"chevron","prevSize":32,"code":59668},"setIdx":0,"setId":2,"iconIdx":16},{"icon":{"paths":["M1024 103.131l-103.131-103.131-408.869 408.869-408.869-408.869-103.131 103.131 408.869 408.869-408.869 408.869 103.131 103.131 408.869-408.869 408.869 408.869 103.131-103.131-408.869-408.869z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["close"],"grid":16},"attrs":[{}],"properties":{"order":87,"id":17,"name":"close","prevSize":32,"code":59669},"setIdx":0,"setId":2,"iconIdx":17},{"icon":{"paths":["M102.4 0h819.2c56.32 0 102.4 46.080 102.4 102.4v921.6l-204.8-204.8h-716.8c-56.32 0-102.4-46.080-102.4-102.4v-614.4c0-56.32 46.080-102.4 102.4-102.4zM102.4 716.8h716.8l102.4 102.4v-716.8h-819.2v614.4zM374.797 557.511h421.647v-102.4h-421.647v102.4zM256 364.089h540.444v-102.4h-540.444v102.4z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["comments-stroke"],"grid":16},"attrs":[{}],"properties":{"order":86,"id":18,"name":"comments-stroke","prevSize":32,"code":59670},"setIdx":0,"setId":2,"iconIdx":18},{"icon":{"paths":["M921.6 0c56.32 0 101.888 46.080 101.888 102.4l0.512 921.6-240.941-180.706h-680.659c-56.32 0-102.4-46.080-102.4-102.4v-638.494c0-56.32 46.080-102.4 102.4-102.4h819.2zM421.647 602.353h421.647v-120.471h-421.647v120.471zM240.941 361.412h602.353v-120.471h-602.353v120.471z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["comments"],"grid":16},"attrs":[{}],"properties":{"order":85,"id":19,"name":"comments","prevSize":32,"code":59671},"setIdx":0,"setId":2,"iconIdx":19},{"icon":{"paths":["M853.333 361.412h-243.81v-361.412h-365.714v361.412h-243.81l426.667 421.647 426.667-421.647zM0 903.529v120.471h853.333v-120.471h-853.333z"],"width":853,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["download"],"grid":16},"attrs":[{}],"properties":{"order":84,"id":20,"name":"download","prevSize":32,"code":59672},"setIdx":0,"setId":2,"iconIdx":20},{"icon":{"paths":["M0 810.696v213.304h213.304l629.104-629.104-213.304-213.304-629.104 629.104zM1007.362 229.941c22.184-22.184 22.184-58.019 0-80.202l-133.102-133.102c-22.184-22.184-58.019-22.184-80.202 0l-104.092 104.092 213.304 213.304 104.092-104.092z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["edit"],"grid":16},"attrs":[{}],"properties":{"order":83,"id":21,"name":"edit","prevSize":32,"code":59673},"setIdx":0,"setId":2,"iconIdx":21},{"icon":{"paths":["M0 512c0-282.77 229.23-512 512-512s512 229.23 512 512c0 282.77-229.23 512-512 512s-512-229.23-512-512z","M438.044 642.844l-130.844-130.844 130.844-130.844-39.822-39.822-170.667 170.667 170.667 170.667 39.822-39.822zM585.956 642.844l130.844-130.844-130.844-130.844 39.822-39.822 170.667 170.667-170.667 170.667-39.822-39.822z"],"attrs":[{"fill":"rgb(202, 202, 212)"},{"fill":"rgb(255, 255, 255)","stroke":"rgb(255, 255, 255)","strokeLinejoin":"miter","strokeLinecap":"butt","strokeMiterlimit":"4","strokeWidth":14.222222222222221}],"isMulticolor":true,"isMulticolor2":true,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{"f":5},{"f":6,"s":6}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{"f":6},{"f":7,"s":7}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{"f":6},{"f":7,"s":7}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{"f":5},{"f":6,"s":6}]},"tags":["embed-stroke"],"grid":16},"attrs":[{"fill":"rgb(202, 202, 212)"},{"fill":"rgb(255, 255, 255)","stroke":"rgb(255, 255, 255)","strokeLinejoin":"miter","strokeLinecap":"butt","strokeMiterlimit":"4","strokeWidth":14.222222222222221}],"properties":{"order":115,"id":22,"name":"embed-stroke","prevSize":32,"code":59674,"codes":[59674,59675]},"setIdx":0,"setId":2,"iconIdx":22},{"icon":{"paths":["M378.88 723.437l-235.52-239.881 235.52-239.881-71.68-73.007-307.2 312.889 307.2 312.889 71.68-73.007zM645.12 723.437l235.52-239.881-235.52-239.881 71.68-73.007 307.2 312.889-307.2 312.889-71.68-73.007z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["embed"],"grid":16},"attrs":[{}],"properties":{"order":98,"id":23,"name":"embed","prevSize":32,"code":59676},"setIdx":0,"setId":2,"iconIdx":23},{"icon":{"paths":["M0 512c0-282.77 229.23-512 512-512s512 229.23 512 512c0 282.77-229.23 512-512 512s-512-229.23-512-512z","M548.3 795.978v-278.555h76.893l10.19-95.992h-87.083l0.131-48.045c0-25.036 2.379-38.451 38.338-38.451h48.071v-96.002h-76.904c-92.374 0-124.888 46.566-124.888 124.876v57.633h-57.58v95.992h57.58v278.544h115.253z"],"attrs":[{"fill":"rgb(59, 89, 152)"},{"fill":"rgb(255, 255, 255)"}],"isMulticolor":true,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{"f":1},{"f":6}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{"f":2},{"f":7}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{"f":1},{"f":7}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{"f":1},{"f":6}]},"tags":["facebook"],"grid":16},"attrs":[{"fill":"rgb(59, 89, 152)"},{"fill":"rgb(255, 255, 255)"}],"properties":{"order":107,"id":24,"name":"facebook","prevSize":32,"code":59677,"codes":[59677,59678]},"setIdx":0,"setId":2,"iconIdx":24},{"icon":{"paths":["M566.212 120.471l-24.094-120.471h-542.118v1024h120.471v-421.647h337.318l24.094 120.471h421.647v-602.353z"],"width":910,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["flag-filled"],"grid":16},"attrs":[{}],"properties":{"order":108,"id":25,"name":"flag-filled","prevSize":32,"code":59679},"setIdx":0,"setId":2,"iconIdx":25},{"icon":{"paths":["M546.133 120.471l-60.681-120.471h-485.452v1024h121.363v-421.647h303.407l60.681 120.471h424.77v-602.353h-364.089zM788.859 602.353h-242.726l-60.681-120.471h-364.089v-361.412h303.407l60.681 120.471h303.407v361.412z"],"width":910,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["flag"],"grid":16},"attrs":[{}],"properties":{"order":109,"id":26,"name":"flag","prevSize":32,"code":59680},"setIdx":0,"setId":2,"iconIdx":26},{"icon":{"paths":["M0 512c0-282.77 229.23-512 512-512s512 229.23 512 512c0 282.77-229.23 512-512 512s-512-229.23-512-512z","M412.042 497.371v55.589h90.878c-3.663 23.857-27.469 69.949-90.878 69.949-54.71 0-99.348-45.861-99.348-102.376s44.638-102.376 99.348-102.376c31.132 0 51.963 13.434 63.866 25.015l43.493-42.386c-27.927-26.405-64.095-42.386-107.36-42.386-88.589 0-160.238 72.497-160.238 162.133s71.649 162.133 160.238 162.133c92.48 0 153.829-65.78 153.829-158.427 0-10.654-1.145-18.761-2.518-26.868h-151.311z","M755.41 497.371h-45.782v-46.324h-45.782v46.324h-45.782v46.324h45.782v46.324h45.782v-46.324h45.782z"],"attrs":[{"fill":"rgb(255, 53, 70)"},{"fill":"rgb(255, 255, 255)"},{"fill":"rgb(255, 255, 255)"}],"isMulticolor":true,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{"f":2},{"f":6},{"f":6}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{"f":3},{"f":7},{"f":7}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{"f":3},{"f":7},{"f":7}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{"f":3},{"f":6},{"f":6}]},"tags":["google-plus"],"grid":16},"attrs":[{"fill":"rgb(255, 53, 70)"},{"fill":"rgb(255, 255, 255)"},{"fill":"rgb(255, 255, 255)"}],"properties":{"order":81,"id":27,"name":"google-plus","prevSize":32,"code":59681,"codes":[59681,59682,59683]},"setIdx":0,"setId":2,"iconIdx":27},{"icon":{"paths":["M1316.571 874.39v-718.13c0-65.829-53.86-119.688-119.688-119.688h-1077.195c-65.829 0-119.688 53.86-119.688 119.688v718.13c0 65.829 53.86 119.688 119.688 119.688h1077.195c65.829 0 119.688-53.86 119.688-119.688zM448.831 545.247l149.61 180.131 209.455-269.897 269.299 359.065h-837.818l209.455-269.299z"],"width":1317,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["image"],"grid":16},"attrs":[{}],"properties":{"order":80,"id":28,"name":"image","prevSize":32,"code":59684},"setIdx":0,"setId":2,"iconIdx":28},{"icon":{"paths":["M284.444 0v219.429h157.156l-243.2 585.143h-198.4v219.429h568.889v-219.429h-157.156l243.2-585.143h198.4v-219.429z"],"width":853,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["italic"],"grid":16},"attrs":[{}],"properties":{"order":79,"id":29,"name":"italic","prevSize":32,"code":59685},"setIdx":0,"setId":2,"iconIdx":29},{"icon":{"paths":["M97.28 512c0-87.552 71.168-158.72 158.72-158.72h204.8v-97.28h-204.8c-141.312 0-256 114.688-256 256s114.688 256 256 256h204.8v-97.28h-204.8c-87.552 0-158.72-71.168-158.72-158.72zM307.2 563.2h409.6v-102.4h-409.6v102.4zM768 256h-204.8v97.28h204.8c87.552 0 158.72 71.168 158.72 158.72s-71.168 158.72-158.72 158.72h-204.8v97.28h204.8c141.312 0 256-114.688 256-256s-114.688-256-256-256z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["link"],"grid":16},"attrs":[{}],"properties":{"order":78,"id":30,"name":"link","prevSize":32,"code":59686},"setIdx":0,"setId":2,"iconIdx":30},{"icon":{"paths":["M106.749 403.099c-59.068 0-106.749 46.092-106.749 103.191s47.681 103.191 106.749 103.191c59.068 0 106.749-46.092 106.749-103.191s-47.681-103.191-106.749-103.191v0zM106.057 0c-58.685 0-106.057 46.092-106.057 103.191s47.372 103.191 106.057 103.191c58.685 0 106.057-46.092 106.057-103.191s-47.372-103.191-106.057-103.191v0zM106.057 817.618c-59.009 0-106.057 46.552-106.057 103.191s47.845 103.191 106.057 103.191c58.212 0 106.057-46.552 106.057-103.191s-47.048-103.191-106.057-103.191v0zM320.247 986.074h996.324v-146.286h-996.324v146.286zM320.247 582.976h996.324v-146.286h-996.324v146.286zM320.247 33.592v146.286h996.324v-146.286h-996.324z"],"width":1317,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["list-bullets"],"grid":16},"attrs":[{}],"properties":{"order":122,"id":31,"name":"list-bullets","prevSize":32,"code":59687},"setIdx":0,"setId":2,"iconIdx":31},{"icon":{"paths":["M0 820.211h121.263v30.316h-60.632v60.632h60.632v30.316h-121.263v60.632h181.895v-242.526h-181.895v60.632zM60.632 274.526h60.632v-242.526h-121.263v60.632h60.632v181.895zM0 456.421h109.137l-109.137 127.326v54.568h181.895v-60.632h-109.137l109.137-127.326v-54.568h-181.895v60.632zM303.158 92.632v128h848.842v-128h-848.842zM303.158 948.211h848.842v-128h-848.842v128zM303.158 584.421h848.842v-128h-848.842v128z"],"width":1152,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["list-numbered"],"grid":16},"attrs":[{}],"properties":{"order":76,"id":32,"name":"list-numbered","prevSize":32,"code":59688},"setIdx":0,"setId":2,"iconIdx":32},{"icon":{"paths":["M369.778 232.727v139.636l184.889-186.182-184.889-186.182v139.636c-204.302 0-369.778 166.633-369.778 372.364 0 73.076 21.262 141.033 57.316 198.284l67.484-67.956c-20.8-38.633-32.356-83.316-32.356-130.327 0-154.065 124.338-279.273 277.333-279.273v0zM682.24 313.716l-67.484 67.956c20.338 39.098 32.356 83.316 32.356 130.327 0 154.065-124.338 279.273-277.333 279.273v-139.636l-184.889 186.182 184.889 186.182v-139.636c204.302 0 369.778-166.633 369.778-372.364 0-73.076-21.262-141.033-57.316-198.284v0z"],"width":740,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["loop"],"grid":16},"attrs":[{}],"properties":{"order":75,"id":33,"name":"loop","prevSize":32,"code":59689},"setIdx":0,"setId":2,"iconIdx":33},{"icon":{"paths":["M128 256c70.4 0 128-57.6 128-128s-57.6-128-128-128c-70.4 0-128 57.6-128 128s57.6 128 128 128v0zM128 384c-70.4 0-128 57.6-128 128s57.6 128 128 128c70.4 0 128-57.6 128-128s-57.6-128-128-128v0zM128 768c-70.4 0-128 57.6-128 128s57.6 128 128 128c70.4 0 128-57.6 128-128s-57.6-128-128-128v0z"],"width":284,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["more"],"grid":16},"attrs":[{}],"properties":{"order":74,"id":34,"name":"more","prevSize":32,"code":59690},"setIdx":0,"setId":2,"iconIdx":34},{"icon":{"paths":["M0 1024l725.333-512-725.333-512v1024zM853.333 0v1024h170.667v-1024h-170.667z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["next"],"grid":16},"attrs":[{}],"properties":{"order":99,"id":35,"name":"next","prevSize":32,"code":59691},"setIdx":0,"setId":2,"iconIdx":35},{"icon":{"paths":["M113.778 113.778v796.444h796.444v-398.222h113.778v398.222c0 63.147-51.2 113.778-113.778 113.778h-796.444c-62.578 0-113.778-50.631-113.778-113.778v-796.444c0-62.578 51.2-113.778 113.778-113.778h398.222v113.778h-398.222zM1024 398.222h-113.778v-204.231l-559.218 559.218-80.213-80.213 559.218-559.218h-204.231v-113.778h398.222l-0 398.222z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["open"],"grid":16},"attrs":[{}],"properties":{"order":73,"id":36,"name":"open","prevSize":32,"code":59692},"setIdx":0,"setId":2,"iconIdx":36},{"icon":{"paths":["M512 0c-282.624 0-512 229.376-512 512s229.376 512 512 512c282.624 0 512-229.376 512-512s-229.376-512-512-512zM460.8 716.8h-102.4v-409.6h102.4v409.6zM665.6 716.8h-102.4v-409.6h102.4v409.6z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["pause-filled"],"grid":16},"attrs":[{}],"properties":{"order":106,"id":37,"name":"pause-filled","prevSize":32,"code":59693},"setIdx":0,"setId":2,"iconIdx":37},{"icon":{"paths":["M358.4 716.8h102.4v-409.6h-102.4v409.6zM512 0c-282.624 0-512 229.376-512 512s229.376 512 512 512c282.624 0 512-229.376 512-512s-229.376-512-512-512zM512 921.6c-225.792 0-409.6-183.808-409.6-409.6s183.808-409.6 409.6-409.6c225.792 0 409.6 183.808 409.6 409.6s-183.808 409.6-409.6 409.6zM563.2 716.8h102.4v-409.6h-102.4v409.6z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["pause-stroke"],"grid":16},"attrs":[{}],"properties":{"order":105,"id":38,"name":"pause-stroke","prevSize":32,"code":59694},"setIdx":0,"setId":2,"iconIdx":38},{"icon":{"paths":["M369.778 0c-204.434 0-369.778 160.256-369.778 358.4 0 268.8 369.778 665.6 369.778 665.6s369.778-396.8 369.778-665.6c0-198.144-165.343-358.4-369.778-358.4zM369.778 512c-78.507 0-142.222-63.716-142.222-142.222s63.716-142.222 142.222-142.222c78.507 0 142.222 63.716 142.222 142.222s-63.716 142.222-142.222 142.222z"],"width":740,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["pin"],"grid":16},"attrs":[{}],"properties":{"order":104,"id":39,"name":"pin","prevSize":32,"code":59695},"setIdx":0,"setId":2,"iconIdx":39},{"icon":{"paths":["M512 0c-282.624 0-512 229.376-512 512s229.376 512 512 512c282.624 0 512-229.376 512-512s-229.376-512-512-512zM409.6 742.4v-460.8l307.2 230.4-307.2 230.4z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["play-filled"],"grid":16},"attrs":[{}],"properties":{"order":72,"id":40,"name":"play-filled","prevSize":32,"code":59696},"setIdx":0,"setId":2,"iconIdx":40},{"icon":{"paths":["M409.6 742.4l307.2-230.4-307.2-230.4v460.8zM512 0c-282.624 0-512 229.376-512 512s229.376 512 512 512c282.624 0 512-229.376 512-512s-229.376-512-512-512zM512 921.6c-225.792 0-409.6-183.808-409.6-409.6s183.808-409.6 409.6-409.6c225.792 0 409.6 183.808 409.6 409.6s-183.808 409.6-409.6 409.6z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["play-stroke"],"grid":16},"attrs":[{}],"properties":{"order":71,"id":41,"name":"play-stroke","prevSize":32,"code":59697},"setIdx":0,"setId":2,"iconIdx":41},{"icon":{"paths":["M0 292.571h867.388v146.286h-867.388v-146.286zM0 0h867.388v146.286h-867.388v-146.286zM0 585.143h578.259v146.286h-578.259v-146.286zM722.824 585.143v438.857l361.412-219.429-361.412-219.429z"],"width":1084,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["playlist"],"grid":16},"attrs":[{}],"properties":{"order":70,"id":42,"name":"playlist","prevSize":32,"code":59698},"setIdx":0,"setId":2,"iconIdx":42},{"icon":{"paths":["M1024 569.341v-114.681h-454.659v-454.659l-114.681 0v454.659h-454.659l-0 114.681h454.659v454.659h114.681v-454.659z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["plus"],"grid":16},"attrs":[{}],"properties":{"order":69,"id":43,"name":"plus","prevSize":32,"code":59699},"setIdx":0,"setId":2,"iconIdx":43},{"icon":{"paths":["M512 0c-282.624 0-512 229.376-512 512s229.376 512 512 512c282.624 0 512-229.376 512-512s-229.376-512-512-512v0zM563.2 870.4h-102.4v-102.4h102.4v102.4zM669.184 473.6l-46.080 47.104c-36.864 37.376-59.904 68.096-59.904 144.896h-102.4v-25.6c0-56.32 23.040-107.52 59.904-144.896l63.488-64.512c18.944-18.432 30.208-44.032 30.208-72.192 0-56.32-46.080-102.4-102.4-102.4s-102.4 46.080-102.4 102.4h-102.4c0-113.152 91.648-204.8 204.8-204.8s204.8 91.648 204.8 204.8c0 45.056-18.432 86.016-47.616 115.2v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["question"],"grid":16},"attrs":[{}],"properties":{"order":68,"id":44,"name":"question","prevSize":32,"code":59700},"setIdx":0,"setId":2,"iconIdx":44},{"icon":{"paths":["M101.275 1024h303.824l202.549-409.6v-614.4h-607.648v614.4h303.824l-202.549 409.6zM911.473 1024h303.824l202.549-409.6v-614.4h-607.648v614.4h303.824l-202.549 409.6z"],"width":1418,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["quote"],"grid":16},"attrs":[{}],"properties":{"order":67,"id":45,"name":"quote","prevSize":32,"code":59701},"setIdx":0,"setId":2,"iconIdx":45},{"icon":{"paths":["M512 256c-141.312 0-256 114.688-256 256s114.688 256 256 256c141.312 0 256-114.688 256-256s-114.688-256-256-256v0zM512 0c-282.624 0-512 229.376-512 512s229.376 512 512 512c282.624 0 512-229.376 512-512s-229.376-512-512-512v0zM512 921.6c-226.304 0-409.6-183.296-409.6-409.6s183.296-409.6 409.6-409.6c226.304 0 409.6 183.296 409.6 409.6s-183.296 409.6-409.6 409.6v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["radio"],"grid":16},"attrs":[{}],"properties":{"order":66,"id":46,"name":"radio","prevSize":32,"code":59702},"setIdx":0,"setId":2,"iconIdx":46},{"icon":{"paths":["M477.867 273.067v-273.067l-477.867 477.867 477.867 477.867v-279.893c341.333 0 580.267 109.227 750.933 348.16-68.267-341.333-273.067-682.667-750.933-750.933z"],"width":1229,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["reply"],"grid":16},"attrs":[{}],"properties":{"order":65,"id":47,"name":"reply","prevSize":32,"code":59703},"setIdx":0,"setId":2,"iconIdx":47},{"icon":{"paths":["M930.909 227.556h-837.818c-51.2 0-93.091 42.667-93.091 94.815v379.259c0 52.148 41.891 94.815 93.091 94.815h837.818c51.2 0 93.091-42.667 93.091-94.815v-379.259c0-52.148-41.891-94.815-93.091-94.815v0zM930.909 701.63h-837.818v-379.259h93.091v189.63h93.091v-189.63h93.091v189.63h93.091v-189.63h93.091v189.63h93.091v-189.63h93.091v189.63h93.091v-189.63h93.091v379.259z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["ruler"],"grid":16},"attrs":[{}],"properties":{"order":64,"id":48,"name":"ruler","prevSize":32,"code":59704},"setIdx":0,"setId":2,"iconIdx":48},{"icon":{"paths":["M554.667 186.182l-65.636 66.095-73.493-74.007v519.913h-91.52v-519.913l-73.493 74.007-65.636-66.095 184.889-186.182 184.889 186.182zM739.556 418.909v512c0 51.2-41.6 93.091-92.444 93.091h-554.667c-51.307 0-92.444-41.891-92.444-93.091v-512c0-51.665 41.138-93.091 92.444-93.091h138.667v93.091h-138.667v512h554.667v-512h-138.667v-93.091h138.667c50.844 0 92.444 41.425 92.444 93.091z"],"width":740,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["share"],"grid":16},"attrs":[{}],"properties":{"order":63,"id":49,"name":"share","prevSize":32,"code":59705},"setIdx":0,"setId":2,"iconIdx":49},{"icon":{"paths":["M512 0c-282.624 0-512 229.376-512 512s229.376 512 512 512c282.624 0 512-229.376 512-512s-229.376-512-512-512zM512 896c-212.16 0-384-171.84-384-384s171.84-384 384-384c212.16 0 384 171.84 384 384s-171.84 384-384 384z","M1024 0c-282.624 0-512 229.376-512 512s229.376 512 512 512c282.624 0 512-229.376 512-512s-229.376-512-512-512zM1024 896c-212.16 0-384-171.84-384-384s171.84-384 384-384c212.16 0 384 171.84 384 384s-171.84 384-384 384z"],"width":1536,"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{},{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{},{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{},{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{},{}]},"tags":["similar"],"grid":16},"attrs":[{},{}],"properties":{"order":101,"id":50,"name":"similar","prevSize":32,"code":59706},"setIdx":0,"setId":2,"iconIdx":50},{"icon":{"paths":["M0 384h256v640h-256v-640zM768 640h256v384h-256v-384zM384 0h256v1024h-256v-1024z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["spectogram"],"grid":16},"attrs":[{}],"properties":{"order":102,"id":51,"name":"spectogram","prevSize":32,"code":59707},"setIdx":0,"setId":2,"iconIdx":51},{"icon":{"paths":["M512 783.583l316.587 240.417-121.173-388.23 316.587-235.075h-388.267l-123.733-400.696-123.733 400.696h-388.267l316.587 235.075-121.173 388.23z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["star"],"grid":16},"attrs":[{}],"properties":{"order":526,"id":52,"name":"star","prevSize":32,"code":59710},"setIdx":0,"setId":2,"iconIdx":52},{"icon":{"paths":["M388.042 0v194.021h323.368v776.084h194.021v-776.084h323.368v-194.021h-840.758zM0 517.389h194.021v452.716h194.021v-452.716h194.021v-194.021h-582.063v194.021z"],"width":1229,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["text-size"],"grid":16},"attrs":[{}],"properties":{"order":60,"id":53,"name":"text-size","prevSize":32,"code":59711},"setIdx":0,"setId":2,"iconIdx":53},{"icon":{"paths":["M56.889 910.222c0 62.578 51.2 113.778 113.778 113.778h455.111c62.578 0 113.778-51.2 113.778-113.778v-682.667h-682.667v682.667zM796.444 56.889h-199.111l-56.889-56.889h-284.444l-56.889 56.889h-199.111v113.778h796.444v-113.778z"],"width":796,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["trash-filled"],"grid":16},"attrs":[{}],"properties":{"order":59,"id":54,"name":"trash-filled","prevSize":32,"code":59712},"setIdx":0,"setId":2,"iconIdx":54},{"icon":{"paths":["M56.889 910.222c0 62.578 51.2 113.778 113.778 113.778h455.111c62.578 0 113.778-51.2 113.778-113.778v-682.667h-682.667v682.667zM170.667 341.333h455.111v568.889h-455.111v-568.889zM597.333 56.889l-56.889-56.889h-284.444l-56.889 56.889h-199.111v113.778h796.444v-113.778h-199.111z"],"width":796,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["trash"],"grid":16},"attrs":[{}],"properties":{"order":58,"id":55,"name":"trash","prevSize":32,"code":59713},"setIdx":0,"setId":2,"iconIdx":55},{"icon":{"paths":["M0 512c0-282.77 229.23-512 512-512s512 229.23 512 512c0 282.77-229.23 512-512 512s-512-229.23-512-512z","M670.729 738.848c-18.207 17.62-55.573 30.709-91.386 31.319-1.353 0.023-2.679 0.035-4.011 0.035h-0.012c-117.795-0.006-149.223-90.513-149.223-143.994v-164.342c0-1.355-1.092-2.454-2.439-2.454h-56.959c-1.346 0-2.439-1.099-2.439-2.455v-74.865c0-1.001 0.623-1.894 1.55-2.257 60.879-23.854 94.877-71.251 103.82-144.561 0.498-4.073 3.836-4.185 3.871-4.185h76.034c1.346 0 2.438 1.099 2.438 2.455v131.579c0 1.355 1.092 2.454 2.439 2.454h94.646c1.347 0 2.439 1.1 2.439 2.455v86.924c0 1.356-1.092 2.455-2.439 2.455h-95.054c-1.347 0-2.439 1.099-2.439 2.455l0.003 156.184c0.56 35.167 17.469 52.994 50.259 52.994 13.212 0 28.345-3.094 42.162-8.406 1.292-0.496 2.717 0.165 3.159 1.483l24.179 72.143c0.305 0.91 0.091 1.917-0.596 2.582zM559.557 793.929c58.342 0 116.15-20.907 135.272-46.237l3.831-5.076-36.163-107.89c-0.335-0.998-1.265-1.67-2.311-1.67h-80.792c-1.094 0-2.083-0.701-2.36-1.766-0.941-3.598-1.503-7.997-1.59-13.432v-131.956c0-1.356 1.092-2.455 2.439-2.455h95.054c1.347 0 2.439-1.099 2.439-2.455v-134.993c0-1.356-1.092-2.455-2.439-2.455h-94.646c-1.346 0-2.439-1.099-2.439-2.454v-131.579c0-1.356-1.091-2.455-2.438-2.455h-165.984c-11.87 0-25.567 8.861-27.57 25.285-8.287 67.921-39.235 108.668-97.393 128.232l-6.489 2.18c-0.996 0.335-1.667 1.272-1.667 2.329v115.91c0 1.356 1.092 2.455 2.439 2.455h59.398v142.761c0 113.964 78.421 167.721 223.411 167.721z"],"attrs":[{"fill":"rgb(20, 20, 36)"},{"fill":"rgb(255, 255, 254)"}],"isMulticolor":true,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{"f":0},{"f":7}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{"f":1},{"f":8}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{"f":0},{"f":8}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{"f":0},{"f":7}]},"tags":["tumblr"],"grid":16},"attrs":[{"fill":"rgb(20, 20, 36)"},{"fill":"rgb(255, 255, 254)"}],"properties":{"order":57,"id":56,"name":"tumblr","prevSize":32,"code":59714,"codes":[59714,59715]},"setIdx":0,"setId":2,"iconIdx":56},{"icon":{"paths":["M0 512c0-282.77 229.23-512 512-512s512 229.23 512 512c0 282.77-229.23 512-512 512s-512-229.23-512-512z","M496.666 416.16l1.074 17.716-17.907-2.169c-65.18-8.316-122.123-36.517-170.472-83.882l-23.637-23.501-6.088 17.355c-12.893 38.687-4.656 79.543 22.204 107.021 14.325 15.185 11.102 17.355-13.609 8.316-8.595-2.892-16.116-5.062-16.832-3.977-2.507 2.531 6.088 35.433 12.893 48.449 9.311 18.078 28.293 35.794 49.064 46.279l17.549 8.316-20.772 0.362c-20.055 0-20.772 0.362-18.623 7.954 7.163 23.501 35.455 48.449 66.971 59.296l22.204 7.593-19.339 11.57c-28.651 16.632-62.315 26.032-95.98 26.755-16.116 0.362-29.367 1.808-29.367 2.892 0 3.616 43.692 23.863 69.12 31.817 76.282 23.501 166.89 13.378 234.936-26.755 48.348-28.563 96.696-85.328 119.258-140.285 12.177-29.286 24.353-82.797 24.353-108.467 0-16.632 1.074-18.801 21.13-38.687 11.818-11.57 22.921-24.224 25.069-27.84 3.581-6.87 3.223-6.87-15.042-0.723-30.441 10.847-34.739 9.401-19.697-6.87 11.102-11.57 24.353-32.54 24.353-38.687 0-1.085-5.372 0.723-11.46 3.977-6.446 3.616-20.772 9.039-31.516 12.293l-19.339 6.146-17.549-11.931c-9.67-6.508-23.279-13.739-30.441-15.909-18.265-5.062-46.199-4.339-62.673 1.446-44.767 16.27-73.059 58.211-69.836 104.129z"],"attrs":[{"fill":"rgb(85, 172, 238)"},{"fill":"rgb(255, 255, 255)"}],"isMulticolor":true,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{"f":4},{"f":6}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{"f":5},{"f":7}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{"f":5},{"f":7}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{"f":4},{"f":6}]},"tags":["twitter"],"grid":16},"attrs":[{"fill":"rgb(85, 172, 238)"},{"fill":"rgb(255, 255, 255)"}],"properties":{"order":56,"id":57,"name":"twitter","prevSize":32,"code":59716,"codes":[59716,59717]},"setIdx":0,"setId":2,"iconIdx":57},{"icon":{"paths":["M398.222 796.444c188.302 0 341.333-153.031 341.333-341.333v-455.111h-142.222v455.111c0 109.796-89.316 199.111-199.111 199.111s-199.111-89.316-199.111-199.111v-455.111h-142.222v455.111c0 188.302 153.031 341.333 341.333 341.333zM0 910.222v113.778h796.444v-113.778h-796.444z"],"width":796,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["underline"],"grid":16},"attrs":[{}],"properties":{"order":55,"id":58,"name":"underline","prevSize":32,"code":59718},"setIdx":0,"setId":2,"iconIdx":58},{"icon":{"paths":["M700.632 296.421c0 119.061-96.518 215.579-215.579 215.579s-215.579-96.518-215.579-215.579c0-119.061 96.518-215.579 215.579-215.579s215.579 96.518 215.579 215.579z","M916.211 943.158c0-238.122-193.036-431.158-431.158-431.158s-431.158 193.036-431.158 431.158","M0 948.547h970.105v53.895h-970.105v-53.895z"],"width":970,"attrs":[{"fill":"none","stroke":"rgb(20, 20, 36)","strokeLinejoin":"round","strokeLinecap":"round","strokeMiterlimit":"4","strokeWidth":107.78947368421052},{"fill":"none","stroke":"rgb(20, 20, 36)","strokeLinejoin":"round","strokeLinecap":"round","strokeMiterlimit":"4","strokeWidth":107.78947368421052},{"fill":"rgb(255, 255, 255)"}],"isMulticolor":false,"isMulticolor2":true,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{"s":0},{"s":0},{"f":6}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{"s":1},{"s":1},{"f":7}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{"s":0},{"s":0},{"f":7}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{"s":0},{"s":0},{"f":6}]},"tags":["user"],"grid":16},"attrs":[{"fill":"none","stroke":"rgb(20, 20, 36)","strokeLinejoin":"round","strokeLinecap":"round","strokeMiterlimit":"4","strokeWidth":107.78947368421052},{"fill":"none","stroke":"rgb(20, 20, 36)","strokeLinejoin":"round","strokeLinecap":"round","strokeMiterlimit":"4","strokeWidth":107.78947368421052},{"fill":"rgb(255, 255, 255)"}],"properties":{"order":116,"id":59,"name":"user","prevSize":32,"code":59719},"setIdx":0,"setId":2,"iconIdx":59},{"icon":{"paths":["M853.333 512c0-113.28-64.474-210.56-158.025-257.92v515.2c93.551-46.72 158.025-144 158.025-257.28zM0 320v384h252.84l316.049 320v-1024l-316.049 320h-252.84z"],"width":853,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["volume"],"grid":16},"attrs":[{}],"properties":{"order":100,"id":60,"name":"volume","prevSize":32,"code":59720},"setIdx":0,"setId":2,"iconIdx":60},{"icon":{"paths":["M859.136 690.152l-89.6-356.304h-105.472l-98.816 425.529-154.624-730.932h-104.448l-142.848 661.708h-163.328v101.801h246.272l111.616-518.677 153.088 722.279h104.96l102.912-443.853 60.416 240.251h244.736v-101.801z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["wave"],"grid":16},"attrs":[{}],"properties":{"order":53,"id":61,"name":"wave","prevSize":32,"code":59721},"setIdx":0,"setId":2,"iconIdx":61},{"icon":{"paths":["M682.667 0h-568.889c-62.578 0-113.209 51.2-113.778 113.778v910.222l398.222-170.667 398.222 170.667v-910.222c0-62.578-51.2-113.778-113.778-113.778v0zM682.667 853.333l-284.444-113.778-284.444 113.778v-739.556h568.889v739.556z"],"width":796,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["bookmark"],"grid":16},"attrs":[{}],"properties":{"order":529,"id":62,"name":"bookmark","prevSize":32,"code":59649},"setIdx":0,"setId":2,"iconIdx":62},{"icon":{"paths":["M682.667 0h-568.889c-62.578 0-113.209 51.2-113.209 113.778l-0.569 910.222 398.222-170.667 398.222 170.667v-910.222c0-62.578-51.2-113.778-113.778-113.778v0z"],"width":796,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["bookmarkFill"],"grid":16},"attrs":[{}],"properties":{"order":4,"id":63,"name":"bookmark-filled","prevSize":32,"code":59650},"setIdx":0,"setId":2,"iconIdx":63},{"icon":{"paths":["M768 512c0 70.4 57.6 128 128 128s128-57.6 128-128c0-70.4-57.6-128-128-128s-128 57.6-128 128v0zM640 512c0-70.4-57.6-128-128-128s-128 57.6-128 128c0 70.4 57.6 128 128 128s128-57.6 128-128v0zM256 512c0-70.4-57.6-128-128-128s-128 57.6-128 128c0 70.4 57.6 128 128 128s128-57.6 128-128v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["ellipsis"],"grid":16},"attrs":[{}],"properties":{"order":5,"id":64,"name":"ellipsis","prevSize":32,"code":59651},"setIdx":0,"setId":2,"iconIdx":64},{"icon":{"paths":["M0 1024h292.571v-1024h-292.571v1024zM585.143 0v1024h292.571v-1024h-292.571z"],"width":910,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["pause"],"grid":16},"attrs":[{}],"properties":{"order":6,"id":65,"name":"pause","prevSize":32,"code":59652},"setIdx":0,"setId":2,"iconIdx":65},{"icon":{"paths":["M0 0v1024l796.444-512z"],"width":796,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["play"],"grid":16},"attrs":[{}],"properties":{"order":7,"id":66,"name":"play","prevSize":32,"code":59653},"setIdx":0,"setId":2,"iconIdx":66},{"icon":{"paths":["M369.778 232.727v139.636l184.889-186.182-184.889-186.182v139.636c-204.302 0-369.778 166.633-369.778 372.364 0 73.076 21.262 141.033 57.316 198.284l67.484-67.956c-20.8-38.633-32.356-83.316-32.356-130.327 0-154.065 124.338-279.273 277.333-279.273v0zM682.24 313.716l-67.484 67.956c20.338 39.098 32.356 83.316 32.356 130.327 0 154.065-124.338 279.273-277.333 279.273v-139.636l-184.889 186.182 184.889 186.182v-139.636c204.302 0 369.778-166.633 369.778-372.364 0-73.076-21.262-141.033-57.316-198.284v0z"],"width":740,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["refresh"],"grid":16},"attrs":[{}],"properties":{"order":8,"id":67,"name":"refresh","prevSize":32,"code":59654},"setIdx":0,"setId":2,"iconIdx":67},{"icon":{"paths":["M685.594 644.025l-16.393-15.808c57.377-66.744 91.92-153.395 91.92-247.657 0-210.186-170.374-380.56-380.56-380.56s-380.56 170.374-380.56 380.56c0 210.186 170.374 380.56 380.56 380.56 94.262 0 180.913-34.543 247.657-91.92l15.808 16.393v46.253l292.739 292.153 87.236-87.236-292.153-292.739h-46.253zM117.095 380.56c0-145.784 117.681-263.465 263.465-263.465s263.465 117.681 263.465 263.465c0 145.784-117.681 263.465-263.465 263.465s-263.465-117.681-263.465-263.465z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["search"],"grid":16},"attrs":[{}],"properties":{"order":9,"id":68,"name":"search","prevSize":32,"code":59655},"setIdx":0,"setId":2,"iconIdx":68},{"icon":{"paths":["M0 0h1024v1024h-1024z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["stop"],"grid":16},"attrs":[{}],"properties":{"order":10,"id":69,"name":"stop","prevSize":32,"code":59656},"setIdx":0,"setId":2,"iconIdx":69},{"icon":{"paths":["M511.088 0c143.808 0 265.12 49.36 363.872 148.112 99.328 99.36 149.040 220.656 149.040 363.888 0 143.856-48.784 263.616-146.32 359.296-103.616 101.808-225.808 152.704-366.592 152.704-138.384 0-258.448-50.304-360.224-150.88-100.56-100.576-150.864-220.928-150.864-361.12 0-140.176 50.304-261.472 150.864-363.872 98.752-98.768 218.8-148.128 360.224-148.128zM512.912 92.352c-116.416 0-214.848 40.848-295.312 122.512-83.52 85.344-125.264 184.4-125.264 297.152 0 113.376 41.44 211.52 124.32 294.368 82.896 82.912 181.632 124.336 296.224 124.336 113.968 0 213.344-41.712 298.064-125.248 80.464-77.408 120.688-175.232 120.688-293.488 0-116.416-40.848-215.44-122.496-297.136-81.664-81.664-180.416-122.496-296.224-122.496zM650.064 384.912v209.36h-58.496v248.672h-159.104v-248.656h-58.496v-209.376c0-9.152 3.2-16.912 9.584-23.312 6.416-6.384 14.192-9.6 23.312-9.6h210.304c8.528 0 16.16 3.2 22.848 9.6 6.672 6.4 10.048 14.176 10.048 23.312zM440.672 253.264c0-48.128 23.76-72.224 71.328-72.224s71.312 24.064 71.312 72.224c0 47.536-23.776 71.312-71.312 71.312s-71.328-23.776-71.328-71.312z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["by"],"grid":16},"attrs":[{}],"properties":{"order":524,"id":70,"name":"by","prevSize":32,"code":59648},"setIdx":0,"setId":2,"iconIdx":70},{"icon":{"paths":["M511.056 0c143.216 0 265.152 50 365.712 149.952 48.128 48.144 84.72 103.168 109.712 165.024 24.976 61.872 37.504 127.536 37.504 197.024 0 70.096-12.368 135.776-37.024 197.008-24.688 61.248-61.12 115.36-109.248 162.288-49.968 49.36-106.656 87.168-170.064 113.376-63.376 26.208-128.912 39.312-196.56 39.312s-132.416-12.928-194.288-38.864c-61.856-25.888-117.328-63.376-166.4-112.432s-86.4-104.384-112-165.952-38.4-126.464-38.4-194.736c0-67.664 12.944-132.72 38.848-195.2s63.552-118.4 112.912-167.776c97.52-99.328 217.28-149.024 359.296-149.024zM512.912 92.352c-117.024 0-215.472 40.848-295.328 122.512-40.24 40.848-71.168 86.704-92.8 137.6-21.664 50.896-32.464 104.080-32.464 159.552 0 54.864 10.8 107.744 32.464 158.608 21.648 50.928 52.56 96.336 92.8 136.256 40.224 39.936 85.616 70.384 136.24 91.44 50.576 21.024 103.616 31.536 159.088 31.536 54.848 0 108-10.64 159.568-31.984 51.504-21.36 97.936-52.112 139.408-92.336 79.84-78.016 119.744-175.84 119.744-293.504 0-56.688-10.368-110.32-31.088-160.912-20.688-50.592-50.88-95.68-90.464-135.328-82.336-82.288-181.36-123.44-297.168-123.44zM506.496 426.992l-68.592 35.664c-7.328-15.216-16.304-25.904-26.96-32-10.672-6.080-20.576-9.136-29.728-9.136-45.696 0-68.576 30.16-68.576 90.512 0 27.424 5.792 49.344 17.36 65.808 11.584 16.464 28.656 24.704 51.216 24.704 29.872 0 50.896-14.64 63.104-43.888l63.072 32c-13.408 25.008-32 44.656-55.776 58.976-23.744 14.336-49.968 21.488-78.624 21.488-45.712 0-82.608-14-110.64-42.064-28.032-28.032-42.048-67.040-42.048-117.008 0-48.768 14.176-87.456 42.512-116.112 28.336-28.64 64.144-42.976 107.44-42.976 63.408-0.032 108.8 24.656 136.24 74.032zM801.808 426.992l-67.664 35.664c-7.312-15.216-16.32-25.904-26.976-32-10.688-6.080-20.912-9.136-30.624-9.136-45.712 0-68.592 30.16-68.592 90.512 0 27.424 5.808 49.344 17.376 65.808s28.624 24.704 51.216 24.704c29.84 0 50.88-14.64 63.056-43.888l64 32c-14 25.008-32.912 44.656-56.656 58.976-23.776 14.336-49.68 21.488-77.712 21.488-46.336 0-83.344-14-111.056-42.064-27.776-28.032-41.632-67.040-41.632-117.008 0-48.768 14.16-87.456 42.528-116.112 28.32-28.64 64.128-42.976 107.408-42.976 63.392-0.032 108.528 24.656 135.328 74.032z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["cc"],"grid":16},"attrs":[{}],"properties":{"order":511,"id":71,"name":"cc","prevSize":32,"code":59726},"setIdx":0,"setId":2,"iconIdx":71},{"icon":{"paths":["M511.072 0c143.84 0 265.136 49.36 363.888 148.096 99.328 98.752 149.040 220.048 149.040 363.904 0 143.872-48.768 263.616-146.32 359.328-103.6 101.792-225.824 152.672-366.608 152.672-138.976 0-259.040-50.592-360.208-151.76-100.56-100.592-150.864-220.64-150.864-360.24 0-140.192 50.304-261.488 150.864-363.888 98.736-98.736 218.8-148.112 360.208-148.112zM115.2 373.952c-15.232 42.048-22.864 88.080-22.864 138.064 0 113.376 41.44 211.52 124.32 294.4 83.504 82.304 182.256 123.44 296.224 123.44 115.216 0 214.544-41.728 298.080-125.264 29.872-28.64 53.312-58.512 70.368-89.632l-192.896-85.936c-6.736 32.32-23.024 58.672-48.912 79.072-25.952 20.416-56.56 32.176-91.904 35.2v78.64h-59.424v-78.64c-56.688-0.576-108.512-20.992-155.424-61.232l70.4-71.312c33.504 31.072 71.616 46.608 114.288 46.608 17.664 0 32.768-3.936 45.28-11.888 12.48-7.904 18.752-20.992 18.752-39.312 0-12.816-4.592-23.168-13.728-31.088l-49.36-21.040-60.336-27.44-81.376-35.664-261.488-116.976zM512.912 91.424c-116.416 0-214.848 41.136-295.312 123.424-20.128 20.128-39.024 42.976-56.688 68.592l195.664 87.76c8.528-26.816 24.672-48.304 48.464-64.448 23.744-16.144 51.488-25.136 83.2-26.976v-78.64h59.44v78.64c46.944 2.448 89.6 18.288 128 47.536l-66.752 68.576c-28.688-20.112-57.904-30.16-87.776-30.16-15.856 0-30.016 3.056-42.496 9.136-12.496 6.096-18.752 16.464-18.752 31.088 0 4.272 1.52 8.528 4.56 12.8l109.712 49.392 82.304 36.56 262.352 117.024c8.56-35.968 12.816-72.528 12.816-109.712 0-117.648-40.832-216.688-122.496-297.168-81.072-82.288-179.856-123.424-296.24-123.424z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["nc"],"grid":16},"attrs":[{}],"properties":{"order":517,"id":72,"name":"nc","prevSize":32,"code":59727},"setIdx":0,"setId":2,"iconIdx":72},{"icon":{"paths":["M512 217.28c-169.040 0-211.552 159.504-211.552 294.72 0 135.232 42.496 294.72 211.552 294.72 169.024 0 211.536-159.488 211.536-294.72-0-135.216-42.512-294.72-211.536-294.72zM512 328.416c6.864 0 13.12 1.056 19.008 2.512 12.176 10.496 18.128 24.976 6.448 45.168l-112.576 206.88c-3.456-26.176-3.952-51.84-3.952-70.992 0-59.552 4.128-183.568 91.072-183.568zM596.256 423.792c5.968 31.744 6.816 64.896 6.816 88.208 0 59.568-4.128 183.6-91.040 183.6-6.848 0-13.152-0.72-19.008-2.176-1.12-0.336-2.144-0.688-3.232-1.072-1.792-0.512-3.68-1.088-5.376-1.76-19.36-8.24-31.552-23.136-13.984-49.488l125.824-217.312z","M510.928 0c-142.032 0-261.744 49.44-359.264 148.8-49.392 49.392-87.088 105.712-113.312 168.512-25.6 62.192-38.352 127.024-38.352 194.688 0 68.288 12.752 133.12 38.352 194.688 25.6 61.6 62.736 116.992 111.504 166.336 49.36 48.784 104.784 86.384 166.368 112.592 62.176 25.632 127.024 38.368 194.704 38.368 67.664 0 133.44-13.216 196.848-39.44 63.392-26.224 119.936-63.904 169.936-113.296 48.176-46.928 84.624-100.752 108.992-161.696 24.976-61.552 37.296-127.424 37.296-197.552 0-69.488-12.32-135.264-37.28-196.848-24.992-62.16-61.568-117.12-109.712-165.28-100.608-99.968-222.848-149.872-366.080-149.872zM513.072 92.144c115.808 0 214.592 41.056 296.864 123.344 39.632 39.632 70 84.96 90.72 135.536 20.736 50.592 31.184 104.288 31.184 160.976 0 117.664-40.256 215.264-120.096 293.28-41.472 40.256-88.032 71.152-139.84 92.496-51.2 21.344-103.968 31.904-158.832 31.904-55.488 0-108.608-10.448-159.184-31.168-50.608-21.344-96.016-51.808-136.256-91.456-40.24-40.224-71.28-85.648-93.216-136.256-21.328-51.184-32.272-103.968-32.272-158.832 0-55.472 10.944-108.592 32.272-159.184 21.936-51.2 52.992-97.184 93.216-138.048 79.84-81.648 178.4-122.592 295.44-122.592z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1150150170120203612022022121255255254125525525512555370159891521851722381":[{},{}],"150150170120203612022022121255255254125525525512555370159891521851722381":[{},{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{},{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{},{}]},"tags":["zero"],"grid":16},"attrs":[{},{}],"properties":{"order":510,"id":73,"name":"zero","prevSize":32,"code":59728},"setIdx":0,"setId":2,"iconIdx":73},{"icon":{"paths":["M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM512 896c-212.078 0-384-171.922-384-384s171.922-384 384-384c212.078 0 384 171.922 384 384s-171.922 384-384 384z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1150150170120203612022022121255255254125525525512555370159891521851722381":[],"150150170120203612022022121255255254125525525512555370159891521851722381":[],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[],"126126141120203612022022121255255254125525525512555370159891521851722381":[]},"tags":["radio-unchecked","radio-button","circle"],"defaultCode":59990,"grid":16},"attrs":[],"properties":{"ligatures":"radio-unchecked, radio-button3","name":"radio-unchecked","order":504,"id":74,"prevSize":32,"code":59990},"setIdx":0,"setId":2,"iconIdx":74},{"icon":{"paths":["M864 704c-45.16 0-85.92 18.738-115.012 48.83l-431.004-215.502c1.314-8.252 2.016-16.706 2.016-25.328s-0.702-17.076-2.016-25.326l431.004-215.502c29.092 30.090 69.852 48.828 115.012 48.828 88.366 0 160-71.634 160-160s-71.634-160-160-160-160 71.634-160 160c0 8.622 0.704 17.076 2.016 25.326l-431.004 215.504c-29.092-30.090-69.852-48.83-115.012-48.83-88.366 0-160 71.636-160 160 0 88.368 71.634 160 160 160 45.16 0 85.92-18.738 115.012-48.828l431.004 215.502c-1.312 8.25-2.016 16.704-2.016 25.326 0 88.368 71.634 160 160 160s160-71.632 160-160c0-88.364-71.634-160-160-160z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1150150170120203612022022121255255254125525525512555370159891521851722381":[],"150150170120203612022022121255255254125525525512555370159891521851722381":[],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[],"126126141120203612022022121255255254125525525512555370159891521851722381":[]},"tags":["share","social"],"defaultCode":60034,"grid":16},"attrs":[],"properties":{"ligatures":"share2, social","name":"share2","order":505,"id":75,"prevSize":32,"code":60034},"setIdx":0,"setId":2,"iconIdx":75},{"icon":{"paths":["M1024 320l-512-256-512 256 512 256 512-256zM512 148.97l342.058 171.030-342.058 171.030-342.058-171.030 342.058-171.030zM921.444 460.722l102.556 51.278-512 256-512-256 102.556-51.278 409.444 204.722zM921.444 652.722l102.556 51.278-512 256-512-256 102.556-51.278 409.444 204.722z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1150150170120203612022022121255255254125525525512555370159891521851722381":[],"150150170120203612022022121255255254125525525512555370159891521851722381":[],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[],"126126141120203612022022121255255254125525525512555370159891521851722381":[]},"tags":["stack","layers"],"defaultCode":59694,"grid":16},"attrs":[],"properties":{"ligatures":"stack, layers","name":"stack","id":76,"order":7,"prevSize":32,"code":59734},"setIdx":0,"setId":2,"iconIdx":76},{"icon":{"paths":["M658.744 749.256l-210.744-210.746v-282.51h128v229.49l173.256 173.254zM512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM512 896c-212.078 0-384-171.922-384-384s171.922-384 384-384c212.078 0 384 171.922 384 384s-171.922 384-384 384z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1150150170120203612022022121255255254125525525512555370159891521851722381":[],"150150170120203612022022121255255254125525525512555370159891521851722381":[],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[],"126126141120203612022022121255255254125525525512555370159891521851722381":[]},"tags":["clock","time","schedule"],"defaultCode":59726,"grid":16},"attrs":[],"properties":{"ligatures":"clock, time2","name":"clock","id":77,"order":8,"prevSize":32,"code":59735},"setIdx":0,"setId":2,"iconIdx":77},{"icon":{"paths":["M832 64h-640l-192 192v672c0 17.674 14.326 32 32 32h960c17.672 0 32-14.326 32-32v-672l-192-192zM512 832l-320-256h192v-192h256v192h192l-320 256zM154.51 192l64-64h586.978l64 64h-714.978z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1150150170120203612022022121255255254125525525512555370159891521851722381":[],"150150170120203612022022121255255254125525525512555370159891521851722381":[],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[],"126126141120203612022022121255255254125525525512555370159891521851722381":[]},"tags":["box-add","box","download","storage","inbox","archive"],"defaultCode":59742,"grid":16},"attrs":[],"properties":{"ligatures":"box-add, box3","name":"box-add","id":78,"order":11,"prevSize":32,"code":59742},"setIdx":0,"setId":2,"iconIdx":78},{"icon":{"paths":["M832 64h-640l-192 192v672c0 17.674 14.326 32 32 32h960c17.672 0 32-14.326 32-32v-672l-192-192zM640 640v192h-256v-192h-192l320-256 320 256h-192zM154.51 192l64-64h586.976l64 64h-714.976z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1150150170120203612022022121255255254125525525512555370159891521851722381":[],"150150170120203612022022121255255254125525525512555370159891521851722381":[],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[],"126126141120203612022022121255255254125525525512555370159891521851722381":[]},"tags":["box-remove","box","upload","storage","outbox","archive"],"defaultCode":59743,"grid":16},"attrs":[],"properties":{"ligatures":"box-remove, box4","name":"box-remove","id":79,"order":12,"prevSize":32,"code":59743},"setIdx":0,"setId":2,"iconIdx":79},{"icon":{"paths":["M512 192c-223.318 0-416.882 130.042-512 320 95.118 189.958 288.682 320 512 320 223.312 0 416.876-130.042 512-320-95.116-189.958-288.688-320-512-320zM764.45 361.704c60.162 38.374 111.142 89.774 149.434 150.296-38.292 60.522-89.274 111.922-149.436 150.296-75.594 48.218-162.89 73.704-252.448 73.704-89.56 0-176.858-25.486-252.452-73.704-60.158-38.372-111.138-89.772-149.432-150.296 38.292-60.524 89.274-111.924 149.434-150.296 3.918-2.5 7.876-4.922 11.86-7.3-9.96 27.328-15.41 56.822-15.41 87.596 0 141.382 114.616 256 256 256 141.382 0 256-114.618 256-256 0-30.774-5.452-60.268-15.408-87.598 3.978 2.378 7.938 4.802 11.858 7.302v0zM512 416c0 53.020-42.98 96-96 96s-96-42.98-96-96 42.98-96 96-96 96 42.982 96 96z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1150150170120203612022022121255255254125525525512555370159891521851722381":[],"150150170120203612022022121255255254125525525512555370159891521851722381":[],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[],"126126141120203612022022121255255254125525525512555370159891521851722381":[]},"tags":["eye","views","vision","visit"],"defaultCode":59854,"grid":16},"attrs":[],"properties":{"ligatures":"eye, views","name":"eye","id":80,"order":9,"prevSize":32,"code":59854},"setIdx":0,"setId":2,"iconIdx":80},{"icon":{"paths":["M945.942 14.058c-18.746-18.744-49.136-18.744-67.882 0l-202.164 202.164c-51.938-15.754-106.948-24.222-163.896-24.222-223.318 0-416.882 130.042-512 320 41.122 82.124 100.648 153.040 173.022 207.096l-158.962 158.962c-18.746 18.746-18.746 49.136 0 67.882 9.372 9.374 21.656 14.060 33.94 14.060s24.568-4.686 33.942-14.058l864-864c18.744-18.746 18.744-49.138 0-67.884zM416 320c42.24 0 78.082 27.294 90.92 65.196l-121.724 121.724c-37.902-12.838-65.196-48.68-65.196-90.92 0-53.020 42.98-96 96-96zM110.116 512c38.292-60.524 89.274-111.924 149.434-150.296 3.918-2.5 7.876-4.922 11.862-7.3-9.962 27.328-15.412 56.822-15.412 87.596 0 54.89 17.286 105.738 46.7 147.418l-60.924 60.924c-52.446-36.842-97.202-83.882-131.66-138.342z","M768 442c0-27.166-4.256-53.334-12.102-77.898l-321.808 321.808c24.568 7.842 50.742 12.090 77.91 12.090 141.382 0 256-114.618 256-256z","M830.026 289.974l-69.362 69.362c1.264 0.786 2.53 1.568 3.786 2.368 60.162 38.374 111.142 89.774 149.434 150.296-38.292 60.522-89.274 111.922-149.436 150.296-75.594 48.218-162.89 73.704-252.448 73.704-38.664 0-76.902-4.76-113.962-14.040l-76.894 76.894c59.718 21.462 123.95 33.146 190.856 33.146 223.31 0 416.876-130.042 512-320-45.022-89.916-112.118-166.396-193.974-222.026z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1150150170120203612022022121255255254125525525512555370159891521851722381":[],"150150170120203612022022121255255254125525525512555370159891521851722381":[],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[],"126126141120203612022022121255255254125525525512555370159891521851722381":[]},"tags":["eye-blocked","views","vision","visit","banned","blocked","forbidden","private"],"defaultCode":59857,"grid":16},"attrs":[],"properties":{"ligatures":"eye-blocked, views4","name":"eye-blocked","id":81,"order":10,"prevSize":32,"code":59857},"setIdx":0,"setId":2,"iconIdx":81},{"icon":{"paths":["M512 96c-111.118 0-215.584 43.272-294.156 121.844s-121.844 183.038-121.844 294.156c0 111.118 43.272 215.584 121.844 294.156s183.038 121.844 294.156 121.844c111.118 0 215.584-43.272 294.156-121.844s121.844-183.038 121.844-294.156c0-111.118-43.272-215.584-121.844-294.156s-183.038-121.844-294.156-121.844zM512 0v0c282.77 0 512 229.23 512 512s-229.23 512-512 512c-282.77 0-512-229.23-512-512s229.23-512 512-512zM448 704h128v128h-128zM448 192h128v384h-128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1150150170120203612022022121255255254125525525512555370159891521851722381":[],"150150170120203612022022121255255254125525525512555370159891521851722381":[],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[],"126126141120203612022022121255255254125525525512555370159891521851722381":[]},"tags":["notification","warning","notice","note","exclamation"],"defaultCode":59912,"grid":16},"attrs":[],"properties":{"ligatures":"notification, warning2","name":"notification","order":2,"id":82,"prevSize":32,"code":59912},"setIdx":0,"setId":2,"iconIdx":82},{"icon":{"paths":["M864 0h-768c-52.8 0-96 43.2-96 96v832c0 52.8 43.2 96 96 96h768c52.8 0 96-43.2 96-96v-832c0-52.8-43.2-96-96-96zM832 896h-704v-768h704v768zM256 448h448v64h-448zM256 576h448v64h-448zM256 704h448v64h-448zM256 320h448v64h-448z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1150150170120203612022022121255255254125525525512555370159891521851722381":[],"150150170120203612022022121255255254125525525512555370159891521851722381":[],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[],"126126141120203612022022121255255254125525525512555370159891521851722381":[]},"tags":["file-text","file","document","list","paper"],"defaultCode":59682,"grid":16},"attrs":[],"properties":{"ligatures":"file-text, file","name":"file-text","id":83,"order":516,"prevSize":32,"code":59729},"setIdx":0,"setId":2,"iconIdx":83},{"icon":{"paths":["M363.722 722.052l41.298-57.816-45.254-45.256-57.818 41.296c-10.722-5.994-22.204-10.774-34.266-14.192l-11.682-70.084h-64l-11.68 70.086c-12.062 3.418-23.544 8.198-34.266 14.192l-57.818-41.298-45.256 45.256 41.298 57.816c-5.994 10.72-10.774 22.206-14.192 34.266l-70.086 11.682v64l70.086 11.682c3.418 12.060 8.198 23.544 14.192 34.266l-41.298 57.816 45.254 45.256 57.818-41.296c10.722 5.994 22.204 10.774 34.266 14.192l11.682 70.084h64l11.68-70.086c12.062-3.418 23.544-8.198 34.266-14.192l57.818 41.296 45.254-45.256-41.298-57.816c5.994-10.72 10.774-22.206 14.192-34.266l70.088-11.68v-64l-70.086-11.682c-3.418-12.060-8.198-23.544-14.192-34.266zM224 864c-35.348 0-64-28.654-64-64s28.652-64 64-64 64 28.654 64 64-28.652 64-64 64zM1024 384v-64l-67.382-12.25c-1.242-8.046-2.832-15.978-4.724-23.79l57.558-37.1-24.492-59.128-66.944 14.468c-4.214-6.91-8.726-13.62-13.492-20.13l39.006-56.342-45.256-45.254-56.342 39.006c-6.512-4.766-13.22-9.276-20.13-13.494l14.468-66.944-59.128-24.494-37.1 57.558c-7.812-1.892-15.744-3.482-23.79-4.724l-12.252-67.382h-64l-12.252 67.382c-8.046 1.242-15.976 2.832-23.79 4.724l-37.098-57.558-59.128 24.492 14.468 66.944c-6.91 4.216-13.62 8.728-20.13 13.494l-56.342-39.006-45.254 45.254 39.006 56.342c-4.766 6.51-9.278 13.22-13.494 20.13l-66.944-14.468-24.492 59.128 57.558 37.1c-1.892 7.812-3.482 15.742-4.724 23.79l-67.384 12.252v64l67.382 12.25c1.242 8.046 2.832 15.978 4.724 23.79l-57.558 37.1 24.492 59.128 66.944-14.468c4.216 6.91 8.728 13.618 13.494 20.13l-39.006 56.342 45.254 45.256 56.342-39.006c6.51 4.766 13.22 9.276 20.13 13.492l-14.468 66.944 59.128 24.492 37.102-57.558c7.81 1.892 15.742 3.482 23.788 4.724l12.252 67.384h64l12.252-67.382c8.044-1.242 15.976-2.832 23.79-4.724l37.1 57.558 59.128-24.492-14.468-66.944c6.91-4.216 13.62-8.726 20.13-13.492l56.342 39.006 45.256-45.256-39.006-56.342c4.766-6.512 9.276-13.22 13.492-20.13l66.944 14.468 24.492-59.13-57.558-37.1c1.892-7.812 3.482-15.742 4.724-23.79l67.382-12.25zM672 491.2c-76.878 0-139.2-62.322-139.2-139.2s62.32-139.2 139.2-139.2 139.2 62.322 139.2 139.2c0 76.878-62.32 139.2-139.2 139.2z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1150150170120203612022022121255255254125525525512555370159891521851722381":[],"150150170120203612022022121255255254125525525512555370159891521851722381":[],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[],"126126141120203612022022121255255254125525525512555370159891521851722381":[]},"tags":["cogs","gears","preferences","settings","generate","control","options"],"defaultCode":59797,"grid":16},"attrs":[],"properties":{"ligatures":"cogs, gears","name":"cogs","id":84,"order":514,"prevSize":32,"code":59797},"setIdx":0,"setId":2,"iconIdx":84},{"icon":{"paths":["M928 128h-288c0-70.692-57.306-128-128-128-70.692 0-128 57.308-128 128h-288c-17.672 0-32 14.328-32 32v832c0 17.674 14.328 32 32 32h832c17.674 0 32-14.326 32-32v-832c0-17.672-14.326-32-32-32zM512 64c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64s28.654-64 64-64zM896 960h-768v-768h128v96c0 17.672 14.328 32 32 32h448c17.674 0 32-14.328 32-32v-96h128v768z","M448 858.51l-205.254-237.254 58.508-58.51 146.746 114.744 274.742-242.744 58.514 58.508z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1150150170120203612022022121255255254125525525512555370159891521851722381":[],"150150170120203612022022121255255254125525525512555370159891521851722381":[],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[],"126126141120203612022022121255255254125525525512555370159891521851722381":[]},"tags":["clipboard","board","signup","register","agreement"],"defaultCode":59832,"grid":16},"attrs":[],"properties":{"ligatures":"clipboard, board","name":"clipboard","id":85,"order":513,"prevSize":32,"code":59832},"setIdx":0,"setId":2,"iconIdx":85},{"icon":{"paths":["M640 256v-256h-448l-192 192v576h384v256h640v-768h-384zM192 90.51v101.49h-101.49l101.49-101.49zM64 704v-448h192v-192h320v192l-192 192v256h-320zM576 346.51v101.49h-101.49l101.49-101.49zM960 960h-512v-448h192v-192h320v640z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["copy"],"colorPermutations":{"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]}},"attrs":[{}],"properties":{"order":5,"id":86,"name":"copy","prevSize":32,"code":59709},"setIdx":0,"setId":2,"iconIdx":86}],"height":1024,"metadata":{"name":"bw-icons"},"preferences":{"showGlyphs":true,"showQuickUse":false,"showQuickUse2":true,"showSVGs":true,"fontPref":{"prefix":"bw-icon-","metadata":{"fontFamily":"bw-icons","majorVersion":1,"minorVersion":0},"metrics":{"emSize":1024,"baseline":6.25,"whitespace":50},"embed":false,"showSelector":false,"showMetrics":false,"showMetadata":false,"autoHost":true},"imagePref":{"prefix":"icon-","png":true,"useClassSelector":true,"color":0,"bgColor":16777215,"classSelector":".icon","name":"icomoon"},"historySize":50,"showCodes":true,"gridSize":16,"quickUsageToken":{"UntitledProject":null},"showGrid":false}} \ No newline at end of file +{"IcoMoonType":"selection","icons":[{"icon":{"paths":["M390.208 408.971l-0.596-0.617-29.586 30.402h-360.026v146.49h360.956l29.252 30.332v0.287l196.398 203.855c13.216 13.719 31.138 21.426 49.826 21.426h140.934v182.857l246.634-256-246.634-256v182.857h-111.744l-176.11-182.914 176.11-182.799h111.744v182.857l246.634-256-246.634-256v182.857h-140.934c-18.688 0-36.61 7.709-49.826 21.426l-196.398 203.855v0.834z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["remix"],"grid":16},"attrs":[{}],"properties":{"order":528,"id":0,"name":"remix","prevSize":32,"code":59708},"setIdx":0,"setId":2,"iconIdx":0},{"icon":{"paths":["M512.002 0.006l0.002-0.006 123.733 400.696h388.263l-316.583 235.074 121.173 388.23-316.587-240.418v-783.576z","M512 0.006l-0.002-0.006-123.734 400.696h-388.266l316.586 235.074-121.174 388.23 316.59-240.418v-783.576z"],"attrs":[{"fill":"rgb(126, 126, 141)"},{"fill":"rgb(255, 53, 70)"}],"isMulticolor":true,"isMulticolor2":false,"colorPermutations":{"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{"f":2},{"f":3}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{"f":2},{"f":3}]},"tags":["half-star"],"grid":16},"attrs":[{"fill":"rgb(126, 126, 141)"},{"fill":"rgb(255, 53, 70)"}],"properties":{"order":527,"id":1,"name":"half-star","prevSize":32,"code":59733,"codes":[59733,59736]},"setIdx":0,"setId":2,"iconIdx":1},{"icon":{"paths":["M219.432 513.716c0.946 159.736 132.644 290.858 292.566 290.858 160.498 0 292.57-132.072 292.57-292.572 0-160.354-131.834-292.332-292.128-292.568v-73.148c200.416 0.232 365.274 165.23 365.274 365.714h-0.010c0.008 0.962 0.012 1.944 0.012 2.926 0 200.626-165.090 365.714-365.712 365.714v70.216c-240.752 0-438.86-198.108-438.86-438.858s198.108-438.856 438.856-438.856v-73.142c-280.874 0-512 231.126-512 512s231.126 512 512 512c280.874 0 512-231.126 512-512h-73.144c0-240.606-197.87-438.618-438.416-438.856v73.142c-200.626 0-365.714 165.864-365.714 367.43h72.706zM512.004 368.61c-80.156 0.118-146.072 66.108-146.072 146.286 0 80.252 66.036 146.288 146.286 146.288l0.002-76.072h-0.002c-40.124 0-73.142-33.018-73.142-73.144 0-40.052 32.898-73.024 72.928-73.142v0.030c40.12 0 73.138 33.020 73.138 73.142v0.004h146.29c0 120.378-99.054 219.432-219.428 219.432-119.81-0.002-218.498-98.126-219.422-217.718h0.43c0-120.792 98.816-220.218 218.992-220.454v75.348z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["fcw"],"grid":16},"attrs":[{}],"properties":{"order":525,"id":2,"name":"fcw","prevSize":32,"code":59732},"setIdx":0,"setId":2,"iconIdx":2},{"icon":{"paths":["M511.088 0c143.808 0 265.12 49.36 363.872 148.112 99.328 99.36 149.040 220.656 149.040 363.888 0 143.856-48.784 263.616-146.32 359.296-103.616 101.808-225.808 152.704-366.592 152.704-138.384 0-258.448-50.304-360.224-150.88-100.56-100.576-150.864-220.928-150.864-361.12 0-140.176 50.304-261.472 150.864-363.872 98.752-98.768 218.8-148.128 360.224-148.128zM512.912 92.352c-116.416 0-214.848 40.848-295.312 122.512-83.52 85.344-125.264 184.4-125.264 297.152 0 113.376 41.44 211.52 124.32 294.368 82.896 82.912 181.632 124.336 296.224 124.336 113.968 0 213.344-41.712 298.064-125.248 80.464-77.408 120.688-175.232 120.688-293.488 0-116.416-40.848-215.44-122.496-297.136-81.664-81.664-180.416-122.496-296.224-122.496zM650.064 384.912v209.36h-58.496v248.672h-159.104v-248.656h-58.496v-209.376c0-9.152 3.2-16.912 9.584-23.312 6.416-6.384 14.192-9.6 23.312-9.6h210.304c8.528 0 16.16 3.2 22.848 9.6 6.672 6.4 10.048 14.176 10.048 23.312zM440.672 253.264c0-48.128 23.76-72.224 71.328-72.224s71.312 24.064 71.312 72.224c0 47.536-23.776 71.312-71.312 71.312s-71.328-23.776-71.328-71.312z","M1535.072 0c143.84 0 265.136 49.36 363.888 148.096 99.328 98.752 149.040 220.048 149.040 363.904 0 143.872-48.768 263.616-146.32 359.328-103.6 101.792-225.824 152.672-366.608 152.672-138.976 0-259.040-50.592-360.208-151.76-100.56-100.592-150.864-220.64-150.864-360.24 0-140.192 50.304-261.488 150.864-363.888 98.736-98.736 218.8-148.112 360.208-148.112zM1139.2 373.952c-15.232 42.048-22.864 88.080-22.864 138.064 0 113.376 41.44 211.52 124.32 294.4 83.504 82.304 182.256 123.44 296.224 123.44 115.216 0 214.544-41.728 298.080-125.264 29.872-28.64 53.312-58.512 70.368-89.632l-192.896-85.936c-6.736 32.32-23.024 58.672-48.912 79.072-25.952 20.416-56.56 32.176-91.904 35.2v78.64h-59.424v-78.64c-56.688-0.576-108.512-20.992-155.424-61.232l70.4-71.312c33.504 31.072 71.616 46.608 114.288 46.608 17.664 0 32.768-3.936 45.28-11.888 12.48-7.904 18.752-20.992 18.752-39.312 0-12.816-4.592-23.168-13.728-31.088l-49.36-21.040-60.336-27.44-81.376-35.664-261.488-116.976zM1536.912 91.424c-116.416 0-214.848 41.136-295.312 123.424-20.128 20.128-39.024 42.976-56.688 68.592l195.664 87.76c8.528-26.816 24.672-48.304 48.464-64.448 23.744-16.144 51.488-25.136 83.2-26.976v-78.64h59.44v78.64c46.944 2.448 89.6 18.288 128 47.536l-66.752 68.576c-28.688-20.112-57.904-30.16-87.776-30.16-15.856 0-30.016 3.056-42.496 9.136-12.496 6.096-18.752 16.464-18.752 31.088 0 4.272 1.52 8.528 4.56 12.8l109.712 49.392 82.304 36.56 262.352 117.024c8.56-35.968 12.816-72.528 12.816-109.712 0-117.648-40.832-216.688-122.496-297.168-81.072-82.288-179.856-123.424-296.24-123.424z"],"width":2048,"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1150150170120203612022022121255255254125525525512555370159891521851722381":[{},{}],"150150170120203612022022121255255254125525525512555370159891521851722381":[{},{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{},{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{},{}]},"tags":["by-nc"],"grid":16},"attrs":[{},{}],"properties":{"order":523,"id":3,"name":"by-nc","prevSize":32,"code":59731,"codes":[59731,59732,59733,59736]},"setIdx":0,"setId":2,"iconIdx":3},{"icon":{"paths":["M511.36 0c-141.824 0-261.872 49.488-360.144 148.48-100.816 102.4-151.216 223.568-151.216 363.52 0 139.968 50.4 260.304 151.216 360.96 100.816 100.72 220.864 151.040 360.144 151.040 140.976 0 263.152-50.768 366.544-152.304 97.36-96.448 146.096-216.352 146.096-359.696 0-143.36-49.568-264.528-148.656-363.52-99.12-98.992-220.432-148.48-363.984-148.48zM512.64 92.144c116.208 0 214.88 40.96 296.048 122.896 82 81.056 123.008 180.032 123.008 296.96 0 117.744-40.128 215.488-120.448 293.12-84.592 83.648-184.144 125.456-298.608 125.456-114.496 0-213.168-41.44-296.032-124.176-82.896-82.768-124.336-180.944-124.336-294.4 0-113.504 41.856-212.496 125.6-296.96 80.32-81.936 178.56-122.896 294.768-122.896z","M733.792 516.656c-9.712 0-18.48 5.84-22.16 14.8l-8.176 19.648-22.784-191.664c-1.488-12.224-11.952-21.392-24.32-21.168-12.272 0.24-22.464 9.76-23.456 22.048l-8.784 106.192-10.736-142.112c-0.976-12.464-11.36-22.176-23.872-22.176-12.56-0.032-22.992 9.632-23.968 22.112l-7.216 92.736-12.256-194.592c-0.8-12.656-11.248-22.512-23.968-22.512-12.688 0.032-23.152 9.888-23.92 22.56l-10.544 172.8-8.912-136.832c-0.816-12.656-11.248-22.448-23.904-22.448-12.672 0-23.136 9.76-23.968 22.416l-10.896 165.536-8.544-117.584c-0.944-12.48-11.248-22.176-23.744-22.272-12.528-0.080-23.024 9.456-24.096 21.952l-15.984 185.44-3.68-25.216c-1.568-10.448-9.696-18.656-20.16-20.24-10.48-1.584-20.704 3.856-25.232 13.408l-27.168 57.152h-90.672v47.968h105.84c9.024 0 17.328-5.088 21.392-13.12l22.176 150.976c1.776 12.016 12.32 20.848 24.448 20.48 12.176-0.368 22.128-9.824 23.216-21.888l7.744-89.936 11.712 161.712c0.96 12.576 11.424 22.32 24.032 22.256 12.624-0.032 23.040-9.856 23.856-22.4l9.6-145.424 9.856 151.424c0.816 12.624 11.312 22.432 23.984 22.4 12.688 0 23.12-9.888 23.904-22.512l10.144-166.144 9.312 148.192c0.768 12.528 11.184 22.368 23.776 22.464 12.576 0.112 23.104-9.632 24.080-22.144l9.408-121.024 10.112 132.992c0.928 12.512 11.28 22.16 23.776 22.192 12.544 0.064 22.992-9.536 24-22l14.112-171.28 5.504 46.080c1.264 10.88 9.696 19.424 20.544 20.96 10.848 1.488 21.264-4.48 25.424-14.592l37.184-89.616h104.24v-47.984h-120.256zM572.736 527.44h-45.296v45.296c0 8.544-6.912 15.456-15.424 15.456-8.544 0-15.488-6.912-15.488-15.456v-45.296h-45.28c-8.528 0-15.472-6.912-15.472-15.424 0-8.544 6.944-15.472 15.472-15.472h45.28v-45.312c0-8.544 6.944-15.456 15.488-15.456 8.512 0 15.424 6.912 15.424 15.456v45.312h45.296c8.528 0 15.456 6.912 15.456 15.472 0 8.512-6.928 15.424-15.456 15.424z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1150150170120203612022022121255255254125525525512555370159891521851722381":[{},{}],"150150170120203612022022121255255254125525525512555370159891521851722381":[{},{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{},{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{},{}]},"tags":["splus"],"grid":16},"attrs":[{},{}],"properties":{"order":522,"id":4,"name":"splus","prevSize":32,"code":59730,"codes":[59730,59731,59732]},"setIdx":0,"setId":2,"iconIdx":4},{"icon":{"paths":["M0 426.667h1209.173l-305.493-306.347 120.32-120.32 512 512-512 512-120.32-120.32 305.493-306.347h-1209.173z"],"width":1536,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["arrow"],"grid":16},"attrs":[{}],"properties":{"order":97,"id":5,"name":"arrow","prevSize":32,"code":59657},"setIdx":0,"setId":2,"iconIdx":5},{"icon":{"paths":["M1024 512c0 282.77-229.23 512-512 512s-512-229.23-512-512c0-282.77 229.23-512 512-512s512 229.23 512 512z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["atom"],"grid":16},"attrs":[{}],"properties":{"order":96,"id":6,"name":"atom","prevSize":32,"code":59658},"setIdx":0,"setId":2,"iconIdx":6},{"icon":{"paths":["M0 455.111h1024v170.667h-1024z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["bar"],"grid":16},"attrs":[{}],"properties":{"order":121,"id":7,"name":"bar","prevSize":32,"code":59659},"setIdx":0,"setId":2,"iconIdx":7},{"icon":{"paths":["M629.029 496.64c70.949-49.006 120.686-129.463 120.686-204.069 0-165.303-128-292.571-292.571-292.571h-457.143v1024h514.926c152.869 0 271.36-124.343 271.36-277.211 0-111.177-62.903-206.263-157.257-250.149zM219.429 182.857h219.429c60.709 0 109.714 49.006 109.714 109.714s-49.006 109.714-109.714 109.714h-219.429v-219.429zM475.429 841.143h-256v-219.429h256c60.709 0 109.714 49.006 109.714 109.714s-49.006 109.714-109.714 109.714z"],"width":796,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["bold"],"grid":16},"attrs":[{}],"properties":{"order":94,"id":8,"name":"bold","prevSize":32,"code":59660},"setIdx":0,"setId":2,"iconIdx":8},{"icon":{"paths":["M1024 739.556v-99.556h-1024v99.556h1024zM1024 440.889v-99.556h-1024v99.556h1024z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["burger-condensed"],"grid":16},"attrs":[{}],"properties":{"order":93,"id":9,"name":"burger-condensed","prevSize":32,"code":59661},"setIdx":0,"setId":2,"iconIdx":9},{"icon":{"paths":["M0 1024h1536v-170.667h-1536v170.667zM0 597.333h1536v-170.667h-1536v170.667zM0 0v170.667h1536v-170.667h-1536z"],"width":1536,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["burger"],"grid":16},"attrs":[{}],"properties":{"order":92,"id":10,"name":"burger","prevSize":32,"code":59662},"setIdx":0,"setId":2,"iconIdx":10},{"icon":{"paths":["M774.717 287.372l-62.101-59.816-279.233 268.96 62.101 59.816 279.233-268.96zM961.459 227.556l-465.975 448.833-184.1-176.903-62.101 59.816 246.2 237.143 528.516-509.073-62.541-59.816zM0 559.301l246.2 237.143 62.101-59.816-245.76-237.143-62.541 59.816z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["check-double"],"grid":16},"attrs":[{}],"properties":{"order":91,"id":11,"name":"check-double","prevSize":32,"code":59663},"setIdx":0,"setId":2,"iconIdx":11},{"icon":{"paths":["M418.399 791.889l-312.115-312.115-106.284 105.535 418.399 418.399 898.173-898.173-105.535-105.535z"],"width":1317,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["check"],"grid":16},"attrs":[{}],"properties":{"order":90,"id":12,"name":"check","prevSize":32,"code":59664},"setIdx":0,"setId":2,"iconIdx":12},{"icon":{"paths":["M910.222 0h-796.444c-63.147 0-113.778 51.2-113.778 113.778v796.444c0 62.578 50.631 113.778 113.778 113.778h796.444c63.147 0 113.778-51.2 113.778-113.778v-796.444c0-62.578-50.631-113.778-113.778-113.778v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["checkbox-unselect"],"grid":16},"attrs":[{}],"properties":{"order":111,"id":13,"name":"checkbox-unselect","prevSize":32,"code":59665},"setIdx":0,"setId":2,"iconIdx":13},{"icon":{"paths":["M910.222 0h-796.444c-63.147 0-113.778 51.2-113.778 113.778v796.444c0 62.578 50.631 113.778 113.778 113.778h796.444c63.147 0 113.778-51.2 113.778-113.778v-796.444c0-62.578-50.631-113.778-113.778-113.778v0zM398.222 796.444l-284.444-272.979 80.213-76.98 204.231 195.453 431.787-414.383 80.213 77.526-512 491.363z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["checkbox"],"grid":16},"attrs":[{}],"properties":{"order":110,"id":14,"name":"checkbox","prevSize":32,"code":59666},"setIdx":0,"setId":2,"iconIdx":14},{"icon":{"paths":["M28.444 705.814l120.32 119.075 391.68-386.783 391.68 386.783 120.32-119.075-512-506.703z"],"width":1081,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["chevron-up"],"grid":16},"attrs":[{}],"properties":{"order":89,"id":15,"name":"chevron-up","prevSize":32,"code":59667},"setIdx":0,"setId":2,"iconIdx":15},{"icon":{"paths":["M119.075 0l-119.075 120.32 386.783 391.68-386.783 391.68 119.075 120.32 506.703-512z"],"width":626,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["chevron"],"grid":16},"attrs":[{}],"properties":{"order":88,"id":16,"name":"chevron","prevSize":32,"code":59668},"setIdx":0,"setId":2,"iconIdx":16},{"icon":{"paths":["M1024 103.131l-103.131-103.131-408.869 408.869-408.869-408.869-103.131 103.131 408.869 408.869-408.869 408.869 103.131 103.131 408.869-408.869 408.869 408.869 103.131-103.131-408.869-408.869z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["close"],"grid":16},"attrs":[{}],"properties":{"order":87,"id":17,"name":"close","prevSize":32,"code":59669},"setIdx":0,"setId":2,"iconIdx":17},{"icon":{"paths":["M102.4 0h819.2c56.32 0 102.4 46.080 102.4 102.4v921.6l-204.8-204.8h-716.8c-56.32 0-102.4-46.080-102.4-102.4v-614.4c0-56.32 46.080-102.4 102.4-102.4zM102.4 716.8h716.8l102.4 102.4v-716.8h-819.2v614.4zM374.797 557.511h421.647v-102.4h-421.647v102.4zM256 364.089h540.444v-102.4h-540.444v102.4z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["comments-stroke"],"grid":16},"attrs":[{}],"properties":{"order":86,"id":18,"name":"comments-stroke","prevSize":32,"code":59670},"setIdx":0,"setId":2,"iconIdx":18},{"icon":{"paths":["M921.6 0c56.32 0 101.888 46.080 101.888 102.4l0.512 921.6-240.941-180.706h-680.659c-56.32 0-102.4-46.080-102.4-102.4v-638.494c0-56.32 46.080-102.4 102.4-102.4h819.2zM421.647 602.353h421.647v-120.471h-421.647v120.471zM240.941 361.412h602.353v-120.471h-602.353v120.471z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["comments"],"grid":16},"attrs":[{}],"properties":{"order":85,"id":19,"name":"comments","prevSize":32,"code":59671},"setIdx":0,"setId":2,"iconIdx":19},{"icon":{"paths":["M853.333 361.412h-243.81v-361.412h-365.714v361.412h-243.81l426.667 421.647 426.667-421.647zM0 903.529v120.471h853.333v-120.471h-853.333z"],"width":853,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["download"],"grid":16},"attrs":[{}],"properties":{"order":84,"id":20,"name":"download","prevSize":32,"code":59672},"setIdx":0,"setId":2,"iconIdx":20},{"icon":{"paths":["M0 810.696v213.304h213.304l629.104-629.104-213.304-213.304-629.104 629.104zM1007.362 229.941c22.184-22.184 22.184-58.019 0-80.202l-133.102-133.102c-22.184-22.184-58.019-22.184-80.202 0l-104.092 104.092 213.304 213.304 104.092-104.092z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["edit"],"grid":16},"attrs":[{}],"properties":{"order":83,"id":21,"name":"edit","prevSize":32,"code":59673},"setIdx":0,"setId":2,"iconIdx":21},{"icon":{"paths":["M0 512c0-282.77 229.23-512 512-512s512 229.23 512 512c0 282.77-229.23 512-512 512s-512-229.23-512-512z","M438.044 642.844l-130.844-130.844 130.844-130.844-39.822-39.822-170.667 170.667 170.667 170.667 39.822-39.822zM585.956 642.844l130.844-130.844-130.844-130.844 39.822-39.822 170.667 170.667-170.667 170.667-39.822-39.822z"],"attrs":[{"fill":"rgb(202, 202, 212)"},{"fill":"rgb(255, 255, 255)","stroke":"rgb(255, 255, 255)","strokeLinejoin":"miter","strokeLinecap":"butt","strokeMiterlimit":"4","strokeWidth":14.222222222222221}],"isMulticolor":true,"isMulticolor2":true,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{"f":5},{"f":6,"s":6}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{"f":6},{"f":7,"s":7}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{"f":6},{"f":7,"s":7}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{"f":5},{"f":6,"s":6}]},"tags":["embed-stroke"],"grid":16},"attrs":[{"fill":"rgb(202, 202, 212)"},{"fill":"rgb(255, 255, 255)","stroke":"rgb(255, 255, 255)","strokeLinejoin":"miter","strokeLinecap":"butt","strokeMiterlimit":"4","strokeWidth":14.222222222222221}],"properties":{"order":115,"id":22,"name":"embed-stroke","prevSize":32,"code":59674,"codes":[59674,59675]},"setIdx":0,"setId":2,"iconIdx":22},{"icon":{"paths":["M378.88 723.437l-235.52-239.881 235.52-239.881-71.68-73.007-307.2 312.889 307.2 312.889 71.68-73.007zM645.12 723.437l235.52-239.881-235.52-239.881 71.68-73.007 307.2 312.889-307.2 312.889-71.68-73.007z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["embed"],"grid":16},"attrs":[{}],"properties":{"order":98,"id":23,"name":"embed","prevSize":32,"code":59676},"setIdx":0,"setId":2,"iconIdx":23},{"icon":{"paths":["M0 512c0-282.77 229.23-512 512-512s512 229.23 512 512c0 282.77-229.23 512-512 512s-512-229.23-512-512z","M548.3 795.978v-278.555h76.893l10.19-95.992h-87.083l0.131-48.045c0-25.036 2.379-38.451 38.338-38.451h48.071v-96.002h-76.904c-92.374 0-124.888 46.566-124.888 124.876v57.633h-57.58v95.992h57.58v278.544h115.253z"],"attrs":[{"fill":"rgb(59, 89, 152)"},{"fill":"rgb(255, 255, 255)"}],"isMulticolor":true,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{"f":1},{"f":6}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{"f":2},{"f":7}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{"f":1},{"f":7}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{"f":1},{"f":6}]},"tags":["facebook"],"grid":16},"attrs":[{"fill":"rgb(59, 89, 152)"},{"fill":"rgb(255, 255, 255)"}],"properties":{"order":107,"id":24,"name":"facebook","prevSize":32,"code":59677,"codes":[59677,59678]},"setIdx":0,"setId":2,"iconIdx":24},{"icon":{"paths":["M566.212 120.471l-24.094-120.471h-542.118v1024h120.471v-421.647h337.318l24.094 120.471h421.647v-602.353z"],"width":910,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["flag-filled"],"grid":16},"attrs":[{}],"properties":{"order":108,"id":25,"name":"flag-filled","prevSize":32,"code":59679},"setIdx":0,"setId":2,"iconIdx":25},{"icon":{"paths":["M546.133 120.471l-60.681-120.471h-485.452v1024h121.363v-421.647h303.407l60.681 120.471h424.77v-602.353h-364.089zM788.859 602.353h-242.726l-60.681-120.471h-364.089v-361.412h303.407l60.681 120.471h303.407v361.412z"],"width":910,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["flag"],"grid":16},"attrs":[{}],"properties":{"order":109,"id":26,"name":"flag","prevSize":32,"code":59680},"setIdx":0,"setId":2,"iconIdx":26},{"icon":{"paths":["M0 512c0-282.77 229.23-512 512-512s512 229.23 512 512c0 282.77-229.23 512-512 512s-512-229.23-512-512z","M412.042 497.371v55.589h90.878c-3.663 23.857-27.469 69.949-90.878 69.949-54.71 0-99.348-45.861-99.348-102.376s44.638-102.376 99.348-102.376c31.132 0 51.963 13.434 63.866 25.015l43.493-42.386c-27.927-26.405-64.095-42.386-107.36-42.386-88.589 0-160.238 72.497-160.238 162.133s71.649 162.133 160.238 162.133c92.48 0 153.829-65.78 153.829-158.427 0-10.654-1.145-18.761-2.518-26.868h-151.311z","M755.41 497.371h-45.782v-46.324h-45.782v46.324h-45.782v46.324h45.782v46.324h45.782v-46.324h45.782z"],"attrs":[{"fill":"rgb(255, 53, 70)"},{"fill":"rgb(255, 255, 255)"},{"fill":"rgb(255, 255, 255)"}],"isMulticolor":true,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{"f":2},{"f":6},{"f":6}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{"f":3},{"f":7},{"f":7}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{"f":3},{"f":7},{"f":7}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{"f":3},{"f":6},{"f":6}]},"tags":["google-plus"],"grid":16},"attrs":[{"fill":"rgb(255, 53, 70)"},{"fill":"rgb(255, 255, 255)"},{"fill":"rgb(255, 255, 255)"}],"properties":{"order":81,"id":27,"name":"google-plus","prevSize":32,"code":59681,"codes":[59681,59682,59683]},"setIdx":0,"setId":2,"iconIdx":27},{"icon":{"paths":["M1316.571 874.39v-718.13c0-65.829-53.86-119.688-119.688-119.688h-1077.195c-65.829 0-119.688 53.86-119.688 119.688v718.13c0 65.829 53.86 119.688 119.688 119.688h1077.195c65.829 0 119.688-53.86 119.688-119.688zM448.831 545.247l149.61 180.131 209.455-269.897 269.299 359.065h-837.818l209.455-269.299z"],"width":1317,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["image"],"grid":16},"attrs":[{}],"properties":{"order":80,"id":28,"name":"image","prevSize":32,"code":59684},"setIdx":0,"setId":2,"iconIdx":28},{"icon":{"paths":["M284.444 0v219.429h157.156l-243.2 585.143h-198.4v219.429h568.889v-219.429h-157.156l243.2-585.143h198.4v-219.429z"],"width":853,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["italic"],"grid":16},"attrs":[{}],"properties":{"order":79,"id":29,"name":"italic","prevSize":32,"code":59685},"setIdx":0,"setId":2,"iconIdx":29},{"icon":{"paths":["M97.28 512c0-87.552 71.168-158.72 158.72-158.72h204.8v-97.28h-204.8c-141.312 0-256 114.688-256 256s114.688 256 256 256h204.8v-97.28h-204.8c-87.552 0-158.72-71.168-158.72-158.72zM307.2 563.2h409.6v-102.4h-409.6v102.4zM768 256h-204.8v97.28h204.8c87.552 0 158.72 71.168 158.72 158.72s-71.168 158.72-158.72 158.72h-204.8v97.28h204.8c141.312 0 256-114.688 256-256s-114.688-256-256-256z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["link"],"grid":16},"attrs":[{}],"properties":{"order":78,"id":30,"name":"link","prevSize":32,"code":59686},"setIdx":0,"setId":2,"iconIdx":30},{"icon":{"paths":["M106.749 403.099c-59.068 0-106.749 46.092-106.749 103.191s47.681 103.191 106.749 103.191c59.068 0 106.749-46.092 106.749-103.191s-47.681-103.191-106.749-103.191v0zM106.057 0c-58.685 0-106.057 46.092-106.057 103.191s47.372 103.191 106.057 103.191c58.685 0 106.057-46.092 106.057-103.191s-47.372-103.191-106.057-103.191v0zM106.057 817.618c-59.009 0-106.057 46.552-106.057 103.191s47.845 103.191 106.057 103.191c58.212 0 106.057-46.552 106.057-103.191s-47.048-103.191-106.057-103.191v0zM320.247 986.074h996.324v-146.286h-996.324v146.286zM320.247 582.976h996.324v-146.286h-996.324v146.286zM320.247 33.592v146.286h996.324v-146.286h-996.324z"],"width":1317,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["list-bullets"],"grid":16},"attrs":[{}],"properties":{"order":122,"id":31,"name":"list-bullets","prevSize":32,"code":59687},"setIdx":0,"setId":2,"iconIdx":31},{"icon":{"paths":["M0 820.211h121.263v30.316h-60.632v60.632h60.632v30.316h-121.263v60.632h181.895v-242.526h-181.895v60.632zM60.632 274.526h60.632v-242.526h-121.263v60.632h60.632v181.895zM0 456.421h109.137l-109.137 127.326v54.568h181.895v-60.632h-109.137l109.137-127.326v-54.568h-181.895v60.632zM303.158 92.632v128h848.842v-128h-848.842zM303.158 948.211h848.842v-128h-848.842v128zM303.158 584.421h848.842v-128h-848.842v128z"],"width":1152,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["list-numbered"],"grid":16},"attrs":[{}],"properties":{"order":76,"id":32,"name":"list-numbered","prevSize":32,"code":59688},"setIdx":0,"setId":2,"iconIdx":32},{"icon":{"paths":["M369.778 232.727v139.636l184.889-186.182-184.889-186.182v139.636c-204.302 0-369.778 166.633-369.778 372.364 0 73.076 21.262 141.033 57.316 198.284l67.484-67.956c-20.8-38.633-32.356-83.316-32.356-130.327 0-154.065 124.338-279.273 277.333-279.273v0zM682.24 313.716l-67.484 67.956c20.338 39.098 32.356 83.316 32.356 130.327 0 154.065-124.338 279.273-277.333 279.273v-139.636l-184.889 186.182 184.889 186.182v-139.636c204.302 0 369.778-166.633 369.778-372.364 0-73.076-21.262-141.033-57.316-198.284v0z"],"width":740,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["loop"],"grid":16},"attrs":[{}],"properties":{"order":75,"id":33,"name":"loop","prevSize":32,"code":59689},"setIdx":0,"setId":2,"iconIdx":33},{"icon":{"paths":["M128 256c70.4 0 128-57.6 128-128s-57.6-128-128-128c-70.4 0-128 57.6-128 128s57.6 128 128 128v0zM128 384c-70.4 0-128 57.6-128 128s57.6 128 128 128c70.4 0 128-57.6 128-128s-57.6-128-128-128v0zM128 768c-70.4 0-128 57.6-128 128s57.6 128 128 128c70.4 0 128-57.6 128-128s-57.6-128-128-128v0z"],"width":284,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["more"],"grid":16},"attrs":[{}],"properties":{"order":74,"id":34,"name":"more","prevSize":32,"code":59690},"setIdx":0,"setId":2,"iconIdx":34},{"icon":{"paths":["M0 1024l725.333-512-725.333-512v1024zM853.333 0v1024h170.667v-1024h-170.667z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["next"],"grid":16},"attrs":[{}],"properties":{"order":99,"id":35,"name":"next","prevSize":32,"code":59691},"setIdx":0,"setId":2,"iconIdx":35},{"icon":{"paths":["M113.778 113.778v796.444h796.444v-398.222h113.778v398.222c0 63.147-51.2 113.778-113.778 113.778h-796.444c-62.578 0-113.778-50.631-113.778-113.778v-796.444c0-62.578 51.2-113.778 113.778-113.778h398.222v113.778h-398.222zM1024 398.222h-113.778v-204.231l-559.218 559.218-80.213-80.213 559.218-559.218h-204.231v-113.778h398.222l-0 398.222z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["open"],"grid":16},"attrs":[{}],"properties":{"order":73,"id":36,"name":"open","prevSize":32,"code":59692},"setIdx":0,"setId":2,"iconIdx":36},{"icon":{"paths":["M512 0c-282.624 0-512 229.376-512 512s229.376 512 512 512c282.624 0 512-229.376 512-512s-229.376-512-512-512zM460.8 716.8h-102.4v-409.6h102.4v409.6zM665.6 716.8h-102.4v-409.6h102.4v409.6z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["pause-filled"],"grid":16},"attrs":[{}],"properties":{"order":106,"id":37,"name":"pause-filled","prevSize":32,"code":59693},"setIdx":0,"setId":2,"iconIdx":37},{"icon":{"paths":["M358.4 716.8h102.4v-409.6h-102.4v409.6zM512 0c-282.624 0-512 229.376-512 512s229.376 512 512 512c282.624 0 512-229.376 512-512s-229.376-512-512-512zM512 921.6c-225.792 0-409.6-183.808-409.6-409.6s183.808-409.6 409.6-409.6c225.792 0 409.6 183.808 409.6 409.6s-183.808 409.6-409.6 409.6zM563.2 716.8h102.4v-409.6h-102.4v409.6z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["pause-stroke"],"grid":16},"attrs":[{}],"properties":{"order":105,"id":38,"name":"pause-stroke","prevSize":32,"code":59694},"setIdx":0,"setId":2,"iconIdx":38},{"icon":{"paths":["M369.778 0c-204.434 0-369.778 160.256-369.778 358.4 0 268.8 369.778 665.6 369.778 665.6s369.778-396.8 369.778-665.6c0-198.144-165.343-358.4-369.778-358.4zM369.778 512c-78.507 0-142.222-63.716-142.222-142.222s63.716-142.222 142.222-142.222c78.507 0 142.222 63.716 142.222 142.222s-63.716 142.222-142.222 142.222z"],"width":740,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["pin"],"grid":16},"attrs":[{}],"properties":{"order":104,"id":39,"name":"pin","prevSize":32,"code":59695},"setIdx":0,"setId":2,"iconIdx":39},{"icon":{"paths":["M512 0c-282.624 0-512 229.376-512 512s229.376 512 512 512c282.624 0 512-229.376 512-512s-229.376-512-512-512zM409.6 742.4v-460.8l307.2 230.4-307.2 230.4z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["play-filled"],"grid":16},"attrs":[{}],"properties":{"order":72,"id":40,"name":"play-filled","prevSize":32,"code":59696},"setIdx":0,"setId":2,"iconIdx":40},{"icon":{"paths":["M409.6 742.4l307.2-230.4-307.2-230.4v460.8zM512 0c-282.624 0-512 229.376-512 512s229.376 512 512 512c282.624 0 512-229.376 512-512s-229.376-512-512-512zM512 921.6c-225.792 0-409.6-183.808-409.6-409.6s183.808-409.6 409.6-409.6c225.792 0 409.6 183.808 409.6 409.6s-183.808 409.6-409.6 409.6z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["play-stroke"],"grid":16},"attrs":[{}],"properties":{"order":71,"id":41,"name":"play-stroke","prevSize":32,"code":59697},"setIdx":0,"setId":2,"iconIdx":41},{"icon":{"paths":["M0 292.571h867.388v146.286h-867.388v-146.286zM0 0h867.388v146.286h-867.388v-146.286zM0 585.143h578.259v146.286h-578.259v-146.286zM722.824 585.143v438.857l361.412-219.429-361.412-219.429z"],"width":1084,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["playlist"],"grid":16},"attrs":[{}],"properties":{"order":70,"id":42,"name":"playlist","prevSize":32,"code":59698},"setIdx":0,"setId":2,"iconIdx":42},{"icon":{"paths":["M1024 569.341v-114.681h-454.659v-454.659l-114.681 0v454.659h-454.659l-0 114.681h454.659v454.659h114.681v-454.659z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["plus"],"grid":16},"attrs":[{}],"properties":{"order":69,"id":43,"name":"plus","prevSize":32,"code":59699},"setIdx":0,"setId":2,"iconIdx":43},{"icon":{"paths":["M512 0c-282.624 0-512 229.376-512 512s229.376 512 512 512c282.624 0 512-229.376 512-512s-229.376-512-512-512v0zM563.2 870.4h-102.4v-102.4h102.4v102.4zM669.184 473.6l-46.080 47.104c-36.864 37.376-59.904 68.096-59.904 144.896h-102.4v-25.6c0-56.32 23.040-107.52 59.904-144.896l63.488-64.512c18.944-18.432 30.208-44.032 30.208-72.192 0-56.32-46.080-102.4-102.4-102.4s-102.4 46.080-102.4 102.4h-102.4c0-113.152 91.648-204.8 204.8-204.8s204.8 91.648 204.8 204.8c0 45.056-18.432 86.016-47.616 115.2v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["question"],"grid":16},"attrs":[{}],"properties":{"order":68,"id":44,"name":"question","prevSize":32,"code":59700},"setIdx":0,"setId":2,"iconIdx":44},{"icon":{"paths":["M101.275 1024h303.824l202.549-409.6v-614.4h-607.648v614.4h303.824l-202.549 409.6zM911.473 1024h303.824l202.549-409.6v-614.4h-607.648v614.4h303.824l-202.549 409.6z"],"width":1418,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["quote"],"grid":16},"attrs":[{}],"properties":{"order":67,"id":45,"name":"quote","prevSize":32,"code":59701},"setIdx":0,"setId":2,"iconIdx":45},{"icon":{"paths":["M512 256c-141.312 0-256 114.688-256 256s114.688 256 256 256c141.312 0 256-114.688 256-256s-114.688-256-256-256v0zM512 0c-282.624 0-512 229.376-512 512s229.376 512 512 512c282.624 0 512-229.376 512-512s-229.376-512-512-512v0zM512 921.6c-226.304 0-409.6-183.296-409.6-409.6s183.296-409.6 409.6-409.6c226.304 0 409.6 183.296 409.6 409.6s-183.296 409.6-409.6 409.6v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["radio"],"grid":16},"attrs":[{}],"properties":{"order":66,"id":46,"name":"radio","prevSize":32,"code":59702},"setIdx":0,"setId":2,"iconIdx":46},{"icon":{"paths":["M477.867 273.067v-273.067l-477.867 477.867 477.867 477.867v-279.893c341.333 0 580.267 109.227 750.933 348.16-68.267-341.333-273.067-682.667-750.933-750.933z"],"width":1229,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["reply"],"grid":16},"attrs":[{}],"properties":{"order":65,"id":47,"name":"reply","prevSize":32,"code":59703},"setIdx":0,"setId":2,"iconIdx":47},{"icon":{"paths":["M930.909 227.556h-837.818c-51.2 0-93.091 42.667-93.091 94.815v379.259c0 52.148 41.891 94.815 93.091 94.815h837.818c51.2 0 93.091-42.667 93.091-94.815v-379.259c0-52.148-41.891-94.815-93.091-94.815v0zM930.909 701.63h-837.818v-379.259h93.091v189.63h93.091v-189.63h93.091v189.63h93.091v-189.63h93.091v189.63h93.091v-189.63h93.091v189.63h93.091v-189.63h93.091v379.259z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["ruler"],"grid":16},"attrs":[{}],"properties":{"order":64,"id":48,"name":"ruler","prevSize":32,"code":59704},"setIdx":0,"setId":2,"iconIdx":48},{"icon":{"paths":["M554.667 186.182l-65.636 66.095-73.493-74.007v519.913h-91.52v-519.913l-73.493 74.007-65.636-66.095 184.889-186.182 184.889 186.182zM739.556 418.909v512c0 51.2-41.6 93.091-92.444 93.091h-554.667c-51.307 0-92.444-41.891-92.444-93.091v-512c0-51.665 41.138-93.091 92.444-93.091h138.667v93.091h-138.667v512h554.667v-512h-138.667v-93.091h138.667c50.844 0 92.444 41.425 92.444 93.091z"],"width":740,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["share"],"grid":16},"attrs":[{}],"properties":{"order":63,"id":49,"name":"share","prevSize":32,"code":59705},"setIdx":0,"setId":2,"iconIdx":49},{"icon":{"paths":["M512 0c-282.624 0-512 229.376-512 512s229.376 512 512 512c282.624 0 512-229.376 512-512s-229.376-512-512-512zM512 896c-212.16 0-384-171.84-384-384s171.84-384 384-384c212.16 0 384 171.84 384 384s-171.84 384-384 384z","M1024 0c-282.624 0-512 229.376-512 512s229.376 512 512 512c282.624 0 512-229.376 512-512s-229.376-512-512-512zM1024 896c-212.16 0-384-171.84-384-384s171.84-384 384-384c212.16 0 384 171.84 384 384s-171.84 384-384 384z"],"width":1536,"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{},{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{},{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{},{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{},{}]},"tags":["similar"],"grid":16},"attrs":[{},{}],"properties":{"order":101,"id":50,"name":"similar","prevSize":32,"code":59706},"setIdx":0,"setId":2,"iconIdx":50},{"icon":{"paths":["M0 384h256v640h-256v-640zM768 640h256v384h-256v-384zM384 0h256v1024h-256v-1024z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["spectogram"],"grid":16},"attrs":[{}],"properties":{"order":102,"id":51,"name":"spectogram","prevSize":32,"code":59707},"setIdx":0,"setId":2,"iconIdx":51},{"icon":{"paths":["M512 783.583l316.587 240.417-121.173-388.23 316.587-235.075h-388.267l-123.733-400.696-123.733 400.696h-388.267l316.587 235.075-121.173 388.23z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["star"],"grid":16},"attrs":[{}],"properties":{"order":526,"id":52,"name":"star","prevSize":32,"code":59710},"setIdx":0,"setId":2,"iconIdx":52},{"icon":{"paths":["M388.042 0v194.021h323.368v776.084h194.021v-776.084h323.368v-194.021h-840.758zM0 517.389h194.021v452.716h194.021v-452.716h194.021v-194.021h-582.063v194.021z"],"width":1229,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["text-size"],"grid":16},"attrs":[{}],"properties":{"order":60,"id":53,"name":"text-size","prevSize":32,"code":59711},"setIdx":0,"setId":2,"iconIdx":53},{"icon":{"paths":["M56.889 910.222c0 62.578 51.2 113.778 113.778 113.778h455.111c62.578 0 113.778-51.2 113.778-113.778v-682.667h-682.667v682.667zM796.444 56.889h-199.111l-56.889-56.889h-284.444l-56.889 56.889h-199.111v113.778h796.444v-113.778z"],"width":796,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["trash-filled"],"grid":16},"attrs":[{}],"properties":{"order":59,"id":54,"name":"trash-filled","prevSize":32,"code":59712},"setIdx":0,"setId":2,"iconIdx":54},{"icon":{"paths":["M56.889 910.222c0 62.578 51.2 113.778 113.778 113.778h455.111c62.578 0 113.778-51.2 113.778-113.778v-682.667h-682.667v682.667zM170.667 341.333h455.111v568.889h-455.111v-568.889zM597.333 56.889l-56.889-56.889h-284.444l-56.889 56.889h-199.111v113.778h796.444v-113.778h-199.111z"],"width":796,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["trash"],"grid":16},"attrs":[{}],"properties":{"order":58,"id":55,"name":"trash","prevSize":32,"code":59713},"setIdx":0,"setId":2,"iconIdx":55},{"icon":{"paths":["M0 512c0-282.77 229.23-512 512-512s512 229.23 512 512c0 282.77-229.23 512-512 512s-512-229.23-512-512z","M670.729 738.848c-18.207 17.62-55.573 30.709-91.386 31.319-1.353 0.023-2.679 0.035-4.011 0.035h-0.012c-117.795-0.006-149.223-90.513-149.223-143.994v-164.342c0-1.355-1.092-2.454-2.439-2.454h-56.959c-1.346 0-2.439-1.099-2.439-2.455v-74.865c0-1.001 0.623-1.894 1.55-2.257 60.879-23.854 94.877-71.251 103.82-144.561 0.498-4.073 3.836-4.185 3.871-4.185h76.034c1.346 0 2.438 1.099 2.438 2.455v131.579c0 1.355 1.092 2.454 2.439 2.454h94.646c1.347 0 2.439 1.1 2.439 2.455v86.924c0 1.356-1.092 2.455-2.439 2.455h-95.054c-1.347 0-2.439 1.099-2.439 2.455l0.003 156.184c0.56 35.167 17.469 52.994 50.259 52.994 13.212 0 28.345-3.094 42.162-8.406 1.292-0.496 2.717 0.165 3.159 1.483l24.179 72.143c0.305 0.91 0.091 1.917-0.596 2.582zM559.557 793.929c58.342 0 116.15-20.907 135.272-46.237l3.831-5.076-36.163-107.89c-0.335-0.998-1.265-1.67-2.311-1.67h-80.792c-1.094 0-2.083-0.701-2.36-1.766-0.941-3.598-1.503-7.997-1.59-13.432v-131.956c0-1.356 1.092-2.455 2.439-2.455h95.054c1.347 0 2.439-1.099 2.439-2.455v-134.993c0-1.356-1.092-2.455-2.439-2.455h-94.646c-1.346 0-2.439-1.099-2.439-2.454v-131.579c0-1.356-1.091-2.455-2.438-2.455h-165.984c-11.87 0-25.567 8.861-27.57 25.285-8.287 67.921-39.235 108.668-97.393 128.232l-6.489 2.18c-0.996 0.335-1.667 1.272-1.667 2.329v115.91c0 1.356 1.092 2.455 2.439 2.455h59.398v142.761c0 113.964 78.421 167.721 223.411 167.721z"],"attrs":[{"fill":"rgb(20, 20, 36)"},{"fill":"rgb(255, 255, 254)"}],"isMulticolor":true,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{"f":0},{"f":7}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{"f":1},{"f":8}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{"f":0},{"f":8}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{"f":0},{"f":7}]},"tags":["tumblr"],"grid":16},"attrs":[{"fill":"rgb(20, 20, 36)"},{"fill":"rgb(255, 255, 254)"}],"properties":{"order":57,"id":56,"name":"tumblr","prevSize":32,"code":59714,"codes":[59714,59715]},"setIdx":0,"setId":2,"iconIdx":56},{"icon":{"paths":["M0 512c0-282.77 229.23-512 512-512s512 229.23 512 512c0 282.77-229.23 512-512 512s-512-229.23-512-512z","M496.666 416.16l1.074 17.716-17.907-2.169c-65.18-8.316-122.123-36.517-170.472-83.882l-23.637-23.501-6.088 17.355c-12.893 38.687-4.656 79.543 22.204 107.021 14.325 15.185 11.102 17.355-13.609 8.316-8.595-2.892-16.116-5.062-16.832-3.977-2.507 2.531 6.088 35.433 12.893 48.449 9.311 18.078 28.293 35.794 49.064 46.279l17.549 8.316-20.772 0.362c-20.055 0-20.772 0.362-18.623 7.954 7.163 23.501 35.455 48.449 66.971 59.296l22.204 7.593-19.339 11.57c-28.651 16.632-62.315 26.032-95.98 26.755-16.116 0.362-29.367 1.808-29.367 2.892 0 3.616 43.692 23.863 69.12 31.817 76.282 23.501 166.89 13.378 234.936-26.755 48.348-28.563 96.696-85.328 119.258-140.285 12.177-29.286 24.353-82.797 24.353-108.467 0-16.632 1.074-18.801 21.13-38.687 11.818-11.57 22.921-24.224 25.069-27.84 3.581-6.87 3.223-6.87-15.042-0.723-30.441 10.847-34.739 9.401-19.697-6.87 11.102-11.57 24.353-32.54 24.353-38.687 0-1.085-5.372 0.723-11.46 3.977-6.446 3.616-20.772 9.039-31.516 12.293l-19.339 6.146-17.549-11.931c-9.67-6.508-23.279-13.739-30.441-15.909-18.265-5.062-46.199-4.339-62.673 1.446-44.767 16.27-73.059 58.211-69.836 104.129z"],"attrs":[{"fill":"rgb(85, 172, 238)"},{"fill":"rgb(255, 255, 255)"}],"isMulticolor":true,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{"f":4},{"f":6}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{"f":5},{"f":7}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{"f":5},{"f":7}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{"f":4},{"f":6}]},"tags":["twitter"],"grid":16},"attrs":[{"fill":"rgb(85, 172, 238)"},{"fill":"rgb(255, 255, 255)"}],"properties":{"order":56,"id":57,"name":"twitter","prevSize":32,"code":59716,"codes":[59716,59717]},"setIdx":0,"setId":2,"iconIdx":57},{"icon":{"paths":["M398.222 796.444c188.302 0 341.333-153.031 341.333-341.333v-455.111h-142.222v455.111c0 109.796-89.316 199.111-199.111 199.111s-199.111-89.316-199.111-199.111v-455.111h-142.222v455.111c0 188.302 153.031 341.333 341.333 341.333zM0 910.222v113.778h796.444v-113.778h-796.444z"],"width":796,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["underline"],"grid":16},"attrs":[{}],"properties":{"order":55,"id":58,"name":"underline","prevSize":32,"code":59718},"setIdx":0,"setId":2,"iconIdx":58},{"icon":{"paths":["M700.632 296.421c0 119.061-96.518 215.579-215.579 215.579s-215.579-96.518-215.579-215.579c0-119.061 96.518-215.579 215.579-215.579s215.579 96.518 215.579 215.579z","M916.211 943.158c0-238.122-193.036-431.158-431.158-431.158s-431.158 193.036-431.158 431.158","M0 948.547h970.105v53.895h-970.105v-53.895z"],"width":970,"attrs":[{"fill":"none","stroke":"rgb(20, 20, 36)","strokeLinejoin":"round","strokeLinecap":"round","strokeMiterlimit":"4","strokeWidth":107.78947368421052},{"fill":"none","stroke":"rgb(20, 20, 36)","strokeLinejoin":"round","strokeLinecap":"round","strokeMiterlimit":"4","strokeWidth":107.78947368421052},{"fill":"rgb(255, 255, 255)"}],"isMulticolor":false,"isMulticolor2":true,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{"s":0},{"s":0},{"f":6}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{"s":1},{"s":1},{"f":7}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{"s":0},{"s":0},{"f":7}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{"s":0},{"s":0},{"f":6}]},"tags":["user"],"grid":16},"attrs":[{"fill":"none","stroke":"rgb(20, 20, 36)","strokeLinejoin":"round","strokeLinecap":"round","strokeMiterlimit":"4","strokeWidth":107.78947368421052},{"fill":"none","stroke":"rgb(20, 20, 36)","strokeLinejoin":"round","strokeLinecap":"round","strokeMiterlimit":"4","strokeWidth":107.78947368421052},{"fill":"rgb(255, 255, 255)"}],"properties":{"order":116,"id":59,"name":"user","prevSize":32,"code":59719},"setIdx":0,"setId":2,"iconIdx":59},{"icon":{"paths":["M853.333 512c0-113.28-64.474-210.56-158.025-257.92v515.2c93.551-46.72 158.025-144 158.025-257.28zM0 320v384h252.84l316.049 320v-1024l-316.049 320h-252.84z"],"width":853,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["volume"],"grid":16},"attrs":[{}],"properties":{"order":100,"id":60,"name":"volume","prevSize":32,"code":59720},"setIdx":0,"setId":2,"iconIdx":60},{"icon":{"paths":["M859.136 690.152l-89.6-356.304h-105.472l-98.816 425.529-154.624-730.932h-104.448l-142.848 661.708h-163.328v101.801h246.272l111.616-518.677 153.088 722.279h104.96l102.912-443.853 60.416 240.251h244.736v-101.801z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["wave"],"grid":16},"attrs":[{}],"properties":{"order":53,"id":61,"name":"wave","prevSize":32,"code":59721},"setIdx":0,"setId":2,"iconIdx":61},{"icon":{"paths":["M682.667 0h-568.889c-62.578 0-113.209 51.2-113.778 113.778v910.222l398.222-170.667 398.222 170.667v-910.222c0-62.578-51.2-113.778-113.778-113.778v0zM682.667 853.333l-284.444-113.778-284.444 113.778v-739.556h568.889v739.556z"],"width":796,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["bookmark"],"grid":16},"attrs":[{}],"properties":{"order":529,"id":62,"name":"bookmark","prevSize":32,"code":59649},"setIdx":0,"setId":2,"iconIdx":62},{"icon":{"paths":["M682.667 0h-568.889c-62.578 0-113.209 51.2-113.209 113.778l-0.569 910.222 398.222-170.667 398.222 170.667v-910.222c0-62.578-51.2-113.778-113.778-113.778v0z"],"width":796,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["bookmarkFill"],"grid":16},"attrs":[{}],"properties":{"order":4,"id":63,"name":"bookmark-filled","prevSize":32,"code":59650},"setIdx":0,"setId":2,"iconIdx":63},{"icon":{"paths":["M768 512c0 70.4 57.6 128 128 128s128-57.6 128-128c0-70.4-57.6-128-128-128s-128 57.6-128 128v0zM640 512c0-70.4-57.6-128-128-128s-128 57.6-128 128c0 70.4 57.6 128 128 128s128-57.6 128-128v0zM256 512c0-70.4-57.6-128-128-128s-128 57.6-128 128c0 70.4 57.6 128 128 128s128-57.6 128-128v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["ellipsis"],"grid":16},"attrs":[{}],"properties":{"order":5,"id":64,"name":"ellipsis","prevSize":32,"code":59651},"setIdx":0,"setId":2,"iconIdx":64},{"icon":{"paths":["M0 1024h292.571v-1024h-292.571v1024zM585.143 0v1024h292.571v-1024h-292.571z"],"width":910,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["pause"],"grid":16},"attrs":[{}],"properties":{"order":6,"id":65,"name":"pause","prevSize":32,"code":59652},"setIdx":0,"setId":2,"iconIdx":65},{"icon":{"paths":["M0 0v1024l796.444-512z"],"width":796,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["play"],"grid":16},"attrs":[{}],"properties":{"order":7,"id":66,"name":"play","prevSize":32,"code":59653},"setIdx":0,"setId":2,"iconIdx":66},{"icon":{"paths":["M369.778 232.727v139.636l184.889-186.182-184.889-186.182v139.636c-204.302 0-369.778 166.633-369.778 372.364 0 73.076 21.262 141.033 57.316 198.284l67.484-67.956c-20.8-38.633-32.356-83.316-32.356-130.327 0-154.065 124.338-279.273 277.333-279.273v0zM682.24 313.716l-67.484 67.956c20.338 39.098 32.356 83.316 32.356 130.327 0 154.065-124.338 279.273-277.333 279.273v-139.636l-184.889 186.182 184.889 186.182v-139.636c204.302 0 369.778-166.633 369.778-372.364 0-73.076-21.262-141.033-57.316-198.284v0z"],"width":740,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["refresh"],"grid":16},"attrs":[{}],"properties":{"order":8,"id":67,"name":"refresh","prevSize":32,"code":59654},"setIdx":0,"setId":2,"iconIdx":67},{"icon":{"paths":["M685.594 644.025l-16.393-15.808c57.377-66.744 91.92-153.395 91.92-247.657 0-210.186-170.374-380.56-380.56-380.56s-380.56 170.374-380.56 380.56c0 210.186 170.374 380.56 380.56 380.56 94.262 0 180.913-34.543 247.657-91.92l15.808 16.393v46.253l292.739 292.153 87.236-87.236-292.153-292.739h-46.253zM117.095 380.56c0-145.784 117.681-263.465 263.465-263.465s263.465 117.681 263.465 263.465c0 145.784-117.681 263.465-263.465 263.465s-263.465-117.681-263.465-263.465z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["search"],"grid":16},"attrs":[{}],"properties":{"order":9,"id":68,"name":"search","prevSize":32,"code":59655},"setIdx":0,"setId":2,"iconIdx":68},{"icon":{"paths":["M0 0h1024v1024h-1024z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["stop"],"grid":16},"attrs":[{}],"properties":{"order":10,"id":69,"name":"stop","prevSize":32,"code":59656},"setIdx":0,"setId":2,"iconIdx":69},{"icon":{"paths":["M511.088 0c143.808 0 265.12 49.36 363.872 148.112 99.328 99.36 149.040 220.656 149.040 363.888 0 143.856-48.784 263.616-146.32 359.296-103.616 101.808-225.808 152.704-366.592 152.704-138.384 0-258.448-50.304-360.224-150.88-100.56-100.576-150.864-220.928-150.864-361.12 0-140.176 50.304-261.472 150.864-363.872 98.752-98.768 218.8-148.128 360.224-148.128zM512.912 92.352c-116.416 0-214.848 40.848-295.312 122.512-83.52 85.344-125.264 184.4-125.264 297.152 0 113.376 41.44 211.52 124.32 294.368 82.896 82.912 181.632 124.336 296.224 124.336 113.968 0 213.344-41.712 298.064-125.248 80.464-77.408 120.688-175.232 120.688-293.488 0-116.416-40.848-215.44-122.496-297.136-81.664-81.664-180.416-122.496-296.224-122.496zM650.064 384.912v209.36h-58.496v248.672h-159.104v-248.656h-58.496v-209.376c0-9.152 3.2-16.912 9.584-23.312 6.416-6.384 14.192-9.6 23.312-9.6h210.304c8.528 0 16.16 3.2 22.848 9.6 6.672 6.4 10.048 14.176 10.048 23.312zM440.672 253.264c0-48.128 23.76-72.224 71.328-72.224s71.312 24.064 71.312 72.224c0 47.536-23.776 71.312-71.312 71.312s-71.328-23.776-71.328-71.312z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["by"],"grid":16},"attrs":[{}],"properties":{"order":524,"id":70,"name":"by","prevSize":32,"code":59648},"setIdx":0,"setId":2,"iconIdx":70},{"icon":{"paths":["M511.056 0c143.216 0 265.152 50 365.712 149.952 48.128 48.144 84.72 103.168 109.712 165.024 24.976 61.872 37.504 127.536 37.504 197.024 0 70.096-12.368 135.776-37.024 197.008-24.688 61.248-61.12 115.36-109.248 162.288-49.968 49.36-106.656 87.168-170.064 113.376-63.376 26.208-128.912 39.312-196.56 39.312s-132.416-12.928-194.288-38.864c-61.856-25.888-117.328-63.376-166.4-112.432s-86.4-104.384-112-165.952-38.4-126.464-38.4-194.736c0-67.664 12.944-132.72 38.848-195.2s63.552-118.4 112.912-167.776c97.52-99.328 217.28-149.024 359.296-149.024zM512.912 92.352c-117.024 0-215.472 40.848-295.328 122.512-40.24 40.848-71.168 86.704-92.8 137.6-21.664 50.896-32.464 104.080-32.464 159.552 0 54.864 10.8 107.744 32.464 158.608 21.648 50.928 52.56 96.336 92.8 136.256 40.224 39.936 85.616 70.384 136.24 91.44 50.576 21.024 103.616 31.536 159.088 31.536 54.848 0 108-10.64 159.568-31.984 51.504-21.36 97.936-52.112 139.408-92.336 79.84-78.016 119.744-175.84 119.744-293.504 0-56.688-10.368-110.32-31.088-160.912-20.688-50.592-50.88-95.68-90.464-135.328-82.336-82.288-181.36-123.44-297.168-123.44zM506.496 426.992l-68.592 35.664c-7.328-15.216-16.304-25.904-26.96-32-10.672-6.080-20.576-9.136-29.728-9.136-45.696 0-68.576 30.16-68.576 90.512 0 27.424 5.792 49.344 17.36 65.808 11.584 16.464 28.656 24.704 51.216 24.704 29.872 0 50.896-14.64 63.104-43.888l63.072 32c-13.408 25.008-32 44.656-55.776 58.976-23.744 14.336-49.968 21.488-78.624 21.488-45.712 0-82.608-14-110.64-42.064-28.032-28.032-42.048-67.040-42.048-117.008 0-48.768 14.176-87.456 42.512-116.112 28.336-28.64 64.144-42.976 107.44-42.976 63.408-0.032 108.8 24.656 136.24 74.032zM801.808 426.992l-67.664 35.664c-7.312-15.216-16.32-25.904-26.976-32-10.688-6.080-20.912-9.136-30.624-9.136-45.712 0-68.592 30.16-68.592 90.512 0 27.424 5.808 49.344 17.376 65.808s28.624 24.704 51.216 24.704c29.84 0 50.88-14.64 63.056-43.888l64 32c-14 25.008-32.912 44.656-56.656 58.976-23.776 14.336-49.68 21.488-77.712 21.488-46.336 0-83.344-14-111.056-42.064-27.776-28.032-41.632-67.040-41.632-117.008 0-48.768 14.16-87.456 42.528-116.112 28.32-28.64 64.128-42.976 107.408-42.976 63.392-0.032 108.528 24.656 135.328 74.032z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["cc"],"grid":16},"attrs":[{}],"properties":{"order":511,"id":71,"name":"cc","prevSize":32,"code":59726},"setIdx":0,"setId":2,"iconIdx":71},{"icon":{"paths":["M511.072 0c143.84 0 265.136 49.36 363.888 148.096 99.328 98.752 149.040 220.048 149.040 363.904 0 143.872-48.768 263.616-146.32 359.328-103.6 101.792-225.824 152.672-366.608 152.672-138.976 0-259.040-50.592-360.208-151.76-100.56-100.592-150.864-220.64-150.864-360.24 0-140.192 50.304-261.488 150.864-363.888 98.736-98.736 218.8-148.112 360.208-148.112zM115.2 373.952c-15.232 42.048-22.864 88.080-22.864 138.064 0 113.376 41.44 211.52 124.32 294.4 83.504 82.304 182.256 123.44 296.224 123.44 115.216 0 214.544-41.728 298.080-125.264 29.872-28.64 53.312-58.512 70.368-89.632l-192.896-85.936c-6.736 32.32-23.024 58.672-48.912 79.072-25.952 20.416-56.56 32.176-91.904 35.2v78.64h-59.424v-78.64c-56.688-0.576-108.512-20.992-155.424-61.232l70.4-71.312c33.504 31.072 71.616 46.608 114.288 46.608 17.664 0 32.768-3.936 45.28-11.888 12.48-7.904 18.752-20.992 18.752-39.312 0-12.816-4.592-23.168-13.728-31.088l-49.36-21.040-60.336-27.44-81.376-35.664-261.488-116.976zM512.912 91.424c-116.416 0-214.848 41.136-295.312 123.424-20.128 20.128-39.024 42.976-56.688 68.592l195.664 87.76c8.528-26.816 24.672-48.304 48.464-64.448 23.744-16.144 51.488-25.136 83.2-26.976v-78.64h59.44v78.64c46.944 2.448 89.6 18.288 128 47.536l-66.752 68.576c-28.688-20.112-57.904-30.16-87.776-30.16-15.856 0-30.016 3.056-42.496 9.136-12.496 6.096-18.752 16.464-18.752 31.088 0 4.272 1.52 8.528 4.56 12.8l109.712 49.392 82.304 36.56 262.352 117.024c8.56-35.968 12.816-72.528 12.816-109.712 0-117.648-40.832-216.688-122.496-297.168-81.072-82.288-179.856-123.424-296.24-123.424z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["nc"],"grid":16},"attrs":[{}],"properties":{"order":517,"id":72,"name":"nc","prevSize":32,"code":59727},"setIdx":0,"setId":2,"iconIdx":72},{"icon":{"paths":["M512 217.28c-169.040 0-211.552 159.504-211.552 294.72 0 135.232 42.496 294.72 211.552 294.72 169.024 0 211.536-159.488 211.536-294.72-0-135.216-42.512-294.72-211.536-294.72zM512 328.416c6.864 0 13.12 1.056 19.008 2.512 12.176 10.496 18.128 24.976 6.448 45.168l-112.576 206.88c-3.456-26.176-3.952-51.84-3.952-70.992 0-59.552 4.128-183.568 91.072-183.568zM596.256 423.792c5.968 31.744 6.816 64.896 6.816 88.208 0 59.568-4.128 183.6-91.040 183.6-6.848 0-13.152-0.72-19.008-2.176-1.12-0.336-2.144-0.688-3.232-1.072-1.792-0.512-3.68-1.088-5.376-1.76-19.36-8.24-31.552-23.136-13.984-49.488l125.824-217.312z","M510.928 0c-142.032 0-261.744 49.44-359.264 148.8-49.392 49.392-87.088 105.712-113.312 168.512-25.6 62.192-38.352 127.024-38.352 194.688 0 68.288 12.752 133.12 38.352 194.688 25.6 61.6 62.736 116.992 111.504 166.336 49.36 48.784 104.784 86.384 166.368 112.592 62.176 25.632 127.024 38.368 194.704 38.368 67.664 0 133.44-13.216 196.848-39.44 63.392-26.224 119.936-63.904 169.936-113.296 48.176-46.928 84.624-100.752 108.992-161.696 24.976-61.552 37.296-127.424 37.296-197.552 0-69.488-12.32-135.264-37.28-196.848-24.992-62.16-61.568-117.12-109.712-165.28-100.608-99.968-222.848-149.872-366.080-149.872zM513.072 92.144c115.808 0 214.592 41.056 296.864 123.344 39.632 39.632 70 84.96 90.72 135.536 20.736 50.592 31.184 104.288 31.184 160.976 0 117.664-40.256 215.264-120.096 293.28-41.472 40.256-88.032 71.152-139.84 92.496-51.2 21.344-103.968 31.904-158.832 31.904-55.488 0-108.608-10.448-159.184-31.168-50.608-21.344-96.016-51.808-136.256-91.456-40.24-40.224-71.28-85.648-93.216-136.256-21.328-51.184-32.272-103.968-32.272-158.832 0-55.472 10.944-108.592 32.272-159.184 21.936-51.2 52.992-97.184 93.216-138.048 79.84-81.648 178.4-122.592 295.44-122.592z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1150150170120203612022022121255255254125525525512555370159891521851722381":[{},{}],"150150170120203612022022121255255254125525525512555370159891521851722381":[{},{}],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[{},{}],"126126141120203612022022121255255254125525525512555370159891521851722381":[{},{}]},"tags":["zero"],"grid":16},"attrs":[{},{}],"properties":{"order":510,"id":73,"name":"zero","prevSize":32,"code":59728},"setIdx":0,"setId":2,"iconIdx":73},{"icon":{"paths":["M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM512 896c-212.078 0-384-171.922-384-384s171.922-384 384-384c212.078 0 384 171.922 384 384s-171.922 384-384 384z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1150150170120203612022022121255255254125525525512555370159891521851722381":[],"150150170120203612022022121255255254125525525512555370159891521851722381":[],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[],"126126141120203612022022121255255254125525525512555370159891521851722381":[]},"tags":["radio-unchecked","radio-button","circle"],"defaultCode":59990,"grid":16},"attrs":[],"properties":{"ligatures":"radio-unchecked, radio-button3","name":"radio-unchecked","order":504,"id":74,"prevSize":32,"code":59990},"setIdx":0,"setId":2,"iconIdx":74},{"icon":{"paths":["M864 704c-45.16 0-85.92 18.738-115.012 48.83l-431.004-215.502c1.314-8.252 2.016-16.706 2.016-25.328s-0.702-17.076-2.016-25.326l431.004-215.502c29.092 30.090 69.852 48.828 115.012 48.828 88.366 0 160-71.634 160-160s-71.634-160-160-160-160 71.634-160 160c0 8.622 0.704 17.076 2.016 25.326l-431.004 215.504c-29.092-30.090-69.852-48.83-115.012-48.83-88.366 0-160 71.636-160 160 0 88.368 71.634 160 160 160 45.16 0 85.92-18.738 115.012-48.828l431.004 215.502c-1.312 8.25-2.016 16.704-2.016 25.326 0 88.368 71.634 160 160 160s160-71.632 160-160c0-88.364-71.634-160-160-160z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1150150170120203612022022121255255254125525525512555370159891521851722381":[],"150150170120203612022022121255255254125525525512555370159891521851722381":[],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[],"126126141120203612022022121255255254125525525512555370159891521851722381":[]},"tags":["share","social"],"defaultCode":60034,"grid":16},"attrs":[],"properties":{"ligatures":"share2, social","name":"share2","order":505,"id":75,"prevSize":32,"code":60034},"setIdx":0,"setId":2,"iconIdx":75},{"icon":{"paths":["M1024 320l-512-256-512 256 512 256 512-256zM512 148.97l342.058 171.030-342.058 171.030-342.058-171.030 342.058-171.030zM921.444 460.722l102.556 51.278-512 256-512-256 102.556-51.278 409.444 204.722zM921.444 652.722l102.556 51.278-512 256-512-256 102.556-51.278 409.444 204.722z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1150150170120203612022022121255255254125525525512555370159891521851722381":[],"150150170120203612022022121255255254125525525512555370159891521851722381":[],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[],"126126141120203612022022121255255254125525525512555370159891521851722381":[]},"tags":["stack","layers"],"defaultCode":59694,"grid":16},"attrs":[],"properties":{"ligatures":"stack, layers","name":"stack","id":76,"order":7,"prevSize":32,"code":59734},"setIdx":0,"setId":2,"iconIdx":76},{"icon":{"paths":["M658.744 749.256l-210.744-210.746v-282.51h128v229.49l173.256 173.254zM512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM512 896c-212.078 0-384-171.922-384-384s171.922-384 384-384c212.078 0 384 171.922 384 384s-171.922 384-384 384z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1150150170120203612022022121255255254125525525512555370159891521851722381":[],"150150170120203612022022121255255254125525525512555370159891521851722381":[],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[],"126126141120203612022022121255255254125525525512555370159891521851722381":[]},"tags":["clock","time","schedule"],"defaultCode":59726,"grid":16},"attrs":[],"properties":{"ligatures":"clock, time2","name":"clock","id":77,"order":8,"prevSize":32,"code":59735},"setIdx":0,"setId":2,"iconIdx":77},{"icon":{"paths":["M832 64h-640l-192 192v672c0 17.674 14.326 32 32 32h960c17.672 0 32-14.326 32-32v-672l-192-192zM512 832l-320-256h192v-192h256v192h192l-320 256zM154.51 192l64-64h586.978l64 64h-714.978z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1150150170120203612022022121255255254125525525512555370159891521851722381":[],"150150170120203612022022121255255254125525525512555370159891521851722381":[],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[],"126126141120203612022022121255255254125525525512555370159891521851722381":[]},"tags":["box-add","box","download","storage","inbox","archive"],"defaultCode":59742,"grid":16},"attrs":[],"properties":{"ligatures":"box-add, box3","name":"box-add","id":78,"order":11,"prevSize":32,"code":59742},"setIdx":0,"setId":2,"iconIdx":78},{"icon":{"paths":["M832 64h-640l-192 192v672c0 17.674 14.326 32 32 32h960c17.672 0 32-14.326 32-32v-672l-192-192zM640 640v192h-256v-192h-192l320-256 320 256h-192zM154.51 192l64-64h586.976l64 64h-714.976z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1150150170120203612022022121255255254125525525512555370159891521851722381":[],"150150170120203612022022121255255254125525525512555370159891521851722381":[],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[],"126126141120203612022022121255255254125525525512555370159891521851722381":[]},"tags":["box-remove","box","upload","storage","outbox","archive"],"defaultCode":59743,"grid":16},"attrs":[],"properties":{"ligatures":"box-remove, box4","name":"box-remove","id":79,"order":12,"prevSize":32,"code":59743},"setIdx":0,"setId":2,"iconIdx":79},{"icon":{"paths":["M512 192c-223.318 0-416.882 130.042-512 320 95.118 189.958 288.682 320 512 320 223.312 0 416.876-130.042 512-320-95.116-189.958-288.688-320-512-320zM764.45 361.704c60.162 38.374 111.142 89.774 149.434 150.296-38.292 60.522-89.274 111.922-149.436 150.296-75.594 48.218-162.89 73.704-252.448 73.704-89.56 0-176.858-25.486-252.452-73.704-60.158-38.372-111.138-89.772-149.432-150.296 38.292-60.524 89.274-111.924 149.434-150.296 3.918-2.5 7.876-4.922 11.86-7.3-9.96 27.328-15.41 56.822-15.41 87.596 0 141.382 114.616 256 256 256 141.382 0 256-114.618 256-256 0-30.774-5.452-60.268-15.408-87.598 3.978 2.378 7.938 4.802 11.858 7.302v0zM512 416c0 53.020-42.98 96-96 96s-96-42.98-96-96 42.98-96 96-96 96 42.982 96 96z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1150150170120203612022022121255255254125525525512555370159891521851722381":[],"150150170120203612022022121255255254125525525512555370159891521851722381":[],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[],"126126141120203612022022121255255254125525525512555370159891521851722381":[]},"tags":["eye","views","vision","visit"],"defaultCode":59854,"grid":16},"attrs":[],"properties":{"ligatures":"eye, views","name":"eye","id":80,"order":9,"prevSize":32,"code":59854},"setIdx":0,"setId":2,"iconIdx":80},{"icon":{"paths":["M945.942 14.058c-18.746-18.744-49.136-18.744-67.882 0l-202.164 202.164c-51.938-15.754-106.948-24.222-163.896-24.222-223.318 0-416.882 130.042-512 320 41.122 82.124 100.648 153.040 173.022 207.096l-158.962 158.962c-18.746 18.746-18.746 49.136 0 67.882 9.372 9.374 21.656 14.060 33.94 14.060s24.568-4.686 33.942-14.058l864-864c18.744-18.746 18.744-49.138 0-67.884zM416 320c42.24 0 78.082 27.294 90.92 65.196l-121.724 121.724c-37.902-12.838-65.196-48.68-65.196-90.92 0-53.020 42.98-96 96-96zM110.116 512c38.292-60.524 89.274-111.924 149.434-150.296 3.918-2.5 7.876-4.922 11.862-7.3-9.962 27.328-15.412 56.822-15.412 87.596 0 54.89 17.286 105.738 46.7 147.418l-60.924 60.924c-52.446-36.842-97.202-83.882-131.66-138.342z","M768 442c0-27.166-4.256-53.334-12.102-77.898l-321.808 321.808c24.568 7.842 50.742 12.090 77.91 12.090 141.382 0 256-114.618 256-256z","M830.026 289.974l-69.362 69.362c1.264 0.786 2.53 1.568 3.786 2.368 60.162 38.374 111.142 89.774 149.434 150.296-38.292 60.522-89.274 111.922-149.436 150.296-75.594 48.218-162.89 73.704-252.448 73.704-38.664 0-76.902-4.76-113.962-14.040l-76.894 76.894c59.718 21.462 123.95 33.146 190.856 33.146 223.31 0 416.876-130.042 512-320-45.022-89.916-112.118-166.396-193.974-222.026z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1150150170120203612022022121255255254125525525512555370159891521851722381":[],"150150170120203612022022121255255254125525525512555370159891521851722381":[],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[],"126126141120203612022022121255255254125525525512555370159891521851722381":[]},"tags":["eye-blocked","views","vision","visit","banned","blocked","forbidden","private"],"defaultCode":59857,"grid":16},"attrs":[],"properties":{"ligatures":"eye-blocked, views4","name":"eye-blocked","id":81,"order":10,"prevSize":32,"code":59857},"setIdx":0,"setId":2,"iconIdx":81},{"icon":{"paths":["M512 96c-111.118 0-215.584 43.272-294.156 121.844s-121.844 183.038-121.844 294.156c0 111.118 43.272 215.584 121.844 294.156s183.038 121.844 294.156 121.844c111.118 0 215.584-43.272 294.156-121.844s121.844-183.038 121.844-294.156c0-111.118-43.272-215.584-121.844-294.156s-183.038-121.844-294.156-121.844zM512 0v0c282.77 0 512 229.23 512 512s-229.23 512-512 512c-282.77 0-512-229.23-512-512s229.23-512 512-512zM448 704h128v128h-128zM448 192h128v384h-128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1150150170120203612022022121255255254125525525512555370159891521851722381":[],"150150170120203612022022121255255254125525525512555370159891521851722381":[],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[],"126126141120203612022022121255255254125525525512555370159891521851722381":[]},"tags":["notification","warning","notice","note","exclamation"],"defaultCode":59912,"grid":16},"attrs":[],"properties":{"ligatures":"notification, warning2","name":"notification","order":2,"id":82,"prevSize":32,"code":59912},"setIdx":0,"setId":2,"iconIdx":82},{"icon":{"paths":["M864 0h-768c-52.8 0-96 43.2-96 96v832c0 52.8 43.2 96 96 96h768c52.8 0 96-43.2 96-96v-832c0-52.8-43.2-96-96-96zM832 896h-704v-768h704v768zM256 448h448v64h-448zM256 576h448v64h-448zM256 704h448v64h-448zM256 320h448v64h-448z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1150150170120203612022022121255255254125525525512555370159891521851722381":[],"150150170120203612022022121255255254125525525512555370159891521851722381":[],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[],"126126141120203612022022121255255254125525525512555370159891521851722381":[]},"tags":["file-text","file","document","list","paper"],"defaultCode":59682,"grid":16},"attrs":[],"properties":{"ligatures":"file-text, file","name":"file-text","id":83,"order":516,"prevSize":32,"code":59729},"setIdx":0,"setId":2,"iconIdx":83},{"icon":{"paths":["M363.722 722.052l41.298-57.816-45.254-45.256-57.818 41.296c-10.722-5.994-22.204-10.774-34.266-14.192l-11.682-70.084h-64l-11.68 70.086c-12.062 3.418-23.544 8.198-34.266 14.192l-57.818-41.298-45.256 45.256 41.298 57.816c-5.994 10.72-10.774 22.206-14.192 34.266l-70.086 11.682v64l70.086 11.682c3.418 12.060 8.198 23.544 14.192 34.266l-41.298 57.816 45.254 45.256 57.818-41.296c10.722 5.994 22.204 10.774 34.266 14.192l11.682 70.084h64l11.68-70.086c12.062-3.418 23.544-8.198 34.266-14.192l57.818 41.296 45.254-45.256-41.298-57.816c5.994-10.72 10.774-22.206 14.192-34.266l70.088-11.68v-64l-70.086-11.682c-3.418-12.060-8.198-23.544-14.192-34.266zM224 864c-35.348 0-64-28.654-64-64s28.652-64 64-64 64 28.654 64 64-28.652 64-64 64zM1024 384v-64l-67.382-12.25c-1.242-8.046-2.832-15.978-4.724-23.79l57.558-37.1-24.492-59.128-66.944 14.468c-4.214-6.91-8.726-13.62-13.492-20.13l39.006-56.342-45.256-45.254-56.342 39.006c-6.512-4.766-13.22-9.276-20.13-13.494l14.468-66.944-59.128-24.494-37.1 57.558c-7.812-1.892-15.744-3.482-23.79-4.724l-12.252-67.382h-64l-12.252 67.382c-8.046 1.242-15.976 2.832-23.79 4.724l-37.098-57.558-59.128 24.492 14.468 66.944c-6.91 4.216-13.62 8.728-20.13 13.494l-56.342-39.006-45.254 45.254 39.006 56.342c-4.766 6.51-9.278 13.22-13.494 20.13l-66.944-14.468-24.492 59.128 57.558 37.1c-1.892 7.812-3.482 15.742-4.724 23.79l-67.384 12.252v64l67.382 12.25c1.242 8.046 2.832 15.978 4.724 23.79l-57.558 37.1 24.492 59.128 66.944-14.468c4.216 6.91 8.728 13.618 13.494 20.13l-39.006 56.342 45.254 45.256 56.342-39.006c6.51 4.766 13.22 9.276 20.13 13.492l-14.468 66.944 59.128 24.492 37.102-57.558c7.81 1.892 15.742 3.482 23.788 4.724l12.252 67.384h64l12.252-67.382c8.044-1.242 15.976-2.832 23.79-4.724l37.1 57.558 59.128-24.492-14.468-66.944c6.91-4.216 13.62-8.726 20.13-13.492l56.342 39.006 45.256-45.256-39.006-56.342c4.766-6.512 9.276-13.22 13.492-20.13l66.944 14.468 24.492-59.13-57.558-37.1c1.892-7.812 3.482-15.742 4.724-23.79l67.382-12.25zM672 491.2c-76.878 0-139.2-62.322-139.2-139.2s62.32-139.2 139.2-139.2 139.2 62.322 139.2 139.2c0 76.878-62.32 139.2-139.2 139.2z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1150150170120203612022022121255255254125525525512555370159891521851722381":[],"150150170120203612022022121255255254125525525512555370159891521851722381":[],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[],"126126141120203612022022121255255254125525525512555370159891521851722381":[]},"tags":["cogs","gears","preferences","settings","generate","control","options"],"defaultCode":59797,"grid":16},"attrs":[],"properties":{"ligatures":"cogs, gears","name":"cogs","id":84,"order":514,"prevSize":32,"code":59797},"setIdx":0,"setId":2,"iconIdx":84},{"icon":{"paths":["M928 128h-288c0-70.692-57.306-128-128-128-70.692 0-128 57.308-128 128h-288c-17.672 0-32 14.328-32 32v832c0 17.674 14.328 32 32 32h832c17.674 0 32-14.326 32-32v-832c0-17.672-14.326-32-32-32zM512 64c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64s28.654-64 64-64zM896 960h-768v-768h128v96c0 17.672 14.328 32 32 32h448c17.674 0 32-14.328 32-32v-96h128v768z","M448 858.51l-205.254-237.254 58.508-58.51 146.746 114.744 274.742-242.744 58.514 58.508z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1150150170120203612022022121255255254125525525512555370159891521851722381":[],"150150170120203612022022121255255254125525525512555370159891521851722381":[],"1261261411150150170120203612022022121255255254125525525512555370159891521851722381":[],"126126141120203612022022121255255254125525525512555370159891521851722381":[]},"tags":["clipboard","board","signup","register","agreement"],"defaultCode":59832,"grid":16},"attrs":[],"properties":{"ligatures":"clipboard, board","name":"clipboard","id":85,"order":513,"prevSize":32,"code":59832},"setIdx":0,"setId":2,"iconIdx":85},{"icon":{"paths":["M640 256v-256h-448l-192 192v576h384v256h640v-768h-384zM192 90.51v101.49h-101.49l101.49-101.49zM64 704v-448h192v-192h320v192l-192 192v256h-320zM576 346.51v101.49h-101.49l101.49-101.49zM960 960h-512v-448h192v-192h320v640z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"126126141120203612022022121255255254125525525512555370159891521851722381":[{}]},"tags":["copy"],"grid":16},"attrs":[{}],"properties":{"order":5,"id":86,"name":"copy","prevSize":32,"code":59709},"setIdx":0,"setId":2,"iconIdx":86},{"icon":{"paths":["M1024 429.256c0-200.926-58.792-363.938-131.482-365.226 0.292-0.006 0.578-0.030 0.872-0.030h-82.942c0 0-194.8 146.336-475.23 203.754-8.56 45.292-14.030 99.274-14.030 161.502s5.466 116.208 14.030 161.5c280.428 57.418 475.23 203.756 475.23 203.756h82.942c-0.292 0-0.578-0.024-0.872-0.032 72.696-1.288 131.482-164.298 131.482-365.224zM864.824 739.252c-9.382 0-19.532-9.742-24.746-15.548-12.63-14.064-24.792-35.96-35.188-63.328-23.256-61.232-36.066-143.31-36.066-231.124 0-87.81 12.81-169.89 36.066-231.122 10.394-27.368 22.562-49.266 35.188-63.328 5.214-5.812 15.364-15.552 24.746-15.552 9.38 0 19.536 9.744 24.744 15.552 12.634 14.064 24.796 35.958 35.188 63.328 23.258 61.23 36.068 143.312 36.068 231.122 0 87.804-12.81 169.888-36.068 231.124-10.39 27.368-22.562 49.264-35.188 63.328-5.208 5.806-15.36 15.548-24.744 15.548zM251.812 429.256c0-51.95 3.81-102.43 11.052-149.094-47.372 6.554-88.942 10.324-140.34 10.324-67.058 0-67.058 0-67.058 0l-55.466 94.686v88.17l55.46 94.686c0 0 0 0 67.060 0 51.398 0 92.968 3.774 140.34 10.324-7.236-46.664-11.048-97.146-11.048-149.096zM368.15 642.172l-127.998-24.51 81.842 321.544c4.236 16.634 20.744 25.038 36.686 18.654l118.556-47.452c15.944-6.376 22.328-23.964 14.196-39.084l-123.282-229.152zM864.824 548.73c-3.618 0-7.528-3.754-9.538-5.992-4.87-5.42-9.556-13.86-13.562-24.408-8.962-23.6-13.9-55.234-13.9-89.078s4.938-65.478 13.9-89.078c4.006-10.548 8.696-18.988 13.562-24.408 2.010-2.24 5.92-5.994 9.538-5.994 3.616 0 7.53 3.756 9.538 5.994 4.87 5.42 9.556 13.858 13.56 24.408 8.964 23.598 13.902 55.234 13.902 89.078 0 33.842-4.938 65.478-13.902 89.078-4.004 10.548-8.696 18.988-13.56 24.408-2.008 2.238-5.92 5.992-9.538 5.992z"],"tags":["bullhorn","megaphone","announcement","advertisement","news"],"defaultCode":59674,"grid":16,"attrs":[]},"attrs":[],"properties":{"ligatures":"bullhorn, megaphone","name":"bullhorn","order":6,"id":27,"prevSize":32,"code":59722},"setIdx":1,"setId":1,"iconIdx":26},{"icon":{"paths":["M448 304c0-26.4 21.6-48 48-48h32c26.4 0 48 21.6 48 48v32c0 26.4-21.6 48-48 48h-32c-26.4 0-48-21.6-48-48v-32z","M640 768h-256v-64h64v-192h-64v-64h192v256h64z","M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM512 928c-229.75 0-416-186.25-416-416s186.25-416 416-416 416 186.25 416 416-186.25 416-416 416z"],"tags":["info","information"],"defaultCode":59916,"grid":16,"attrs":[]},"attrs":[],"properties":{"ligatures":"info, information","name":"info","order":5,"id":269,"prevSize":32,"code":59916},"setIdx":1,"setId":1,"iconIdx":268}],"height":1024,"metadata":{"name":"bw-icons"},"preferences":{"showGlyphs":true,"showQuickUse":false,"showQuickUse2":true,"showSVGs":true,"fontPref":{"prefix":"bw-icon-","metadata":{"fontFamily":"bw-icons","majorVersion":1,"minorVersion":0},"metrics":{"emSize":1024,"baseline":6.25,"whitespace":50},"embed":false,"showSelector":false,"showMetrics":false,"showMetadata":false,"autoHost":true},"imagePref":{"prefix":"icon-","png":true,"useClassSelector":true,"color":0,"bgColor":16777215,"classSelector":".icon","name":"icomoon"},"historySize":50,"showCodes":true,"gridSize":16,"quickUsageToken":{"UntitledProject":"ZDFhZDZiNWY2YiMxNzE4ODMwODIwI1pyOHQvRDF5Wms2TmF0dlI0L3BLUk5UNDgrdU04Z0dXREdNQzkwbmF6bHdB"},"showGrid":false}} \ No newline at end of file diff --git a/freesound/static/bw-frontend/bw-icons/style.css b/freesound/static/bw-frontend/bw-icons/style.css index c4afe889f..6f84b56bf 100644 --- a/freesound/static/bw-frontend/bw-icons/style.css +++ b/freesound/static/bw-frontend/bw-icons/style.css @@ -1,10 +1,10 @@ @font-face { font-family: 'bw-icons'; - src: url('fonts/bw-icons.eot?anucm6'); - src: url('fonts/bw-icons.eot?anucm6#iefix') format('embedded-opentype'), - url('fonts/bw-icons.ttf?anucm6') format('truetype'), - url('fonts/bw-icons.woff?anucm6') format('woff'), - url('fonts/bw-icons.svg?anucm6#bw-icons') format('svg'); + src: url('fonts/bw-icons.eot?8pbk45'); + src: url('fonts/bw-icons.eot?8pbk45#iefix') format('embedded-opentype'), + url('fonts/bw-icons.ttf?8pbk45') format('truetype'), + url('fonts/bw-icons.woff?8pbk45') format('woff'), + url('fonts/bw-icons.svg?8pbk45#bw-icons') format('svg'); font-weight: normal; font-style: normal; font-display: block; @@ -84,6 +84,9 @@ .bw-radio:checked + .bw-radio-container .bw-icon-radio-unchecked:before { /* NOTE: this was added manually */ content: '\e936'; } +.bw-icon-checkbox:before { + content: "\e912"; +} .bw-icon-chevron-up:before { content: "\e913"; } @@ -338,3 +341,9 @@ .bw-icon-copy:before { content: "\e93d"; } +.bw-icon-bullhorn:before { + content: "\e94a"; +} +.bw-icon-info:before { + content: "\ea0c"; +} diff --git a/templates/molecules/announcement_banner.html b/templates/molecules/announcement_banner.html index 35f8d446b..0cf1cd535 100644 --- a/templates/molecules/announcement_banner.html +++ b/templates/molecules/announcement_banner.html @@ -2,7 +2,7 @@
-
{% bw_icon 'notification' %}
+
{% bw_icon 'bullhorn' %}
{% if title %}

{{ title }}

{% endif %} @@ -11,4 +11,4 @@
- \ No newline at end of file +