From 47f8989eb1582d4659f21727d12cc79c3727c453 Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Fri, 27 Jun 2014 16:48:55 +0100 Subject: [PATCH 01/63] Removed embedly filter This has been deprecated since <0.1 so I think its time for it to go now --- .../templatetags/embed_filters.py | 2 +- .../templatetags/wagtailembeds_tags.py | 9 ----- wagtail/wagtailembeds/tests.py | 40 ------------------- 3 files changed, 1 insertion(+), 50 deletions(-) diff --git a/wagtail/wagtailembeds/templatetags/embed_filters.py b/wagtail/wagtailembeds/templatetags/embed_filters.py index cb79ce69a..2653b8428 100644 --- a/wagtail/wagtailembeds/templatetags/embed_filters.py +++ b/wagtail/wagtailembeds/templatetags/embed_filters.py @@ -5,4 +5,4 @@ warnings.warn( "Use {% load wagtailembeds_tags %} instead.", DeprecationWarning) -from wagtail.wagtailembeds.templatetags.wagtailembeds_tags import register, embed, embedly +from wagtail.wagtailembeds.templatetags.wagtailembeds_tags import register, embed diff --git a/wagtail/wagtailembeds/templatetags/wagtailembeds_tags.py b/wagtail/wagtailembeds/templatetags/wagtailembeds_tags.py index 1ad63cddf..f021d5761 100644 --- a/wagtail/wagtailembeds/templatetags/wagtailembeds_tags.py +++ b/wagtail/wagtailembeds/templatetags/wagtailembeds_tags.py @@ -19,12 +19,3 @@ def embed(url, max_width=None): return '' except: return '' - - -@register.filter -def embedly(url, max_width=None): - warnings.warn( - "The 'embedly' filter has been renamed. " - "Use 'embed' instead.", DeprecationWarning) - - return embed(url, max_width) diff --git a/wagtail/wagtailembeds/tests.py b/wagtail/wagtailembeds/tests.py index e7d040aa6..6ddcfe7c4 100644 --- a/wagtail/wagtailembeds/tests.py +++ b/wagtail/wagtailembeds/tests.py @@ -20,7 +20,6 @@ from wagtail.wagtailembeds.embeds import ( ) from wagtail.wagtailembeds.embeds import embedly as wagtail_embedly, oembed as wagtail_oembed from wagtail.wagtailembeds.templatetags.embed_filters import embed as embed_filter -from wagtail.wagtailembeds.templatetags.embed_filters import embedly as embedly_filter class TestEmbeds(TestCase): @@ -299,42 +298,3 @@ class TestEmbedFilter(TestCase): context = template.Context() result = temp.render(context) self.assertEqual(result, '') - - -class TestEmbedlyFilter(TestEmbedFilter): - def setUp(self): - class DummyResponse(object): - def read(self): - return "foo" - self.dummy_response = DummyResponse() - - @patch('urllib2.urlopen') - @patch('json.loads') - def test_valid_embed(self, loads, urlopen): - urlopen.return_value = self.dummy_response - loads.return_value = {'type': 'photo', - 'url': 'http://www.example.com'} - result = embedly_filter('http://www.youtube.com/watch/') - self.assertEqual(result, '') - - @patch('urllib2.urlopen') - @patch('json.loads') - def test_render_filter(self, loads, urlopen): - urlopen.return_value = self.dummy_response - loads.return_value = {'type': 'photo', - 'url': 'http://www.example.com'} - temp = template.Template('{% load embed_filters %}{{ "http://www.youtube.com/watch/"|embedly }}') - context = template.Context() - result = temp.render(context) - self.assertEqual(result, '') - - @patch('urllib2.urlopen') - @patch('json.loads') - def test_render_filter_nonexistent_type(self, loads, urlopen): - urlopen.return_value = self.dummy_response - loads.return_value = {'type': 'foo', - 'url': 'http://www.example.com'} - temp = template.Template('{% load embed_filters %}{{ "http://www.youtube.com/watch/"|embedly }}') - context = template.Context() - result = temp.render(context) - self.assertEqual(result, '') From 725c5edff697784c22a9873d8af53780f1ad0ca2 Mon Sep 17 00:00:00 2001 From: Dave Cranwell Date: Mon, 7 Jul 2014 15:11:52 +0100 Subject: [PATCH 02/63] Changed explorer menu to be loaded only on request, to prevent bloating of html --- .../static/wagtailadmin/js/core.js | 49 +++++++++---------- .../static/wagtailadmin/scss/core.scss | 10 +++- .../templates/wagtailadmin/admin_base.html | 3 ++ .../templates/wagtailadmin/base.html | 6 +-- .../wagtailadmin/shared/explorer_nav.html | 14 ++---- .../shared/explorer_nav_child.html | 13 +++++ .../templatetags/wagtailadmin_tags.py | 6 +-- wagtail/wagtailadmin/urls.py | 2 + wagtail/wagtailadmin/views/pages.py | 8 ++- 9 files changed, 65 insertions(+), 46 deletions(-) create mode 100644 wagtail/wagtailadmin/templates/wagtailadmin/shared/explorer_nav_child.html diff --git a/wagtail/wagtailadmin/static/wagtailadmin/js/core.js b/wagtail/wagtailadmin/static/wagtailadmin/js/core.js index 85c4ca31e..3929356ad 100644 --- a/wagtail/wagtailadmin/static/wagtailadmin/js/core.js +++ b/wagtail/wagtailadmin/static/wagtailadmin/js/core.js @@ -12,7 +12,7 @@ $(function(){ $('body').addClass('ready'); // Enable toggle to open/close nav - $('#nav-toggle').click(function(){ + $(document).on('click', '#nav-toggle', function(){ $('body').toggleClass('nav-open'); if(!$('body').hasClass('nav-open')){ $('body').addClass('nav-closed'); @@ -21,12 +21,30 @@ $(function(){ } }); - // Enable swishy section navigation menu - $('.explorer').addClass('dl-menuwrapper').dlmenu({ - animationClasses : { - classin : 'dl-animate-in-2', - classout : 'dl-animate-out-2' + // Dynamically load menu on request. + $(document).on('click', '.dl-trigger', function(){ + var $this = $(this); + var $explorer = $('#explorer'); + + $this.addClass('icon-spinner'); + + if(!$explorer.children().length){ + $explorer.load(window.explorer_menu_url, function() { + $this.removeClass('icon-spinner'); + + $explorer.addClass('dl-menuwrapper').dlmenu({ + animationClasses : { + classin : 'dl-animate-in-2', + classout : 'dl-animate-out-2' + } + }); + $explorer.dlmenu('openMenu'); + }); + }else{ + $explorer.dlmenu('openMenu'); } + + return false; }); // Resize nav to fit height of window. This is an unimportant bell/whistle to make it look nice @@ -35,9 +53,6 @@ $(function(){ $('.nav-main').each(function(){ var thisHeight = $(this).height(); var footerHeight = $('.footer', $(this)).height(); - - // $(this).css({'height':thisHeight - footerHeight, 'overflow-y':'scroll'}); - // $('> ul', $(this)).height(thisHeight) }); }; fitNav(); @@ -86,22 +101,6 @@ $(function(){ } }); - /* Bulk-selection */ - $(document).on('click', 'thead .bulk', function(){ - $(this).closest('table').find('tbody .bulk input').each(function(){ - $(this).prop('checked', !$(this).prop('checked')); - }); - }); - - $('#menu-search input').bind('focus', function(){ - $('#menu-search').addClass('focussed'); - }).bind('blur', function(){ - $('#menu-search').removeClass('focussed'); - }); - $('#menu-search').bind('focus click', function(){ - $(this).addClass('focussed'); - }); - /* Header search behaviour */ if(window.headerSearch){ var search_current_index = 0; diff --git a/wagtail/wagtailadmin/static/wagtailadmin/scss/core.scss b/wagtail/wagtailadmin/static/wagtailadmin/scss/core.scss index 55e27b067..44349f116 100644 --- a/wagtail/wagtailadmin/static/wagtailadmin/scss/core.scss +++ b/wagtail/wagtailadmin/static/wagtailadmin/scss/core.scss @@ -163,7 +163,6 @@ img{ } .nav-main{ - top: 43px; bottom: 0px; overflow: auto; @@ -226,6 +225,15 @@ img{ &:hover{ color:white; } + + /* only really used for spinners */ + &:after{ + font-size:1.5em; + margin:0; + position:absolute; + right:0.5em; + margin-top:0.15em; + } } .avatar{ diff --git a/wagtail/wagtailadmin/templates/wagtailadmin/admin_base.html b/wagtail/wagtailadmin/templates/wagtailadmin/admin_base.html index 0cae459a2..1c26a8d14 100644 --- a/wagtail/wagtailadmin/templates/wagtailadmin/admin_base.html +++ b/wagtail/wagtailadmin/templates/wagtailadmin/admin_base.html @@ -22,6 +22,9 @@ + {% endcompress %} {% block extra_js %}{% endblock %} diff --git a/wagtail/wagtailadmin/templates/wagtailadmin/base.html b/wagtail/wagtailadmin/templates/wagtailadmin/base.html index ef6f9d57a..c7a89def7 100644 --- a/wagtail/wagtailadmin/templates/wagtailadmin/base.html +++ b/wagtail/wagtailadmin/templates/wagtailadmin/base.html @@ -8,11 +8,7 @@ {% main_nav %} - +
diff --git a/wagtail/wagtailadmin/templates/wagtailadmin/shared/explorer_nav.html b/wagtail/wagtailadmin/templates/wagtailadmin/shared/explorer_nav.html index 4d2cce712..5c46f217c 100644 --- a/wagtail/wagtailadmin/templates/wagtailadmin/shared/explorer_nav.html +++ b/wagtail/wagtailadmin/templates/wagtailadmin/shared/explorer_nav.html @@ -1,13 +1,5 @@ {% load wagtailadmin_tags %} -{% for page, children in nodes %} -
  • - {{ page.title }} - {% if children %} -
    -
      - {% explorer_subnav children %} -
    - {% endif %} -
  • -{% endfor %} +
      + {% include "wagtailadmin/shared/explorer_nav_child.html" %} +
    \ No newline at end of file diff --git a/wagtail/wagtailadmin/templates/wagtailadmin/shared/explorer_nav_child.html b/wagtail/wagtailadmin/templates/wagtailadmin/shared/explorer_nav_child.html new file mode 100644 index 000000000..c2d011540 --- /dev/null +++ b/wagtail/wagtailadmin/templates/wagtailadmin/shared/explorer_nav_child.html @@ -0,0 +1,13 @@ +{% load wagtailadmin_tags %} + +{% for page, children in nodes %} +
  • + {{ page.title }} + {% if children %} +
    +
      + {% explorer_subnav children %} +
    + {% endif %} +
  • +{% endfor %} \ No newline at end of file diff --git a/wagtail/wagtailadmin/templatetags/wagtailadmin_tags.py b/wagtail/wagtailadmin/templatetags/wagtailadmin_tags.py index f3c871507..9aa4783ff 100644 --- a/wagtail/wagtailadmin/templatetags/wagtailadmin_tags.py +++ b/wagtail/wagtailadmin/templatetags/wagtailadmin_tags.py @@ -7,7 +7,7 @@ from django.utils.translation import ugettext_lazy as _ from wagtail.wagtailadmin.menu import MenuItem from wagtail.wagtailcore import hooks -from wagtail.wagtailcore.models import get_navigation_menu_items, UserPagePermissionsProxy +from wagtail.wagtailcore.models import UserPagePermissionsProxy from wagtail.wagtailcore.utils import camelcase_to_underscore @@ -21,7 +21,7 @@ def explorer_nav(): } -@register.inclusion_tag('wagtailadmin/shared/explorer_nav.html') +@register.inclusion_tag('wagtailadmin/shared/explorer_nav_child.html') def explorer_subnav(nodes): return { 'nodes': nodes @@ -31,7 +31,7 @@ def explorer_subnav(nodes): @register.inclusion_tag('wagtailadmin/shared/main_nav.html', takes_context=True) def main_nav(context): menu_items = [ - MenuItem(_('Explorer'), '#', classnames='icon icon-folder-open-inverse dl-trigger', order=100), + MenuItem(_('Explorer'), urlresolvers.reverse('wagtailadmin_explore_root'), classnames='icon icon-folder-open-inverse dl-trigger', order=100), MenuItem(_('Search'), urlresolvers.reverse('wagtailadmin_pages_search'), classnames='icon icon-search', order=200), ] diff --git a/wagtail/wagtailadmin/urls.py b/wagtail/wagtailadmin/urls.py index 89be5cf17..6d124efc3 100644 --- a/wagtail/wagtailadmin/urls.py +++ b/wagtail/wagtailadmin/urls.py @@ -38,6 +38,8 @@ urlpatterns += [ url(r'^failwhale/$', home.error_test, name='wagtailadmin_error_test'), + url(r'^explorer-nav/$', pages.explorer_nav, name='wagtailadmin_explorer_nav'), + url(r'^pages/$', pages.index, name='wagtailadmin_explore_root'), url(r'^pages/(\d+)/$', pages.index, name='wagtailadmin_explore'), diff --git a/wagtail/wagtailadmin/views/pages.py b/wagtail/wagtailadmin/views/pages.py index 013ce40c0..900da5ab9 100644 --- a/wagtail/wagtailadmin/views/pages.py +++ b/wagtail/wagtailadmin/views/pages.py @@ -17,9 +17,15 @@ from wagtail.wagtailadmin.forms import SearchForm from wagtail.wagtailadmin import tasks, signals from wagtail.wagtailcore import hooks -from wagtail.wagtailcore.models import Page, PageRevision +from wagtail.wagtailcore.models import Page, PageRevision, get_navigation_menu_items from wagtail.wagtailcore.signals import page_published +@permission_required('wagtailadmin.access_admin') +def explorer_nav(request): + return render(request, 'wagtailadmin/shared/explorer_nav.html', { + 'nodes': get_navigation_menu_items(), + }) + @permission_required('wagtailadmin.access_admin') def index(request, parent_page_id=None): From 5cd83f0216e96ffc026a2789d54eeaf3ee7e18ef Mon Sep 17 00:00:00 2001 From: Dave Cranwell Date: Mon, 7 Jul 2014 15:14:33 +0100 Subject: [PATCH 03/63] put back missing import --- wagtail/wagtailadmin/templatetags/wagtailadmin_tags.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wagtail/wagtailadmin/templatetags/wagtailadmin_tags.py b/wagtail/wagtailadmin/templatetags/wagtailadmin_tags.py index 9aa4783ff..92f2d141a 100644 --- a/wagtail/wagtailadmin/templatetags/wagtailadmin_tags.py +++ b/wagtail/wagtailadmin/templatetags/wagtailadmin_tags.py @@ -7,7 +7,7 @@ from django.utils.translation import ugettext_lazy as _ from wagtail.wagtailadmin.menu import MenuItem from wagtail.wagtailcore import hooks -from wagtail.wagtailcore.models import UserPagePermissionsProxy +from wagtail.wagtailcore.models import get_navigation_menu_items, UserPagePermissionsProxy from wagtail.wagtailcore.utils import camelcase_to_underscore From bdc13c9ca821fee5e9ea8952c1da286f257ad4b6 Mon Sep 17 00:00:00 2001 From: Dave Cranwell Date: Mon, 7 Jul 2014 15:21:26 +0100 Subject: [PATCH 04/63] pep8 fix --- wagtail/wagtailadmin/views/pages.py | 1 + 1 file changed, 1 insertion(+) diff --git a/wagtail/wagtailadmin/views/pages.py b/wagtail/wagtailadmin/views/pages.py index 900da5ab9..cfcedc757 100644 --- a/wagtail/wagtailadmin/views/pages.py +++ b/wagtail/wagtailadmin/views/pages.py @@ -20,6 +20,7 @@ from wagtail.wagtailcore import hooks from wagtail.wagtailcore.models import Page, PageRevision, get_navigation_menu_items from wagtail.wagtailcore.signals import page_published + @permission_required('wagtailadmin.access_admin') def explorer_nav(request): return render(request, 'wagtailadmin/shared/explorer_nav.html', { From 59966b5385e917ef931e9e4615ec57d9062cf5da Mon Sep 17 00:00:00 2001 From: Tim Heap Date: Wed, 9 Jul 2014 15:06:13 +1000 Subject: [PATCH 05/63] Support registering admin hooks through decorators --- wagtail/tests/wagtail_hooks.py | 5 ++++- wagtail/wagtailcore/hooks.py | 23 ++++++++++++++++++----- 2 files changed, 22 insertions(+), 6 deletions(-) diff --git a/wagtail/tests/wagtail_hooks.py b/wagtail/tests/wagtail_hooks.py index 8c398ed2c..bb879ebe5 100644 --- a/wagtail/tests/wagtail_hooks.py +++ b/wagtail/tests/wagtail_hooks.py @@ -3,14 +3,17 @@ from django.http import HttpResponse from wagtail.wagtailcore import hooks from wagtail.wagtailcore.whitelist import attribute_rule, check_url, allow_without_attributes + +# Register one hook using decorators... +@hooks.register('insert_editor_css') def editor_css(): return """""" -hooks.register('insert_editor_css', editor_css) def editor_js(): return """""" hooks.register('insert_editor_js', editor_js) +# And the other using old-style function calls def whitelister_element_rules(): diff --git a/wagtail/wagtailcore/hooks.py b/wagtail/wagtailcore/hooks.py index d299c3346..b6d13bf11 100644 --- a/wagtail/wagtailcore/hooks.py +++ b/wagtail/wagtailcore/hooks.py @@ -7,13 +7,26 @@ except ImportError: _hooks = {} -# TODO: support 'register' as a decorator: -# @hooks.register('construct_main_menu') -# def construct_main_menu(menu_items): -# ... +def register(hook_name, fn=None): + """ + Register hook for ``hook_name``. Can be used as a decorator:: + + @register('hook_name') + def my_hook(...): + pass + + or as a function call:: + + def my_hook(...): + pass + register('hook_name', my_hook) + """ + + # Pretend to be a decorator if fn is not supplied + if fn is None: + return lambda fn: register(hook_name, fn) -def register(hook_name, fn): if hook_name not in _hooks: _hooks[hook_name] = [] _hooks[hook_name].append(fn) From ac6292d614633c55f9c6e4a64c2a106dae479b15 Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Fri, 11 Jul 2014 16:40:36 +0100 Subject: [PATCH 06/63] Replaced lxml with html5lib --- setup.py | 2 +- wagtail/wagtailcore/whitelist.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 129a48468..b37d4f256 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ install_requires = [ "django-treebeard==2.0", "Pillow>=2.3.0", "beautifulsoup4>=4.3.2", - "lxml>=3.3.0", + "html5lib==0.999", "Unidecode>=0.04.14", "six==1.7.3", 'requests==2.3.0', diff --git a/wagtail/wagtailcore/whitelist.py b/wagtail/wagtailcore/whitelist.py index 4aaff780d..dba8982fd 100644 --- a/wagtail/wagtailcore/whitelist.py +++ b/wagtail/wagtailcore/whitelist.py @@ -81,7 +81,7 @@ class Whitelister(object): def clean(cls, html): """Clean up an HTML string to contain just the allowed elements / attributes""" - doc = BeautifulSoup(html, 'lxml') + doc = BeautifulSoup(html, 'html5lib') cls.clean_node(doc, doc) return doc.decode() From 8ab347632aec3a9708b12a7f86b6b1b05eddae52 Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Fri, 11 Jul 2014 16:44:45 +0100 Subject: [PATCH 07/63] Fixed test which broke under html5lib The test used HTML which wasn't valid HTML5. html5lib corrects these errors whereas lxml didn't so the result of the test is different. --- wagtail/wagtailcore/tests/test_dbwhitelister.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wagtail/wagtailcore/tests/test_dbwhitelister.py b/wagtail/wagtailcore/tests/test_dbwhitelister.py index 795b9637c..d3dee8c34 100644 --- a/wagtail/wagtailcore/tests/test_dbwhitelister.py +++ b/wagtail/wagtailcore/tests/test_dbwhitelister.py @@ -27,7 +27,7 @@ class TestDbWhitelister(TestCase): def test_image_embed_is_rewritten(self): input_html = '

    OMG look at this picture of a kitten:

    A cute kitten
    A kitten, yesterday.

    ' output_html = DbWhitelister.clean(input_html) - expected = '

    OMG look at this picture of a kitten:

    ' + expected = '

    OMG look at this picture of a kitten:

    ' self.assertHtmlEqual(expected, output_html) def test_media_embed_is_rewritten(self): From 6b3693f35522352f8c095f64e3ea9558aacad593 Mon Sep 17 00:00:00 2001 From: Tom Dyson Date: Thu, 10 Jul 2014 16:44:08 +0100 Subject: [PATCH 08/63] Typos in 0.4 release notes --- docs/releases/0.4.rst | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/docs/releases/0.4.rst b/docs/releases/0.4.rst index a2f78e20c..afd8ccff5 100644 --- a/docs/releases/0.4.rst +++ b/docs/releases/0.4.rst @@ -3,14 +3,14 @@ Wagtail 0.4 release notes ========================= -Whats new -========= +What's new +========== Private Pages ~~~~~~~~~~~~~ -Wagtail now supports password protecting pages on the frontend allowing sections of your website to be made private. +Wagtail now supports password protecting pages on the frontend, allowing sections of your website to be made private. :ref:`private_pages` @@ -26,13 +26,13 @@ Scheduled publishing Editors can now schedule pages to be published or unpublished at specified times. -A new management command has been added (:ref:`publish_scheduled_pages`) to publish pages that have been scheduled by an Editor. +A new management command has been added (:ref:`publish_scheduled_pages`) to publish pages that have been scheduled by an editor. Search on QuerySet with Elasticsearch ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -Its now possible to perform searches with Elasticsearch on ``PageQuerySet`` objects: +It's now possible to perform searches with Elasticsearch on ``PageQuerySet`` objects: >>> from wagtail.wagtailcore.models import Page >>> Page.objects.live().descendant_of(events_index).search("Hello") @@ -58,7 +58,7 @@ A new module has been added (``wagtail.contrib.wagtailfrontendcache``) which inv Notification preferences ~~~~~~~~~~~~~~~~~~~~~~~~ -Users can now decide which notifications they recieve from Wagtail using a new "Notification preferences" section located in the account settings. +Users can now decide which notifications they receive from Wagtail using a new "Notification preferences" section located in the account settings. Minor features @@ -114,22 +114,22 @@ Images Other ----- - * Added styleguide (mainly for wagtail developers) + * Added styleguide, for Wagtail developers Bug fixes ~~~~~~~~~ * Animated GIFs are now coalesced before resizing - * Wand backend clones images before modifying them - * Admin breadcrumb now positioned correctly on mobile - * Page chooser breadcrumb now updates the chooser modal instead of linking to Explorer - * Embeds - Fixed crash when no HTML field is sent back from the embed provider + * The Wand backend clones images before modifying them + * The admin breadcrumb is now positioned correctly on mobile + * The page chooser breadcrumb now updates the chooser modal instead of linking to Explorer + * Embeds - fixed crash when no HTML field is sent back from the embed provider * Multiple sites with same hostname but different ports are now allowed - * No longer possible to create multiple sites with ``is_default_site = True`` + * It is no longer possible to create multiple sites with ``is_default_site = True`` -Backwards incompatible changes +Backwards-incompatible changes ============================== From 812daf0662557b7a4da18a7a4bc4a7492c1c72e1 Mon Sep 17 00:00:00 2001 From: Dave Cranwell Date: Thu, 10 Jul 2014 17:11:03 +0100 Subject: [PATCH 09/63] Added contents --- docs/releases/0.4.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/releases/0.4.rst b/docs/releases/0.4.rst index afd8ccff5..64259a191 100644 --- a/docs/releases/0.4.rst +++ b/docs/releases/0.4.rst @@ -2,6 +2,9 @@ Wagtail 0.4 release notes ========================= +.. contents:: Contents + :local: + What's new ========== From 6f1a78bedf182344941d133038a87ed499ecb78d Mon Sep 17 00:00:00 2001 From: Tom Dyson Date: Thu, 10 Jul 2014 17:20:48 +0100 Subject: [PATCH 10/63] python -> Python --- docs/search/for_python_developers.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/search/for_python_developers.rst b/docs/search/for_python_developers.rst index 7ff9a18dc..1cadbc8da 100644 --- a/docs/search/for_python_developers.rst +++ b/docs/search/for_python_developers.rst @@ -3,7 +3,7 @@ ===================== -For python developers +For Python developers ===================== From be0080a8aff099818b5374f5b397c6fd2662e3ab Mon Sep 17 00:00:00 2001 From: Dave Cranwell Date: Thu, 10 Jul 2014 17:22:07 +0100 Subject: [PATCH 11/63] Update private_pages.rst --- docs/private_pages.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/private_pages.rst b/docs/private_pages.rst index bfd20ee09..99b364176 100644 --- a/docs/private_pages.rst +++ b/docs/private_pages.rst @@ -21,7 +21,7 @@ This template will receive the same set of context variables that the blocked pa - **form** - A Django form object for the password prompt; this will contain a field named ``password`` as its only visible field. A number of hidden fields may also be present, so the page must loop over ``form.hidden_fields`` if not using one of Django's rendering helpers such as ``form.as_p``. - **action_url** - The URL that the password form should be submitted to, as a POST request. -A basic template suitable for use as PASSWORD_REQUIRED_TEMPLATE might look like this: +A basic template suitable for use as ``PASSWORD_REQUIRED_TEMPLATE`` might look like this: .. code-block:: django From 51c6f251e2422cf66b26a88eea8ed1db39e20050 Mon Sep 17 00:00:00 2001 From: Matt Westcott Date: Mon, 14 Jul 2014 11:30:54 +0100 Subject: [PATCH 12/63] Made contents a bit smaller --- docs/releases/0.4.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/releases/0.4.rst b/docs/releases/0.4.rst index 64259a191..0929935f6 100644 --- a/docs/releases/0.4.rst +++ b/docs/releases/0.4.rst @@ -2,8 +2,9 @@ Wagtail 0.4 release notes ========================= -.. contents:: Contents +.. contents:: :local: + :depth: 1 What's new From 494a26b731ed4a8e573bfc1a0410c46349a9ef1f Mon Sep 17 00:00:00 2001 From: Tom Dyson Date: Thu, 10 Jul 2014 17:28:07 +0100 Subject: [PATCH 13/63] consistent editors / editor's / Editor's --- docs/search/editors_picks.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/search/editors_picks.rst b/docs/search/editors_picks.rst index 9ed41f3c5..59ae647de 100644 --- a/docs/search/editors_picks.rst +++ b/docs/search/editors_picks.rst @@ -2,10 +2,10 @@ .. _editors-picks: -Editors picks -============= +Editor's picks +============== -Editor's Picks are a way of explicitly linking relevant content to search terms, so results pages can contain curated content instead of being at the mercy of the search algorithm. In a template using the search results view, editor's picks can be accessed through the variable ``query.editors_picks``. To include editor's picks in your search results template, use the following properties. +Editor's picks are a way of explicitly linking relevant content to search terms, so results pages can contain curated content in addition to results from the search algorithm. In a template using the search results view, editor's picks can be accessed through the variable ``query.editors_picks``. To include editor's picks in your search results template, use the following properties. ``query.editors_picks.all`` This gathers all of the editor's picks objects relating to the current query, in order according to their sort order in the Wagtail admin. You can then iterate through them using a ``{% for ... %}`` loop. Each editor's pick object provides these properties: @@ -16,7 +16,7 @@ Editor's Picks are a way of explicitly linking relevant content to search terms, ``editors_pick.description`` The description entered when choosing the pick, perhaps explaining why the page is relevant to the search terms. -Putting this all together, a block of your search results template displaying editor's Picks might look like this: +Putting this all together, a block of your search results template displaying editor's picks might look like this: .. code-block:: django @@ -38,4 +38,4 @@ Putting this all together, a block of your search results template displaying ed
    {% endif %} - {% endwith %} \ No newline at end of file + {% endwith %} From 930833324de095eb7e3bc4e9df5f75da60ee3cd2 Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Mon, 14 Jul 2014 10:50:30 +0100 Subject: [PATCH 14/63] Fixed backwards compatibility with Elasticsearch URLs setting --- .../wagtailsearch/backends/elasticsearch.py | 23 +++++++-- .../tests/test_elasticsearch_backend.py | 51 +++++++++++++++++++ 2 files changed, 70 insertions(+), 4 deletions(-) diff --git a/wagtail/wagtailsearch/backends/elasticsearch.py b/wagtail/wagtailsearch/backends/elasticsearch.py index 55f1971a2..8f8a78dbb 100644 --- a/wagtail/wagtailsearch/backends/elasticsearch.py +++ b/wagtail/wagtailsearch/backends/elasticsearch.py @@ -2,6 +2,8 @@ from __future__ import absolute_import import json +from six.moves.urllib.parse import urlparse + from django.db import models from django.db.models.sql.where import SubqueryConstraint @@ -446,17 +448,30 @@ class ElasticSearch(BaseSearch): super(ElasticSearch, self).__init__(params) # Get settings + self.es_hosts = params.pop('HOSTS', None) self.es_urls = params.pop('URLS', ['http://localhost:9200']) self.es_index = params.pop('INDEX', 'wagtail') - self.es_timeout = params.pop('TIMEOUT', 5) - self.es_force_new = params.pop('FORCE_NEW', False) + self.es_timeout = params.pop('TIMEOUT', 10) + + # If HOSTS is not set, convert URLS setting to HOSTS + if self.es_hosts is None: + self.es_hosts = [] + + for url in self.es_urls: + parsed_url = urlparse(url) + + self.es_hosts.append({ + 'host': parsed_url.hostname, + 'port': parsed_url.port or 9200, + 'url_prefix': parsed_url.path, + 'use_ssl': parsed_url.scheme == 'https', + }) # Get ElasticSearch interface # Any remaining params are passed into the ElasticSearch constructor self.es = Elasticsearch( - urls=self.es_urls, + hosts=self.es_hosts, timeout=self.es_timeout, - force_new=self.es_force_new, **params) def reset_index(self): diff --git a/wagtail/wagtailsearch/tests/test_elasticsearch_backend.py b/wagtail/wagtailsearch/tests/test_elasticsearch_backend.py index a95d442ff..3ddce5618 100644 --- a/wagtail/wagtailsearch/tests/test_elasticsearch_backend.py +++ b/wagtail/wagtailsearch/tests/test_elasticsearch_backend.py @@ -397,3 +397,54 @@ class TestElasticSearchMappingInheritance(TestCase): } self.assertDictEqual(document, expected_result) + + +class TestBackendConfiguration(TestCase): + def setUp(self): + # Import using a try-catch block to prevent crashes if the elasticsearch-py + # module is not installed + try: + from wagtail.wagtailsearch.backends.elasticsearch import ElasticSearch + except ImportError: + raise unittest.SkipTest("elasticsearch-py not installed") + + self.ElasticSearch = ElasticSearch + + def test_default_settings(self): + backend = self.ElasticSearch(params={}) + + self.assertEqual(len(backend.es_hosts), 1) + self.assertEqual(backend.es_hosts[0]['host'], 'localhost') + self.assertEqual(backend.es_hosts[0]['port'], 9200) + self.assertEqual(backend.es_hosts[0]['use_ssl'], False) + + def test_hosts(self): + # This tests that HOSTS goes to es_hosts + backend = self.ElasticSearch(params={ + 'HOSTS': [ + { + 'host': '127.0.0.1', + 'port': 9300, + 'use_ssl': True, + } + ] + }) + + self.assertEqual(len(backend.es_hosts), 1) + self.assertEqual(backend.es_hosts[0]['host'], '127.0.0.1') + self.assertEqual(backend.es_hosts[0]['port'], 9300) + self.assertEqual(backend.es_hosts[0]['use_ssl'], True) + + def test_urls(self): + # This test backwards compatibility with old URLS setting + backend = self.ElasticSearch(params={ + 'URLS': ['http://localhost:12345', 'https://127.0.0.1:54321'], + }) + + self.assertEqual(len(backend.es_hosts), 2) + self.assertEqual(backend.es_hosts[0]['host'], 'localhost') + self.assertEqual(backend.es_hosts[0]['port'], 12345) + self.assertEqual(backend.es_hosts[0]['use_ssl'], False) + self.assertEqual(backend.es_hosts[1]['host'], '127.0.0.1') + self.assertEqual(backend.es_hosts[1]['port'], 54321) + self.assertEqual(backend.es_hosts[1]['use_ssl'], True) From cc446f0e9735d0f051e5608e22203f498a2412c2 Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Mon, 14 Jul 2014 10:58:50 +0100 Subject: [PATCH 15/63] FORCE_NEW is not used in Elasticsearch-py --- docs/search/backends.rst | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/search/backends.rst b/docs/search/backends.rst index f03f06358..471da751a 100644 --- a/docs/search/backends.rst +++ b/docs/search/backends.rst @@ -41,11 +41,10 @@ The backend is configured in settings: 'URLS': ['http://localhost:9200'], 'INDEX': 'wagtail', 'TIMEOUT': 5, - 'FORCE_NEW': False, } } -Other than ``BACKEND`` the keys are optional and default to the values shown. ``FORCE_NEW`` is used by elasticsearch-py. In addition, any other keys are passed directly to the Elasticsearch constructor as case-sensitive keyword arguments (e.g. ``'max_retries': 1``). +Other than ``BACKEND`` the keys are optional and default to the values shown. In addition, any other keys are passed directly to the Elasticsearch constructor as case-sensitive keyword arguments (e.g. ``'max_retries': 1``). If you prefer not to run an Elasticsearch server in development or production, there are many hosted services available, including `Searchly`_, who offer a free account suitable for testing and development. To use Searchly: From bbbc83c56e9e627160af46061ce0183c23a7e072 Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Mon, 14 Jul 2014 12:46:47 +0100 Subject: [PATCH 16/63] Allow RouteResult to return a view --- wagtail/wagtailcore/url_routing.py | 5 +++-- wagtail/wagtailcore/views.py | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/wagtail/wagtailcore/url_routing.py b/wagtail/wagtailcore/url_routing.py index 0d7a5e1c4..60566120b 100644 --- a/wagtail/wagtailcore/url_routing.py +++ b/wagtail/wagtailcore/url_routing.py @@ -6,10 +6,11 @@ class RouteResult(object): a Page instance that we will call serve(*args, **kwargs) on, rather than a view function. """ - def __init__(self, page, args=None, kwargs=None): + def __init__(self, page, view=None, args=None, kwargs=None): self.page = page self.args = args or [] self.kwargs = kwargs or {} + self.view = view or page.serve def __getitem__(self, index): - return (self.page, self.args, self.kwargs)[index] + return (self.page, self.view, self.args, self.kwargs)[index] diff --git a/wagtail/wagtailcore/views.py b/wagtail/wagtailcore/views.py index b955efa54..28a38249b 100644 --- a/wagtail/wagtailcore/views.py +++ b/wagtail/wagtailcore/views.py @@ -25,13 +25,13 @@ def serve(request, path): ) return route_result - (page, args, kwargs) = route_result + (page, view, args, kwargs) = route_result for fn in hooks.get_hooks('before_serve_page'): result = fn(page, request, args, kwargs) if isinstance(result, HttpResponse): return result - return page.serve(request, *args, **kwargs) + return view(request, *args, **kwargs) def authenticate_with_password(request, page_view_restriction_id, page_id): From 0d5f0172eb93428022430dcf51fca2062b451955 Mon Sep 17 00:00:00 2001 From: Matt Westcott Date: Mon, 14 Jul 2014 13:12:04 +0100 Subject: [PATCH 17/63] add release notes / changelog entry for 0.4.1 --- CHANGELOG.txt | 5 +++++ docs/releases/0.4.1.rst | 9 +++++++++ docs/releases/index.rst | 3 ++- 3 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 docs/releases/0.4.1.rst diff --git a/CHANGELOG.txt b/CHANGELOG.txt index a0abb58db..c6db3355e 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,6 +1,11 @@ Changelog ========= +0.4.1 (14.07.2014) +~~~~~~~~~~~~~~~~~~ + * ElasticSearch backend now respects the backward-compatible URLS configuration setting, in addition to HOSTS + * Documentation fixes + 0.4 (10.07.2014) ~~~~~~~~~~~~~~~~ * ElasticUtils/pyelasticsearch swapped for elasticsearch-py diff --git a/docs/releases/0.4.1.rst b/docs/releases/0.4.1.rst new file mode 100644 index 000000000..802a555af --- /dev/null +++ b/docs/releases/0.4.1.rst @@ -0,0 +1,9 @@ +=========================== +Wagtail 0.4.1 release notes +=========================== + +Bug fixes +~~~~~~~~~ + + * ElasticSearch backend now respects the backward-compatible URLS configuration setting, in addition to HOSTS + * Documentation fixes diff --git a/docs/releases/index.rst b/docs/releases/index.rst index 07bc8e888..35d3947ae 100644 --- a/docs/releases/index.rst +++ b/docs/releases/index.rst @@ -4,4 +4,5 @@ Release notes .. toctree:: :maxdepth: 1 - 0.4 \ No newline at end of file + 0.4 + 0.4.1 From 023579dc6b17c073c8b5d8eecc96a10ee92f7246 Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Tue, 20 May 2014 14:33:14 +0100 Subject: [PATCH 18/63] Added RoutablePage --- .../contrib/wagtailroutablepage/__init__.py | 0 wagtail/contrib/wagtailroutablepage/models.py | 66 +++++++++++++++ wagtail/contrib/wagtailroutablepage/tests.py | 82 +++++++++++++++++++ wagtail/tests/models.py | 25 ++++++ wagtail/tests/settings.py | 1 + 5 files changed, 174 insertions(+) create mode 100644 wagtail/contrib/wagtailroutablepage/__init__.py create mode 100644 wagtail/contrib/wagtailroutablepage/models.py create mode 100644 wagtail/contrib/wagtailroutablepage/tests.py diff --git a/wagtail/contrib/wagtailroutablepage/__init__.py b/wagtail/contrib/wagtailroutablepage/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/wagtail/contrib/wagtailroutablepage/models.py b/wagtail/contrib/wagtailroutablepage/models.py new file mode 100644 index 000000000..c5449b0fd --- /dev/null +++ b/wagtail/contrib/wagtailroutablepage/models.py @@ -0,0 +1,66 @@ +from six import string_types + +from django.http import Http404 +from django.core.urlresolvers import get_resolver +from django.core.exceptions import ImproperlyConfigured + +from wagtail.wagtailcore.models import Page +from wagtail.wagtailcore.url_routing import RouteResult + + +class RoutablePage(Page): + """ + This class extends Page by adding methods to allow urlconfs to be embedded inside pages + """ + subpage_urls = None + + def reverse_subpage(self, name, args=None, kwargs=None): + """ + This method does the same job as Djangos' built in "urlresolvers.reverse()" function for subpage urlconfs. + """ + args = args or [] + kwargs = kwargs or {} + + if self.subpage_urls is None: + raise ImproperlyConfigured("You must set 'subpage_urls' on " + type(self).__name__) + + resolver = get_resolver(self.subpage_urls) + return resolver.reverse(name, *args, **kwargs) + + def resolve_subpage(self, path): + """ + This finds a view method/function from a URL path. + """ + if self.subpage_urls is None: + raise ImproperlyConfigured("You must set 'subpage_urls' on " + type(self).__name__) + + resolver = get_resolver(self.subpage_urls) + view, args, kwargs = resolver.resolve(path) + + # If view is a string, find it as an attribute of self + if isinstance(view, string_types): + view = getattr(self, view) + + return view, args, kwargs + + def route(self, request, path_components): + """ + This hooks the subpage urls into Wagtails routing. + """ + if self.live: + try: + path = '/' + if path_components: + path += '/'.join(path_components) + '/' + + view, args, kwargs = self.resolve_subpage(path) + return RouteResult(self, view=view, args=args, kwargs=kwargs) + except Http404: + pass + + return super(RoutablePage, self).route(request, path_components) + + is_abstract = True + + class Meta: + abstract = True diff --git a/wagtail/contrib/wagtailroutablepage/tests.py b/wagtail/contrib/wagtailroutablepage/tests.py new file mode 100644 index 000000000..10eac4d70 --- /dev/null +++ b/wagtail/contrib/wagtailroutablepage/tests.py @@ -0,0 +1,82 @@ +from django.test import TestCase + +from wagtail.wagtailcore.models import Page +from wagtail.tests.models import RoutablePageTest, routable_page_external_view + + +class TestRoutablePage(TestCase): + def setUp(self): + self.home_page = Page.objects.get(id=2) + self.routable_page = self.home_page.add_child(instance=RoutablePageTest( + title="Routable Page", + slug='routable-page', + live=True, + )) + + def test_resolve_serve_view(self): + view, args, kwargs = self.routable_page.resolve_subpage('/') + + self.assertEqual(view, self.routable_page.serve) + self.assertEqual(args, ()) + self.assertEqual(kwargs, {}) + + def test_resolve_archive_by_year_view(self): + view, args, kwargs = self.routable_page.resolve_subpage('/archive/year/2014/') + + self.assertEqual(view, self.routable_page.archive_by_year) + self.assertEqual(args, ('2014', )) + self.assertEqual(kwargs, {}) + + def test_resolve_archive_by_author_view(self): + view, args, kwargs = self.routable_page.resolve_subpage('/archive/author/joe-bloggs/') + + self.assertEqual(view, self.routable_page.archive_by_author) + self.assertEqual(args, ()) + self.assertEqual(kwargs, {'author_slug': 'joe-bloggs'}) + + def test_resolve_external_view(self): + view, args, kwargs = self.routable_page.resolve_subpage('/external/joe-bloggs/') + + self.assertEqual(view, routable_page_external_view) + self.assertEqual(args, ('joe-bloggs', )) + self.assertEqual(kwargs, {}) + + def test_reverse_serve_view(self): + url = self.routable_page.reverse_subpage('main') + + self.assertEqual(url, '') + + def test_reverse_archive_by_year_view(self): + url = self.routable_page.reverse_subpage('archive_by_year', args=('2014', )) + + self.assertEqual(url, 'archive/year/2014/') + + def test_reverse_archive_by_author_view(self): + url = self.routable_page.reverse_subpage('archive_by_author', kwargs={'author_slug': 'joe-bloggs'}) + + self.assertEqual(url, 'archive/author/joe-bloggs/') + + def test_reverse_external_view(self): + url = self.routable_page.reverse_subpage('external_view', args=('joe-bloggs', )) + + self.assertEqual(url, 'external/joe-bloggs/') + + def test_get_serve_view(self): + response = self.client.get(self.routable_page.url) + + self.assertContains(response, "SERVE VIEW") + + def test_get_archive_by_year_view(self): + response = self.client.get(self.routable_page.url + 'archive/year/2014/') + + self.assertContains(response, "ARCHIVE BY YEAR: 2014") + + def test_get_archive_by_author_view(self): + response = self.client.get(self.routable_page.url + 'archive/author/joe-bloggs/') + + self.assertContains(response, "ARCHIVE BY AUTHOR: joe-bloggs") + + def test_get_external_view(self): + response = self.client.get(self.routable_page.url + 'external/joe-bloggs/') + + self.assertContains(response, "EXTERNAL VIEW: joe-bloggs") diff --git a/wagtail/tests/models.py b/wagtail/tests/models.py index 2f151c465..f3a68e1cb 100644 --- a/wagtail/tests/models.py +++ b/wagtail/tests/models.py @@ -1,6 +1,8 @@ from django.db import models from django.core.paginator import Paginator, EmptyPage, PageNotAnInteger from django.utils.encoding import python_2_unicode_compatible +from django.conf.urls import url +from django.http import HttpResponse from modelcluster.fields import ParentalKey @@ -12,6 +14,7 @@ from wagtail.wagtaildocs.edit_handlers import DocumentChooserPanel from wagtail.wagtailforms.models import AbstractEmailForm, AbstractFormField from wagtail.wagtailsnippets.models import register_snippet from wagtail.wagtailsearch import indexed +from wagtail.contrib.wagtailroutablepage.models import RoutablePage EVENT_AUDIENCE_CHOICES = ( @@ -383,9 +386,31 @@ class SearchTestOldConfig(models.Model, indexed.Indexed): }, } + class SearchTestOldConfigList(models.Model, indexed.Indexed): """ This tests that the Indexed class can correctly handle models that use the old "indexed_fields" configuration format using a list. """ indexed_fields = ['title', 'content'] + + +def routable_page_external_view(request, arg): + return HttpResponse("EXTERNAL VIEW: " + arg) + +class RoutablePageTest(RoutablePage): + subpage_urls = ( + url(r'^$', 'serve', name='main'), + url(r'^archive/year/(\d+)/$', 'archive_by_year', name='archive_by_year'), + url(r'^archive/author/(?P.+)/$', 'archive_by_author', name='archive_by_author'), + url(r'^external/(.+)/$', routable_page_external_view, name='external_view') + ) + + def archive_by_year(self, request, year): + return HttpResponse("ARCHIVE BY YEAR: " + str(year)) + + def archive_by_author(self, request, author_slug): + return HttpResponse("ARCHIVE BY AUTHOR: " + author_slug) + + def serve(self, request): + return HttpResponse("SERVE VIEW") diff --git a/wagtail/tests/settings.py b/wagtail/tests/settings.py index 103e19b99..8edcc4faf 100644 --- a/wagtail/tests/settings.py +++ b/wagtail/tests/settings.py @@ -72,6 +72,7 @@ INSTALLED_APPS = [ 'wagtail.wagtailforms', 'wagtail.contrib.wagtailstyleguide', 'wagtail.contrib.wagtailsitemaps', + 'wagtail.contrib.wagtailroutablepage', 'wagtail.tests', ] From 911ba9ec0684bc6f68ea80d9b7fe5db267e34fd7 Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Mon, 14 Jul 2014 14:08:09 +0100 Subject: [PATCH 19/63] Fixed broken test Caused by adding view into RouteResult --- wagtail/wagtailcore/tests/test_page_model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wagtail/wagtailcore/tests/test_page_model.py b/wagtail/wagtailcore/tests/test_page_model.py index af12fa705..1875a6841 100644 --- a/wagtail/wagtailcore/tests/test_page_model.py +++ b/wagtail/wagtailcore/tests/test_page_model.py @@ -138,7 +138,7 @@ class TestRouting(TestCase): request = HttpRequest() request.path = '/events/christmas/' - (found_page, args, kwargs) = homepage.route(request, ['events', 'christmas']) + (found_page, view, args, kwargs) = homepage.route(request, ['events', 'christmas']) self.assertEqual(found_page, christmas_page) def test_request_serving(self): From a855749f5e7122eeb10e69a41e4cebf632c74a06 Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Mon, 14 Jul 2014 15:09:22 +0100 Subject: [PATCH 20/63] Started RoutablePage docs --- docs/routable_page.rst | 75 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 docs/routable_page.rst diff --git a/docs/routable_page.rst b/docs/routable_page.rst new file mode 100644 index 000000000..e15fd5a83 --- /dev/null +++ b/docs/routable_page.rst @@ -0,0 +1,75 @@ +============ +RoutablePage +============ + +.. versionadded:: 0.5 + +This document describes how to use Wagtails ``RoutablePage`` class. This class is designed for embedding URL configuration into pages. + + +The basics +========== + +To use ``RoutablePage``. You need to make your class inherit from :class:`wagtail.contrib.wagtailroutablepage.models.RoutablePage` and configure the ``subpage_urls`` attribute with your URL configuration. + +Heres a quick example of en ``EventPage`` with three views: + +.. code-block:: python + + from django.conf.urls import url + + from wagtail.contrib.wagtailroutablepage.models import RoutablePage + + + class EventPage(RoutablePage): + subpage_urls = ( + url(r'^$', 'current_events', name='current_events'), + url(r'^past/$', 'past_events', name='past_events'), + url(r'^year/(\d+)/$', 'events_for_year', name='events_for_year'), + ) + + def current_events(self, request): + """ + View function for the current events page + """ + ... + + def past_events(self, request): + """ + View function for the current events page + """ + ... + + def events_for_year(self, request): + """ + View function for the events for year page + """ + ... + + +The ``RoutablePage`` class +========================== + +.. automodule:: wagtail.contrib.wagtailroutablepage.models +.. autoclass:: RoutablePage + + .. attribute:: subpage_urls + + Set this to a tuple of ``django.conf.urls.url`` objects. + + .. automethod:: resolve_subpage + + Example: + + .. code-block:: python + + view, args, kwargs = page.resolve_subpage('/past/') + response = view(request, *args, **kwargs) + + .. automethod:: reverse_subpage + + Example: + + .. code-block:: python + + url = page.url + page.reverse_subpage('events_for_year', args=('2014', )) From f91cc8d7d55918a850665f49bc703792b2d0e86e Mon Sep 17 00:00:00 2001 From: Matt Westcott Date: Mon, 14 Jul 2014 18:25:14 +0100 Subject: [PATCH 21/63] update docs to use decorator syntax for hooks --- CHANGELOG.txt | 4 ++++ docs/editing_api.rst | 39 +++++++++++++++++++++++++++------------ docs/releases/0.5.rst | 13 +++++++++++++ 3 files changed, 44 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index c6db3355e..39740ef55 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,6 +1,10 @@ Changelog ========= +0.5 (xx.xx.20xx) +~~~~~~~~~~~~~~~~ + * Added decorator syntax for hooks + 0.4.1 (14.07.2014) ~~~~~~~~~~~~~~~~~~ * ElasticSearch backend now respects the backward-compatible URLS configuration setting, in addition to HOSTS diff --git a/docs/editing_api.rst b/docs/editing_api.rst index 48d766675..4d346a815 100644 --- a/docs/editing_api.rst +++ b/docs/editing_api.rst @@ -392,15 +392,28 @@ Admin Hooks On loading, Wagtail will search for any app with the file ``wagtail_hooks.py`` and execute the contents. This provides a way to register your own functions to execute at certain points in Wagtail's execution, such as when a ``Page`` object is saved or when the main menu is constructed. -Registering functions with a Wagtail hook follows the following pattern: +.. versionadded:: 0.5 + Decorator syntax was added in 0.5; earlier versions only supported ``hooks.register`` as an ordinary function call. + +Registering functions with a Wagtail hook is done through the ``@hooks.register`` decorator: .. code-block:: python from wagtail.wagtailcore import hooks - hooks.register('hook', function) + @hooks.register('name_of_hook') + def my_hook_function(arg1, arg2...) + # your code here -Where ``'hook'`` is one of the following hook strings and ``function`` is a function you've defined to handle the hook. + +Alternatively, ``hooks.register`` can be called as an ordinary function, passing in the name of the hook and a handler function defined elsewhere: + +.. code-block:: python + + hooks.register('name_of_hook', my_hook_function) + + +The available hooks are: .. _before_serve_page: @@ -413,11 +426,11 @@ Where ``'hook'`` is one of the following hook strings and ``function`` is a func from wagtail.wagtailcore import hooks + @hooks.register('before_serve_page') def block_googlebot(page, request, serve_args, serve_kwargs): if request.META.get('HTTP_USER_AGENT') == 'GoogleBot': return HttpResponse("

    bad googlebot no cookie

    ") - hooks.register('before_serve_page', block_googlebot) .. _construct_wagtail_edit_bird: @@ -433,10 +446,10 @@ Where ``'hook'`` is one of the following hook strings and ``function`` is a func return '
  • Puppies!
  • ' + @hooks.register('construct_wagtail_edit_bird') def add_puppy_link_item(request, items): return items.append( UserbarPuppyLinkItem() ) - hooks.register('construct_wagtail_edit_bird', add_puppy_link_item) .. _construct_homepage_panels: @@ -459,10 +472,10 @@ Where ``'hook'`` is one of the following hook strings and ``function`` is a func """) + @hooks.register('construct_homepage_panels') def add_another_welcome_panel(request, panels): return panels.append( WelcomePanel() ) - hooks.register('construct_homepage_panels', add_another_welcome_panel) .. _after_create_page: @@ -475,9 +488,10 @@ Where ``'hook'`` is one of the following hook strings and ``function`` is a func from wagtail.wagtailcore import hooks + @hooks.register('after_create_page') def do_after_page_create(request, page): return HttpResponse("Congrats on making content!", content_type="text/plain") - hooks.register('after_create_page', do_after_page_create) + .. _after_edit_page: @@ -508,11 +522,11 @@ Where ``'hook'`` is one of the following hook strings and ``function`` is a func "I have approximate knowledge of many things!", \ content_type="text/plain") + @hooks.register('register_admin_urls') def urlconf_time(): return [ url(r'^how_did_you_almost_know_my_name/$', admin_view, name='frank' ), ] - hooks.register('register_admin_urls', urlconf_time) .. _construct_main_menu: @@ -526,11 +540,11 @@ Where ``'hook'`` is one of the following hook strings and ``function`` is a func from wagtail.wagtailcore import hooks from wagtail.wagtailadmin.menu import MenuItem + @hooks.register('construct_main_menu') def construct_main_menu(request, menu_items): menu_items.append( MenuItem( 'Frank', reverse('frank'), classnames='icon icon-folder-inverse', order=10000) ) - hooks.register('construct_main_menu', construct_main_menu) .. _insert_editor_js: @@ -545,6 +559,7 @@ Where ``'hook'`` is one of the following hook strings and ``function`` is a func from wagtail.wagtailcore import hooks + @hooks.register('insert_editor_js') def editor_js(): js_files = [ 'demo/js/hallo-plugins/hallo-demo-plugin.js', @@ -559,7 +574,7 @@ Where ``'hook'`` is one of the following hook strings and ``function`` is a func """ ) - hooks.register('insert_editor_js', editor_js) + .. _insert_editor_css: @@ -573,11 +588,11 @@ Where ``'hook'`` is one of the following hook strings and ``function`` is a func from wagtail.wagtailcore import hooks + @hooks.register('insert_editor_css') def editor_css(): return format_html('') - hooks.register('insert_editor_css', editor_css) .. _construct_whitelister_element_rules: @@ -595,12 +610,12 @@ Where ``'hook'`` is one of the following hook strings and ``function`` is a func from wagtail.wagtailcore import hooks from wagtail.wagtailcore.whitelist import attribute_rule, check_url, allow_without_attributes + @hooks.register('construct_whitelister_element_rules') def whitelister_element_rules(): return { 'blockquote': allow_without_attributes, 'a': attribute_rule({'href': check_url, 'target': True}), } - hooks.register('construct_whitelister_element_rules', whitelister_element_rules) Image Formats in the Rich Text Editor diff --git a/docs/releases/0.5.rst b/docs/releases/0.5.rst index 4b436ddb8..d17816cec 100644 --- a/docs/releases/0.5.rst +++ b/docs/releases/0.5.rst @@ -14,6 +14,19 @@ Whats new Minor features ~~~~~~~~~~~~~~ +Core +---- + + * Hooks can now be defined using decorator syntax: + + .. code-block:: python + + @hooks.register('construct_main_menu') + def construct_main_menu(request, menu_items): + menu_items.append( + MenuItem('Kittens!', '/kittens/', classnames='icon icon-folder-inverse', order=1000) + ) + Bug fixes ~~~~~~~~~ From 493d45693fb10ee2723b461635048ce6a02c2dfc Mon Sep 17 00:00:00 2001 From: Matt Westcott Date: Mon, 14 Jul 2014 18:31:26 +0100 Subject: [PATCH 22/63] update wagtail_hooks across all wagtail subapps to use decorator syntax --- wagtail/contrib/wagtailstyleguide/wagtail_hooks.py | 4 ++-- wagtail/wagtailcore/wagtail_hooks.py | 3 +-- wagtail/wagtaildocs/wagtail_hooks.py | 6 +++--- wagtail/wagtailembeds/wagtail_hooks.py | 4 ++-- wagtail/wagtailforms/wagtail_hooks.py | 6 +++--- wagtail/wagtailimages/wagtail_hooks.py | 6 +++--- wagtail/wagtailredirects/wagtail_hooks.py | 4 ++-- wagtail/wagtailsearch/wagtail_hooks.py | 4 ++-- wagtail/wagtailsnippets/wagtail_hooks.py | 6 +++--- wagtail/wagtailusers/wagtail_hooks.py | 4 ++-- 10 files changed, 23 insertions(+), 24 deletions(-) diff --git a/wagtail/contrib/wagtailstyleguide/wagtail_hooks.py b/wagtail/contrib/wagtailstyleguide/wagtail_hooks.py index 56a17fc16..6045772d0 100644 --- a/wagtail/contrib/wagtailstyleguide/wagtail_hooks.py +++ b/wagtail/contrib/wagtailstyleguide/wagtail_hooks.py @@ -8,15 +8,15 @@ from wagtail.wagtailadmin.menu import MenuItem from . import views +@hooks.register('register_admin_urls') def register_admin_urls(): return [ url(r'^styleguide/$', views.index, name='wagtailstyleguide'), ] -hooks.register('register_admin_urls', register_admin_urls) +@hooks.register('construct_main_menu') def construct_main_menu(request, menu_items): menu_items.append( MenuItem(_('Styleguide'), urlresolvers.reverse('wagtailstyleguide'), classnames='icon icon-image', order=1000) ) -hooks.register('construct_main_menu', construct_main_menu) diff --git a/wagtail/wagtailcore/wagtail_hooks.py b/wagtail/wagtailcore/wagtail_hooks.py index ef6ca9f82..43a78bb06 100644 --- a/wagtail/wagtailcore/wagtail_hooks.py +++ b/wagtail/wagtailcore/wagtail_hooks.py @@ -2,6 +2,7 @@ from django.core.urlresolvers import reverse from wagtail.wagtailcore import hooks +@hooks.register('before_serve_page') def check_view_restrictions(page, request, serve_args, serve_kwargs): """ Check whether there are any view restrictions on this page which are @@ -21,5 +22,3 @@ def check_view_restrictions(page, request, serve_args, serve_kwargs): initial={'return_url': request.get_full_path()}) action_url = reverse('wagtailcore_authenticate_with_password', args=[restriction.id, page.id]) return page.serve_password_required_response(request, form, action_url) - -hooks.register('before_serve_page', check_view_restrictions) diff --git a/wagtail/wagtaildocs/wagtail_hooks.py b/wagtail/wagtaildocs/wagtail_hooks.py index a6e00f8db..3852716ac 100644 --- a/wagtail/wagtaildocs/wagtail_hooks.py +++ b/wagtail/wagtaildocs/wagtail_hooks.py @@ -10,21 +10,22 @@ from wagtail.wagtailadmin.menu import MenuItem from wagtail.wagtaildocs import admin_urls +@hooks.register('register_admin_urls') def register_admin_urls(): return [ url(r'^documents/', include(admin_urls)), ] -hooks.register('register_admin_urls', register_admin_urls) +@hooks.register('construct_main_menu') def construct_main_menu(request, menu_items): if request.user.has_perm('wagtaildocs.add_document'): menu_items.append( MenuItem(_('Documents'), urlresolvers.reverse('wagtaildocs_index'), classnames='icon icon-doc-full-inverse', order=400) ) -hooks.register('construct_main_menu', construct_main_menu) +@hooks.register('insert_editor_js') def editor_js(): js_files = [ 'wagtaildocs/js/hallo-plugins/hallo-wagtaildoclink.js', @@ -42,4 +43,3 @@ def editor_js(): """, urlresolvers.reverse('wagtaildocs_chooser') ) -hooks.register('insert_editor_js', editor_js) diff --git a/wagtail/wagtailembeds/wagtail_hooks.py b/wagtail/wagtailembeds/wagtail_hooks.py index f9ea650a6..955f8216b 100644 --- a/wagtail/wagtailembeds/wagtail_hooks.py +++ b/wagtail/wagtailembeds/wagtail_hooks.py @@ -7,13 +7,14 @@ from wagtail.wagtailcore import hooks from wagtail.wagtailembeds import urls +@hooks.register('register_admin_urls') def register_admin_urls(): return [ url(r'^embeds/', include(urls)), ] -hooks.register('register_admin_urls', register_admin_urls) +@hooks.register('insert_editor_js') def editor_js(): return format_html(""" @@ -26,4 +27,3 @@ def editor_js(): 'wagtailembeds/js/hallo-plugins/hallo-wagtailembeds.js', urlresolvers.reverse('wagtailembeds_chooser') ) -hooks.register('insert_editor_js', editor_js) diff --git a/wagtail/wagtailforms/wagtail_hooks.py b/wagtail/wagtailforms/wagtail_hooks.py index c584a5c4e..427c678ad 100644 --- a/wagtail/wagtailforms/wagtail_hooks.py +++ b/wagtail/wagtailforms/wagtail_hooks.py @@ -9,20 +9,20 @@ from wagtail.wagtailadmin.menu import MenuItem from wagtail.wagtailforms import urls from wagtail.wagtailforms.models import get_forms_for_user +@hooks.register('register_admin_urls') def register_admin_urls(): return [ url(r'^forms/', include(urls)), ] -hooks.register('register_admin_urls', register_admin_urls) +@hooks.register('construct_main_menu') def construct_main_menu(request, menu_items): # show this only if the user has permission to retrieve submissions for at least one form if get_forms_for_user(request.user).exists(): menu_items.append( MenuItem(_('Forms'), urlresolvers.reverse('wagtailforms_index'), classnames='icon icon-form', order=700) ) -hooks.register('construct_main_menu', construct_main_menu) +@hooks.register('insert_editor_js') def editor_js(): return """""" % settings.STATIC_URL -hooks.register('insert_editor_js', editor_js) diff --git a/wagtail/wagtailimages/wagtail_hooks.py b/wagtail/wagtailimages/wagtail_hooks.py index 611e18990..90ba83d37 100644 --- a/wagtail/wagtailimages/wagtail_hooks.py +++ b/wagtail/wagtailimages/wagtail_hooks.py @@ -10,21 +10,22 @@ from wagtail.wagtailadmin.menu import MenuItem from wagtail.wagtailimages import urls +@hooks.register('register_admin_urls') def register_admin_urls(): return [ url(r'^images/', include(urls)), ] -hooks.register('register_admin_urls', register_admin_urls) +@hooks.register('construct_main_menu') def construct_main_menu(request, menu_items): if request.user.has_perm('wagtailimages.add_image'): menu_items.append( MenuItem(_('Images'), urlresolvers.reverse('wagtailimages_index'), classnames='icon icon-image', order=300) ) -hooks.register('construct_main_menu', construct_main_menu) +@hooks.register('insert_editor_js') def editor_js(): js_files = [ 'wagtailimages/js/hallo-plugins/hallo-wagtailimage.js', @@ -42,4 +43,3 @@ def editor_js(): """, urlresolvers.reverse('wagtailimages_chooser') ) -hooks.register('insert_editor_js', editor_js) diff --git a/wagtail/wagtailredirects/wagtail_hooks.py b/wagtail/wagtailredirects/wagtail_hooks.py index 6ebec475b..6da8a873a 100644 --- a/wagtail/wagtailredirects/wagtail_hooks.py +++ b/wagtail/wagtailredirects/wagtail_hooks.py @@ -8,17 +8,17 @@ from wagtail.wagtailredirects import urls from wagtail.wagtailadmin.menu import MenuItem +@hooks.register('register_admin_urls') def register_admin_urls(): return [ url(r'^redirects/', include(urls)), ] -hooks.register('register_admin_urls', register_admin_urls) +@hooks.register('construct_main_menu') def construct_main_menu(request, menu_items): # TEMPORARY: Only show if the user is a superuser if request.user.is_superuser: menu_items.append( MenuItem(_('Redirects'), urlresolvers.reverse('wagtailredirects_index'), classnames='icon icon-redirect', order=800) ) -hooks.register('construct_main_menu', construct_main_menu) diff --git a/wagtail/wagtailsearch/wagtail_hooks.py b/wagtail/wagtailsearch/wagtail_hooks.py index 3ca4601b3..d3d533036 100644 --- a/wagtail/wagtailsearch/wagtail_hooks.py +++ b/wagtail/wagtailsearch/wagtail_hooks.py @@ -8,17 +8,17 @@ from wagtail.wagtailsearch.urls import admin as admin_urls from wagtail.wagtailadmin.menu import MenuItem +@hooks.register('register_admin_urls') def register_admin_urls(): return [ url(r'^search/', include(admin_urls)), ] -hooks.register('register_admin_urls', register_admin_urls) +@hooks.register('construct_main_menu') def construct_main_menu(request, menu_items): # TEMPORARY: Only show if the user is a superuser if request.user.is_superuser: menu_items.append( MenuItem(_('Editors picks'), urlresolvers.reverse('wagtailsearch_editorspicks_index'), classnames='icon icon-pick', order=900) ) -hooks.register('construct_main_menu', construct_main_menu) diff --git a/wagtail/wagtailsnippets/wagtail_hooks.py b/wagtail/wagtailsnippets/wagtail_hooks.py index 501f29b31..d1ff104ff 100644 --- a/wagtail/wagtailsnippets/wagtail_hooks.py +++ b/wagtail/wagtailsnippets/wagtail_hooks.py @@ -11,21 +11,22 @@ from wagtail.wagtailsnippets import urls from wagtail.wagtailsnippets.permissions import user_can_edit_snippets +@hooks.register('register_admin_urls') def register_admin_urls(): return [ url(r'^snippets/', include(urls)), ] -hooks.register('register_admin_urls', register_admin_urls) +@hooks.register('construct_main_menu') def construct_main_menu(request, menu_items): if user_can_edit_snippets(request.user): menu_items.append( MenuItem(_('Snippets'), urlresolvers.reverse('wagtailsnippets_index'), classnames='icon icon-snippet', order=500) ) -hooks.register('construct_main_menu', construct_main_menu) +@hooks.register('insert_editor_js') def editor_js(): return format_html(""" @@ -35,4 +36,3 @@ def editor_js(): 'wagtailsnippets/js/snippet-chooser.js', urlresolvers.reverse('wagtailsnippets_choose_generic') ) -hooks.register('insert_editor_js', editor_js) diff --git a/wagtail/wagtailusers/wagtail_hooks.py b/wagtail/wagtailusers/wagtail_hooks.py index 6637430e1..fe048a4a0 100644 --- a/wagtail/wagtailusers/wagtail_hooks.py +++ b/wagtail/wagtailusers/wagtail_hooks.py @@ -8,16 +8,16 @@ from wagtail.wagtailadmin.menu import MenuItem from wagtail.wagtailusers import urls +@hooks.register('register_admin_urls') def register_admin_urls(): return [ url(r'^users/', include(urls)), ] -hooks.register('register_admin_urls', register_admin_urls) +@hooks.register('construct_main_menu') def construct_main_menu(request, menu_items): if request.user.has_module_perms('auth'): menu_items.append( MenuItem(_('Users'), urlresolvers.reverse('wagtailusers_index'), classnames='icon icon-user', order=600) ) -hooks.register('construct_main_menu', construct_main_menu) From edd8ac2d77b747cffbcf702e71f2633a148d64c6 Mon Sep 17 00:00:00 2001 From: Tim Heap Date: Tue, 15 Jul 2014 16:09:11 +1000 Subject: [PATCH 23/63] Return the function again from the hook decorator The decorator variant of hook registration did not return anything, meaning that the decorated function would end up being `None`. This was not noticed, as the functions are rarely called manually, as opposed to being invoked via the hook. --- wagtail/wagtailcore/hooks.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wagtail/wagtailcore/hooks.py b/wagtail/wagtailcore/hooks.py index b6d13bf11..958675b97 100644 --- a/wagtail/wagtailcore/hooks.py +++ b/wagtail/wagtailcore/hooks.py @@ -25,7 +25,10 @@ def register(hook_name, fn=None): # Pretend to be a decorator if fn is not supplied if fn is None: - return lambda fn: register(hook_name, fn) + def decorator(fn): + register(hook_name, fn) + return fn + return decorator if hook_name not in _hooks: _hooks[hook_name] = [] From da996c6f060b681c3911420a28783ac5708bf299 Mon Sep 17 00:00:00 2001 From: Neal Todd Date: Tue, 15 Jul 2014 09:10:29 +0100 Subject: [PATCH 24/63] Typo fix (led to incorrect file beig created). --- scripts/install/debian.sh | 2 +- scripts/install/ubuntu.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install/debian.sh b/scripts/install/debian.sh index ee08191ac..efdb815b4 100644 --- a/scripts/install/debian.sh +++ b/scripts/install/debian.sh @@ -62,7 +62,7 @@ pip install -r requirements/production.txt swapoff -v /tmpswap rm /tmpswap -echo SECRET_KEY = \"`python -c 'import random; print "".join([random.SystemRandom().choice("abcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*(-_=+)") for i in range(50)])'`\" > $PROJECT/settings.local.py +echo SECRET_KEY = \"`python -c 'import random; print "".join([random.SystemRandom().choice("abcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*(-_=+)") for i in range(50)])'`\" > $PROJECT/settings/local.py echo ALLOWED_HOSTS = [\'$SERVER_IP\',] >> $PROJECT/settings/local.py createdb -Upostgres $PROJECT ./manage.py syncdb --settings=$PROJECT.settings.production diff --git a/scripts/install/ubuntu.sh b/scripts/install/ubuntu.sh index 299e67a8d..7132c0958 100644 --- a/scripts/install/ubuntu.sh +++ b/scripts/install/ubuntu.sh @@ -60,7 +60,7 @@ pip install -r requirements/production.txt swapoff -v /tmpswap rm /tmpswap -echo SECRET_KEY = \"`python -c 'import random; print "".join([random.SystemRandom().choice("abcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*(-_=+)") for i in range(50)])'`\" > $PROJECT/settings.local.py +echo SECRET_KEY = \"`python -c 'import random; print "".join([random.SystemRandom().choice("abcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*(-_=+)") for i in range(50)])'`\" > $PROJECT/settings/local.py echo ALLOWED_HOSTS = [\'$SERVER_IP\',] >> $PROJECT/settings/local.py createdb -Upostgres $PROJECT ./manage.py syncdb --settings=$PROJECT.settings.production From d1d8b7811a915405631479d59154aeb0a43adb00 Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Tue, 15 Jul 2014 12:39:42 +0100 Subject: [PATCH 25/63] Added requirements file for docs --- docs/requirements.txt | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 docs/requirements.txt diff --git a/docs/requirements.txt b/docs/requirements.txt new file mode 100644 index 000000000..d4de16707 --- /dev/null +++ b/docs/requirements.txt @@ -0,0 +1,5 @@ +Django>=1.6.2,<1.7 +django-modelcluster>=0.3 +django-taggit==0.11.2 +django-treebeard==2.0 +six==1.7.3 \ No newline at end of file From 4320b43ede2771737a165421f192192ff969df0a Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Tue, 15 Jul 2014 12:44:00 +0100 Subject: [PATCH 26/63] Added page_unpublished signal --- wagtail/wagtailcore/signals.py | 1 + 1 file changed, 1 insertion(+) diff --git a/wagtail/wagtailcore/signals.py b/wagtail/wagtailcore/signals.py index 2508759c6..169218971 100644 --- a/wagtail/wagtailcore/signals.py +++ b/wagtail/wagtailcore/signals.py @@ -2,3 +2,4 @@ from django.dispatch import Signal page_published = Signal(providing_args=['instance']) +page_unpublished = Signal(providing_args=['instance']) From a5141d62c1883365a6531a99966914058e577c06 Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Tue, 15 Jul 2014 12:44:23 +0100 Subject: [PATCH 27/63] Fire page_unpublished signal on page unpublish and delete --- wagtail/wagtailadmin/views/pages.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/wagtail/wagtailadmin/views/pages.py b/wagtail/wagtailadmin/views/pages.py index 013ce40c0..d59159e3c 100644 --- a/wagtail/wagtailadmin/views/pages.py +++ b/wagtail/wagtailadmin/views/pages.py @@ -18,7 +18,7 @@ from wagtail.wagtailadmin import tasks, signals from wagtail.wagtailcore import hooks from wagtail.wagtailcore.models import Page, PageRevision -from wagtail.wagtailcore.signals import page_published +from wagtail.wagtailcore.signals import page_published, page_unpublished @permission_required('wagtailadmin.access_admin') @@ -376,6 +376,7 @@ def delete(request, page_id): raise PermissionDenied if request.POST: + page_unpublished.send(sender=page.specific_class, instance=page) parent_id = page.get_parent().id page.delete() messages.success(request, _("Page '{0}' deleted.").format(page.title)) @@ -535,6 +536,7 @@ def unpublish(request, page_id): raise PermissionDenied if request.POST: + page_unpublished.send(sender=page.specific_class, instance=page) parent_id = page.get_parent().id page.live = False page.save() From f2cdd8eb42afb9db5465e062544631684cabd24f Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Tue, 15 Jul 2014 12:45:29 +0100 Subject: [PATCH 28/63] Use page_unpublished signal in frontend cache invalidator --- wagtail/contrib/wagtailfrontendcache/signal_handlers.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/wagtail/contrib/wagtailfrontendcache/signal_handlers.py b/wagtail/contrib/wagtailfrontendcache/signal_handlers.py index 0fc92d46e..29a153896 100644 --- a/wagtail/contrib/wagtailfrontendcache/signal_handlers.py +++ b/wagtail/contrib/wagtailfrontendcache/signal_handlers.py @@ -1,8 +1,7 @@ from django.db import models -from django.db.models.signals import post_delete from wagtail.wagtailcore.models import Page -from wagtail.wagtailcore.signals import page_published +from wagtail.wagtailcore.signals import page_published, page_unpublished from wagtail.contrib.wagtailfrontendcache.utils import purge_page_from_cache @@ -11,7 +10,7 @@ def page_published_signal_handler(instance, **kwargs): purge_page_from_cache(instance) -def post_delete_signal_handler(instance, **kwargs): +def page_unpublished_signal_handler(instance, **kwargs): purge_page_from_cache(instance) @@ -22,4 +21,4 @@ def register_signal_handlers(): # Loop through list and register signal handlers for each one for model in indexed_models: page_published.connect(page_published_signal_handler, sender=model) - post_delete.connect(post_delete_signal_handler, sender=model) + page_unpublished.connect(page_unpublished_signal_handler, sender=model) From 6603c63b9550bccd4fc157f4007897bdc8e89281 Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Tue, 15 Jul 2014 13:05:24 +0100 Subject: [PATCH 29/63] Use SQLite3 database backend when building docs This prevents Django from loading psycopg2 when running autodocs on models files --- docs/conf.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/conf.py b/docs/conf.py index 36921d794..e0931da3b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -33,6 +33,9 @@ sys.path.insert(0, os.path.abspath('..')) # be configured os.environ['DJANGO_SETTINGS_MODULE'] = 'wagtail.tests.settings' +# Use SQLite3 database engine so it doesn't attempt to use psycopg2 on RTD +os.environ['DATABASE_ENGINE'] = 'django.db.backends.sqlite3' + # -- General configuration ------------------------------------------------ From 8c178511deebee23ad2cc061ef4cae65c27260bc Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Tue, 15 Jul 2014 13:22:37 +0100 Subject: [PATCH 30/63] Make sure page_unpublished.instance is always the most specific version of the page --- wagtail/wagtailadmin/views/pages.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wagtail/wagtailadmin/views/pages.py b/wagtail/wagtailadmin/views/pages.py index d59159e3c..18746669e 100644 --- a/wagtail/wagtailadmin/views/pages.py +++ b/wagtail/wagtailadmin/views/pages.py @@ -376,7 +376,7 @@ def delete(request, page_id): raise PermissionDenied if request.POST: - page_unpublished.send(sender=page.specific_class, instance=page) + page_unpublished.send(sender=page.specific_class, instance=page.specific) parent_id = page.get_parent().id page.delete() messages.success(request, _("Page '{0}' deleted.").format(page.title)) @@ -536,7 +536,7 @@ def unpublish(request, page_id): raise PermissionDenied if request.POST: - page_unpublished.send(sender=page.specific_class, instance=page) + page_unpublished.send(sender=page.specific_class, instance=page.specific) parent_id = page.get_parent().id page.live = False page.save() From 8a0c47399720bb121f5faa72112442fc211679c9 Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Tue, 15 Jul 2014 13:23:00 +0100 Subject: [PATCH 31/63] Added tests for page_unpublished signal --- .../wagtailadmin/tests/test_pages_views.py | 29 ++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/wagtail/wagtailadmin/tests/test_pages_views.py b/wagtail/wagtailadmin/tests/test_pages_views.py index 1551eaab2..266e693ab 100644 --- a/wagtail/wagtailadmin/tests/test_pages_views.py +++ b/wagtail/wagtailadmin/tests/test_pages_views.py @@ -10,7 +10,7 @@ from django.utils import timezone from wagtail.tests.models import SimplePage, EventPage, EventPageCarouselItem, StandardIndex, BusinessIndex, BusinessChild, BusinessSubIndex from wagtail.tests.utils import unittest, WagtailTestUtils from wagtail.wagtailcore.models import Page, PageRevision -from wagtail.wagtailcore.signals import page_published +from wagtail.wagtailcore.signals import page_published, page_unpublished from wagtail.wagtailusers.models import UserProfile @@ -796,6 +796,15 @@ class TestPageDelete(TestCase, WagtailTestUtils): self.assertEqual(response.status_code, 403) def test_page_delete_post(self): + # Connect a mock signal handler to page_unpublished signal + signal_fired = [False] + signal_page = [None] + def page_unpublished_handler(sender, instance, **kwargs): + signal_fired[0] = True + signal_page[0] = instance + page_unpublished.connect(page_unpublished_handler) + + # Post post_data = {'hello': 'world'} # For some reason, this test doesn't work without a bit of POST data response = self.client.post(reverse('wagtailadmin_pages_delete', args=(self.child_page.id, )), post_data) @@ -805,6 +814,11 @@ class TestPageDelete(TestCase, WagtailTestUtils): # Check that the page is gone self.assertEqual(Page.objects.filter(path__startswith=self.root_page.path, slug='hello-world').count(), 0) + # Check that the page_unpublished signal was fired + self.assertTrue(signal_fired[0]) + self.assertEqual(signal_page[0], self.child_page) + self.assertEqual(signal_page[0], signal_page[0].specific) + class TestPageSearch(TestCase, WagtailTestUtils): def setUp(self): @@ -954,6 +968,14 @@ class TestPageUnpublish(TestCase, WagtailTestUtils): """ This posts to the unpublish view and checks that the page was unpublished """ + # Connect a mock signal handler to page_unpublished signal + signal_fired = [False] + signal_page = [None] + def page_unpublished_handler(sender, instance, **kwargs): + signal_fired[0] = True + signal_page[0] = instance + page_unpublished.connect(page_unpublished_handler) + # Post to the unpublish page response = self.client.post(reverse('wagtailadmin_pages_unpublish', args=(self.page.id, )), { 'foo': "Must post something or the view won't see this as a POST request", @@ -965,6 +987,11 @@ class TestPageUnpublish(TestCase, WagtailTestUtils): # Check that the page was unpublished self.assertFalse(SimplePage.objects.get(id=self.page.id).live) + # Check that the page_unpublished signal was fired + self.assertTrue(signal_fired[0]) + self.assertEqual(signal_page[0], self.page) + self.assertEqual(signal_page[0], signal_page[0].specific) + class TestApproveRejectModeration(TestCase, WagtailTestUtils): def setUp(self): From b0302d5e2d9daefc1a521b789a39b624a6099451 Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Tue, 15 Jul 2014 13:39:11 +0100 Subject: [PATCH 32/63] Fixes to documentation of Page attributes --- docs/building_your_site/djangodevelopers.rst | 10 +++++----- wagtail/wagtailcore/models.py | 9 ++++++--- 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/docs/building_your_site/djangodevelopers.rst b/docs/building_your_site/djangodevelopers.rst index a2d196379..06797331f 100644 --- a/docs/building_your_site/djangodevelopers.rst +++ b/docs/building_your_site/djangodevelopers.rst @@ -197,13 +197,13 @@ In addition to the model fields provided, ``Page`` has many properties and metho .. automodule:: wagtail.wagtailcore.models .. autoclass:: Page - .. method:: specific + .. autoattribute:: specific - Return this page in its most specific subclassed form. + .. autoattribute:: specific_class - .. automethod:: url + .. autoattribute:: url - .. automethod:: full_url + .. autoattribute:: full_url .. automethod:: relative_url @@ -217,7 +217,7 @@ In addition to the model fields provided, ``Page`` has many properties and metho .. automethod:: get_template - .. automethod:: preview_modes + .. autoattribute:: preview_modes .. automethod:: serve_preview diff --git a/wagtail/wagtailcore/models.py b/wagtail/wagtailcore/models.py index 2ea9836af..60de42698 100644 --- a/wagtail/wagtailcore/models.py +++ b/wagtail/wagtailcore/models.py @@ -381,10 +381,11 @@ class Page(six.with_metaclass(PageBase, MP_Node, ClusterableModel, indexed.Index cursor.execute(update_statement, [new_url_path, len(old_url_path) + 1, self.path + '%', self.id]) + #: Return this page in its most specific subclassed form. @cached_property def specific(self): """ - Return this page in its most specific subclassed form. + Return this page in its most specific subclassed form. """ # the ContentType.objects manager keeps a cache, so this should potentially # avoid a database lookup over doing self.content_type. I think. @@ -395,11 +396,13 @@ class Page(six.with_metaclass(PageBase, MP_Node, ClusterableModel, indexed.Index else: return content_type.get_object_for_this_type(id=self.id) + #: Return the class that this page would be if instantiated in its + #: most specific form @cached_property def specific_class(self): """ - return the class that this page would be if instantiated in its - most specific form + Return the class that this page would be if instantiated in its + most specific form """ content_type = ContentType.objects.get_for_id(self.content_type_id) return content_type.model_class() From 7f66d1a46d09b56edb4f93052a582af57ee91b55 Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Tue, 15 Jul 2014 13:45:42 +0100 Subject: [PATCH 33/63] Improvements to subpage_urls docs --- docs/routable_page.rst | 13 +++++++++++-- wagtail/contrib/wagtailroutablepage/models.py | 1 + 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/docs/routable_page.rst b/docs/routable_page.rst index e15fd5a83..0b982752d 100644 --- a/docs/routable_page.rst +++ b/docs/routable_page.rst @@ -53,9 +53,18 @@ The ``RoutablePage`` class .. automodule:: wagtail.contrib.wagtailroutablepage.models .. autoclass:: RoutablePage - .. attribute:: subpage_urls + .. autoattribute:: subpage_urls - Set this to a tuple of ``django.conf.urls.url`` objects. + Example: + + .. code-block:: python + + from django.conf.urls import url + + subpage_urls = ( + url(r'^$', 'serve', name='main'), + url(r'^archive/$', 'archive', name='archive'), + ) .. automethod:: resolve_subpage diff --git a/wagtail/contrib/wagtailroutablepage/models.py b/wagtail/contrib/wagtailroutablepage/models.py index c5449b0fd..f853208af 100644 --- a/wagtail/contrib/wagtailroutablepage/models.py +++ b/wagtail/contrib/wagtailroutablepage/models.py @@ -12,6 +12,7 @@ class RoutablePage(Page): """ This class extends Page by adding methods to allow urlconfs to be embedded inside pages """ + #: Set this to a tuple of ``django.conf.urls.url`` objects. subpage_urls = None def reverse_subpage(self, name, args=None, kwargs=None): From 0b8fab6f428e25f55f5bcca22125bc982c033e01 Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Tue, 15 Jul 2014 13:48:05 +0100 Subject: [PATCH 34/63] Retitled routable_page doc, added to index --- docs/index.rst | 1 + docs/routable_page.rst | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/index.rst b/docs/index.rst index 2ab429eb6..76f8c9444 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -16,6 +16,7 @@ It supports Django 1.6.2+ on Python 2.6, 2.7, 3.2, 3.3 and 3.4. Django 1.7 suppo search/index form_builder model_recipes + routable_page advanced_topics deploying performance diff --git a/docs/routable_page.rst b/docs/routable_page.rst index 0b982752d..5f82cd962 100644 --- a/docs/routable_page.rst +++ b/docs/routable_page.rst @@ -1,6 +1,6 @@ -============ -RoutablePage -============ +==================================== +Embedding URL configuration in Pages +==================================== .. versionadded:: 0.5 From 227765359bba2247325a913331665746729998e1 Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Tue, 15 Jul 2014 14:16:22 +0100 Subject: [PATCH 35/63] Lots of small tweaks to docs --- docs/building_your_site/djangodevelopers.rst | 4 ++++ docs/frontend_cache_purging.rst | 2 ++ docs/performance.rst | 9 +++++++++ docs/private_pages.rst | 4 ++++ docs/search/for_python_developers.rst | 5 +++++ docs/sitemap_generation.rst | 2 ++ 6 files changed, 26 insertions(+) diff --git a/docs/building_your_site/djangodevelopers.rst b/docs/building_your_site/djangodevelopers.rst index 06797331f..d1b69dcf3 100644 --- a/docs/building_your_site/djangodevelopers.rst +++ b/docs/building_your_site/djangodevelopers.rst @@ -381,6 +381,8 @@ Examples: .. automethod:: public + See: :ref:`private_pages` + .. note:: This doesn't filter out unpublished pages. If you want to only have published public pages, use ``.live().public()`` @@ -394,6 +396,8 @@ Examples: .. automethod:: search + See: :ref:`wagtailsearch_for_python_developers` + Example: .. code-block:: python diff --git a/docs/frontend_cache_purging.rst b/docs/frontend_cache_purging.rst index c1b03624f..5f9f12ab3 100644 --- a/docs/frontend_cache_purging.rst +++ b/docs/frontend_cache_purging.rst @@ -3,6 +3,8 @@ Frontend cache purging ====================== +.. versionadded:: 0.4 + Many websites use a frontend cache such as Varnish, Squid or Cloudflare to gain extra performance. The downside of using a frontend cache though is that they don't respond well to updating content and will often keep an old version of a page cached after it has been updated. This document describes how to configure Wagtail to purge old versions of pages from a frontend cache whenever a page gets updated. diff --git a/docs/performance.rst b/docs/performance.rst index 09f06be0f..68c642520 100644 --- a/docs/performance.rst +++ b/docs/performance.rst @@ -3,11 +3,13 @@ Performance Wagtail is designed for speed, both in the editor interface and on the front-end, but if you want even better performance or you need to handle very high volumes of traffic, here are some tips on eking out the most from your installation. + Editor interface ~~~~~~~~~~~~~~~~ We have tried to minimise external dependencies for a working installation of Wagtail, in order to make it as simple as possible to get going. However, a number of default settings can be configured for better performance: + Cache ----- @@ -25,16 +27,19 @@ We recommend `Redis `_ as a fast, persistent cache. Install Re Without a persistent cache, Wagtail will recreate all compressable assets at each server start, e.g. when any files change under ```./manage.py runserver```. + Search ------ Wagtail has strong support for `Elasticsearch `_ - both in the editor interface and for users of your site - but can fall back to a database search if Elasticsearch isn't present. Elasticsearch is faster and more powerful than the Django ORM for text search, so we recommend installing it or using a hosted service like `Searchly `_. + Database -------- Wagtail is tested on SQLite, and should work on other Django-supported database backends, but we recommend PostgreSQL for production use. + Public users ~~~~~~~~~~~~ @@ -42,3 +47,7 @@ Caching proxy ------------- To support high volumes of traffic with excellent response times, we recommend a caching proxy. Both `Varnish `_ and `Squid `_ have been tested in production. Hosted proxies like `Cloudflare `_ should also work well. + +.. versionadded:: 0.4 + + Wagtail supports automatic cache invalidation for Varnish/Squid. See :ref:`frontend_cache_purging` for more information. diff --git a/docs/private_pages.rst b/docs/private_pages.rst index 99b364176..33767a8b5 100644 --- a/docs/private_pages.rst +++ b/docs/private_pages.rst @@ -3,10 +3,13 @@ Private pages ============= +.. versionadded:: 0.4 + Users with publish permission on a page can set it to be private by clicking the 'Privacy' control in the top right corner of the page explorer or editing interface, and setting a password. Users visiting this page, or any of its subpages, will be prompted to enter a password before they can view the page. Private pages work on Wagtail out of the box - the site implementer does not need to do anything to set them up. However, the default "password required" form is only a bare-bones HTML page, and site implementers may wish to replace this with a page customised to their site design. + Setting up a global "password required" page ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -52,6 +55,7 @@ A basic template suitable for use as ``PASSWORD_REQUIRED_TEMPLATE`` might look l + Setting a "password required" page for a specific page type ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/docs/search/for_python_developers.rst b/docs/search/for_python_developers.rst index 1cadbc8da..67f732894 100644 --- a/docs/search/for_python_developers.rst +++ b/docs/search/for_python_developers.rst @@ -31,6 +31,11 @@ All methods of ``PageQuerySet`` are supported by wagtailsearch: Indexing extra fields ===================== +.. versionchanged:: 0.4 + + The ``indexed_fields`` configuration format was replaced with ``search_fields`` + + Fields need to be explicitly added to the search configuration in order for you to be able to search/filter on them. You can add new fields to the search index by overriding the ``search_fields`` property and appending a list of extra ``SearchField``/``FilterField`` objects to it. diff --git a/docs/sitemap_generation.rst b/docs/sitemap_generation.rst index 203a423fb..63784d85e 100644 --- a/docs/sitemap_generation.rst +++ b/docs/sitemap_generation.rst @@ -3,6 +3,8 @@ Sitemap generation ================== +.. versionadded:: 0.4 + This document describes how to create XML sitemaps for your Wagtail website using the ``wagtail.contrib.wagtailsitemaps`` module. From 49db907d1353cde8038cb70ee10e8d051326ef5c Mon Sep 17 00:00:00 2001 From: Neal Todd Date: Wed, 16 Jul 2014 13:04:34 +0100 Subject: [PATCH 36/63] Fix rogue smart quotes and run explicitly under bash. --- scripts/install/debian.sh | 3 ++- scripts/install/ubuntu.sh | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/scripts/install/debian.sh b/scripts/install/debian.sh index efdb815b4..63830dc15 100644 --- a/scripts/install/debian.sh +++ b/scripts/install/debian.sh @@ -1,3 +1,4 @@ +#!/usr/bin/env bash # Production-configured Wagtail installation. # BUT, SECURE SERVICES/ACCOUNT FOR FULL PRODUCTION USE! # For a non-dummy email backend configure Django's EMAIL_BACKEND @@ -12,7 +13,7 @@ PROJECT_ROOT=/usr/local/django echo "This script overwrites key files, and should only be run on a new box." read -p "Type 'yes' to confirm: " CONFIRM -[ “$CONFIRM” == “yes” ] || exit +[ "$CONFIRM" == "yes" ] || exit read -p "Enter a name for your project [$PROJECT]: " U_PROJECT if [ ! -z "$U_PROJECT" ]; then diff --git a/scripts/install/ubuntu.sh b/scripts/install/ubuntu.sh index 7132c0958..303fe0355 100644 --- a/scripts/install/ubuntu.sh +++ b/scripts/install/ubuntu.sh @@ -1,3 +1,4 @@ +#!/usr/bin/env bash # Production-configured Wagtail installation. # BUT, SECURE SERVICES/ACCOUNT FOR FULL PRODUCTION USE! # For a non-dummy email backend configure Django's EMAIL_BACKEND @@ -10,7 +11,7 @@ PROJECT_ROOT=/usr/local/django echo "This script overwrites key files, and should only be run on a new box." read -p "Type 'yes' to confirm: " CONFIRM -[ “$CONFIRM” == “yes” ] || exit +[ "$CONFIRM" == "yes" ] || exit read -p "Enter a name for your project [$PROJECT]: " U_PROJECT if [ ! -z "$U_PROJECT" ]; then From 356168f37ea3c5f20de3063f73b86e776c24c3cc Mon Sep 17 00:00:00 2001 From: Matt Westcott Date: Wed, 16 Jul 2014 17:21:31 +0100 Subject: [PATCH 37/63] Convert go_live_at / expire_at timestamps to the server's own timezone when submitting, so that tests don't need TIME_ZONE='UTC' --- wagtail/tests/settings.py | 1 - .../wagtailadmin/tests/test_pages_views.py | 49 ++++++++++++------- 2 files changed, 31 insertions(+), 19 deletions(-) diff --git a/wagtail/tests/settings.py b/wagtail/tests/settings.py index 103e19b99..4623acbec 100644 --- a/wagtail/tests/settings.py +++ b/wagtail/tests/settings.py @@ -29,7 +29,6 @@ STATICFILES_FINDERS = ( ) USE_TZ = True -TIME_ZONE = 'UTC' TEMPLATE_CONTEXT_PROCESSORS = global_settings.TEMPLATE_CONTEXT_PROCESSORS + ( 'django.core.context_processors.request', diff --git a/wagtail/wagtailadmin/tests/test_pages_views.py b/wagtail/wagtailadmin/tests/test_pages_views.py index 1551eaab2..a5b4164cb 100644 --- a/wagtail/wagtailadmin/tests/test_pages_views.py +++ b/wagtail/wagtailadmin/tests/test_pages_views.py @@ -14,6 +14,17 @@ from wagtail.wagtailcore.signals import page_published from wagtail.wagtailusers.models import UserProfile +def submittable_timestamp(timestamp): + """ + Helper function to translate a possibly-timezone-aware datetime into the format used in the + go_live_at / expire_at form fields - "YYYY-MM-DD hh:mm", with no timezone indicator. + This will be interpreted as being in the server's timezone (settings.TIME_ZONE), so we + need to pass it through timezone.localtime to ensure that the client and server are in + agreement about what the timestamp means. + """ + return str(timezone.localtime(timestamp)).split('.')[0] + + class TestPageExplorer(TestCase, WagtailTestUtils): def setUp(self): # Find root page @@ -180,8 +191,8 @@ class TestPageCreation(TestCase, WagtailTestUtils): 'title': "New page!", 'content': "Some content", 'slug': 'hello-world', - 'go_live_at': str(go_live_at).split('.')[0], - 'expire_at': str(expire_at).split('.')[0], + 'go_live_at': submittable_timestamp(go_live_at), + 'expire_at': submittable_timestamp(expire_at), } response = self.client.post(reverse('wagtailadmin_pages_create', args=('tests', 'simplepage', self.root_page.id)), post_data) @@ -203,8 +214,8 @@ class TestPageCreation(TestCase, WagtailTestUtils): 'title': "New page!", 'content': "Some content", 'slug': 'hello-world', - 'go_live_at': str(timezone.now() + timedelta(days=2)).split('.')[0], - 'expire_at': str(timezone.now() + timedelta(days=1)).split('.')[0], + 'go_live_at': submittable_timestamp(timezone.now() + timedelta(days=2)), + 'expire_at': submittable_timestamp(timezone.now() + timedelta(days=1)), } response = self.client.post(reverse('wagtailadmin_pages_create', args=('tests', 'simplepage', self.root_page.id)), post_data) @@ -219,7 +230,7 @@ class TestPageCreation(TestCase, WagtailTestUtils): 'title': "New page!", 'content': "Some content", 'slug': 'hello-world', - 'expire_at': str(timezone.now() + timedelta(days=-1)).split('.')[0], + 'expire_at': submittable_timestamp(timezone.now() + timedelta(days=-1)), } response = self.client.post(reverse('wagtailadmin_pages_create', args=('tests', 'simplepage', self.root_page.id)), post_data) @@ -268,8 +279,8 @@ class TestPageCreation(TestCase, WagtailTestUtils): 'content': "Some content", 'slug': 'hello-world', 'action-publish': "Publish", - 'go_live_at': str(go_live_at).split('.')[0], - 'expire_at': str(expire_at).split('.')[0], + 'go_live_at': submittable_timestamp(go_live_at), + 'expire_at': submittable_timestamp(expire_at), } response = self.client.post(reverse('wagtailadmin_pages_create', args=('tests', 'simplepage', self.root_page.id)), post_data) @@ -428,14 +439,16 @@ class TestPageEdit(TestCase, WagtailTestUtils): self.assertTrue(child_page_new.has_unpublished_changes) def test_edit_post_scheduled(self): - go_live_at = timezone.now() + timedelta(days=1) - expire_at = timezone.now() + timedelta(days=2) + # put go_live_at and expire_at several days away from the current date, to avoid + # false matches in content_json__contains tests + go_live_at = timezone.now() + timedelta(days=10) + expire_at = timezone.now() + timedelta(days=20) post_data = { 'title': "I've been edited!", 'content': "Some content", 'slug': 'hello-world', - 'go_live_at': str(go_live_at).split('.')[0], - 'expire_at': str(expire_at).split('.')[0], + 'go_live_at': submittable_timestamp(go_live_at), + 'expire_at': submittable_timestamp(expire_at), } response = self.client.post(reverse('wagtailadmin_pages_edit', args=(self.child_page.id, )), post_data) @@ -459,8 +472,8 @@ class TestPageEdit(TestCase, WagtailTestUtils): 'title': "I've been edited!", 'content': "Some content", 'slug': 'hello-world', - 'go_live_at': str(timezone.now() + timedelta(days=2)).split('.')[0], - 'expire_at': str(timezone.now() + timedelta(days=1)).split('.')[0], + 'go_live_at': submittable_timestamp(timezone.now() + timedelta(days=2)), + 'expire_at': submittable_timestamp(timezone.now() + timedelta(days=1)), } response = self.client.post(reverse('wagtailadmin_pages_edit', args=(self.child_page.id, )), post_data) @@ -475,7 +488,7 @@ class TestPageEdit(TestCase, WagtailTestUtils): 'title': "I've been edited!", 'content': "Some content", 'slug': 'hello-world', - 'expire_at': str(timezone.now() + timedelta(days=-1)).split('.')[0], + 'expire_at': submittable_timestamp(timezone.now() + timedelta(days=-1)), } response = self.client.post(reverse('wagtailadmin_pages_edit', args=(self.child_page.id, )), post_data) @@ -525,8 +538,8 @@ class TestPageEdit(TestCase, WagtailTestUtils): 'content': "Some content", 'slug': 'hello-world', 'action-publish': "Publish", - 'go_live_at': str(go_live_at).split('.')[0], - 'expire_at': str(expire_at).split('.')[0], + 'go_live_at': submittable_timestamp(go_live_at), + 'expire_at': submittable_timestamp(expire_at), } response = self.client.post(reverse('wagtailadmin_pages_edit', args=(self.child_page.id, )), post_data) @@ -550,8 +563,8 @@ class TestPageEdit(TestCase, WagtailTestUtils): 'content': "Some content", 'slug': 'hello-world', 'action-publish': "Publish", - 'go_live_at': str(go_live_at).split('.')[0], - 'expire_at': str(expire_at).split('.')[0], + 'go_live_at': submittable_timestamp(go_live_at), + 'expire_at': submittable_timestamp(expire_at), } response = self.client.post(reverse('wagtailadmin_pages_edit', args=(self.child_page.id, )), post_data) From 773f891a09ac681cf579e04416ccac123738ac85 Mon Sep 17 00:00:00 2001 From: Dave Cranwell Date: Thu, 17 Jul 2014 12:57:10 +0100 Subject: [PATCH 38/63] updated wagtail font with unified user icon and site icon --- .../templates/wagtailstyleguide/base.html | 1 + .../wagtailadmin/scss/components/icons.scss | 3 + .../scss/fonts/wagtail-icomoon.json | 9803 ++++++++++++++--- .../wagtailadmin/scss/fonts/wagtail.eot | Bin 25648 -> 27380 bytes .../wagtailadmin/scss/fonts/wagtail.svg | 3 +- .../wagtailadmin/scss/fonts/wagtail.ttf | Bin 25484 -> 27216 bytes .../wagtailadmin/scss/fonts/wagtail.woff | Bin 15192 -> 17436 bytes 7 files changed, 8550 insertions(+), 1260 deletions(-) mode change 100755 => 100644 wagtail/wagtailadmin/static/wagtailadmin/scss/fonts/wagtail-icomoon.json diff --git a/wagtail/contrib/wagtailstyleguide/templates/wagtailstyleguide/base.html b/wagtail/contrib/wagtailstyleguide/templates/wagtailstyleguide/base.html index 8506e9075..bc3036d65 100644 --- a/wagtail/contrib/wagtailstyleguide/templates/wagtailstyleguide/base.html +++ b/wagtail/contrib/wagtailstyleguide/templates/wagtailstyleguide/base.html @@ -416,6 +416,7 @@
  • date
  • time
  • form
  • +
  • site
  • diff --git a/wagtail/wagtailadmin/static/wagtailadmin/scss/components/icons.scss b/wagtail/wagtailadmin/static/wagtailadmin/scss/components/icons.scss index 1cfb7e624..d3876f714 100644 --- a/wagtail/wagtailadmin/static/wagtailadmin/scss/components/icons.scss +++ b/wagtail/wagtailadmin/static/wagtailadmin/scss/components/icons.scss @@ -250,6 +250,9 @@ .icon-form:before{ content:"$"; } +.icon-site:before{ + content:"@"; +} .icon.text-replace{ font-size:0em; diff --git a/wagtail/wagtailadmin/static/wagtailadmin/scss/fonts/wagtail-icomoon.json b/wagtail/wagtailadmin/static/wagtailadmin/scss/fonts/wagtail-icomoon.json old mode 100755 new mode 100644 index 57c8a26f1..3fba64407 --- a/wagtail/wagtailadmin/static/wagtailadmin/scss/fonts/wagtail-icomoon.json +++ b/wagtail/wagtailadmin/static/wagtailadmin/scss/fonts/wagtail-icomoon.json @@ -1,1258 +1,8547 @@ { - "IcoMoonType": "selection", - "icons": [ + "metadata": { + "name": "Wagtail", + "lastOpened": 1405597428370, + "created": 1405597423787 + }, + "iconSets": [ { - "icon": { - "paths": [ - "M632.913 707.493l-173.647-173.649v-232.782h105.469v189.094l142.759 142.757zM512 90.125c-232.995 0-421.875 188.88-421.875 421.875s188.88 421.875 421.875 421.875 421.875-188.88 421.875-421.875-188.88-421.875-421.875-421.875zM512 828.406c-174.747 0-316.406-141.659-316.406-316.406s141.659-316.406 316.406-316.406c174.747 0 316.406 141.659 316.406 316.406s-141.659 316.406-316.406 316.406z" - ], - "tags": [ - "clock", - "time", - "schedule" - ], - "grid": 16 + "selection": [ + { + "id": 0, + "order": 0 + }, + { + "id": 1, + "order": 0 + }, + { + "id": 2, + "order": 0 + }, + { + "id": 3, + "order": 0 + }, + { + "id": 4, + "order": 0 + }, + { + "id": 5, + "order": 0 + }, + { + "id": 6, + "order": 0 + }, + { + "id": 7, + "order": 4, + "prevSize": 28, + "code": 121, + "name": "user", + "tempChar": "", + "ligatures": "" + }, + { + "id": 8, + "order": 0 + }, + { + "id": 9, + "order": 0 + }, + { + "id": 10, + "order": 0 + }, + { + "id": 11, + "order": 0 + }, + { + "id": 12, + "order": 0 + }, + { + "id": 13, + "order": 0 + }, + { + "id": 14, + "order": 0 + }, + { + "id": 15, + "order": 0 + }, + { + "id": 16, + "order": 0 + }, + { + "id": 17, + "order": 0 + }, + { + "id": 18, + "order": 0 + }, + { + "id": 19, + "order": 0 + }, + { + "id": 20, + "order": 0 + }, + { + "id": 21, + "order": 0 + }, + { + "id": 22, + "order": 0 + }, + { + "id": 23, + "order": 0 + }, + { + "id": 24, + "order": 0 + }, + { + "id": 25, + "order": 0 + }, + { + "id": 26, + "order": 0 + }, + { + "id": 27, + "order": 0 + }, + { + "id": 28, + "order": 0 + }, + { + "id": 29, + "order": 0 + }, + { + "id": 30, + "order": 0 + }, + { + "id": 31, + "order": 0 + }, + { + "id": 32, + "order": 0 + }, + { + "id": 33, + "order": 0 + }, + { + "id": 34, + "order": 0 + }, + { + "id": 35, + "order": 0 + }, + { + "id": 36, + "order": 0 + }, + { + "id": 37, + "order": 0 + }, + { + "id": 38, + "order": 0 + }, + { + "id": 39, + "order": 0 + }, + { + "id": 40, + "order": 0 + }, + { + "id": 41, + "order": 0 + }, + { + "id": 42, + "order": 0 + }, + { + "id": 43, + "order": 0 + }, + { + "id": 44, + "order": 0 + }, + { + "id": 45, + "order": 0 + }, + { + "id": 46, + "order": 0 + }, + { + "id": 47, + "order": 0 + }, + { + "id": 48, + "order": 0 + }, + { + "id": 49, + "order": 0 + }, + { + "id": 50, + "order": 0 + }, + { + "id": 51, + "order": 0 + }, + { + "id": 52, + "order": 0 + }, + { + "id": 53, + "order": 0 + }, + { + "id": 54, + "order": 0 + }, + { + "id": 55, + "order": 0 + }, + { + "id": 56, + "order": 0 + }, + { + "id": 57, + "order": 0 + }, + { + "id": 58, + "order": 0 + }, + { + "id": 59, + "order": 0 + }, + { + "id": 60, + "order": 0 + }, + { + "id": 61, + "order": 0 + }, + { + "id": 62, + "order": 0 + }, + { + "id": 63, + "order": 0 + }, + { + "id": 64, + "order": 0 + }, + { + "id": 65, + "order": 0 + }, + { + "id": 66, + "order": 0 + }, + { + "id": 67, + "order": 0 + }, + { + "id": 68, + "order": 0 + }, + { + "id": 69, + "order": 0 + }, + { + "id": 70, + "order": 0 + }, + { + "id": 71, + "order": 0 + }, + { + "id": 72, + "order": 0 + }, + { + "id": 73, + "order": 0 + }, + { + "id": 74, + "order": 0 + }, + { + "id": 75, + "order": 0 + }, + { + "id": 76, + "order": 0 + }, + { + "id": 77, + "order": 0 + }, + { + "id": 78, + "order": 0 + }, + { + "id": 79, + "order": 0 + }, + { + "id": 80, + "order": 0 + }, + { + "id": 81, + "order": 0 + }, + { + "id": 82, + "order": 0 + }, + { + "id": 83, + "order": 0 + }, + { + "id": 84, + "order": 0 + }, + { + "id": 85, + "order": 0 + }, + { + "id": 86, + "order": 0 + }, + { + "id": 87, + "order": 0 + }, + { + "id": 88, + "order": 0 + }, + { + "id": 89, + "order": 0 + }, + { + "id": 90, + "order": 0 + }, + { + "id": 91, + "order": 0 + }, + { + "id": 92, + "order": 0 + }, + { + "id": 93, + "order": 0 + }, + { + "id": 94, + "order": 0 + }, + { + "id": 95, + "order": 0 + }, + { + "id": 96, + "order": 0 + }, + { + "id": 97, + "order": 0 + }, + { + "id": 98, + "order": 0 + }, + { + "id": 99, + "order": 0 + }, + { + "id": 100, + "order": 0 + }, + { + "id": 101, + "order": 0 + }, + { + "id": 102, + "order": 0 + }, + { + "id": 103, + "order": 0 + }, + { + "id": 104, + "order": 0 + }, + { + "id": 105, + "order": 0 + }, + { + "id": 106, + "order": 0 + }, + { + "id": 107, + "order": 0 + }, + { + "id": 108, + "order": 0 + }, + { + "id": 109, + "order": 0 + }, + { + "id": 110, + "order": 0 + }, + { + "id": 111, + "order": 0 + }, + { + "id": 112, + "order": 0 + }, + { + "id": 113, + "order": 0 + }, + { + "id": 114, + "order": 0 + }, + { + "id": 115, + "order": 0 + }, + { + "id": 116, + "order": 0 + }, + { + "id": 117, + "order": 0 + }, + { + "id": 118, + "order": 0 + }, + { + "id": 119, + "order": 0 + }, + { + "id": 120, + "order": 0 + }, + { + "id": 121, + "order": 0 + }, + { + "id": 122, + "order": 0 + }, + { + "id": 123, + "order": 0 + }, + { + "id": 124, + "order": 0 + }, + { + "id": 125, + "order": 0 + }, + { + "id": 126, + "order": 0 + }, + { + "id": 127, + "order": 0 + }, + { + "id": 128, + "order": 0 + }, + { + "id": 129, + "order": 0 + }, + { + "id": 130, + "order": 0 + }, + { + "id": 131, + "order": 0 + }, + { + "id": 132, + "order": 0 + }, + { + "id": 133, + "order": 0 + }, + { + "id": 134, + "order": 0 + }, + { + "id": 135, + "order": 0 + }, + { + "id": 136, + "order": 0 + }, + { + "id": 137, + "order": 0 + }, + { + "id": 138, + "order": 0 + }, + { + "id": 139, + "order": 0 + }, + { + "id": 140, + "order": 0 + }, + { + "id": 141, + "order": 0 + }, + { + "id": 142, + "order": 0 + }, + { + "id": 143, + "order": 0 + }, + { + "id": 144, + "order": 0 + }, + { + "id": 145, + "order": 0 + }, + { + "id": 146, + "order": 0 + }, + { + "id": 147, + "order": 0 + }, + { + "id": 148, + "order": 0 + }, + { + "id": 149, + "order": 0 + }, + { + "id": 150, + "order": 0 + }, + { + "id": 151, + "order": 0 + }, + { + "id": 152, + "order": 0 + }, + { + "id": 153, + "order": 0 + }, + { + "id": 154, + "order": 0 + }, + { + "id": 155, + "order": 0 + }, + { + "id": 156, + "order": 0 + }, + { + "id": 157, + "order": 0 + }, + { + "id": 158, + "order": 0 + }, + { + "id": 159, + "order": 0 + }, + { + "id": 160, + "order": 0 + }, + { + "id": 161, + "order": 0 + }, + { + "id": 162, + "order": 5, + "prevSize": 28, + "code": 64, + "name": "globe", + "tempChar": "", + "ligatures": "" + }, + { + "id": 163, + "order": 0 + }, + { + "id": 164, + "order": 0 + }, + { + "id": 165, + "order": 0 + }, + { + "id": 166, + "order": 0 + }, + { + "id": 167, + "order": 0 + }, + { + "id": 168, + "order": 0 + }, + { + "id": 169, + "order": 0 + }, + { + "id": 170, + "order": 0 + }, + { + "id": 171, + "order": 0 + }, + { + "id": 172, + "order": 0 + }, + { + "id": 173, + "order": 0 + }, + { + "id": 174, + "order": 0 + }, + { + "id": 175, + "order": 0 + }, + { + "id": 176, + "order": 0 + }, + { + "id": 177, + "order": 0 + }, + { + "id": 178, + "order": 0 + }, + { + "id": 179, + "order": 0 + }, + { + "id": 180, + "order": 0 + }, + { + "id": 181, + "order": 0 + }, + { + "id": 182, + "order": 0 + }, + { + "id": 183, + "order": 0 + }, + { + "id": 184, + "order": 0 + }, + { + "id": 185, + "order": 0 + }, + { + "id": 186, + "order": 0 + }, + { + "id": 187, + "order": 0 + }, + { + "id": 188, + "order": 0 + }, + { + "id": 189, + "order": 0 + }, + { + "id": 190, + "order": 0 + }, + { + "id": 191, + "order": 0 + }, + { + "id": 192, + "order": 0 + }, + { + "id": 193, + "order": 0 + }, + { + "id": 194, + "order": 0 + }, + { + "id": 195, + "order": 0 + }, + { + "id": 196, + "order": 0 + }, + { + "id": 197, + "order": 0 + }, + { + "id": 198, + "order": 0 + }, + { + "id": 199, + "order": 0 + }, + { + "id": 200, + "order": 0 + }, + { + "id": 201, + "order": 0 + }, + { + "id": 202, + "order": 0 + }, + { + "id": 203, + "order": 0 + }, + { + "id": 204, + "order": 0 + }, + { + "id": 205, + "order": 0 + }, + { + "id": 206, + "order": 0 + }, + { + "id": 207, + "order": 0 + }, + { + "id": 208, + "order": 0 + }, + { + "id": 209, + "order": 0 + }, + { + "id": 210, + "order": 0 + }, + { + "id": 211, + "order": 0 + }, + { + "id": 212, + "order": 0 + }, + { + "id": 213, + "order": 0 + }, + { + "id": 214, + "order": 0 + }, + { + "id": 215, + "order": 0 + }, + { + "id": 216, + "order": 0 + }, + { + "id": 217, + "order": 0 + }, + { + "id": 218, + "order": 0 + }, + { + "id": 219, + "order": 0 + }, + { + "id": 220, + "order": 0 + }, + { + "id": 221, + "order": 0 + }, + { + "id": 222, + "order": 0 + }, + { + "id": 223, + "order": 0 + }, + { + "id": 224, + "order": 0 + }, + { + "id": 225, + "order": 0 + }, + { + "id": 226, + "order": 0 + }, + { + "id": 227, + "order": 0 + }, + { + "id": 228, + "order": 0 + }, + { + "id": 229, + "order": 0 + }, + { + "id": 230, + "order": 0 + }, + { + "id": 231, + "order": 0 + }, + { + "id": 232, + "order": 0 + }, + { + "id": 233, + "order": 0 + }, + { + "id": 234, + "order": 0 + }, + { + "id": 235, + "order": 0 + }, + { + "id": 236, + "order": 0 + }, + { + "id": 237, + "order": 0 + }, + { + "id": 238, + "order": 0 + }, + { + "id": 239, + "order": 0 + }, + { + "id": 240, + "order": 0 + }, + { + "id": 241, + "order": 0 + }, + { + "id": 242, + "order": 0 + }, + { + "id": 243, + "order": 0 + }, + { + "id": 244, + "order": 0 + }, + { + "id": 245, + "order": 0 + }, + { + "id": 246, + "order": 0 + }, + { + "id": 247, + "order": 0 + }, + { + "id": 248, + "order": 0 + }, + { + "id": 249, + "order": 0 + }, + { + "id": 250, + "order": 0 + }, + { + "id": 251, + "order": 0 + }, + { + "id": 252, + "order": 0 + }, + { + "id": 253, + "order": 0 + }, + { + "id": 254, + "order": 0 + }, + { + "id": 255, + "order": 0 + }, + { + "id": 256, + "order": 0 + }, + { + "id": 257, + "order": 0 + }, + { + "id": 258, + "order": 0 + }, + { + "id": 259, + "order": 0 + }, + { + "id": 260, + "order": 0 + }, + { + "id": 261, + "order": 0 + }, + { + "id": 262, + "order": 0 + }, + { + "id": 263, + "order": 0 + }, + { + "id": 264, + "order": 0 + }, + { + "id": 265, + "order": 0 + }, + { + "id": 266, + "order": 0 + }, + { + "id": 267, + "order": 0 + }, + { + "id": 268, + "order": 0 + }, + { + "id": 269, + "order": 0 + }, + { + "id": 270, + "order": 0 + }, + { + "id": 271, + "order": 0 + }, + { + "id": 272, + "order": 0 + }, + { + "id": 273, + "order": 0 + }, + { + "id": 274, + "order": 0 + }, + { + "id": 275, + "order": 0 + }, + { + "id": 276, + "order": 0 + }, + { + "id": 277, + "order": 0 + }, + { + "id": 278, + "order": 0 + }, + { + "id": 279, + "order": 0 + }, + { + "id": 280, + "order": 0 + }, + { + "id": 281, + "order": 0 + }, + { + "id": 282, + "order": 0 + }, + { + "id": 283, + "order": 0 + }, + { + "id": 284, + "order": 0 + }, + { + "id": 285, + "order": 0 + }, + { + "id": 286, + "order": 0 + }, + { + "id": 287, + "order": 0 + }, + { + "id": 288, + "order": 0 + }, + { + "id": 289, + "order": 0 + }, + { + "id": 290, + "order": 0 + }, + { + "id": 291, + "order": 0 + }, + { + "id": 292, + "order": 0 + }, + { + "id": 293, + "order": 0 + }, + { + "id": 294, + "order": 0 + }, + { + "id": 295, + "order": 0 + }, + { + "id": 296, + "order": 0 + }, + { + "id": 297, + "order": 0 + }, + { + "id": 298, + "order": 0 + }, + { + "id": 299, + "order": 0 + }, + { + "id": 300, + "order": 0 + }, + { + "id": 301, + "order": 0 + }, + { + "id": 302, + "order": 0 + }, + { + "id": 303, + "order": 0 + }, + { + "id": 304, + "order": 0 + }, + { + "id": 305, + "order": 0 + }, + { + "id": 306, + "order": 0 + }, + { + "id": 307, + "order": 0 + }, + { + "id": 308, + "order": 0 + }, + { + "id": 309, + "order": 0 + }, + { + "id": 310, + "order": 0 + }, + { + "id": 311, + "order": 0 + }, + { + "id": 312, + "order": 0 + }, + { + "id": 313, + "order": 0 + }, + { + "id": 314, + "order": 0 + }, + { + "id": 315, + "order": 0 + }, + { + "id": 316, + "order": 0 + }, + { + "id": 317, + "order": 0 + }, + { + "id": 318, + "order": 0 + }, + { + "id": 319, + "order": 0 + }, + { + "id": 320, + "order": 0 + }, + { + "id": 321, + "order": 0 + }, + { + "id": 322, + "order": 0 + }, + { + "id": 323, + "order": 0 + }, + { + "id": 324, + "order": 0 + }, + { + "id": 325, + "order": 0 + }, + { + "id": 326, + "order": 0 + }, + { + "id": 327, + "order": 0 + }, + { + "id": 328, + "order": 0 + }, + { + "id": 329, + "order": 0 + }, + { + "id": 330, + "order": 0 + }, + { + "id": 331, + "order": 0 + }, + { + "id": 332, + "order": 0 + }, + { + "id": 333, + "order": 0 + }, + { + "id": 334, + "order": 0 + }, + { + "id": 335, + "order": 0 + }, + { + "id": 336, + "order": 0 + }, + { + "id": 337, + "order": 0 + }, + { + "id": 338, + "order": 0 + }, + { + "id": 339, + "order": 0 + }, + { + "id": 340, + "order": 0 + }, + { + "id": 341, + "order": 0 + }, + { + "id": 342, + "order": 0 + }, + { + "id": 343, + "order": 0 + }, + { + "id": 344, + "order": 0 + }, + { + "id": 345, + "order": 0 + }, + { + "id": 346, + "order": 0 + }, + { + "id": 347, + "order": 0 + }, + { + "id": 348, + "order": 0 + }, + { + "id": 349, + "order": 0 + }, + { + "id": 350, + "order": 0 + }, + { + "id": 351, + "order": 0 + }, + { + "id": 352, + "order": 0 + }, + { + "id": 353, + "order": 0 + }, + { + "id": 354, + "order": 0 + }, + { + "id": 355, + "order": 0 + }, + { + "id": 356, + "order": 0 + }, + { + "id": 357, + "order": 0 + }, + { + "id": 358, + "order": 0 + }, + { + "id": 359, + "order": 0 + }, + { + "id": 360, + "order": 0 + }, + { + "id": 361, + "order": 0 + }, + { + "id": 362, + "order": 0 + }, + { + "id": 363, + "order": 0 + }, + { + "id": 364, + "order": 0 + }, + { + "id": 365, + "order": 0 + }, + { + "id": 366, + "order": 0 + }, + { + "id": 367, + "order": 0 + }, + { + "id": 368, + "order": 0 + }, + { + "id": 369, + "order": 0 + }, + { + "id": 370, + "order": 0 + }, + { + "id": 371, + "order": 0 + }, + { + "id": 372, + "order": 0 + }, + { + "id": 373, + "order": 0 + }, + { + "id": 374, + "order": 0 + }, + { + "id": 375, + "order": 0 + }, + { + "id": 376, + "order": 0 + }, + { + "id": 377, + "order": 0 + }, + { + "id": 378, + "order": 0 + }, + { + "id": 379, + "order": 0 + }, + { + "id": 380, + "order": 0 + }, + { + "id": 381, + "order": 0 + }, + { + "id": 382, + "order": 0 + }, + { + "id": 383, + "order": 0 + }, + { + "id": 384, + "order": 0 + }, + { + "id": 385, + "order": 0 + }, + { + "id": 386, + "order": 0 + }, + { + "id": 387, + "order": 0 + }, + { + "id": 388, + "order": 0 + }, + { + "id": 389, + "order": 0 + }, + { + "id": 390, + "order": 0 + }, + { + "id": 391, + "order": 0 + }, + { + "id": 392, + "order": 0 + }, + { + "id": 393, + "order": 0 + }, + { + "id": 394, + "order": 0 + }, + { + "id": 395, + "order": 0 + }, + { + "id": 396, + "order": 0 + }, + { + "id": 397, + "order": 0 + }, + { + "id": 398, + "order": 0 + }, + { + "id": 399, + "order": 0 + }, + { + "id": 400, + "order": 0 + }, + { + "id": 401, + "order": 0 + }, + { + "id": 402, + "order": 0 + }, + { + "id": 403, + "order": 0 + }, + { + "id": 404, + "order": 0 + }, + { + "id": 405, + "order": 0 + }, + { + "id": 406, + "order": 0 + }, + { + "id": 407, + "order": 0 + }, + { + "id": 408, + "order": 0 + }, + { + "id": 409, + "order": 0 + }, + { + "id": 410, + "order": 0 + }, + { + "id": 411, + "order": 0 + }, + { + "id": 412, + "order": 0 + }, + { + "id": 413, + "order": 0 + }, + { + "id": 414, + "order": 0 + }, + { + "id": 415, + "order": 0 + }, + { + "id": 416, + "order": 0 + }, + { + "id": 417, + "order": 0 + }, + { + "id": 418, + "order": 0 + }, + { + "id": 419, + "order": 0 + }, + { + "id": 420, + "order": 0 + }, + { + "id": 421, + "order": 0 + }, + { + "id": 422, + "order": 0 + }, + { + "id": 423, + "order": 0 + }, + { + "id": 424, + "order": 0 + }, + { + "id": 425, + "order": 0 + }, + { + "id": 426, + "order": 0 + }, + { + "id": 427, + "order": 0 + }, + { + "id": 428, + "order": 0 + }, + { + "id": 429, + "order": 0 + }, + { + "id": 430, + "order": 0 + }, + { + "id": 431, + "order": 0 + }, + { + "id": 432, + "order": 0 + }, + { + "id": 433, + "order": 0 + }, + { + "id": 434, + "order": 0 + }, + { + "id": 435, + "order": 0 + }, + { + "id": 436, + "order": 0 + }, + { + "id": 437, + "order": 0 + }, + { + "id": 438, + "order": 0 + } + ], + "id": 1, + "metadata": { + "name": "Font Awesome", + "url": "http://fortawesome.github.com/Font-Awesome/", + "designerURL": "https://github.com/davegandy", + "designer": "Dave Gandy", + "license": "CC BY 3.0", + "licenseURL": "http://creativecommons.org/licenses/by/3.0/" }, - "properties": { - "id": 72, - "order": 9, - "prevSize": 32, - "code": 56, - "name": "clock", - "ligatures": "" - }, - "setIdx": 0, - "iconIdx": 72 + "height": 1024, + "prevSize": 28, + "icons": [ + { + "id": 0, + "paths": [ + "M53.143 106.286q0-13.143 10.286-20.857t21.714-10 24.571-2.286h804.571q13.143 0 24.571 2.286t21.714 10 10.286 20.857q0 20-24.571 44.571l-361.143 361.143v438.857h182.857q14.857 0 25.714 10.857t10.857 25.714-10.857 25.714-25.714 10.857h-512q-14.857 0-25.714-10.857t-10.857-25.714 10.857-25.714 25.714-10.857h182.857v-438.857l-361.143-361.143q-24.571-24.571-24.571-44.571z" + ], + "tags": [ + "glass" + ], + "defaultCode": 61440, + "grid": 14, + "matchesSearch": false + }, + { + "id": 1, + "paths": [ + "M0 914.286q0-28.571 19.429-50.857t49.143-34.571 59.143-18.286 55.143-6q60 0 109.714 22.286v-552.571q0-17.714 10.857-32.286t28-20.286l475.429-146.286q6.857-2.286 16-2.286 22.857 0 38.857 16t16 38.857v640q0 28.571-19.429 50.857t-49.143 34.571-59.143 18.286-55.143 6-55.143-6-59.143-18.286-49.143-34.571-19.429-50.857 19.429-50.857 49.143-34.571 59.143-18.286 55.143-6q60 0 109.714 22.286v-306.857l-438.857 135.429v405.143q0 28.571-19.429 50.857t-49.143 34.571-59.143 18.286-55.143 6-55.143-6-59.143-18.286-49.143-34.571-19.429-50.857z" + ], + "tags": [ + "music" + ], + "defaultCode": 61441, + "grid": 14, + "matchesSearch": false + }, + { + "id": 2, + "paths": [ + "M0 475.429q0-81.714 31.714-156.286t85.714-128.571 128.571-85.714 156.286-31.714 156.286 31.714 128.571 85.714 85.714 128.571 31.714 156.286q0 125.714-70.857 228l196 196q21.143 21.143 21.143 51.429 0 29.714-21.714 51.429t-51.429 21.714q-30.857 0-51.429-21.714l-196-195.429q-102.286 70.857-228 70.857-81.714 0-156.286-31.714t-128.571-85.714-85.714-128.571-31.714-156.286zM146.286 475.429q0 105.714 75.143 180.857t180.857 75.143 180.857-75.143 75.143-180.857-75.143-180.857-180.857-75.143-180.857 75.143-75.143 180.857z" + ], + "width": 951, + "tags": [ + "search" + ], + "defaultCode": 61442, + "grid": 14, + "matchesSearch": false + }, + { + "id": 3, + "paths": [ + "M0 859.429v-621.714q0-37.714 26.857-64.571t64.571-26.857h841.143q37.714 0 64.571 26.857t26.857 64.571v621.714q0 37.714-26.857 64.571t-64.571 26.857h-841.143q-37.714 0-64.571-26.857t-26.857-64.571zM73.143 859.429q0 7.429 5.429 12.857t12.857 5.429h841.143q7.429 0 12.857-5.429t5.429-12.857v-438.857q-18.286 20.571-39.429 37.714-153.143 117.714-243.429 193.143-29.143 24.571-47.429 38.286t-49.429 27.714-58.571 14h-1.143q-27.429 0-58.571-14t-49.429-27.714-47.429-38.286q-90.286-75.429-243.429-193.143-21.143-17.143-39.429-37.714v438.857zM73.143 237.714q0 96 84 162.286 110.286 86.857 229.143 181.143 3.429 2.857 20 16.857t26.286 21.429 25.429 18 28.857 15.714 24.571 5.143h1.143q11.429 0 24.571-5.143t28.857-15.714 25.429-18 26.286-21.429 20-16.857q118.857-94.286 229.143-181.143 30.857-24.571 57.429-66t26.571-75.143v-14t-0.286-7.429-1.714-7.143-3.143-5.143-5.143-4.286-8-1.429h-841.143q-7.429 0-12.857 5.429t-5.429 12.857z" + ], + "tags": [ + "envelope-o" + ], + "defaultCode": 61443, + "grid": 14, + "matchesSearch": false + }, + { + "id": 4, + "paths": [ + "M0 340.571q0-125.714 72.571-196.571t200.571-70.857q35.429 0 72.286 12.286t68.571 33.143 54.571 39.143 43.429 38.857q20.571-20.571 43.429-38.857t54.571-39.143 68.571-33.143 72.286-12.286q128 0 200.571 70.857t72.571 196.571q0 126.286-130.857 257.143l-356 342.857q-10.286 10.286-25.143 10.286t-25.143-10.286l-356.571-344q-5.714-4.571-15.714-14.857t-31.714-37.429-38.857-55.714-30.571-69.143-13.429-78.857z" + ], + "tags": [ + "heart" + ], + "defaultCode": 61444, + "grid": 14, + "matchesSearch": false + }, + { + "id": 5, + "paths": [ + "M0 369.714q0-21.143 32-26.286l286.857-41.714 128.571-260q10.857-23.429 28-23.429t28 23.429l128.571 260 286.857 41.714q32 5.143 32 26.286 0 12.571-14.857 27.429l-207.429 202.286 49.143 285.714q0.571 4 0.571 11.429 0 12-6 20.286t-17.429 8.286q-10.857 0-22.857-6.857l-256.571-134.857-256.571 134.857q-12.571 6.857-22.857 6.857-12 0-18-8.286t-6-20.286q0-3.429 1.143-11.429l49.143-285.714-208-202.286q-14.286-15.429-14.286-27.429z" + ], + "width": 951, + "tags": [ + "star" + ], + "defaultCode": 61445, + "grid": 14, + "matchesSearch": false + }, + { + "id": 6, + "paths": [ + "M0 369.714q0-21.143 32-26.286l286.857-41.714 128.571-260q10.857-23.429 28-23.429t28 23.429l128.571 260 286.857 41.714q32 5.143 32 26.286 0 12.571-14.857 27.429l-207.429 202.286 49.143 285.714q0.571 4 0.571 11.429 0 28.571-23.429 28.571-10.857 0-22.857-6.857l-256.571-134.857-256.571 134.857q-12.571 6.857-22.857 6.857-12 0-18-8.286t-6-20.286q0-3.429 1.143-11.429l49.143-285.714-208-202.286q-14.286-15.429-14.286-27.429zM126.286 404l174.857 169.714-41.714 240.571 216-113.714 215.429 113.714-41.143-240.571 174.857-169.714-241.143-35.429-108-218.286-108 218.286z" + ], + "width": 951, + "tags": [ + "star-o" + ], + "defaultCode": 61446, + "grid": 14, + "matchesSearch": false + }, + { + "id": 7, + "paths": [ + "M0 802.857q0-30.286 2-59.143t8-62.286 15.143-62 24.571-55.714 35.429-46.286 48.857-30.571 63.714-11.429q5.143 0 24 12.286t42.571 27.429 61.714 27.429 76.286 12.286 76.286-12.286 61.714-27.429 42.571-27.429 24-12.286q34.857 0 63.714 11.429t48.857 30.571 35.429 46.286 24.571 55.714 15.143 62 8 62.286 2 59.143q0 68.571-41.714 108.286t-110.857 39.714h-499.429q-69.143 0-110.857-39.714t-41.714-108.286zM182.857 292.571q0-90.857 64.286-155.143t155.143-64.286 155.143 64.286 64.286 155.143-64.286 155.143-155.143 64.286-155.143-64.286-64.286-155.143z" + ], + "width": 805, + "tags": [ + "user" + ], + "defaultCode": 61447, + "grid": 14, + "matchesSearch": true + }, + { + "id": 8, + "paths": [ + "M0 932.571v-768q0-37.714 26.857-64.571t64.571-26.857h914.286q37.714 0 64.571 26.857t26.857 64.571v768q0 37.714-26.857 64.571t-64.571 26.857h-914.286q-37.714 0-64.571-26.857t-26.857-64.571zM73.143 841.143v73.143q0 14.857 10.857 25.714t25.714 10.857h73.143q14.857 0 25.714-10.857t10.857-25.714v-73.143q0-14.857-10.857-25.714t-25.714-10.857h-73.143q-14.857 0-25.714 10.857t-10.857 25.714zM73.143 694.857q0 14.857 10.857 25.714t25.714 10.857h73.143q14.857 0 25.714-10.857t10.857-25.714v-73.143q0-14.857-10.857-25.714t-25.714-10.857h-73.143q-14.857 0-25.714 10.857t-10.857 25.714v73.143zM73.143 475.429q0 14.857 10.857 25.714t25.714 10.857h73.143q14.857 0 25.714-10.857t10.857-25.714v-73.143q0-14.857-10.857-25.714t-25.714-10.857h-73.143q-14.857 0-25.714 10.857t-10.857 25.714v73.143zM73.143 256q0 14.857 10.857 25.714t25.714 10.857h73.143q14.857 0 25.714-10.857t10.857-25.714v-73.143q0-14.857-10.857-25.714t-25.714-10.857h-73.143q-14.857 0-25.714 10.857t-10.857 25.714v73.143zM292.571 914.286q0 14.857 10.857 25.714t25.714 10.857h438.857q14.857 0 25.714-10.857t10.857-25.714v-292.571q0-14.857-10.857-25.714t-25.714-10.857h-438.857q-14.857 0-25.714 10.857t-10.857 25.714v292.571zM292.571 475.429q0 14.857 10.857 25.714t25.714 10.857h438.857q14.857 0 25.714-10.857t10.857-25.714v-292.571q0-14.857-10.857-25.714t-25.714-10.857h-438.857q-14.857 0-25.714 10.857t-10.857 25.714v292.571zM877.714 841.143v73.143q0 14.857 10.857 25.714t25.714 10.857h73.143q14.857 0 25.714-10.857t10.857-25.714v-73.143q0-14.857-10.857-25.714t-25.714-10.857h-73.143q-14.857 0-25.714 10.857t-10.857 25.714zM877.714 694.857q0 14.857 10.857 25.714t25.714 10.857h73.143q14.857 0 25.714-10.857t10.857-25.714v-73.143q0-14.857-10.857-25.714t-25.714-10.857h-73.143q-14.857 0-25.714 10.857t-10.857 25.714v73.143zM877.714 475.429q0 14.857 10.857 25.714t25.714 10.857h73.143q14.857 0 25.714-10.857t10.857-25.714v-73.143q0-14.857-10.857-25.714t-25.714-10.857h-73.143q-14.857 0-25.714 10.857t-10.857 25.714v73.143zM877.714 256q0 14.857 10.857 25.714t25.714 10.857h73.143q14.857 0 25.714-10.857t10.857-25.714v-73.143q0-14.857-10.857-25.714t-25.714-10.857h-73.143q-14.857 0-25.714 10.857t-10.857 25.714v73.143z" + ], + "width": 1097, + "tags": [ + "film" + ], + "defaultCode": 61448, + "grid": 14, + "matchesSearch": false + }, + { + "id": 9, + "paths": [ + "M0 804.571v-219.429q0-29.714 21.714-51.429t51.429-21.714h292.571q29.714 0 51.429 21.714t21.714 51.429v219.429q0 29.714-21.714 51.429t-51.429 21.714h-292.571q-29.714 0-51.429-21.714t-21.714-51.429zM0 365.714v-219.429q0-29.714 21.714-51.429t51.429-21.714h292.571q29.714 0 51.429 21.714t21.714 51.429v219.429q0 29.714-21.714 51.429t-51.429 21.714h-292.571q-29.714 0-51.429-21.714t-21.714-51.429zM512 804.571v-219.429q0-29.714 21.714-51.429t51.429-21.714h292.571q29.714 0 51.429 21.714t21.714 51.429v219.429q0 29.714-21.714 51.429t-51.429 21.714h-292.571q-29.714 0-51.429-21.714t-21.714-51.429zM512 365.714v-219.429q0-29.714 21.714-51.429t51.429-21.714h292.571q29.714 0 51.429 21.714t21.714 51.429v219.429q0 29.714-21.714 51.429t-51.429 21.714h-292.571q-29.714 0-51.429-21.714t-21.714-51.429z" + ], + "width": 951, + "tags": [ + "th-large" + ], + "defaultCode": 61449, + "grid": 14, + "matchesSearch": false + }, + { + "id": 10, + "paths": [ + "M0 822.857v-109.714q0-22.857 16-38.857t38.857-16h182.857q22.857 0 38.857 16t16 38.857v109.714q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857zM0 530.286v-109.714q0-22.857 16-38.857t38.857-16h182.857q22.857 0 38.857 16t16 38.857v109.714q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857zM0 237.714v-109.714q0-22.857 16-38.857t38.857-16h182.857q22.857 0 38.857 16t16 38.857v109.714q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857zM365.714 822.857v-109.714q0-22.857 16-38.857t38.857-16h182.857q22.857 0 38.857 16t16 38.857v109.714q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857zM365.714 530.286v-109.714q0-22.857 16-38.857t38.857-16h182.857q22.857 0 38.857 16t16 38.857v109.714q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857zM365.714 237.714v-109.714q0-22.857 16-38.857t38.857-16h182.857q22.857 0 38.857 16t16 38.857v109.714q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857zM731.429 822.857v-109.714q0-22.857 16-38.857t38.857-16h182.857q22.857 0 38.857 16t16 38.857v109.714q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857zM731.429 530.286v-109.714q0-22.857 16-38.857t38.857-16h182.857q22.857 0 38.857 16t16 38.857v109.714q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857zM731.429 237.714v-109.714q0-22.857 16-38.857t38.857-16h182.857q22.857 0 38.857 16t16 38.857v109.714q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857z" + ], + "tags": [ + "th" + ], + "defaultCode": 61450, + "grid": 14, + "matchesSearch": false + }, + { + "id": 11, + "paths": [ + "M0 822.857v-109.714q0-22.857 16-38.857t38.857-16h182.857q22.857 0 38.857 16t16 38.857v109.714q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857zM0 530.286v-109.714q0-22.857 16-38.857t38.857-16h182.857q22.857 0 38.857 16t16 38.857v109.714q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857zM0 237.714v-109.714q0-22.857 16-38.857t38.857-16h182.857q22.857 0 38.857 16t16 38.857v109.714q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857zM365.714 822.857v-109.714q0-22.857 16-38.857t38.857-16h548.571q22.857 0 38.857 16t16 38.857v109.714q0 22.857-16 38.857t-38.857 16h-548.571q-22.857 0-38.857-16t-16-38.857zM365.714 530.286v-109.714q0-22.857 16-38.857t38.857-16h548.571q22.857 0 38.857 16t16 38.857v109.714q0 22.857-16 38.857t-38.857 16h-548.571q-22.857 0-38.857-16t-16-38.857zM365.714 237.714v-109.714q0-22.857 16-38.857t38.857-16h548.571q22.857 0 38.857 16t16 38.857v109.714q0 22.857-16 38.857t-38.857 16h-548.571q-22.857 0-38.857-16t-16-38.857z" + ], + "tags": [ + "th-list" + ], + "defaultCode": 61451, + "grid": 14, + "matchesSearch": false + }, + { + "id": 12, + "paths": [ + "M69.143 530.286q0-22.857 16-38.857l77.714-77.714q16-16 38.857-16t38.857 16l168 168.571 374.857-375.429q16-16 38.857-16t38.857 16l77.714 77.714q16 16 16 38.857t-16 38.857l-491.429 491.429q-16 16-38.857 16t-38.857-16l-284.571-284.571q-16-16-16-38.857z" + ], + "tags": [ + "check" + ], + "defaultCode": 61452, + "grid": 14, + "matchesSearch": false + }, + { + "id": 13, + "paths": [ + "M62.857 755.429q0-22.857 16-38.857l168-168-168-168q-16-16-16-38.857t16-38.857l77.714-77.714q16-16 38.857-16t38.857 16l168 168 168-168q16-16 38.857-16t38.857 16l77.714 77.714q16 16 16 38.857t-16 38.857l-168 168 168 168q16 16 16 38.857t-16 38.857l-77.714 77.714q-16 16-38.857 16t-38.857-16l-168-168-168 168q-16 16-38.857 16t-38.857-16l-77.714-77.714q-16-16-16-38.857z" + ], + "width": 805, + "tags": [ + "times" + ], + "defaultCode": 61453, + "grid": 14, + "matchesSearch": false + }, + { + "id": 14, + "paths": [ + "M0 475.429q0-81.714 31.714-156.286t85.714-128.571 128.571-85.714 156.286-31.714 156.286 31.714 128.571 85.714 85.714 128.571 31.714 156.286q0 125.714-70.857 228l196 196q21.143 21.143 21.143 51.429t-21.429 51.714-51.714 21.429q-30.857 0-51.429-21.714l-196-195.429q-102.286 70.857-228 70.857-81.714 0-156.286-31.714t-128.571-85.714-85.714-128.571-31.714-156.286zM146.286 475.429q0 105.714 75.143 180.857t180.857 75.143 180.857-75.143 75.143-180.857-75.143-180.857-180.857-75.143-180.857 75.143-75.143 180.857zM219.429 493.714v-36.571q0-7.429 5.429-12.857t12.857-5.429h128v-128q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857v128h128q7.429 0 12.857 5.429t5.429 12.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-128v128q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-128h-128q-7.429 0-12.857-5.429t-5.429-12.857z" + ], + "width": 951, + "tags": [ + "search-plus" + ], + "defaultCode": 61454, + "grid": 14, + "matchesSearch": false + }, + { + "id": 15, + "paths": [ + "M0 475.429q0-81.714 31.714-156.286t85.714-128.571 128.571-85.714 156.286-31.714 156.286 31.714 128.571 85.714 85.714 128.571 31.714 156.286q0 125.714-70.857 228l196 196q21.143 21.143 21.143 51.429t-21.429 51.714-51.714 21.429q-30.857 0-51.429-21.714l-196-195.429q-102.286 70.857-228 70.857-81.714 0-156.286-31.714t-128.571-85.714-85.714-128.571-31.714-156.286zM146.286 475.429q0 105.714 75.143 180.857t180.857 75.143 180.857-75.143 75.143-180.857-75.143-180.857-180.857-75.143-180.857 75.143-75.143 180.857zM219.429 493.714v-36.571q0-7.429 5.429-12.857t12.857-5.429h329.143q7.429 0 12.857 5.429t5.429 12.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-329.143q-7.429 0-12.857-5.429t-5.429-12.857z" + ], + "width": 951, + "tags": [ + "search-minus" + ], + "defaultCode": 61456, + "grid": 14, + "matchesSearch": false + }, + { + "id": 16, + "paths": [ + "M0 512q0-104 46-196t129.429-154.286q24.571-18.286 54.571-14.286t47.714 28.571q18.286 24 14 54t-28.286 48.286q-56 42.286-86.571 103.429t-30.571 130.286q0 59.429 23.143 113.429t62.571 93.429 93.429 62.571 113.429 23.143 113.429-23.143 93.429-62.571 62.571-93.429 23.143-113.429q0-69.143-30.571-130.286t-86.571-103.429q-24-18.286-28.286-48.286t14-54q17.714-24.571 48-28.571t54.286 14.286q83.429 62.286 129.429 154.286t46 196q0 89.143-34.857 170.286t-93.714 140-140 93.714-170.286 34.857-170.286-34.857-140-93.714-93.714-140-34.857-170.286zM365.714 438.857v-365.714q0-29.714 21.714-51.429t51.429-21.714 51.429 21.714 21.714 51.429v365.714q0 29.714-21.714 51.429t-51.429 21.714-51.429-21.714-21.714-51.429z" + ], + "tags": [ + "power-off" + ], + "defaultCode": 61457, + "grid": 14, + "matchesSearch": false + }, + { + "id": 17, + "paths": [ + "M0 932.571v-109.714q0-8 5.143-13.143t13.143-5.143h109.714q8 0 13.143 5.143t5.143 13.143v109.714q0 8-5.143 13.143t-13.143 5.143h-109.714q-8 0-13.143-5.143t-5.143-13.143zM219.429 932.571v-182.857q0-8 5.143-13.143t13.143-5.143h109.714q8 0 13.143 5.143t5.143 13.143v182.857q0 8-5.143 13.143t-13.143 5.143h-109.714q-8 0-13.143-5.143t-5.143-13.143zM438.857 932.571v-329.143q0-8 5.143-13.143t13.143-5.143h109.714q8 0 13.143 5.143t5.143 13.143v329.143q0 8-5.143 13.143t-13.143 5.143h-109.714q-8 0-13.143-5.143t-5.143-13.143zM658.286 932.571v-548.571q0-8 5.143-13.143t13.143-5.143h109.714q8 0 13.143 5.143t5.143 13.143v548.571q0 8-5.143 13.143t-13.143 5.143h-109.714q-8 0-13.143-5.143t-5.143-13.143zM877.714 932.571v-841.143q0-8 5.143-13.143t13.143-5.143h109.714q8 0 13.143 5.143t5.143 13.143v841.143q0 8-5.143 13.143t-13.143 5.143h-109.714q-8 0-13.143-5.143t-5.143-13.143z" + ], + "tags": [ + "signal" + ], + "defaultCode": 61458, + "grid": 14, + "matchesSearch": false + }, + { + "id": 18, + "paths": [ + "M0 574.286v-126.857q0-6.857 4.571-13.143t10.857-7.429l106.286-16q8-26.286 22.286-52.571-22.857-32.571-61.143-78.857-5.714-6.857-5.714-13.714 0-5.714 5.143-13.143 14.857-20.571 56.286-61.429t54-40.857q7.429 0 14.857 5.714l78.857 61.143q25.143-13.143 52-21.714 9.143-77.714 16.571-106.286 4-16 20.571-16h126.857q8 0 14 4.857t6.571 12.286l16 105.143q28 9.143 51.429 21.143l81.143-61.143q5.143-5.143 13.714-5.143 7.429 0 14.286 5.714 73.714 68 94.286 97.143 4 4.571 4 12.571 0 6.857-4.571 13.143-8.571 12-29.143 38t-30.857 40.286q14.857 28.571 23.429 56l104.571 16q7.429 1.143 12 7.143t4.571 13.429v126.857q0 6.857-4.571 13.143t-11.429 7.429l-105.714 16q-10.857 30.857-22.286 52 20 28.571 61.143 78.857 5.714 6.857 5.714 14.286t-5.143 13.143q-15.429 21.143-56.571 61.714t-53.714 40.571q-6.857 0-14.857-5.143l-78.857-61.714q-25.143 13.143-52 21.714-9.143 77.714-16.571 106.286-4 16-20.571 16h-126.857q-8 0-14-4.857t-6.571-12.286l-16-105.143q-28-9.143-51.429-21.143l-80.571 61.143q-5.714 5.143-14.286 5.143-8 0-14.286-6.286-72-65.143-94.286-96-4-5.714-4-13.143 0-6.857 4.571-13.143 8.571-12 29.143-38t30.857-40.286q-15.429-28.571-23.429-56.571l-104.571-15.429q-7.429-1.143-12-7.143t-4.571-13.429zM292.571 512q0 60.571 42.857 103.429t103.429 42.857 103.429-42.857 42.857-103.429-42.857-103.429-103.429-42.857-103.429 42.857-42.857 103.429z" + ], + "tags": [ + "gear", + "cog" + ], + "defaultCode": 61459, + "grid": 14, + "matchesSearch": false + }, + { + "id": 19, + "paths": [ + "M0 274.286v-36.571q0-8 5.143-13.143t13.143-5.143h176.571l40-95.429q8.571-21.143 30.857-36t45.143-14.857h182.857q22.857 0 45.143 14.857t30.857 36l40 95.429h176.571q8 0 13.143 5.143t5.143 13.143v36.571q0 8-5.143 13.143t-13.143 5.143h-54.857v541.714q0 47.429-26.857 82t-64.571 34.571h-475.429q-37.714 0-64.571-33.429t-26.857-80.857v-544h-54.857q-8 0-13.143-5.143t-5.143-13.143zM146.286 834.286q0 12.571 4 23.143t8.286 15.429 6 4.857h475.429q1.714 0 6-4.857t8.286-15.429 4-23.143v-541.714h-512v541.714zM219.429 749.714v-329.143q0-8 5.143-13.143t13.143-5.143h36.571q8 0 13.143 5.143t5.143 13.143v329.143q0 8-5.143 13.143t-13.143 5.143h-36.571q-8 0-13.143-5.143t-5.143-13.143zM274.286 219.429h256l-27.429-66.857q-4-5.143-9.714-6.286h-181.143q-5.714 1.143-9.714 6.286zM365.714 749.714v-329.143q0-8 5.143-13.143t13.143-5.143h36.571q8 0 13.143 5.143t5.143 13.143v329.143q0 8-5.143 13.143t-13.143 5.143h-36.571q-8 0-13.143-5.143t-5.143-13.143zM512 749.714v-329.143q0-8 5.143-13.143t13.143-5.143h36.571q8 0 13.143 5.143t5.143 13.143v329.143q0 8-5.143 13.143t-13.143 5.143h-36.571q-8 0-13.143-5.143t-5.143-13.143z" + ], + "width": 805, + "tags": [ + "trash-o" + ], + "defaultCode": 61460, + "grid": 14, + "matchesSearch": false + }, + { + "id": 20, + "paths": [ + "M14.857 514q0.571-7.714 6.286-12.286l410.857-342.286q18.286-14.857 43.429-14.857t43.429 14.857l139.429 116.571v-111.429q0-8 5.143-13.143t13.143-5.143h109.714q8 0 13.143 5.143t5.143 13.143v233.143l125.143 104q5.714 4.571 6.286 12.286t-4 13.429l-35.429 42.286q-4.571 5.143-12 6.286h-1.714q-7.429 0-12-4l-395.429-329.714-395.429 329.714q-6.857 4.571-13.714 4-7.429-1.143-12-6.286l-35.429-42.286q-4.571-5.714-4-13.429zM146.286 841.143v-274.286q0-0.571 0.286-1.714t0.286-1.714l328.571-270.857 328.571 270.857q0.571 1.143 0.571 3.429v274.286q0 14.857-10.857 25.714t-25.714 10.857h-219.429v-219.429h-146.286v219.429h-219.429q-14.857 0-25.714-10.857t-10.857-25.714z" + ], + "width": 951, + "tags": [ + "home" + ], + "defaultCode": 61461, + "grid": 14, + "matchesSearch": false + }, + { + "id": 21, + "paths": [ + "M0 969.143v-914.286q0-22.857 16-38.857t38.857-16h512q22.857 0 50.286 11.429t43.429 27.429l178.286 178.286q16 16 27.429 43.429t11.429 50.286v658.286q0 22.857-16 38.857t-38.857 16h-768q-22.857 0-38.857-16t-16-38.857zM73.143 950.857h731.429v-585.143h-237.714q-22.857 0-38.857-16t-16-38.857v-237.714h-438.857v877.714zM585.143 292.571h214.857q-5.714-16.571-12.571-23.429l-178.857-178.857q-6.857-6.857-23.429-12.571v214.857z" + ], + "tags": [ + "file-o" + ], + "defaultCode": 61462, + "grid": 14, + "matchesSearch": false + }, + { + "id": 22, + "paths": [ + "M0 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286zM128 512q0 84.571 41.714 156t113.143 113.143 156 41.714 156-41.714 113.143-113.143 41.714-156-41.714-156-113.143-113.143-156-41.714-156 41.714-113.143 113.143-41.714 156zM292.571 566.857v-36.571q0-8 5.143-13.143t13.143-5.143h128v-201.143q0-8 5.143-13.143t13.143-5.143h36.571q8 0 13.143 5.143t5.143 13.143v256q0 8-5.143 13.143t-13.143 5.143h-182.857q-8 0-13.143-5.143t-5.143-13.143z" + ], + "tags": [ + "clock-o" + ], + "defaultCode": 61463, + "grid": 14, + "matchesSearch": false + }, + { + "id": 23, + "paths": [ + "M28.571 836q0-30.857 14.857-66.286l238.286-596.571q4.571-10.857 14.857-18.857t21.714-8h193.714q-7.429 0-13.143 5.429t-6.286 12.857l-8.571 109.714q-0.571 8 4.571 13.143t12.571 5.143h94.857q7.429 0 12.571-5.143t4.571-13.143l-8.571-109.714q-0.571-7.429-6.286-12.857t-13.143-5.429h193.714q11.429 0 21.714 8t14.857 18.857l238.286 596.571q14.857 35.429 14.857 66.286 0 41.714-26.286 41.714h-402.286q7.429 0 12.571-5.429t4.571-12.857l-11.429-146.286q-0.571-7.429-6.286-12.857t-13.143-5.429h-155.429q-7.429 0-13.143 5.429t-6.286 12.857l-11.429 146.286q-0.571 7.429 4.571 12.857t12.571 5.429h-402.286q-26.286 0-26.286-41.714zM462.286 569.143q-0.571 6.857 4.571 11.429t12 4.571h139.429q6.857 0 12-4.571t4.571-11.429v-2.286l-13.714-182.857q-0.571-7.429-6.286-12.857t-13.143-5.429h-106.286q-7.429 0-13.143 5.429t-6.286 12.857l-13.714 182.857v2.286z" + ], + "width": 1097, + "tags": [ + "road" + ], + "defaultCode": 61464, + "grid": 14, + "matchesSearch": false + }, + { + "id": 24, + "paths": [ + "M0 822.857v-182.857q0-22.857 16-38.857t38.857-16h265.714l77.143 77.714q33.143 32 77.714 32t77.714-32l77.714-77.714h265.143q22.857 0 38.857 16t16 38.857v182.857q0 22.857-16 38.857t-38.857 16h-841.143q-22.857 0-38.857-16t-16-38.857zM185.714 314.857q9.714-22.286 33.714-22.286h146.286v-256q0-14.857 10.857-25.714t25.714-10.857h146.286q14.857 0 25.714 10.857t10.857 25.714v256h146.286q24 0 33.714 22.286 9.714 23.429-8 40l-256 256q-10.286 10.857-25.714 10.857t-25.714-10.857l-256-256q-17.714-16.571-8-40zM658.286 768q0 14.857 10.857 25.714t25.714 10.857 25.714-10.857 10.857-25.714-10.857-25.714-25.714-10.857-25.714 10.857-10.857 25.714zM804.571 768q0 14.857 10.857 25.714t25.714 10.857 25.714-10.857 10.857-25.714-10.857-25.714-25.714-10.857-25.714 10.857-10.857 25.714z" + ], + "width": 951, + "tags": [ + "download" + ], + "defaultCode": 61465, + "grid": 14, + "matchesSearch": false + }, + { + "id": 25, + "paths": [ + "M0 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286zM128 512q0 84.571 41.714 156t113.143 113.143 156 41.714 156-41.714 113.143-113.143 41.714-156-41.714-156-113.143-113.143-156-41.714-156 41.714-113.143 113.143-41.714 156zM238.857 523.429q4.571-11.429 17.143-11.429h109.714v-201.143q0-8 5.143-13.143t13.143-5.143h109.714q8 0 13.143 5.143t5.143 13.143v201.143h109.714q8 0 13.143 5.143t5.143 13.143q0 6.857-5.714 13.714l-182.286 182.286q-6.286 5.143-13.143 5.143t-13.143-5.143l-182.857-182.857q-8.571-9.143-4-20z" + ], + "tags": [ + "arrow-circle-o-down" + ], + "defaultCode": 61466, + "grid": 14, + "matchesSearch": false + }, + { + "id": 26, + "paths": [ + "M0 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286zM128 512q0 84.571 41.714 156t113.143 113.143 156 41.714 156-41.714 113.143-113.143 41.714-156-41.714-156-113.143-113.143-156-41.714-156 41.714-113.143 113.143-41.714 156zM237.714 493.714q0-6.857 5.714-13.714l182.286-182.286q6.286-5.143 13.143-5.143t13.143 5.143l182.857 182.857q8.571 9.143 4 20-4.571 11.429-17.143 11.429h-109.714v201.143q0 8-5.143 13.143t-13.143 5.143h-109.714q-8 0-13.143-5.143t-5.143-13.143v-201.143h-109.714q-8 0-13.143-5.143t-5.143-13.143z" + ], + "tags": [ + "arrow-circle-o-up" + ], + "defaultCode": 61467, + "grid": 14, + "matchesSearch": false + }, + { + "id": 27, + "paths": [ + "M0 841.143v-275.429q0-35.429 14.286-70.286l136-315.429q5.714-14.286 20.857-24t30-9.714h475.429q14.857 0 30 9.714t20.857 24l136 315.429q14.286 34.857 14.286 70.286v275.429q0 14.857-10.857 25.714t-25.714 10.857h-804.571q-14.857 0-25.714-10.857t-10.857-25.714zM112.571 548.571h180.571l54.286 109.714h182.857l54.286-109.714h180.571q-0.571-1.714-1.429-4.571t-1.429-4.571l-121.143-283.429h-404.571l-121.143 283.429q-0.571 1.143-1.429 4.571t-1.429 4.571z" + ], + "tags": [ + "inbox" + ], + "defaultCode": 61468, + "grid": 14, + "matchesSearch": false + }, + { + "id": 28, + "paths": [ + "M0 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286zM128 512q0 84.571 41.714 156t113.143 113.143 156 41.714 156-41.714 113.143-113.143 41.714-156-41.714-156-113.143-113.143-156-41.714-156 41.714-113.143 113.143-41.714 156zM292.571 694.857v-365.714q0-21.143 18.286-32 18.857-10.286 36.571 0.571l310.857 182.857q18.286 10.286 18.286 31.429t-18.286 31.429l-310.857 182.857q-8.571 5.143-18.286 5.143-9.143 0-18.286-4.571-18.286-10.857-18.286-32z" + ], + "tags": [ + "play-circle-o" + ], + "defaultCode": 61469, + "grid": 14, + "matchesSearch": false + }, + { + "id": 29, + "paths": [ + "M0 512q0-89.143 34.857-170.286t93.714-140 140-93.714 170.286-34.857q84 0 162.571 31.714t139.714 89.429l74.286-73.714q16.571-17.714 40-8 22.286 9.714 22.286 33.714v256q0 14.857-10.857 25.714t-25.714 10.857h-256q-24 0-33.714-22.857-9.714-22.286 8-39.429l78.857-78.857q-84.571-78.286-199.429-78.286-59.429 0-113.429 23.143t-93.429 62.571-62.571 93.429-23.143 113.429 23.143 113.429 62.571 93.429 93.429 62.571 113.429 23.143q68 0 128.571-29.714t102.286-84q4-5.714 13.143-6.857 8 0 14.286 5.143l78.286 78.857q5.143 4.571 5.429 11.714t-4.286 12.857q-62.286 75.429-150.857 116.857t-186.857 41.429q-89.143 0-170.286-34.857t-140-93.714-93.714-140-34.857-170.286z" + ], + "tags": [ + "rotate-right", + "repeat" + ], + "defaultCode": 61470, + "grid": 14, + "matchesSearch": false + }, + { + "id": 30, + "paths": [ + "M0 877.714v-256q0-14.857 10.857-25.714t25.714-10.857h256q14.857 0 25.714 10.857t10.857 25.714-10.857 25.714l-78.286 78.286q40.571 37.714 92 58.286t106.857 20.571q76.571 0 142.857-37.143t106.286-102.286q6.286-9.714 30.286-66.857 4.571-13.143 17.143-13.143h109.714q7.429 0 12.857 5.429t5.429 12.857q0 2.857-0.571 4-36.571 153.143-153.143 248.286t-273.143 95.143q-83.429 0-161.429-31.429t-139.143-89.714l-73.714 73.714q-10.857 10.857-25.714 10.857t-25.714-10.857-10.857-25.714zM10.286 420.571v-4q37.143-153.143 154.286-248.286t274.286-95.143q83.429 0 162.286 31.714t140 89.429l74.286-73.714q10.857-10.857 25.714-10.857t25.714 10.857 10.857 25.714v256q0 14.857-10.857 25.714t-25.714 10.857h-256q-14.857 0-25.714-10.857t-10.857-25.714 10.857-25.714l78.857-78.857q-84.571-78.286-199.429-78.286-76.571 0-142.857 37.143t-106.286 102.286q-6.286 9.714-30.286 66.857-4.571 13.143-17.143 13.143h-113.714q-7.429 0-12.857-5.429t-5.429-12.857z" + ], + "tags": [ + "refresh" + ], + "defaultCode": 61473, + "grid": 14, + "matchesSearch": false + }, + { + "id": 31, + "paths": [ + "M0 786.286v-621.714q0-37.714 26.857-64.571t64.571-26.857h841.143q37.714 0 64.571 26.857t26.857 64.571v621.714q0 37.714-26.857 64.571t-64.571 26.857h-841.143q-37.714 0-64.571-26.857t-26.857-64.571zM73.143 786.286q0 7.429 5.429 12.857t12.857 5.429h841.143q7.429 0 12.857-5.429t5.429-12.857v-475.429q0-7.429-5.429-12.857t-12.857-5.429h-841.143q-7.429 0-12.857 5.429t-5.429 12.857v475.429zM146.286 713.143v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857zM146.286 566.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857zM146.286 420.571v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857zM292.571 713.143v-36.571q0-7.429 5.429-12.857t12.857-5.429h548.571q7.429 0 12.857 5.429t5.429 12.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-548.571q-7.429 0-12.857-5.429t-5.429-12.857zM292.571 566.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h548.571q7.429 0 12.857 5.429t5.429 12.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-548.571q-7.429 0-12.857-5.429t-5.429-12.857zM292.571 420.571v-36.571q0-7.429 5.429-12.857t12.857-5.429h548.571q7.429 0 12.857 5.429t5.429 12.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-548.571q-7.429 0-12.857-5.429t-5.429-12.857z" + ], + "tags": [ + "list-alt" + ], + "defaultCode": 61474, + "grid": 14, + "matchesSearch": false + }, + { + "id": 32, + "paths": [ + "M0 822.857v-329.143q0-22.857 16-38.857t38.857-16h18.286v-109.714q0-105.143 75.429-180.571t180.571-75.429 180.571 75.429 75.429 180.571v109.714h18.286q22.857 0 38.857 16t16 38.857v329.143q0 22.857-16 38.857t-38.857 16h-548.571q-22.857 0-38.857-16t-16-38.857zM182.857 438.857h292.571v-109.714q0-60.571-42.857-103.429t-103.429-42.857-103.429 42.857-42.857 103.429v109.714z" + ], + "width": 658, + "tags": [ + "lock" + ], + "defaultCode": 61475, + "grid": 14, + "matchesSearch": false + }, + { + "id": 33, + "paths": [ + "M36.571 146.286q0-30.286 21.429-51.714t51.714-21.429 51.714 21.429 21.429 51.714q0 41.143-36.571 62.857v723.429q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-723.429q-36.571-21.714-36.571-62.857zM182.857 694.857v-424q0-18.286 17.714-31.429 12-8 45.143-24.571 134.857-68.571 240.571-68.571 61.143 0 114.286 16.571t125.143 50.286q21.714 10.857 50.286 10.857 30.857 0 67.143-12t62.857-26.857 50.286-26.857 31.143-12q14.857 0 25.714 10.857t10.857 25.714v436q0 14.286-7.143 22t-22.571 15.714q-122.857 66.286-210.857 66.286-34.857 0-70.571-12.571t-62-27.429-66-27.429-81.429-12.571q-109.714 0-265.143 83.429-9.714 5.143-18.857 5.143-14.857 0-25.714-10.857t-10.857-25.714z" + ], + "tags": [ + "flag" + ], + "defaultCode": 61476, + "grid": 14, + "matchesSearch": false + }, + { + "id": 34, + "paths": [ + "M0 506.286q0-86.286 38.286-166.286t102.286-138.571 152-93.429 182.857-34.857 182.857 34.857 152 93.429 102.286 138.571 38.286 166.286q0 94.857-34.286 179.429l-11.429 28-105.714 18.857q-12.571 47.429-51.714 78t-89.429 30.571v18.286q0 8-5.143 13.143t-13.143 5.143h-36.571q-8 0-13.143-5.143t-5.143-13.143v-329.143q0-8 5.143-13.143t13.143-5.143h36.571q8 0 13.143 5.143t5.143 13.143v18.286q40.571 0 74.286 20.286t53.143 54.571l38.857-6.857q16.571-54.286 16.571-110.286 0-84.571-50.286-159.429t-135.143-119.429-180.286-44.571-180.286 44.571-135.143 119.429-50.286 159.429q0 56 16.571 110.286l38.857 6.857q19.429-34.286 53.143-54.571t74.286-20.286v-18.286q0-8 5.143-13.143t13.143-5.143h36.571q8 0 13.143 5.143t5.143 13.143v329.143q0 8-5.143 13.143t-13.143 5.143h-36.571q-8 0-13.143-5.143t-5.143-13.143v-18.286q-50.286 0-89.429-30.571t-51.714-78l-105.714-18.857-11.429-28q-34.286-84.571-34.286-179.429z" + ], + "width": 951, + "tags": [ + "headphones" + ], + "defaultCode": 61477, + "grid": 14, + "matchesSearch": false + }, + { + "id": 35, + "paths": [ + "M0 621.714v-219.429q0-14.857 10.857-25.714t25.714-10.857h149.714l190.286-190.286q10.857-10.857 25.714-10.857t25.714 10.857 10.857 25.714v621.714q0 14.857-10.857 25.714t-25.714 10.857-25.714-10.857l-190.286-190.286h-149.714q-14.857 0-25.714-10.857t-10.857-25.714z" + ], + "width": 439, + "tags": [ + "volume-off" + ], + "defaultCode": 61478, + "grid": 14, + "matchesSearch": false + }, + { + "id": 36, + "paths": [ + "M0 621.714v-219.429q0-14.857 10.857-25.714t25.714-10.857h149.714l190.286-190.286q10.857-10.857 25.714-10.857t25.714 10.857 10.857 25.714v621.714q0 14.857-10.857 25.714t-25.714 10.857-25.714-10.857l-190.286-190.286h-149.714q-14.857 0-25.714-10.857t-10.857-25.714zM518.857 612.571q0-12 6.857-20.286t16.571-14.286 19.429-13.143 16.571-20.286 6.857-32.571-6.857-32.571-16.571-20.286-19.429-13.143-16.571-14.286-6.857-20.286q0-15.429 10.857-26t25.714-10.571q8.571 0 14.286 2.857 40 15.429 64.286 53.143t24.286 81.143-24.286 80.857-64.286 53.429q-5.714 2.857-14.286 2.857-14.857 0-25.714-10.571t-10.857-26z" + ], + "width": 658, + "tags": [ + "volume-down" + ], + "defaultCode": 61479, + "grid": 14, + "matchesSearch": false + }, + { + "id": 37, + "paths": [ + "M0 621.714v-219.429q0-14.857 10.857-25.714t25.714-10.857h149.714l190.286-190.286q10.857-10.857 25.714-10.857t25.714 10.857 10.857 25.714v621.714q0 14.857-10.857 25.714t-25.714 10.857-25.714-10.857l-190.286-190.286h-149.714q-14.857 0-25.714-10.857t-10.857-25.714zM518.857 612.571q0-12 6.857-20.286t16.571-14.286 19.429-13.143 16.571-20.286 6.857-32.571-6.857-32.571-16.571-20.286-19.429-13.143-16.571-14.286-6.857-20.286q0-15.429 10.857-26t25.714-10.571q8.571 0 14.286 2.857 40 15.429 64.286 53.143t24.286 81.143-24.286 80.857-64.286 53.429q-5.714 2.857-14.286 2.857-14.857 0-25.714-10.571t-10.857-26zM576 747.429q0-22.286 22.286-33.714 32-16.571 43.429-25.143 42.286-30.857 66-77.429t23.714-99.143-23.714-99.143-66-77.429q-11.429-8.571-43.429-25.143-22.286-11.429-22.286-33.714 0-14.857 10.857-25.714t25.714-10.857q7.429 0 14.857 2.857 80 33.714 128.571 107.714t48.571 161.429-48.571 161.429-128.571 107.714q-7.429 2.857-14.286 2.857-15.429 0-26.286-10.857t-10.857-25.714zM633.714 881.714q0-20.571 22.286-33.714 4-2.286 12.857-6t12.857-6q26.286-14.286 46.857-29.143 70.286-52 109.714-129.714t39.429-165.143-39.429-165.143-109.714-129.714q-20.571-14.857-46.857-29.143-4-2.286-12.857-6t-12.857-6q-22.286-13.143-22.286-33.714 0-14.857 10.857-25.714t25.714-10.857q7.429 0 14.857 2.857 120.571 52 193.143 162t72.571 241.429-72.571 241.429-193.143 162q-7.429 2.857-14.857 2.857-14.857 0-25.714-10.857t-10.857-25.714z" + ], + "width": 951, + "tags": [ + "volume-up" + ], + "defaultCode": 61480, + "grid": 14, + "matchesSearch": false + }, + { + "id": 38, + "paths": [ + "M0 877.714v-365.714h365.714v365.714h-365.714zM0 438.857v-365.714h365.714v365.714h-365.714zM73.143 804h219.429v-218.857h-219.429v218.857zM73.143 365.714h219.429v-219.429h-219.429v219.429zM146.286 731.429v-73.143h73.143v73.143h-73.143zM146.286 292.571v-73.143h73.143v73.143h-73.143zM438.857 877.714v-365.714h219.429v73.143h73.143v-73.143h73.143v219.429h-219.429v-73.143h-73.143v219.429h-73.143zM438.857 438.857v-365.714h365.714v365.714h-365.714zM512 365.714h219.429v-219.429h-219.429v219.429zM585.143 877.714v-73.143h73.143v73.143h-73.143zM585.143 292.571v-73.143h73.143v73.143h-73.143zM731.429 877.714v-73.143h73.143v73.143h-73.143z" + ], + "width": 805, + "tags": [ + "qrcode" + ], + "defaultCode": 61481, + "grid": 14, + "matchesSearch": false + }, + { + "id": 39, + "paths": [ + "M0 877.714v-804.571h36v804.571h-36zM53.714 877.143v-804h18.286v804h-18.286zM108 877.143v-804h17.714v804h-17.714zM197.714 877.143v-804h17.714v804h-17.714zM269.714 877.143v-804h35.429v804h-35.429zM359.429 877.143v-804h17.714v804h-17.714zM395.429 877.143v-804h17.714v804h-17.714zM431.429 877.143v-804h17.714v804h-17.714zM502.857 877.143v-804h36v804h-36zM592.571 877.143v-804h36v804h-36zM664.571 877.143v-804h36v804h-36zM736.571 877.143v-804h36v804h-36zM790.286 877.143v-804h36v804h-36zM880.571 877.143v-804h53.714v804h-53.714zM952 877.143v-804h18.286v804h-18.286zM988 877.714v-804.571h36v804.571h-36z" + ], + "tags": [ + "barcode" + ], + "defaultCode": 61482, + "grid": 14, + "matchesSearch": false + }, + { + "id": 40, + "paths": [ + "M0 384v-237.714q0-29.714 21.714-51.429t51.429-21.714h237.714q30.286 0 66.857 15.143t58.286 36.857l408.571 408q21.143 22.286 21.143 52 0 30.286-21.143 51.429l-280.571 281.143q-22.286 21.143-52 21.143-30.286 0-51.429-21.143l-408.571-409.143q-21.714-21.143-36.857-57.714t-15.143-66.857zM109.714 256q0 30.286 21.429 51.714t51.714 21.429 51.714-21.429 21.429-51.714-21.429-51.714-51.714-21.429-51.714 21.429-21.429 51.714z" + ], + "tags": [ + "tag" + ], + "defaultCode": 61483, + "grid": 14, + "matchesSearch": false + }, + { + "id": 41, + "paths": [ + "M0 384v-237.714q0-29.714 21.714-51.429t51.429-21.714h237.714q30.286 0 66.857 15.143t58.286 36.857l408.571 408q21.143 22.286 21.143 52 0 30.286-21.143 51.429l-280.571 281.143q-22.286 21.143-52 21.143-30.286 0-51.429-21.143l-408.571-409.143q-21.714-21.143-36.857-57.714t-15.143-66.857zM109.714 256q0 30.286 21.429 51.714t51.714 21.429 51.714-21.429 21.429-51.714-21.429-51.714-51.714-21.429-51.714 21.429-21.429 51.714zM402.286 73.143h128q30.286 0 66.857 15.143t58.286 36.857l408.571 408q21.143 22.286 21.143 52 0 30.286-21.143 51.429l-280.571 281.143q-22.286 21.143-52 21.143-20.571 0-33.714-8t-30.286-25.714l268.571-268.571q21.143-21.143 21.143-51.429 0-29.714-21.143-52l-408.571-408q-21.714-21.714-58.286-36.857t-66.857-15.143z" + ], + "width": 1097, + "tags": [ + "tags" + ], + "defaultCode": 61484, + "grid": 14, + "matchesSearch": false + }, + { + "id": 42, + "paths": [ + "M5.714 772.571q0-2.286 1.714-15.429t2.286-21.143q0.571-4.571-1.714-12.286t-1.714-11.143q1.143-6.286 4.571-12t9.429-13.429 9.429-13.429q13.143-21.714 25.714-52.286t17.143-52.286q1.714-5.714 0.286-17.143t-0.286-16q1.714-6.286 9.714-16t9.714-13.143q12-20.571 24-52.571t14.286-51.429q0.571-5.143-1.429-18.286t0.286-16q2.286-7.429 12.571-17.429t12.571-12.857q10.857-14.857 24.286-48.286t15.714-55.143q0.571-4.571-1.714-14.571t-1.143-15.143q1.143-4.571 5.143-10.286t10.286-13.143 9.714-12q4.571-6.857 9.429-17.429t8.571-20 9.143-20.571 11.143-18.286 15.143-13.429 20.571-6.571 27.143 3.143l-0.571 1.714q21.714-5.143 29.143-5.143h434.857q42.286 0 65.143 32t10.286 74.286l-156.571 517.714q-20.571 68-40.857 87.714t-73.429 19.714h-496.571q-15.429 0-21.714 8.571-6.286 9.143-0.571 24.571 13.714 40 82.286 40h527.429q16.571 0 32-8.857t20-23.714l171.429-564q4-12.571 2.857-32.571 21.714 8.571 33.714 24.571 22.857 32.571 10.286 73.714l-157.143 517.714q-10.857 36.571-43.714 61.429t-70 24.857h-527.429q-44 0-84.857-30.571t-56.857-75.143q-13.714-38.286-1.143-72.571zM281.143 420.571q-2.286 7.429 1.143 12.857t11.429 5.429h347.429q7.429 0 14.571-5.429t9.429-12.857l12-36.571q2.286-7.429-1.143-12.857t-11.429-5.429h-347.429q-7.429 0-14.571 5.429t-9.429 12.857zM328.571 274.286q-2.286 7.429 1.143 12.857t11.429 5.429h347.429q7.429 0 14.571-5.429t9.429-12.857l12-36.571q2.286-7.429-1.143-12.857t-11.429-5.429h-347.429q-7.429 0-14.571 5.429t-9.429 12.857z" + ], + "width": 951, + "tags": [ + "book" + ], + "defaultCode": 61485, + "grid": 14, + "matchesSearch": false + }, + { + "id": 43, + "paths": [ + "M0 873.714v-736.571q0-19.429 11.143-35.429t30-23.429q12-5.143 25.143-5.143h598.857q13.143 0 25.143 5.143 18.857 7.429 30 23.429t11.143 35.429v736.571q0 19.429-11.143 35.429t-30 23.429q-10.857 4.571-25.143 4.571-27.429 0-47.429-18.286l-252-242.286-252 242.286q-20.571 18.857-47.429 18.857-13.143 0-25.143-5.143-18.857-7.429-30-23.429t-11.143-35.429z" + ], + "width": 731, + "tags": [ + "bookmark" + ], + "defaultCode": 61486, + "grid": 14, + "matchesSearch": false + }, + { + "id": 44, + "paths": [ + "M0 786.286v-237.714q0-45.143 32.286-77.429t77.429-32.286h36.571v-310.857q0-22.857 16-38.857t38.857-16h384q22.857 0 50.286 11.429t43.429 27.429l86.857 86.857q16 16 27.429 43.429t11.429 50.286v146.286h36.571q45.143 0 77.429 32.286t32.286 77.429v237.714q0 7.429-5.429 12.857t-12.857 5.429h-128v91.429q0 22.857-16 38.857t-38.857 16h-548.571q-22.857 0-38.857-16t-16-38.857v-91.429h-128q-7.429 0-12.857-5.429t-5.429-12.857zM219.429 877.714h512v-146.286h-512v146.286zM219.429 512h512v-219.429h-91.429q-22.857 0-38.857-16t-16-38.857v-91.429h-365.714v365.714zM804.571 548.571q0 14.857 10.857 25.714t25.714 10.857 25.714-10.857 10.857-25.714-10.857-25.714-25.714-10.857-25.714 10.857-10.857 25.714z" + ], + "width": 951, + "tags": [ + "print" + ], + "defaultCode": 61487, + "grid": 14, + "matchesSearch": false + }, + { + "id": 45, + "paths": [ + "M0 804.571v-512q0-60.571 42.857-103.429t103.429-42.857h128l29.143-77.714q10.857-28 39.714-48.286t59.143-20.286h292.571q30.286 0 59.143 20.286t39.714 48.286l29.143 77.714h128q60.571 0 103.429 42.857t42.857 103.429v512q0 60.571-42.857 103.429t-103.429 42.857h-804.571q-60.571 0-103.429-42.857t-42.857-103.429zM292.571 548.571q0 105.714 75.143 180.857t180.857 75.143 180.857-75.143 75.143-180.857-75.143-180.857-180.857-75.143-180.857 75.143-75.143 180.857zM384 548.571q0-68 48.286-116.286t116.286-48.286 116.286 48.286 48.286 116.286-48.286 116.286-116.286 48.286-116.286-48.286-48.286-116.286z" + ], + "width": 1097, + "tags": [ + "camera" + ], + "defaultCode": 61488, + "grid": 14, + "matchesSearch": false + }, + { + "id": 46, + "paths": [ + "M0 950.857l1.143-45.143q13.143-4 32-7.143t32.571-6 28.286-8.286 25.429-16.571 17.714-28.857l135.429-352 160-413.714h73.143q4.571 8 6.286 12l117.143 274.286q18.857 44.571 60.571 147.143t65.143 156.857q8.571 19.429 33.143 82.571t41.143 96.286q11.429 25.714 20 32.571 10.857 8.571 50.286 16.857t48 11.714q3.429 21.714 3.429 32.571 0 2.286-0.286 7.429t-0.286 7.429q-36 0-108.571-4.571t-109.143-4.571q-43.429 0-122.857 4t-101.714 4.571q0-24.571 2.286-44.571l74.857-16q0.571 0 7.143-1.429t8.857-2 8.286-2.571 8.571-3.714 6.286-4.571 5.143-6.286 1.429-8q0-9.143-17.714-55.143t-41.143-101.429-24-57.143l-257.143-1.143q-14.857 33.143-43.714 111.714t-28.857 92.857q0 12.571 8 21.429t24.857 14 27.714 7.714 32.571 4.857 23.429 2.286q0.571 10.857 0.571 33.143 0 5.143-1.143 15.429-33.143 0-99.714-5.714t-99.714-5.714q-4.571 0-15.143 2.286t-12.286 2.286q-45.714 8-107.429 8zM317.143 576.571q18.857 0 78 1.143t91.714 1.143q10.857 0 32.571-1.143-49.714-144.571-105.143-258.286z" + ], + "width": 951, + "tags": [ + "font" + ], + "defaultCode": 61489, + "grid": 14, + "matchesSearch": false + }, + { + "id": 47, + "paths": [ + "M0 950.857l1.143-53.714q8.571-2.286 48.571-9.143t60.571-15.429q4-6.857 7.143-15.429t4.857-19.143 3.143-18.571 1.714-21.429 0.286-19.429v-37.429q0-561.143-12.571-585.714-2.286-4.571-12.571-8.286t-25.429-6.286-28.286-4-27.714-2.571-17.429-1.714l-2.286-47.429q56-1.143 194.286-6.571t213.143-5.429q13.143 0 39.143 0.286t38.571 0.286q40 0 78 7.429t73.429 24 61.714 40.571 42.286 59.714 16 78.571q0 29.714-9.429 54.571t-22.286 41.143-36.857 32.857-41.714 25.714-48 22.857q88 20 146.571 76.571t58.571 141.714q0 57.143-20 102.571t-53.429 74.571-78.857 48.857-93.429 27.714-100.571 8q-25.143 0-75.429-1.714t-75.429-1.714q-60.571 0-175.429 6.286t-132 6.857zM304.571 139.429q0 28.571 2.286 86.286t2.286 86.857q0 15.429-0.286 45.714t-0.286 45.143q0 26.286 0.571 39.429 24 4 62.286 4 46.857 0 81.714-7.429t62.857-25.429 42.571-51.143 14.571-81.143q0-40-16.571-70t-45.143-46.857-61.714-24.857-70.857-8q-28.571 0-74.286 7.429zM307.714 783.429q0.286 21.143 2.571 47.714t6.857 38q42.286 18.286 80 18.286 214.857 0 214.857-191.429 0-65.143-23.429-102.857-15.429-25.143-35.143-42.286t-38.571-26.571-46-14.286-48-6-54-1.143q-41.714 0-57.714 5.714 0 30.286-0.286 90.857t-0.286 90.286q0 4.571-0.571 38.571t-0.286 55.143z" + ], + "width": 805, + "tags": [ + "bold" + ], + "defaultCode": 61490, + "grid": 14, + "matchesSearch": false + }, + { + "id": 48, + "paths": [ + "M0 949.714l9.714-48.571q3.429-1.143 46.571-12.286t63.714-21.429q16-20 23.429-57.714 0.571-4 35.429-165.143t65.143-310.571 29.714-169.429v-14.286q-13.714-7.429-31.143-10.571t-39.714-4.571-33.143-3.143l10.857-58.857q18.857 1.143 68.571 3.714t85.429 4 68.857 1.429q27.429 0 56.286-1.429t69.143-4 56.286-3.714q-2.857 22.286-10.857 50.857-17.143 5.714-58 16.286t-62 19.143q-4.571 10.857-8 24.286t-5.143 22.857-4.286 26-3.714 24q-15.429 84.571-50 239.714t-44.286 203.143q-1.143 5.143-7.429 33.143t-11.429 51.429-9.143 47.714-3.429 32.857l0.571 10.286q9.714 2.286 105.714 17.714-1.714 25.143-9.143 56.571-6.286 0-18.571 0.857t-18.571 0.857q-16.571 0-49.714-5.714t-49.143-5.714q-78.857-1.143-117.714-1.143-29.143 0-81.714 5.143t-69.143 6.286z" + ], + "width": 585, + "tags": [ + "italic" + ], + "defaultCode": 61491, + "grid": 14, + "matchesSearch": false + }, + { + "id": 49, + "paths": [ + "M0 293.143v-218.857l46.286-0.571 30.857 15.429q6.857 2.857 120.571 2.857 25.143 0 75.429-1.143t75.429-1.143q20.571 0 61.429 0.286t61.429 0.286h167.429q3.429 0 12 0.286t11.714 0 9.143-1.714 10-5.143 8.571-10l24-0.571q2.286 0 8 0.286t8 0.286q1.143 64 1.143 192 0 45.714-2.857 62.286-22.286 8-38.857 10.286-14.286-25.143-30.857-73.143-1.714-5.143-6.286-27.429t-8.286-42-4.286-20.286q-3.429-4.571-6.857-7.143t-8.857-3.429-7.429-1.429-10.286-0.286-9.429 0.286q-9.714 0-38-0.286t-42.571-0.286-36.571 1.143-40.571 3.429q-5.143 46.286-4.571 77.714 0 53.714 1.143 221.714t1.143 260q0 9.143-1.429 40.857t0 52.286 7.143 39.429q22.857 12 70.857 24.286t68.571 21.429q2.857 22.857 2.857 28.571 0 8-1.714 16.571l-19.429 0.571q-43.429 1.143-124.571-4.571t-118.286-5.714q-28.571 0-86.286 5.143t-86.857 5.143q-1.714-29.143-1.714-29.714v-5.143q9.714-15.429 35.143-24.571t56.286-16.571 44.571-15.429q10.857-24 10.857-218.857 0-57.714-1.714-173.143t-1.714-173.143v-66.857q0-1.143 0.286-8.857t0.286-14.286-0.571-14.571-1.714-13.714-2.857-8q-6.286-6.857-92.571-6.857-18.857 0-53.143 6.857t-45.714 14.857q-10.857 7.429-19.429 41.429t-18 63.429-24.286 30.571q-24-14.857-32-25.143zM808 815.143q5.143-10.571 24-10.571h45.714v-585.143h-45.714q-18.857 0-24-10.571t6.286-25.429l72-92.571q11.429-14.857 28-14.857t28 14.857l72 92.571q11.429 14.857 6.286 25.429t-24 10.571h-45.714v585.143h45.714q18.857 0 24 10.571t-6.286 25.429l-72 92.571q-11.429 14.857-28 14.857t-28-14.857l-72-92.571q-11.429-14.857-6.286-25.429z" + ], + "tags": [ + "text-height" + ], + "defaultCode": 61492, + "grid": 14, + "matchesSearch": false + }, + { + "id": 50, + "paths": [ + "M0 293.143v-218.857l46.286-0.571 30.857 15.429q6.857 2.857 120.571 2.857 25.143 0 75.429-1.143t75.429-1.143q40 0 140.857-0.571t174-0.286 141.143 2.571q18.857 0.571 32-17.714l24-0.571q2.286 0 8 0.286t8 0.286q1.143 64 1.143 192 0 45.714-2.857 62.286-22.286 8-38.857 10.286-14.286-25.143-30.857-73.143-1.714-5.143-6.286-27.143t-8.571-42-4-20.571q-5.714-7.429-15.429-10.857-2.857-1.143-37.714-1.143-17.143 0-53.143-0.571t-58.857-0.571-53.714 1.143-54.857 4q-5.143 46.286-4.571 77.714l0.571 86.857v-29.714q0 31.429 0.571 88t0.857 102.857 0.286 87.429q0 9.143-1.429 40.857t0 52.286 7.143 39.429q22.857 12 70.857 24.286t68.571 21.429q2.857 22.857 2.857 28.571 0 8-1.714 16.571l-19.429 0.571q-43.429 1.143-124.571-4.571t-118.286-5.714q-28.571 0-86.286 5.143t-86.857 5.143q-1.714-29.143-1.714-29.714v-5.143q9.714-15.429 35.143-24.571t56.286-16.571 44.571-15.429q4-9.143 6.571-42.286t3.429-83.143 0.857-88.571-0.286-87.714-0.286-50.857q0-4-1.429-12.286t-1.429-12.857q0-4 0.286-25.143t0.571-41.714 0-43.714-1.714-38.571-3.714-18.286q-6.286-6.857-92.571-6.857-23.429 0-93.143 7.714t-78.857 14q-10.857 6.857-19.429 40.857t-18 63.714-24.286 30.857q-24-14.857-32-25.143zM2.857 914.286q0-16 14.857-28 2.286-1.714 20.571-17.143t34-28 32.857-23.714 24-11.143q7.429 0 11.714 6t5.714 16.286 1.429 19.143-0.857 18.857-0.857 11.143h585.143q0-1.143-0.857-11.143t-0.857-18.857 1.429-19.143 5.714-16.286 11.714-6q6.857 0 24 11.143t32.857 23.714 34 28 20.571 17.143q14.857 12 14.857 28t-14.857 28q-2.286 1.714-20.571 17.143t-34 28-32.857 23.714-24 11.143q-7.429 0-11.714-6t-5.714-16.286-1.429-19.143 0.857-18.857 0.857-11.143h-585.143q0 1.143 0.857 11.143t0.857 18.857-1.429 19.143-5.714 16.286-11.714 6q-6.857 0-24-11.143t-32.857-23.714-34-28-20.571-17.143q-14.857-12-14.857-28z" + ], + "tags": [ + "text-width" + ], + "defaultCode": 61493, + "grid": 14, + "matchesSearch": false + }, + { + "id": 51, + "paths": [ + "M0 841.143v-73.143q0-14.857 10.857-25.714t25.714-10.857h950.857q14.857 0 25.714 10.857t10.857 25.714v73.143q0 14.857-10.857 25.714t-25.714 10.857h-950.857q-14.857 0-25.714-10.857t-10.857-25.714zM0 621.714v-73.143q0-14.857 10.857-25.714t25.714-10.857h731.429q14.857 0 25.714 10.857t10.857 25.714v73.143q0 14.857-10.857 25.714t-25.714 10.857h-731.429q-14.857 0-25.714-10.857t-10.857-25.714zM0 402.286v-73.143q0-14.857 10.857-25.714t25.714-10.857h877.714q14.857 0 25.714 10.857t10.857 25.714v73.143q0 14.857-10.857 25.714t-25.714 10.857h-877.714q-14.857 0-25.714-10.857t-10.857-25.714zM0 182.857v-73.143q0-14.857 10.857-25.714t25.714-10.857h658.286q14.857 0 25.714 10.857t10.857 25.714v73.143q0 14.857-10.857 25.714t-25.714 10.857h-658.286q-14.857 0-25.714-10.857t-10.857-25.714z" + ], + "tags": [ + "align-left" + ], + "defaultCode": 61494, + "grid": 14, + "matchesSearch": false + }, + { + "id": 52, + "paths": [ + "M0 841.143v-73.143q0-14.857 10.857-25.714t25.714-10.857h950.857q14.857 0 25.714 10.857t10.857 25.714v73.143q0 14.857-10.857 25.714t-25.714 10.857h-950.857q-14.857 0-25.714-10.857t-10.857-25.714zM73.143 402.286v-73.143q0-14.857 10.857-25.714t25.714-10.857h804.571q14.857 0 25.714 10.857t10.857 25.714v73.143q0 14.857-10.857 25.714t-25.714 10.857h-804.571q-14.857 0-25.714-10.857t-10.857-25.714zM219.429 621.714v-73.143q0-14.857 10.857-25.714t25.714-10.857h512q14.857 0 25.714 10.857t10.857 25.714v73.143q0 14.857-10.857 25.714t-25.714 10.857h-512q-14.857 0-25.714-10.857t-10.857-25.714zM292.571 182.857v-73.143q0-14.857 10.857-25.714t25.714-10.857h365.714q14.857 0 25.714 10.857t10.857 25.714v73.143q0 14.857-10.857 25.714t-25.714 10.857h-365.714q-14.857 0-25.714-10.857t-10.857-25.714z" + ], + "tags": [ + "align-center" + ], + "defaultCode": 61495, + "grid": 14, + "matchesSearch": false + }, + { + "id": 53, + "paths": [ + "M0 841.143v-73.143q0-14.857 10.857-25.714t25.714-10.857h950.857q14.857 0 25.714 10.857t10.857 25.714v73.143q0 14.857-10.857 25.714t-25.714 10.857h-950.857q-14.857 0-25.714-10.857t-10.857-25.714zM73.143 402.286v-73.143q0-14.857 10.857-25.714t25.714-10.857h877.714q14.857 0 25.714 10.857t10.857 25.714v73.143q0 14.857-10.857 25.714t-25.714 10.857h-877.714q-14.857 0-25.714-10.857t-10.857-25.714zM219.429 621.714v-73.143q0-14.857 10.857-25.714t25.714-10.857h731.429q14.857 0 25.714 10.857t10.857 25.714v73.143q0 14.857-10.857 25.714t-25.714 10.857h-731.429q-14.857 0-25.714-10.857t-10.857-25.714zM292.571 182.857v-73.143q0-14.857 10.857-25.714t25.714-10.857h658.286q14.857 0 25.714 10.857t10.857 25.714v73.143q0 14.857-10.857 25.714t-25.714 10.857h-658.286q-14.857 0-25.714-10.857t-10.857-25.714z" + ], + "tags": [ + "align-right" + ], + "defaultCode": 61496, + "grid": 14, + "matchesSearch": false + }, + { + "id": 54, + "paths": [ + "M0 841.143v-73.143q0-14.857 10.857-25.714t25.714-10.857h950.857q14.857 0 25.714 10.857t10.857 25.714v73.143q0 14.857-10.857 25.714t-25.714 10.857h-950.857q-14.857 0-25.714-10.857t-10.857-25.714zM0 621.714v-73.143q0-14.857 10.857-25.714t25.714-10.857h950.857q14.857 0 25.714 10.857t10.857 25.714v73.143q0 14.857-10.857 25.714t-25.714 10.857h-950.857q-14.857 0-25.714-10.857t-10.857-25.714zM0 402.286v-73.143q0-14.857 10.857-25.714t25.714-10.857h950.857q14.857 0 25.714 10.857t10.857 25.714v73.143q0 14.857-10.857 25.714t-25.714 10.857h-950.857q-14.857 0-25.714-10.857t-10.857-25.714zM0 182.857v-73.143q0-14.857 10.857-25.714t25.714-10.857h950.857q14.857 0 25.714 10.857t10.857 25.714v73.143q0 14.857-10.857 25.714t-25.714 10.857h-950.857q-14.857 0-25.714-10.857t-10.857-25.714z" + ], + "tags": [ + "align-justify" + ], + "defaultCode": 61497, + "grid": 14, + "matchesSearch": false + }, + { + "id": 55, + "paths": [ + "M0 859.429v-109.714q0-7.429 5.429-12.857t12.857-5.429h109.714q7.429 0 12.857 5.429t5.429 12.857v109.714q0 7.429-5.429 12.857t-12.857 5.429h-109.714q-7.429 0-12.857-5.429t-5.429-12.857zM0 640v-109.714q0-7.429 5.429-12.857t12.857-5.429h109.714q7.429 0 12.857 5.429t5.429 12.857v109.714q0 7.429-5.429 12.857t-12.857 5.429h-109.714q-7.429 0-12.857-5.429t-5.429-12.857zM0 420.571v-109.714q0-7.429 5.429-12.857t12.857-5.429h109.714q7.429 0 12.857 5.429t5.429 12.857v109.714q0 7.429-5.429 12.857t-12.857 5.429h-109.714q-7.429 0-12.857-5.429t-5.429-12.857zM0 201.143v-109.714q0-7.429 5.429-12.857t12.857-5.429h109.714q7.429 0 12.857 5.429t5.429 12.857v109.714q0 7.429-5.429 12.857t-12.857 5.429h-109.714q-7.429 0-12.857-5.429t-5.429-12.857zM219.429 859.429v-109.714q0-7.429 5.429-12.857t12.857-5.429h768q7.429 0 12.857 5.429t5.429 12.857v109.714q0 7.429-5.429 12.857t-12.857 5.429h-768q-7.429 0-12.857-5.429t-5.429-12.857zM219.429 640v-109.714q0-7.429 5.429-12.857t12.857-5.429h768q7.429 0 12.857 5.429t5.429 12.857v109.714q0 7.429-5.429 12.857t-12.857 5.429h-768q-7.429 0-12.857-5.429t-5.429-12.857zM219.429 420.571v-109.714q0-7.429 5.429-12.857t12.857-5.429h768q7.429 0 12.857 5.429t5.429 12.857v109.714q0 7.429-5.429 12.857t-12.857 5.429h-768q-7.429 0-12.857-5.429t-5.429-12.857zM219.429 201.143v-109.714q0-7.429 5.429-12.857t12.857-5.429h768q7.429 0 12.857 5.429t5.429 12.857v109.714q0 7.429-5.429 12.857t-12.857 5.429h-768q-7.429 0-12.857-5.429t-5.429-12.857z" + ], + "tags": [ + "list" + ], + "defaultCode": 61498, + "grid": 14, + "matchesSearch": false + }, + { + "id": 56, + "paths": [ + "M0 859.429v-109.714q0-7.429 5.429-12.857t12.857-5.429h987.429q7.429 0 12.857 5.429t5.429 12.857v109.714q0 7.429-5.429 12.857t-12.857 5.429h-987.429q-7.429 0-12.857-5.429t-5.429-12.857zM0 201.143v-109.714q0-7.429 5.429-12.857t12.857-5.429h987.429q7.429 0 12.857 5.429t5.429 12.857v109.714q0 7.429-5.429 12.857t-12.857 5.429h-987.429q-7.429 0-12.857-5.429t-5.429-12.857zM18.286 475.429q0-8 5.143-13.143l164.571-164.571q5.143-5.143 13.143-5.143 7.429 0 12.857 5.429t5.429 12.857v329.143q0 7.429-5.429 12.857t-12.857 5.429q-8 0-13.143-5.143l-164.571-164.571q-5.143-5.143-5.143-13.143zM365.714 640v-109.714q0-7.429 5.429-12.857t12.857-5.429h621.714q7.429 0 12.857 5.429t5.429 12.857v109.714q0 7.429-5.429 12.857t-12.857 5.429h-621.714q-7.429 0-12.857-5.429t-5.429-12.857zM365.714 420.571v-109.714q0-7.429 5.429-12.857t12.857-5.429h621.714q7.429 0 12.857 5.429t5.429 12.857v109.714q0 7.429-5.429 12.857t-12.857 5.429h-621.714q-7.429 0-12.857-5.429t-5.429-12.857z" + ], + "tags": [ + "dedent", + "outdent" + ], + "defaultCode": 61499, + "grid": 14, + "matchesSearch": false + }, + { + "id": 57, + "paths": [ + "M0 859.429v-109.714q0-7.429 5.429-12.857t12.857-5.429h987.429q7.429 0 12.857 5.429t5.429 12.857v109.714q0 7.429-5.429 12.857t-12.857 5.429h-987.429q-7.429 0-12.857-5.429t-5.429-12.857zM0 640v-329.143q0-7.429 5.429-12.857t12.857-5.429q8 0 13.143 5.143l164.571 164.571q5.143 5.143 5.143 13.143t-5.143 13.143l-164.571 164.571q-5.143 5.143-13.143 5.143-7.429 0-12.857-5.429t-5.429-12.857zM0 201.143v-109.714q0-7.429 5.429-12.857t12.857-5.429h987.429q7.429 0 12.857 5.429t5.429 12.857v109.714q0 7.429-5.429 12.857t-12.857 5.429h-987.429q-7.429 0-12.857-5.429t-5.429-12.857zM365.714 640v-109.714q0-7.429 5.429-12.857t12.857-5.429h621.714q7.429 0 12.857 5.429t5.429 12.857v109.714q0 7.429-5.429 12.857t-12.857 5.429h-621.714q-7.429 0-12.857-5.429t-5.429-12.857zM365.714 420.571v-109.714q0-7.429 5.429-12.857t12.857-5.429h621.714q7.429 0 12.857 5.429t5.429 12.857v109.714q0 7.429-5.429 12.857t-12.857 5.429h-621.714q-7.429 0-12.857-5.429t-5.429-12.857z" + ], + "tags": [ + "indent" + ], + "defaultCode": 61500, + "grid": 14, + "matchesSearch": false + }, + { + "id": 58, + "paths": [ + "M0 713.143v-402.286q0-68 48.286-116.286t116.286-48.286h402.286q68 0 116.286 48.286t48.286 116.286v94.286l230.286-229.714q10.286-10.857 25.714-10.857 6.857 0 14.286 2.857 22.286 9.714 22.286 33.714v621.714q0 24-22.286 33.714-7.429 2.857-14.286 2.857-15.429 0-25.714-10.857l-230.286-230.286v94.857q0 68-48.286 116.286t-116.286 48.286h-402.286q-68 0-116.286-48.286t-48.286-116.286z" + ], + "tags": [ + "video-camera" + ], + "defaultCode": 61501, + "grid": 14, + "matchesSearch": false + }, + { + "id": 59, + "paths": [ + "M0 859.429v-694.857q0-37.714 26.857-64.571t64.571-26.857h914.286q37.714 0 64.571 26.857t26.857 64.571v694.857q0 37.714-26.857 64.571t-64.571 26.857h-914.286q-37.714 0-64.571-26.857t-26.857-64.571zM73.143 859.429q0 7.429 5.429 12.857t12.857 5.429h914.286q7.429 0 12.857-5.429t5.429-12.857v-694.857q0-7.429-5.429-12.857t-12.857-5.429h-914.286q-7.429 0-12.857 5.429t-5.429 12.857v694.857zM146.286 804.571v-109.714l182.857-182.857 91.429 91.429 292.571-292.571 237.714 237.714v256h-804.571zM146.286 329.143q0-45.714 32-77.714t77.714-32 77.714 32 32 77.714-32 77.714-77.714 32-77.714-32-32-77.714z" + ], + "width": 1097, + "tags": [ + "photo", + "image", + "picture-o" + ], + "defaultCode": 61502, + "grid": 14, + "matchesSearch": false + }, + { + "id": 60, + "paths": [ + "M0 950.857v-237.714l475.429-475.429 237.714 237.714-475.429 475.429h-237.714zM73.143 804.571h73.143v73.143h61.143l52-52-134.286-134.286-52 52v61.143zM170.286 658.286q0 12.571 12.571 12.571 5.714 0 9.714-4l309.714-309.714q4-4 4-9.714 0-12.571-12.571-12.571-5.714 0-9.714 4l-309.714 309.714q-4 4-4 9.714zM512 201.143l94.857-94.286q20.571-21.714 51.429-21.714 30.286 0 52 21.714l134.286 133.714q21.143 22.286 21.143 52 0 30.286-21.143 51.429l-94.857 94.857z" + ], + "tags": [ + "pencil" + ], + "defaultCode": 61504, + "grid": 14, + "matchesSearch": false + }, + { + "id": 61, + "paths": [ + "M0 365.714q0-121.143 85.714-206.857t206.857-85.714 206.857 85.714 85.714 206.857q0 62.286-18.857 102.286l-208 442.286q-9.143 18.857-27.143 29.714t-38.571 10.857-38.571-10.857-26.571-29.714l-208.571-442.286q-18.857-40-18.857-102.286zM146.286 365.714q0 60.571 42.857 103.429t103.429 42.857 103.429-42.857 42.857-103.429-42.857-103.429-103.429-42.857-103.429 42.857-42.857 103.429z" + ], + "width": 585, + "tags": [ + "map-marker" + ], + "defaultCode": 61505, + "grid": 14, + "matchesSearch": false + }, + { + "id": 62, + "paths": [ + "M0 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286zM128 512q0 84.571 41.714 156t113.143 113.143 156 41.714v-621.714q-84.571 0-156 41.714t-113.143 113.143-41.714 156z" + ], + "tags": [ + "adjust" + ], + "defaultCode": 61506, + "grid": 14, + "matchesSearch": false + }, + { + "id": 63, + "paths": [ + "M0 585.143q0-82.857 46.286-157.143 3.429-5.143 35.714-51.714t57.714-86.286 56.857-101.714 47.429-115.143q5.143-17.143 19.429-26.857t29.143-9.714 29.429 9.714 19.143 26.857q16 53.143 47.429 115.143t56.857 101.714 57.714 86.286 35.714 51.714q46.286 72.571 46.286 157.143 0 121.143-85.714 206.857t-206.857 85.714-206.857-85.714-85.714-206.857zM146.286 658.286q0 30.286 21.429 51.714t51.714 21.429 51.714-21.429 21.429-51.714q0-20.571-11.429-39.429-0.571-0.571-8.857-12.857t-14.571-21.714-14.286-25.143-12-28.857q-2.286-9.143-12-9.143t-12 9.143q-4 13.143-12 28.857t-14.286 25.143-14.571 21.714-8.857 12.857q-11.429 18.857-11.429 39.429z" + ], + "width": 585, + "tags": [ + "tint" + ], + "defaultCode": 61507, + "grid": 14, + "matchesSearch": false + }, + { + "id": 64, + "paths": [ + "M0 713.143v-475.429q0-68 48.286-116.286t116.286-48.286h475.429q36 0 66.857 14.286 8.571 4 10.286 13.143 1.714 9.714-5.143 16.571l-28 28q-8 8-18.286 4.571-13.143-3.429-25.714-3.429h-475.429q-37.714 0-64.571 26.857t-26.857 64.571v475.429q0 37.714 26.857 64.571t64.571 26.857h475.429q37.714 0 64.571-26.857t26.857-64.571v-72q0-7.429 5.143-12.571l36.571-36.571q8.571-8.571 20-4t11.429 16.571v108.571q0 68-48.286 116.286t-116.286 48.286h-475.429q-68 0-116.286-48.286t-48.286-116.286zM365.714 731.429v-164.571l384-384 164.571 164.571-384 384h-164.571zM420.571 621.714h54.857v54.857h32l66.286-66.286-86.857-86.857-66.286 66.286v32zM539.429 484.571q9.143 9.143 18.857-0.571l200-200q9.714-9.714 0.571-18.857t-18.857 0.571l-200 200q-9.714 9.714-0.571 18.857zM786.286 146.286l52.571-52.571q16-16 38.857-16t38.857 16l86.857 86.857q16 16 16 38.857t-16 38.857l-52.571 52.571z" + ], + "tags": [ + "edit", + "pencil-square-o" + ], + "defaultCode": 61508, + "grid": 14, + "matchesSearch": false + }, + { + "id": 65, + "paths": [ + "M0 713.143v-475.429q0-68 48.286-116.286t116.286-48.286h145.714q7.429 0 12.857 5.429t5.429 12.857q0 15.429-14.857 18.286-44 14.857-76 34.286-5.714 2.286-9.143 2.286h-64q-37.714 0-64.571 26.857t-26.857 64.571v475.429q0 37.714 26.857 64.571t64.571 26.857h475.429q37.714 0 64.571-26.857t26.857-64.571v-122.286q0-10.857 10.286-16.571 16-7.429 30.857-21.143 9.143-9.143 20-4.571 12 5.143 12 16.571v148q0 68-48.286 116.286t-116.286 48.286h-475.429q-68 0-116.286-48.286t-48.286-116.286zM146.286 475.429q0-28 2-52t8-51.429 16-50.286 26.857-46.571 39.143-42.286 54-35.143 71.143-27.714 91.143-17.429 112.286-6.286h91.429v-109.714q0-24 22.286-33.714 7.429-2.857 14.286-2.857 14.857 0 25.714 10.857l219.429 219.429q10.857 10.857 10.857 25.714t-10.857 25.714l-219.429 219.429q-10.286 10.857-25.714 10.857-6.857 0-14.286-2.857-22.286-9.714-22.286-33.714v-109.714h-91.429q-184.571 0-250.286 74.857-68 78.286-42.286 270.286 1.714 13.143-11.429 19.429-4.571 1.143-6.857 1.143-9.143 0-14.857-7.429-5.714-8-12-17.714t-22.571-39.143-28.286-56.857-22-65.143-10-69.714z" + ], + "width": 951, + "tags": [ + "share-square-o" + ], + "defaultCode": 61509, + "grid": 14, + "matchesSearch": false + }, + { + "id": 66, + "paths": [ + "M0 713.143v-475.429q0-68 48.286-116.286t116.286-48.286h475.429q36 0 66.857 14.286 8.571 4 10.286 13.143 1.714 9.714-5.143 16.571l-28 28q-5.714 5.714-13.143 5.714-1.714 0-5.143-1.143-13.143-3.429-25.714-3.429h-475.429q-37.714 0-64.571 26.857t-26.857 64.571v475.429q0 37.714 26.857 64.571t64.571 26.857h475.429q37.714 0 64.571-26.857t26.857-64.571v-145.143q0-7.429 5.143-12.571l36.571-36.571q5.714-5.714 13.143-5.714 3.429 0 6.857 1.714 11.429 4.571 11.429 16.571v181.714q0 68-48.286 116.286t-116.286 48.286h-475.429q-68 0-116.286-48.286t-48.286-116.286zM146.857 438.857q0-18.857 13.714-32.571l62.857-62.857q13.714-13.714 32.571-13.714t32.571 13.714l150.286 150.286 369.714-369.714q13.714-13.714 32.571-13.714t32.571 13.714l62.857 62.857q13.714 13.714 13.714 32.571t-13.714 32.571l-465.143 465.143q-13.714 13.714-32.571 13.714t-32.571-13.714l-245.714-245.714q-13.714-13.714-13.714-32.571z" + ], + "width": 951, + "tags": [ + "check-square-o" + ], + "defaultCode": 61510, + "grid": 14, + "matchesSearch": false + }, + { + "id": 67, + "paths": [ + "M0 512q0-14.857 10.857-25.714l146.286-146.286q10.857-10.857 25.714-10.857t25.714 10.857 10.857 25.714v73.143h219.429v-219.429h-73.143q-14.857 0-25.714-10.857t-10.857-25.714 10.857-25.714l146.286-146.286q10.857-10.857 25.714-10.857t25.714 10.857l146.286 146.286q10.857 10.857 10.857 25.714t-10.857 25.714-25.714 10.857h-73.143v219.429h219.429v-73.143q0-14.857 10.857-25.714t25.714-10.857 25.714 10.857l146.286 146.286q10.857 10.857 10.857 25.714t-10.857 25.714l-146.286 146.286q-10.857 10.857-25.714 10.857t-25.714-10.857-10.857-25.714v-73.143h-219.429v219.429h73.143q14.857 0 25.714 10.857t10.857 25.714-10.857 25.714l-146.286 146.286q-10.857 10.857-25.714 10.857t-25.714-10.857l-146.286-146.286q-10.857-10.857-10.857-25.714t10.857-25.714 25.714-10.857h73.143v-219.429h-219.429v73.143q0 14.857-10.857 25.714t-25.714 10.857-25.714-10.857l-146.286-146.286q-10.857-10.857-10.857-25.714z" + ], + "tags": [ + "arrows" + ], + "defaultCode": 61511, + "grid": 14, + "matchesSearch": false + }, + { + "id": 68, + "paths": [ + "M0 914.286v-804.571q0-14.857 10.857-25.714t25.714-10.857h73.143q14.857 0 25.714 10.857t10.857 25.714v387.429q2.286-6.286 7.429-10.857l405.714-405.714q10.857-10.857 18.286-7.429t7.429 18.286v841.143q0 14.857-7.429 18.286t-18.286-7.429l-405.714-405.714q-5.143-5.143-7.429-10.857v387.429q0 14.857-10.857 25.714t-25.714 10.857h-73.143q-14.857 0-25.714-10.857t-10.857-25.714z" + ], + "width": 585, + "tags": [ + "step-backward" + ], + "defaultCode": 61512, + "grid": 14, + "matchesSearch": false + }, + { + "id": 69, + "paths": [ + "M0 914.286v-804.571q0-14.857 10.857-25.714t25.714-10.857h73.143q14.857 0 25.714 10.857t10.857 25.714v387.429q2.286-6.286 7.429-10.857l405.714-405.714q10.857-10.857 18.286-7.429t7.429 18.286v405.714q2.286-6.286 7.429-10.857l405.714-405.714q10.857-10.857 18.286-7.429t7.429 18.286v841.143q0 14.857-7.429 18.286t-18.286-7.429l-405.714-405.714q-5.143-5.143-7.429-10.857v405.714q0 14.857-7.429 18.286t-18.286-7.429l-405.714-405.714q-5.143-5.143-7.429-10.857v387.429q0 14.857-10.857 25.714t-25.714 10.857h-73.143q-14.857 0-25.714-10.857t-10.857-25.714z" + ], + "tags": [ + "fast-backward" + ], + "defaultCode": 61513, + "grid": 14, + "matchesSearch": false + }, + { + "id": 70, + "paths": [ + "M69.714 512q0-14.857 10.857-25.714l405.714-405.714q10.857-10.857 18.286-7.429t7.429 18.286v405.714q2.857-6.286 7.429-10.857l405.714-405.714q10.857-10.857 18.286-7.429t7.429 18.286v841.143q0 14.857-7.429 18.286t-18.286-7.429l-405.714-405.714q-4.571-5.143-7.429-10.857v405.714q0 14.857-7.429 18.286t-18.286-7.429l-405.714-405.714q-10.857-10.857-10.857-25.714z" + ], + "width": 951, + "tags": [ + "backward" + ], + "defaultCode": 61514, + "grid": 14, + "matchesSearch": false + }, + { + "id": 71, + "paths": [ + "M0 932.571v-841.143q0-14.857 9.429-20.571t22.571 1.714l758.857 421.714q13.143 7.429 13.143 17.714t-13.143 17.714l-758.857 421.714q-13.143 7.429-22.571 1.714t-9.429-20.571z" + ], + "width": 805, + "tags": [ + "play" + ], + "defaultCode": 61515, + "grid": 14, + "matchesSearch": false + }, + { + "id": 72, + "paths": [ + "M0 914.286v-804.571q0-14.857 10.857-25.714t25.714-10.857h292.571q14.857 0 25.714 10.857t10.857 25.714v804.571q0 14.857-10.857 25.714t-25.714 10.857h-292.571q-14.857 0-25.714-10.857t-10.857-25.714zM512 914.286v-804.571q0-14.857 10.857-25.714t25.714-10.857h292.571q14.857 0 25.714 10.857t10.857 25.714v804.571q0 14.857-10.857 25.714t-25.714 10.857h-292.571q-14.857 0-25.714-10.857t-10.857-25.714z" + ], + "tags": [ + "pause" + ], + "defaultCode": 61516, + "grid": 14, + "matchesSearch": false + }, + { + "id": 73, + "paths": [ + "M0 914.286v-804.571q0-14.857 10.857-25.714t25.714-10.857h804.571q14.857 0 25.714 10.857t10.857 25.714v804.571q0 14.857-10.857 25.714t-25.714 10.857h-804.571q-14.857 0-25.714-10.857t-10.857-25.714z" + ], + "tags": [ + "stop" + ], + "defaultCode": 61517, + "grid": 14, + "matchesSearch": false + }, + { + "id": 74, + "paths": [ + "M0 932.571v-841.143q0-14.857 7.429-18.286t18.286 7.429l405.714 405.714q4.571 4.571 7.429 10.857v-405.714q0-14.857 7.429-18.286t18.286 7.429l405.714 405.714q10.857 10.857 10.857 25.714t-10.857 25.714l-405.714 405.714q-10.857 10.857-18.286 7.429t-7.429-18.286v-405.714q-2.857 5.714-7.429 10.857l-405.714 405.714q-10.857 10.857-18.286 7.429t-7.429-18.286z" + ], + "width": 951, + "tags": [ + "forward" + ], + "defaultCode": 61518, + "grid": 14, + "matchesSearch": false + }, + { + "id": 75, + "paths": [ + "M0 932.571v-841.143q0-14.857 7.429-18.286t18.286 7.429l405.714 405.714q4.571 4.571 7.429 10.857v-405.714q0-14.857 7.429-18.286t18.286 7.429l405.714 405.714q4.571 4.571 7.429 10.857v-387.429q0-14.857 10.857-25.714t25.714-10.857h73.143q14.857 0 25.714 10.857t10.857 25.714v804.571q0 14.857-10.857 25.714t-25.714 10.857h-73.143q-14.857 0-25.714-10.857t-10.857-25.714v-387.429q-2.857 5.714-7.429 10.857l-405.714 405.714q-10.857 10.857-18.286 7.429t-7.429-18.286v-405.714q-2.857 5.714-7.429 10.857l-405.714 405.714q-10.857 10.857-18.286 7.429t-7.429-18.286z" + ], + "tags": [ + "fast-forward" + ], + "defaultCode": 61520, + "grid": 14, + "matchesSearch": false + }, + { + "id": 76, + "paths": [ + "M0 932.571v-841.143q0-14.857 7.429-18.286t18.286 7.429l405.714 405.714q4.571 4.571 7.429 10.857v-387.429q0-14.857 10.857-25.714t25.714-10.857h73.143q14.857 0 25.714 10.857t10.857 25.714v804.571q0 14.857-10.857 25.714t-25.714 10.857h-73.143q-14.857 0-25.714-10.857t-10.857-25.714v-387.429q-2.857 5.714-7.429 10.857l-405.714 405.714q-10.857 10.857-18.286 7.429t-7.429-18.286z" + ], + "width": 585, + "tags": [ + "step-forward" + ], + "defaultCode": 61521, + "grid": 14, + "matchesSearch": false + }, + { + "id": 77, + "paths": [ + "M0.571 841.143v-146.286q0-14.857 10.857-25.714t25.714-10.857h804.571q14.857 0 25.714 10.857t10.857 25.714v146.286q0 14.857-10.857 25.714t-25.714 10.857h-804.571q-14.857 0-25.714-10.857t-10.857-25.714zM0.571 577.714q-3.429-7.429 7.429-18.286l405.714-405.714q10.857-10.857 25.714-10.857t25.714 10.857l405.714 405.714q10.857 10.857 7.429 18.286t-18.286 7.429h-841.143q-14.857 0-18.286-7.429z" + ], + "width": 879, + "tags": [ + "eject" + ], + "defaultCode": 61522, + "grid": 14, + "matchesSearch": false + }, + { + "id": 78, + "paths": [ + "M88 475.429q0-14.857 10.857-25.714l424-424q10.857-10.857 25.714-10.857t25.714 10.857l94.857 94.857q10.857 10.857 10.857 25.714t-10.857 25.714l-303.429 303.429 303.429 303.429q10.857 10.857 10.857 25.714t-10.857 25.714l-94.857 94.857q-10.857 10.857-25.714 10.857t-25.714-10.857l-424-424q-10.857-10.857-10.857-25.714z" + ], + "width": 731, + "tags": [ + "chevron-left" + ], + "defaultCode": 61523, + "grid": 14, + "matchesSearch": false + }, + { + "id": 79, + "paths": [ + "M51.429 804.571q0-14.857 10.857-25.714l303.429-303.429-303.429-303.429q-10.857-10.857-10.857-25.714t10.857-25.714l94.857-94.857q10.857-10.857 25.714-10.857t25.714 10.857l424 424q10.857 10.857 10.857 25.714t-10.857 25.714l-424 424q-10.857 10.857-25.714 10.857t-25.714-10.857l-94.857-94.857q-10.857-10.857-10.857-25.714z" + ], + "width": 731, + "tags": [ + "chevron-right" + ], + "defaultCode": 61524, + "grid": 14, + "matchesSearch": false + }, + { + "id": 80, + "paths": [ + "M0 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286zM182.857 548.571q0 14.857 10.857 25.714t25.714 10.857h146.286v146.286q0 14.857 10.857 25.714t25.714 10.857h73.143q14.857 0 25.714-10.857t10.857-25.714v-146.286h146.286q14.857 0 25.714-10.857t10.857-25.714v-73.143q0-14.857-10.857-25.714t-25.714-10.857h-146.286v-146.286q0-14.857-10.857-25.714t-25.714-10.857h-73.143q-14.857 0-25.714 10.857t-10.857 25.714v146.286h-146.286q-14.857 0-25.714 10.857t-10.857 25.714v73.143z" + ], + "tags": [ + "plus-circle" + ], + "defaultCode": 61525, + "grid": 14, + "matchesSearch": false + }, + { + "id": 81, + "paths": [ + "M0 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286zM182.857 548.571q0 14.857 10.857 25.714t25.714 10.857h438.857q14.857 0 25.714-10.857t10.857-25.714v-73.143q0-14.857-10.857-25.714t-25.714-10.857h-438.857q-14.857 0-25.714 10.857t-10.857 25.714v73.143z" + ], + "tags": [ + "minus-circle" + ], + "defaultCode": 61526, + "grid": 14, + "matchesSearch": false + }, + { + "id": 82, + "paths": [ + "M0 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286zM221.143 641.143q0 15.429 10.857 26.286l51.429 51.429q10.857 10.857 26.286 10.857 14.857 0 25.714-10.857l103.429-103.429 103.429 103.429q10.857 10.857 25.714 10.857 15.429 0 26.286-10.857l51.429-51.429q10.857-10.857 10.857-26.286 0-14.857-10.857-25.714l-103.429-103.429 103.429-103.429q10.857-10.857 10.857-25.714 0-15.429-10.857-26.286l-51.429-51.429q-10.857-10.857-26.286-10.857-14.857 0-25.714 10.857l-103.429 103.429-103.429-103.429q-10.857-10.857-25.714-10.857-15.429 0-26.286 10.857l-51.429 51.429q-10.857 10.857-10.857 26.286 0 14.857 10.857 25.714l103.429 103.429-103.429 103.429q-10.857 10.857-10.857 25.714z" + ], + "tags": [ + "times-circle" + ], + "defaultCode": 61527, + "grid": 14, + "matchesSearch": false + }, + { + "id": 83, + "paths": [ + "M0 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286zM144 522.857q0 15.429 10.286 25.714l206.857 206.857q10.857 10.857 25.714 10.857 15.429 0 26.286-10.857l310.286-310.286q10.286-10.286 10.286-25.714 0-16-10.286-26.286l-52-51.429q-10.857-10.857-25.714-10.857t-25.714 10.857l-233.143 232.571-129.143-129.143q-10.857-10.857-25.714-10.857t-25.714 10.857l-52 51.429q-10.286 10.286-10.286 26.286z" + ], + "tags": [ + "check-circle" + ], + "defaultCode": 61528, + "grid": 14, + "matchesSearch": false + }, + { + "id": 84, + "paths": [ + "M0 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286zM238.286 341.143q-8.571 13.714 4.571 24l75.429 57.143q4 3.429 10.857 3.429 9.143 0 14.286-6.857 30.286-38.857 49.143-52.571 19.429-13.714 49.143-13.714 27.429 0 48.857 14.857t21.429 33.714q0 21.714-11.429 34.857t-38.857 25.714q-36 16-66 49.429t-30 71.714v20.571q0 8 5.143 13.143t13.143 5.143h109.714q8 0 13.143-5.143t5.143-13.143q0-10.857 12.286-28.286t31.143-28.286q18.286-10.286 28-16.286t26.286-20 25.429-27.429 16-34.571 7.143-46.286q0-50.286-31.714-93.143t-79.143-66.286-97.143-23.429q-138.857 0-212 121.714zM365.714 786.286q0 8 5.143 13.143t13.143 5.143h109.714q8 0 13.143-5.143t5.143-13.143v-109.714q0-8-5.143-13.143t-13.143-5.143h-109.714q-8 0-13.143 5.143t-5.143 13.143v109.714z" + ], + "tags": [ + "question-circle" + ], + "defaultCode": 61529, + "grid": 14, + "matchesSearch": false + }, + { + "id": 85, + "paths": [ + "M0 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286zM292.571 786.286q0 8 5.143 13.143t13.143 5.143h256q8 0 13.143-5.143t5.143-13.143v-91.429q0-8-5.143-13.143t-13.143-5.143h-54.857v-292.571q0-8-5.143-13.143t-13.143-5.143h-182.857q-8 0-13.143 5.143t-5.143 13.143v91.429q0 8 5.143 13.143t13.143 5.143h54.857v182.857h-54.857q-8 0-13.143 5.143t-5.143 13.143v91.429zM365.714 274.286q0 8 5.143 13.143t13.143 5.143h109.714q8 0 13.143-5.143t5.143-13.143v-91.429q0-8-5.143-13.143t-13.143-5.143h-109.714q-8 0-13.143 5.143t-5.143 13.143v91.429z" + ], + "tags": [ + "info-circle" + ], + "defaultCode": 61530, + "grid": 14, + "matchesSearch": false + }, + { + "id": 86, + "paths": [ + "M0 548.571v-73.143q0-14.857 10.857-25.714t25.714-10.857h81.714q21.143-92 88.286-159.143t159.143-88.286v-81.714q0-14.857 10.857-25.714t25.714-10.857h73.143q14.857 0 25.714 10.857t10.857 25.714v81.714q92 21.143 159.143 88.286t88.286 159.143h81.714q14.857 0 25.714 10.857t10.857 25.714v73.143q0 14.857-10.857 25.714t-25.714 10.857h-81.714q-21.143 92-88.286 159.143t-159.143 88.286v81.714q0 14.857-10.857 25.714t-25.714 10.857h-73.143q-14.857 0-25.714-10.857t-10.857-25.714v-81.714q-92-21.143-159.143-88.286t-88.286-159.143h-81.714q-14.857 0-25.714-10.857t-10.857-25.714zM193.714 585.143q18.286 61.714 64.286 107.714t107.714 64.286v-62.286q0-14.857 10.857-25.714t25.714-10.857h73.143q14.857 0 25.714 10.857t10.857 25.714v62.286q61.714-18.286 107.714-64.286t64.286-107.714h-62.286q-14.857 0-25.714-10.857t-10.857-25.714v-73.143q0-14.857 10.857-25.714t25.714-10.857h62.286q-18.286-61.714-64.286-107.714t-107.714-64.286v62.286q0 14.857-10.857 25.714t-25.714 10.857h-73.143q-14.857 0-25.714-10.857t-10.857-25.714v-62.286q-61.714 18.286-107.714 64.286t-64.286 107.714h62.286q14.857 0 25.714 10.857t10.857 25.714v73.143q0 14.857-10.857 25.714t-25.714 10.857h-62.286z" + ], + "tags": [ + "crosshairs" + ], + "defaultCode": 61531, + "grid": 14, + "matchesSearch": false + }, + { + "id": 87, + "paths": [ + "M0 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286zM128 512q0 84.571 41.714 156t113.143 113.143 156 41.714 156-41.714 113.143-113.143 41.714-156-41.714-156-113.143-113.143-156-41.714-156 41.714-113.143 113.143-41.714 156zM245.143 603.429q0-7.429 5.714-13.143l78.286-78.286-78.286-78.286q-5.714-5.714-5.714-13.143t5.714-13.143l83.429-83.429q5.714-5.714 13.143-5.714t13.143 5.714l78.286 78.286 78.286-78.286q5.714-5.714 13.143-5.714t13.143 5.714l83.429 83.429q5.714 5.714 5.714 13.143t-5.714 13.143l-78.286 78.286 78.286 78.286q5.714 5.714 5.714 13.143t-5.714 13.143l-83.429 83.429q-5.714 5.714-13.143 5.714t-13.143-5.714l-78.286-78.286-78.286 78.286q-5.714 5.714-13.143 5.714t-13.143-5.714l-83.429-83.429q-5.714-5.714-5.714-13.143z" + ], + "tags": [ + "times-circle-o" + ], + "defaultCode": 61532, + "grid": 14, + "matchesSearch": false + }, + { + "id": 88, + "paths": [ + "M0 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286zM128 512q0 84.571 41.714 156t113.143 113.143 156 41.714 156-41.714 113.143-113.143 41.714-156-41.714-156-113.143-113.143-156-41.714-156 41.714-113.143 113.143-41.714 156zM197.714 512q0-14.857 10.857-25.714l58.286-58.286q10.857-10.857 25.714-10.857t25.714 10.857l84 84 157.143-157.143q10.857-10.857 25.714-10.857t25.714 10.857l58.286 58.286q10.857 10.857 10.857 25.714t-10.857 25.714l-241.143 241.143q-10.857 10.857-25.714 10.857t-25.714-10.857l-168-168q-10.857-10.857-10.857-25.714z" + ], + "tags": [ + "check-circle-o" + ], + "defaultCode": 61533, + "grid": 14, + "matchesSearch": false + }, + { + "id": 89, + "paths": [ + "M0 510.286q0-89.714 34.857-171.143t93.429-140.286 140-93.714 170.571-34.857 170.571 34.857 140 93.714 93.429 140.286 34.857 171.143-34.857 171.429-93.429 140.571-140 93.714-170.571 34.857-170.571-34.857-140-93.714-93.429-140.571-34.857-171.429zM128 510.286q0 92.571 50.857 170.857l431.429-430.857q-77.143-52-171.429-52-84.571 0-156 41.714t-113.143 113.714-41.714 156.571zM269.143 772q78.286 50.857 169.714 50.857 63.429 0 120.857-24.857t99.143-66.571 66.286-99.714 24.571-121.429q0-92-49.714-168.571z" + ], + "tags": [ + "ban" + ], + "defaultCode": 61534, + "grid": 14, + "matchesSearch": false + }, + { + "id": 90, + "paths": [ + "M36.571 548.571q0-29.714 21.143-52l372-371.429q21.714-21.714 52-21.714 29.714 0 51.429 21.714l42.857 42.286q21.714 21.714 21.714 52t-21.714 52l-167.429 167.429h402.286q29.714 0 48.286 21.429t18.571 51.714v73.143q0 30.286-18.571 51.714t-48.286 21.429h-402.286l167.429 168q21.714 20.571 21.714 51.429t-21.714 51.429l-42.857 43.429q-21.143 21.143-51.429 21.143-29.714 0-52-21.143l-372-372.571q-21.143-21.143-21.143-51.429z" + ], + "tags": [ + "arrow-left" + ], + "defaultCode": 61536, + "grid": 14, + "matchesSearch": false + }, + { + "id": 91, + "paths": [ + "M0 585.143v-73.143q0-30.286 18.571-51.714t48.286-21.429h402.286l-167.429-168q-21.714-20.571-21.714-51.429t21.714-51.429l42.857-42.857q21.714-21.714 51.429-21.714 30.286 0 52 21.714l372 372q21.143 20 21.143 51.429 0 30.857-21.143 52l-372 372q-22.286 21.143-52 21.143-29.143 0-51.429-21.143l-42.857-42.857q-21.714-21.714-21.714-52t21.714-52l167.429-167.429h-402.286q-29.714 0-48.286-21.429t-18.571-51.714z" + ], + "tags": [ + "arrow-right" + ], + "defaultCode": 61537, + "grid": 14, + "matchesSearch": false + }, + { + "id": 92, + "paths": [ + "M30.286 554.857q0-30.286 21.714-52l372-372q20-21.143 51.429-21.143 30.857 0 52 21.143l372 372q21.143 22.286 21.143 52 0 29.143-21.143 51.429l-42.857 42.857q-21.714 21.714-52 21.714-30.857 0-51.429-21.714l-168-167.429v402.286q0 29.714-21.429 48.286t-51.714 18.571h-73.143q-30.286 0-51.714-18.571t-21.429-48.286v-402.286l-168 167.429q-20.571 21.714-51.429 21.714t-51.429-21.714l-42.857-42.857q-21.714-21.714-21.714-51.429z" + ], + "width": 951, + "tags": [ + "arrow-up" + ], + "defaultCode": 61538, + "grid": 14, + "matchesSearch": false + }, + { + "id": 93, + "paths": [ + "M30.286 475.429q0-30.286 21.714-52l42.286-42.857q22.286-21.143 52-21.143 30.286 0 51.429 21.143l168 168v-402.286q0-29.714 21.714-51.429t51.429-21.714h73.143q29.714 0 51.429 21.714t21.714 51.429v402.286l168-168q21.143-21.143 51.429-21.143 29.714 0 52 21.143l42.857 42.857q21.143 22.286 21.143 52 0 30.286-21.143 51.429l-372 372.571q-22.286 21.143-52 21.143-30.286 0-51.429-21.143l-372-372.571q-21.714-20.571-21.714-51.429z" + ], + "width": 951, + "tags": [ + "arrow-down" + ], + "defaultCode": 61539, + "grid": 14, + "matchesSearch": false + }, + { + "id": 94, + "paths": [ + "M0 640q0-113.714 30.286-190.286 92.571-230.286 500-230.286h128v-146.286q0-14.857 10.857-25.714t25.714-10.857 25.714 10.857l292.571 292.571q10.857 10.857 10.857 25.714t-10.857 25.714l-292.571 292.571q-10.857 10.857-25.714 10.857t-25.714-10.857-10.857-25.714v-146.286h-128q-56 0-100.286 3.429t-88 12.286-76 24.286-60.286 39.714-45.714 57.714-27.714 79.143-10 103.429q0 31.429 2.857 70.286 0 3.429 1.429 13.429t1.429 15.143q0 8.571-4.857 14.286t-13.429 5.714q-9.143 0-16-9.714-4-5.143-7.429-12.571t-7.714-17.143-6-13.714q-72.571-162.857-72.571-257.714z" + ], + "tags": [ + "mail-forward", + "share" + ], + "defaultCode": 61540, + "grid": 14, + "matchesSearch": false + }, + { + "id": 95, + "paths": [ + "M0 914.286v-256q0-14.857 10.857-25.714t25.714-10.857 25.714 10.857l82.286 82.286 189.714-189.714q5.714-5.714 13.143-5.714t13.143 5.714l65.143 65.143q5.714 5.714 5.714 13.143t-5.714 13.143l-189.714 189.714 82.286 82.286q10.857 10.857 10.857 25.714t-10.857 25.714-25.714 10.857h-256q-14.857 0-25.714-10.857t-10.857-25.714zM446.286 420.571q0-7.429 5.714-13.143l189.714-189.714-82.286-82.286q-10.857-10.857-10.857-25.714t10.857-25.714 25.714-10.857h256q14.857 0 25.714 10.857t10.857 25.714v256q0 14.857-10.857 25.714t-25.714 10.857-25.714-10.857l-82.286-82.286-189.714 189.714q-5.714 5.714-13.143 5.714t-13.143-5.714l-65.143-65.143q-5.714-5.714-5.714-13.143z" + ], + "tags": [ + "expand" + ], + "defaultCode": 61541, + "grid": 14, + "matchesSearch": false + }, + { + "id": 96, + "paths": [ + "M7.429 859.429q0-7.429 5.714-13.143l189.714-189.714-82.286-82.286q-10.857-10.857-10.857-25.714t10.857-25.714 25.714-10.857h256q14.857 0 25.714 10.857t10.857 25.714v256q0 14.857-10.857 25.714t-25.714 10.857-25.714-10.857l-82.286-82.286-189.714 189.714q-5.714 5.714-13.143 5.714t-13.143-5.714l-65.143-65.143q-5.714-5.714-5.714-13.143zM438.857 475.429v-256q0-14.857 10.857-25.714t25.714-10.857 25.714 10.857l82.286 82.286 189.714-189.714q5.714-5.714 13.143-5.714t13.143 5.714l65.143 65.143q5.714 5.714 5.714 13.143t-5.714 13.143l-189.714 189.714 82.286 82.286q10.857 10.857 10.857 25.714t-10.857 25.714-25.714 10.857h-256q-14.857 0-25.714-10.857t-10.857-25.714z" + ], + "tags": [ + "compress" + ], + "defaultCode": 61542, + "grid": 14, + "matchesSearch": false + }, + { + "id": 97, + "paths": [ + "M0 530.286v-109.714q0-22.857 16-38.857t38.857-16h237.714v-237.714q0-22.857 16-38.857t38.857-16h109.714q22.857 0 38.857 16t16 38.857v237.714h237.714q22.857 0 38.857 16t16 38.857v109.714q0 22.857-16 38.857t-38.857 16h-237.714v237.714q0 22.857-16 38.857t-38.857 16h-109.714q-22.857 0-38.857-16t-16-38.857v-237.714h-237.714q-22.857 0-38.857-16t-16-38.857z" + ], + "width": 805, + "tags": [ + "plus" + ], + "defaultCode": 61543, + "grid": 14, + "matchesSearch": false + }, + { + "id": 98, + "paths": [ + "M0 530.286v-109.714q0-22.857 16-38.857t38.857-16h694.857q22.857 0 38.857 16t16 38.857v109.714q0 22.857-16 38.857t-38.857 16h-694.857q-22.857 0-38.857-16t-16-38.857z" + ], + "width": 805, + "tags": [ + "minus" + ], + "defaultCode": 61544, + "grid": 14, + "matchesSearch": false + }, + { + "id": 99, + "paths": [ + "M70 644.286q7.714-29.429 34-44.286l152-88-152-88q-26.286-14.857-34-44.286t7.143-55.714l36.571-62.857q14.857-26.286 44.286-34t55.714 7.143l152 87.429v-175.429q0-29.714 21.714-51.429t51.429-21.714h73.143q29.714 0 51.429 21.714t21.714 51.429v175.429l152-87.429q26.286-14.857 55.714-7.143t44.286 34l36.571 62.857q14.857 26.286 7.143 55.714t-34 44.286l-152 88 152 88q26.286 14.857 34 44.286t-7.143 55.714l-36.571 62.857q-14.857 26.286-44.286 34t-55.714-7.143l-152-87.429v175.429q0 29.714-21.714 51.429t-51.429 21.714h-73.143q-29.714 0-51.429-21.714t-21.714-51.429v-175.429l-152 87.429q-26.286 14.857-55.714 7.143t-44.286-34l-36.571-62.857q-14.857-26.286-7.143-55.714z" + ], + "width": 951, + "tags": [ + "asterisk" + ], + "defaultCode": 61545, + "grid": 14, + "matchesSearch": false + }, + { + "id": 100, + "paths": [ + "M0 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286zM356.571 234.286l9.714 354.857q0 5.714 5.714 10t13.714 4.286h105.714q8 0 13.429-4.286t6-10l10.286-354.857q0-6.857-5.714-10.286-5.714-4.571-13.714-4.571h-125.714q-8 0-13.714 4.571-5.714 3.429-5.714 10.286zM365.714 785.714q0 7.429 5.714 13.143t13.143 5.714h109.714q7.429 0 12.571-5.429t5.143-13.429v-108.571q0-8-5.143-13.429t-12.571-5.429h-109.714q-7.429 0-13.143 5.714t-5.714 13.143v108.571z" + ], + "tags": [ + "exclamation-circle" + ], + "defaultCode": 61546, + "grid": 14, + "matchesSearch": false + }, + { + "id": 101, + "paths": [ + "M0 566.857v-182.857q0-8 5.143-13.143t13.143-5.143h251.429q-53.143 0-90.571-37.429t-37.429-90.571 37.429-90.571 90.571-37.429q61.143 0 96 44l73.143 94.286 73.143-94.286q34.857-44 96-44 53.143 0 90.571 37.429t37.429 90.571-37.429 90.571-90.571 37.429h251.429q8 0 13.143 5.143t5.143 13.143v182.857q0 8-5.143 13.143t-13.143 5.143h-54.857v237.714q0 22.857-16 38.857t-38.857 16h-621.714q-22.857 0-38.857-16t-16-38.857v-237.714h-54.857q-8 0-13.143-5.143t-5.143-13.143zM214.857 237.714q0 22.857 16 38.857t38.857 16h111.429l-72-92q-14.857-17.714-39.429-17.714-22.857 0-38.857 16t-16 38.857zM347.429 774.857q0 14.286 10.286 22t26.286 7.714h109.714q16 0 26.286-7.714t10.286-22v-409.143h-182.857v409.143zM497.143 292.571h110.857q22.857 0 38.857-16t16-38.857-16-38.857-38.857-16q-24.571 0-39.429 17.714z" + ], + "tags": [ + "gift" + ], + "defaultCode": 61547, + "grid": 14, + "matchesSearch": false + }, + { + "id": 102, + "paths": [ + "M0 808.571q0-20 17.714-42t38.857-37.429 38.857-32 17.714-27.429q0-2.286-8-21.714t-9.143-25.143q-5.143-29.143-5.143-59.429 0-65.714 24.857-125.714t68-105.429 97.429-79.429 116.571-54.571q31.429-10.286 82.857-14.571t102.571-5.143 102-3.429 93.429-13.714 64.857-32.286l16.857-16.857t16.857-16 15.429-11.429 20.857-9.143 24.857-2.571q22.286 0 40.286 26.286t27.143 64 13.714 70.857 4.571 54.857q0 54.286-11.429 110.286-26.286 128-105.429 218.857t-204.286 153.143q-122.286 61.714-250.286 61.714-84.571 0-163.429-26.857-8.571-2.857-50.286-24t-54.857-21.143q-9.143 0-22.571 18.286t-25.714 40-30 40-34.286 18.286q-17.143 0-29.143-6.286t-17.714-13.714-15.429-24q-1.143-2.286-3.429-6.286t-3.143-5.714-1.714-5.429-0.857-7.714zM219.429 621.714q0 14.857 10.857 25.714t25.714 10.857q13.714 0 25.714-10.857 15.429-13.714 42.286-40.571t38.286-37.714q78.286-70.857 153.429-100.571t179.143-29.714q14.857 0 25.714-10.857t10.857-25.714-10.857-25.714-25.714-10.857q-98.286 0-181.714 28.286t-148.286 76.571-134.571 125.429q-10.857 12-10.857 25.714z" + ], + "tags": [ + "leaf" + ], + "defaultCode": 61548, + "grid": 14, + "matchesSearch": false + }, + { + "id": 103, + "paths": [ + "M0 969.143q0-7.429 5.429-12.857t12.857-5.429h768q7.429 0 12.857 5.429t5.429 12.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-768q-7.429 0-12.857-5.429t-5.429-12.857v-36.571zM146.286 512q0-44.571 14-82.286t36.571-64.286 50-50.286 54.857-44.286 50-41.143 36.571-46.571 14-55.143q0-53.714-37.714-128l1.714 0.571-0.571-0.571q51.429 23.429 91.429 47.429t79.143 57.143 64.857 70 41.429 86 15.714 105.143q0 44.571-14 82.286t-36.571 64.286-50 50.286-54.857 44.286-50 41.143-36.571 46.571-14 55.143q0 54.857 38.286 128l-2.286-0.571 0.571 0.571q-51.429-23.429-91.429-47.429t-79.143-57.143-64.857-70-41.429-86-15.714-105.143z" + ], + "width": 805, + "tags": [ + "fire" + ], + "defaultCode": 61549, + "grid": 14, + "matchesSearch": false + }, + { + "id": 104, + "paths": [ + "M0 548.571q0-19.429 11.429-39.429 80-130.857 215.143-210.286t285.429-79.429 285.429 79.429 215.143 210.286q11.429 20 11.429 39.429t-11.429 39.429q-80 131.429-215.143 210.571t-285.429 79.143-285.429-79.429-215.143-210.286q-11.429-20-11.429-39.429zM73.143 548.571q76 117.143 190.571 186.571t248.286 69.429 248.286-69.429 190.571-186.571q-86.857-134.857-217.714-201.714 34.857 59.429 34.857 128.571 0 105.714-75.143 180.857t-180.857 75.143-180.857-75.143-75.143-180.857q0-69.143 34.857-128.571-130.857 66.857-217.714 201.714zM338.286 475.429q0 11.429 8 19.429t19.429 8 19.429-8 8-19.429q0-49.143 34.857-84t84-34.857q11.429 0 19.429-8t8-19.429-8-19.429-19.429-8q-71.429 0-122.571 51.143t-51.143 122.571z" + ], + "tags": [ + "eye" + ], + "defaultCode": 61550, + "grid": 14, + "matchesSearch": false + }, + { + "id": 105, + "paths": [ + "M0 548.571q0-21.714 11.429-39.429 87.429-134.286 217.143-212t283.429-77.714q50.857 0 102.857 9.714l30.857-55.429q5.714-9.143 16-9.143 2.857 0 10.286 3.429t17.714 8.857 18.857 10.571 18 10.571 11.143 6.571q9.143 5.714 9.143 15.429 0 4-0.571 5.143-60 107.429-180 323.429t-180.571 324l-28 50.857q-5.714 9.143-16 9.143-6.857 0-76.571-40-9.143-5.714-9.143-16 0-6.857 25.143-49.714-81.714-37.143-150.571-98.857t-119.143-140q-11.429-17.714-11.429-39.429zM73.143 548.571q95.429 147.429 244 214.286l44.571-80.571q-49.714-36-77.714-90.857t-28-116q0-69.143 34.857-128.571-130.857 66.857-217.714 201.714zM338.286 475.429q0 11.429 8 19.429t19.429 8 19.429-8 8-19.429q0-49.143 34.857-84t84-34.857q11.429 0 19.429-8t8-19.429-8-19.429-19.429-8q-71.429 0-122.571 51.143t-51.143 122.571zM512 877.714l42.286-75.429q121.143-10.286 224.286-78.286t172.286-175.429q-65.714-102.286-161.143-168l36-64q54.286 36.571 104.286 87.429t82.571 105.143q11.429 19.429 11.429 39.429t-11.429 39.429q-22.286 36.571-62.286 82.857-85.714 98.286-198.571 152.571t-239.714 54.286zM603.429 714.286l160-286.857q4.571 25.714 4.571 48 0 79.429-45.143 144.857t-119.429 94z" + ], + "tags": [ + "eye-slash" + ], + "defaultCode": 61552, + "grid": 14, + "matchesSearch": false + }, + { + "id": 106, + "paths": [ + "M9.143 842.857l438.857-804.571q9.714-17.714 26.857-28t37.143-10.286 37.143 10.286 26.857 28l438.857 804.571q20 36-1.143 72-9.714 16.571-26.571 26.286t-36.286 9.714h-877.714q-19.429 0-36.286-9.714t-26.571-26.286q-21.143-36-1.143-72zM429.714 310.857l9.714 261.143q0 5.714 5.714 9.429t13.714 3.714h105.714q8 0 13.429-3.714t6-9.429l10.286-262.286q0-6.857-5.714-10.857-7.429-6.286-13.714-6.286h-125.714q-6.286 0-13.714 6.286-5.714 4-5.714 12zM438.857 785.714q0 8 5.429 13.429t12.857 5.429h109.714q7.429 0 12.857-5.429t5.429-13.429v-108.571q0-8-5.429-13.429t-12.857-5.429h-109.714q-7.429 0-12.857 5.429t-5.429 13.429v108.571z" + ], + "tags": [ + "warning", + "exclamation-triangle" + ], + "defaultCode": 61553, + "grid": 14, + "matchesSearch": false + }, + { + "id": 107, + "paths": [ + "M0 605.143q-0.571-7.429 5.143-14.286l54.857-55.429q5.143-5.143 13.143-5.143 3.429 0 4.571 0.571l110.857 30.286 148-148-290.286-159.429q-8-4.571-9.714-13.714-1.143-9.143 5.143-15.429l73.143-73.143q8-7.429 17.143-4.571l380 90.857 91.429-91.429q43.429-43.429 98.286-61.714t84.571 6.857q25.143 29.714 6.857 84.571t-61.714 98.286l-92 92 91.429 397.714q2.857 10.857-6.857 18.857l-73.143 54.857q-4 3.429-10.857 3.429-2.286 0-4-0.571-8.571-1.714-12-9.143l-159.429-290.286-148 148 30.286 110.857q2.857 9.714-4.571 17.714l-54.857 54.857q-5.143 5.143-13.143 5.143h-1.143q-8.571-1.143-13.714-7.429l-108-144-144-108q-6.286-4-7.429-13.143z" + ], + "width": 805, + "tags": [ + "plane" + ], + "defaultCode": 61554, + "grid": 14, + "matchesSearch": false + }, + { + "id": 108, + "paths": [ + "M0 950.857v-731.429q0-29.714 21.714-51.429t51.429-21.714h73.143v-54.857q0-37.714 26.857-64.571t64.571-26.857h36.571q37.714 0 64.571 26.857t26.857 64.571v54.857h219.429v-54.857q0-37.714 26.857-64.571t64.571-26.857h36.571q37.714 0 64.571 26.857t26.857 64.571v54.857h73.143q29.714 0 51.429 21.714t21.714 51.429v731.429q0 29.714-21.714 51.429t-51.429 21.714h-804.571q-29.714 0-51.429-21.714t-21.714-51.429zM73.143 950.857h164.571v-164.571h-164.571v164.571zM73.143 749.714h164.571v-182.857h-164.571v182.857zM73.143 530.286h164.571v-164.571h-164.571v164.571zM219.429 256q0 7.429 5.429 12.857t12.857 5.429h36.571q7.429 0 12.857-5.429t5.429-12.857v-164.571q0-7.429-5.429-12.857t-12.857-5.429h-36.571q-7.429 0-12.857 5.429t-5.429 12.857v164.571zM274.286 950.857h182.857v-164.571h-182.857v164.571zM274.286 749.714h182.857v-182.857h-182.857v182.857zM274.286 530.286h182.857v-164.571h-182.857v164.571zM493.714 950.857h182.857v-164.571h-182.857v164.571zM493.714 749.714h182.857v-182.857h-182.857v182.857zM493.714 530.286h182.857v-164.571h-182.857v164.571zM658.286 256q0 7.429 5.429 12.857t12.857 5.429h36.571q7.429 0 12.857-5.429t5.429-12.857v-164.571q0-7.429-5.429-12.857t-12.857-5.429h-36.571q-7.429 0-12.857 5.429t-5.429 12.857v164.571zM713.143 950.857h164.571v-164.571h-164.571v164.571zM713.143 749.714h164.571v-182.857h-164.571v182.857zM713.143 530.286h164.571v-164.571h-164.571v164.571z" + ], + "width": 951, + "tags": [ + "calendar" + ], + "defaultCode": 61555, + "grid": 14, + "matchesSearch": false + }, + { + "id": 109, + "paths": [ + "M0 786.286v-109.714q0-8 5.143-13.143t13.143-5.143h128q27.429 0 49.714-8.571t39.429-25.714 29.143-35.143 25.714-44.286q18.286-35.429 44.571-97.714 16.571-37.714 28.286-63.429t30.857-60 36.571-57.143 42.286-47.429 51.429-39.143 60.857-24 73.143-9.429h146.286v-109.714q0-8 5.143-13.143t13.143-5.143q6.857 0 13.714 5.714l182.286 182.286q5.143 5.143 5.143 13.143t-5.143 13.143l-182.857 182.857q-5.143 5.143-13.143 5.143-7.429 0-12.857-5.429t-5.429-12.857v-109.714h-146.286q-27.429 0-49.714 8.571t-39.429 25.714-29.143 35.143-25.714 44.286q-18.286 35.429-44.571 97.714-16.571 37.714-28.286 63.429t-30.857 60-36.571 57.143-42.286 47.429-51.429 39.143-60.857 24-73.143 9.429h-128q-8 0-13.143-5.143t-5.143-13.143zM0 274.286v-109.714q0-8 5.143-13.143t13.143-5.143h128q142.857 0 234.286 128.571-34.286 52.571-78.286 156-12.571-25.714-21.143-41.429t-23.143-36.286-29.143-32.286-36-20-46.571-8.286h-128q-8 0-13.143-5.143t-5.143-13.143zM424.571 676q33.714-53.143 77.714-156 12.571 25.714 21.143 41.429t23.143 36.286 29.143 32.286 36 20 46.571 8.286h146.286v-109.714q0-8 5.143-13.143t13.143-5.143q6.857 0 13.714 5.714l182.286 182.286q5.143 5.143 5.143 13.143t-5.143 13.143l-182.857 182.857q-5.143 5.143-13.143 5.143-7.429 0-12.857-5.429t-5.429-12.857v-109.714q-18.286 0-48.571 0.286t-46.286 0.571-41.714-0.571-40.571-2.857-36.571-6-36-10.571-33.143-16.286-33.714-22.857-31.429-30.571-32-39.714z" + ], + "tags": [ + "random" + ], + "defaultCode": 61556, + "grid": 14, + "matchesSearch": false + }, + { + "id": 110, + "paths": [ + "M0 512q0-74.286 40.571-142t109.143-116.857 163.429-78 198.857-28.857q139.429 0 257.143 48.857t186.286 133.143 68.571 183.714-68.571 183.714-186.286 133.143-257.143 48.857q-40 0-82.857-4.571-113.143 100-262.857 138.286-28 8-65.143 12.571-9.714 1.143-17.429-5.143t-10-16.571v-0.571q-1.714-2.286-0.286-6.857t1.143-5.714 2.571-5.429l3.429-5.143t4-4.857 4.571-5.143q4-4.571 17.714-19.714t19.714-21.714 17.714-22.571 18.571-29.143 15.429-33.714 14.857-43.429q-89.714-50.857-141.429-125.714t-51.714-160.571z" + ], + "tags": [ + "comment" + ], + "defaultCode": 61557, + "grid": 14, + "matchesSearch": false + }, + { + "id": 111, + "paths": [ + "M0 548.571v-73.143q0-14.857 10.857-25.714t25.714-10.857h219.429q14.857 0 25.714 10.857t10.857 25.714v73.143q0 29.714 13.429 51.429t30.571 32.571 40.571 17.143 36.571 7.429 25.143 1.143 25.143-1.143 36.571-7.429 40.571-17.143 30.571-32.571 13.429-51.429v-73.143q0-14.857 10.857-25.714t25.714-10.857h219.429q14.857 0 25.714 10.857t10.857 25.714v73.143q0 114.857-56.286 206.857t-156.571 143.714-226 51.714-226-51.714-156.571-143.714-56.286-206.857zM0 329.143v-219.429q0-14.857 10.857-25.714t25.714-10.857h219.429q14.857 0 25.714 10.857t10.857 25.714v219.429q0 14.857-10.857 25.714t-25.714 10.857h-219.429q-14.857 0-25.714-10.857t-10.857-25.714zM585.143 329.143v-219.429q0-14.857 10.857-25.714t25.714-10.857h219.429q14.857 0 25.714 10.857t10.857 25.714v219.429q0 14.857-10.857 25.714t-25.714 10.857h-219.429q-14.857 0-25.714-10.857t-10.857-25.714z" + ], + "tags": [ + "magnet" + ], + "defaultCode": 61558, + "grid": 14, + "matchesSearch": false + }, + { + "id": 112, + "paths": [ + "M51.429 734.571q0-15.143 10.857-26l424-423.429q10.857-10.857 25.714-10.857t25.714 10.857l424 423.429q10.857 10.857 10.857 26t-10.857 26l-94.857 94.286q-10.857 10.857-25.714 10.857t-25.714-10.857l-303.429-303.429-303.429 303.429q-10.857 10.857-25.714 10.857t-25.714-10.857l-94.857-94.286q-10.857-10.857-10.857-26z" + ], + "tags": [ + "chevron-up" + ], + "defaultCode": 61559, + "grid": 14, + "matchesSearch": false + }, + { + "id": 113, + "paths": [ + "M51.429 435.714q0-15.143 10.857-26l94.857-94.286q10.857-10.857 25.714-10.857t25.714 10.857l303.429 303.429 303.429-303.429q10.857-10.857 25.714-10.857t25.714 10.857l94.857 94.286q10.857 10.857 10.857 26t-10.857 26l-424 423.429q-10.857 10.857-25.714 10.857t-25.714-10.857l-424-423.429q-10.857-10.857-10.857-26z" + ], + "tags": [ + "chevron-down" + ], + "defaultCode": 61560, + "grid": 14, + "matchesSearch": false + }, + { + "id": 114, + "paths": [ + "M0 475.429q0-13.714 8.571-23.429l182.857-219.429q10.857-12.571 28-12.571t28 12.571l182.857 219.429q8.571 9.714 8.571 23.429 0 14.857-10.857 25.714t-25.714 10.857h-109.714v219.429h329.143q9.143 0 14.286 6.286l91.429 109.714q4 6.286 4 12 0 7.429-5.429 12.857t-12.857 5.429h-548.571q-4.571 0-7.714-1.143t-5.143-4-3.143-4.571-1.714-6.571-0.571-6.571v-342.857h-109.714q-14.857 0-25.714-10.857t-10.857-25.714zM365.714 237.714q0-7.429 5.429-12.857t12.857-5.429h548.571q4.571 0 7.714 1.143t5.143 4 3.143 4.571 1.714 6.571 0.571 6.571v342.857h109.714q14.857 0 25.714 10.857t10.857 25.714q0 13.714-8.571 23.429l-182.857 219.429q-11.429 13.143-28 13.143t-28-13.143l-182.857-219.429q-8.571-9.714-8.571-23.429 0-14.857 10.857-25.714t25.714-10.857h109.714v-219.429h-329.143q-9.143 0-14.286-6.857l-91.429-109.714q-4-5.143-4-11.429z" + ], + "width": 1097, + "tags": [ + "retweet" + ], + "defaultCode": 61561, + "grid": 14, + "matchesSearch": false + }, + { + "id": 115, + "paths": [ + "M0 182.857q0-14.857 10.857-25.714t25.714-10.857h146.286q9.143 0 16.286 3.714t11.429 8.857 7.429 14 4.286 15.143 3.143 16.857 2.571 14.571h686.286q14.857 0 25.714 10.857t10.857 25.714v292.571q0 13.714-9.143 24.286t-23.429 12.286l-596.571 69.714q0.571 4 2.571 12.286t3.429 15.143 1.429 12.571q0 9.143-13.714 36.571h525.714q14.857 0 25.714 10.857t10.857 25.714-10.857 25.714-25.714 10.857h-585.143q-14.857 0-25.714-10.857t-10.857-25.714q0-8 6.286-22.571t16.857-34 11.714-21.714l-101.143-470.286h-116.571q-14.857 0-25.714-10.857t-10.857-25.714zM219.429 877.714q0-30.286 21.429-51.714t51.714-21.429 51.714 21.429 21.429 51.714-21.429 51.714-51.714 21.429-51.714-21.429-21.429-51.714zM731.429 877.714q0-30.286 21.429-51.714t51.714-21.429 51.714 21.429 21.429 51.714-21.429 51.714-51.714 21.429-51.714-21.429-21.429-51.714z" + ], + "width": 951, + "tags": [ + "shopping-cart" + ], + "defaultCode": 61562, + "grid": 14, + "matchesSearch": false + }, + { + "id": 116, + "paths": [ + "M0 749.714v-548.571q0-52.571 37.714-90.286t90.286-37.714h182.857q52.571 0 90.286 37.714t37.714 90.286v18.286h384q52.571 0 90.286 37.714t37.714 90.286v402.286q0 52.571-37.714 90.286t-90.286 37.714h-694.857q-52.571 0-90.286-37.714t-37.714-90.286z" + ], + "width": 951, + "tags": [ + "folder" + ], + "defaultCode": 61563, + "grid": 14, + "matchesSearch": false + }, + { + "id": 117, + "paths": [ + "M0 749.714v-548.571q0-52.571 37.714-90.286t90.286-37.714h182.857q52.571 0 90.286 37.714t37.714 90.286v18.286h310.857q52.571 0 90.286 37.714t37.714 90.286v91.429h-475.429q-53.714 0-112.571 27.143t-93.714 68.286l-195.429 229.714q0-2.286-0.286-7.143t-0.286-7.143zM41.714 845.714q0-17.714 17.714-37.714l192-226.286q24.571-29.143 68.857-49.429t82-20.286h621.714q19.429 0 34.571 7.429t15.143 24.571q0 17.714-17.714 37.714l-192 226.286q-24.571 29.143-68.857 49.429t-82 20.286h-621.714q-19.429 0-34.571-7.429t-15.143-24.571z" + ], + "width": 1097, + "tags": [ + "folder-open" + ], + "defaultCode": 61564, + "grid": 14, + "matchesSearch": false + }, + { + "id": 118, + "paths": [ + "M36.571 841.143q0-14.857 10.857-25.714t25.714-10.857h73.143v-585.143h-73.143q-14.857 0-25.714-10.857t-10.857-25.714 10.857-25.714l146.286-146.286q10.857-10.857 25.714-10.857t25.714 10.857l146.286 146.286q10.857 10.857 10.857 25.714t-10.857 25.714-25.714 10.857h-73.143v585.143h73.143q14.857 0 25.714 10.857t10.857 25.714-10.857 25.714l-146.286 146.286q-10.857 10.857-25.714 10.857t-25.714-10.857l-146.286-146.286q-10.857-10.857-10.857-25.714z" + ], + "width": 439, + "tags": [ + "arrows-v" + ], + "defaultCode": 61565, + "grid": 14, + "matchesSearch": false + }, + { + "id": 119, + "paths": [ + "M0 512q0-14.857 10.857-25.714l146.286-146.286q10.857-10.857 25.714-10.857t25.714 10.857 10.857 25.714v73.143h585.143v-73.143q0-14.857 10.857-25.714t25.714-10.857 25.714 10.857l146.286 146.286q10.857 10.857 10.857 25.714t-10.857 25.714l-146.286 146.286q-10.857 10.857-25.714 10.857t-25.714-10.857-10.857-25.714v-73.143h-585.143v73.143q0 14.857-10.857 25.714t-25.714 10.857-25.714-10.857l-146.286-146.286q-10.857-10.857-10.857-25.714z" + ], + "tags": [ + "arrows-h" + ], + "defaultCode": 61566, + "grid": 14, + "matchesSearch": false + }, + { + "id": 120, + "paths": [ + "M0 859.429v-694.857q0-37.714 26.857-64.571t64.571-26.857h914.286q37.714 0 64.571 26.857t26.857 64.571v694.857q0 37.714-26.857 64.571t-64.571 26.857h-914.286q-37.714 0-64.571-26.857t-26.857-64.571zM73.143 859.429q0 7.429 5.429 12.857t12.857 5.429h914.286q7.429 0 12.857-5.429t5.429-12.857v-694.857q0-7.429-5.429-12.857t-12.857-5.429h-914.286q-7.429 0-12.857 5.429t-5.429 12.857v694.857zM146.286 804.571v-219.429h146.286v219.429h-146.286zM365.714 804.571v-512h146.286v512h-146.286zM585.143 804.571v-365.714h146.286v365.714h-146.286zM804.571 804.571v-585.143h146.286v585.143h-146.286z" + ], + "width": 1097, + "tags": [ + "bar-chart-o" + ], + "defaultCode": 61568, + "grid": 14, + "matchesSearch": false + }, + { + "id": 121, + "paths": [ + "M0 786.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286zM146.286 714.286q84.571 53.714 184 53.714 64 0 120-20.286t96-54.286 68.857-78.286 42.857-92.571 14-96.286q0-10.286-0.571-15.429 36-25.714 60-62.286-32 14.286-69.143 19.429 38.857-22.857 53.143-66.857-37.143 21.714-76.571 29.143-34.857-37.714-87.429-37.714-49.714 0-84.857 35.143t-35.143 84.857q0 16.571 2.857 27.429-73.714-4-138.286-37.143t-109.714-88.571q-16.571 28.571-16.571 60.571 0 65.143 52 100-26.857-0.571-57.143-14.857v1.143q0 42.857 28.571 76.286t70.286 41.429q-16.571 4.571-29.143 4.571-7.429 0-22.286-2.286 12 36 42.571 59.429t69.429 24q-66.286 51.429-149.143 51.429-14.857 0-28.571-1.714z" + ], + "tags": [ + "twitter-square" + ], + "defaultCode": 61569, + "grid": 14, + "matchesSearch": false + }, + { + "id": 122, + "paths": [ + "M0 786.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286v548.571q0 68-48.286 116.286t-116.286 48.286h-109.714v-347.429h116l17.143-128h-133.143v-81.714q0-30.857 16-47.429t54.857-16.571l75.429-0.571v-118.286q-54.857-5.143-102.857-5.143-77.714 0-124.571 46t-46.857 128.857v94.857h-128v128h128v347.429h-310.857q-68 0-116.286-48.286t-48.286-116.286z" + ], + "tags": [ + "facebook-square" + ], + "defaultCode": 61570, + "grid": 14, + "matchesSearch": false + }, + { + "id": 123, + "paths": [ + "M0 877.714v-731.429q0-30.286 21.429-51.714t51.714-21.429h877.714q30.286 0 51.714 21.429t21.429 51.714v731.429q0 30.286-21.429 51.714t-51.714 21.429h-877.714q-30.286 0-51.714-21.429t-21.429-51.714zM73.143 877.714h877.714v-73.143h-877.714v73.143zM73.143 292.571h877.714v-146.286h-473.143l-36.571 73.143h-368v73.143zM146.286 182.857h219.429v-73.143h-219.429v73.143zM292.571 549.714q0 90.857 64.286 155.143t155.143 64.286 155.143-64.286 64.286-155.143-64.286-155.143-155.143-64.286-155.143 64.286-64.286 155.143zM365.714 549.714q0-60.571 42.857-103.429t103.429-42.857 103.429 42.857 42.857 103.429-42.857 103.429-103.429 42.857-103.429-42.857-42.857-103.429zM420.571 548.571q0 8 5.143 13.143t13.143 5.143 13.143-5.143 5.143-13.143q0-22.857 16-38.857t38.857-16q8 0 13.143-5.143t5.143-13.143-5.143-13.143-13.143-5.143q-37.714 0-64.571 26.857t-26.857 64.571z" + ], + "tags": [ + "camera-retro" + ], + "defaultCode": 61571, + "grid": 14, + "matchesSearch": false + }, + { + "id": 124, + "paths": [ + "M0 448q0-91.429 54.286-178.857t141.714-141.714 178.857-54.286q93.143 0 151.714 58.571t58.571 151.714q0 108-74.857 208.571l202.857 202.857 54.857-54.857q-1.714-1.714-14.857-14t-22.857-22-18.857-20.857-9.143-16.286q0-9.714 28-37.714t37.714-28q7.429 0 13.143 5.714 3.429 3.429 26.286 25.429t46.857 45.429 49.429 49.143 41.714 44.571 16.286 23.429q0 9.714-28 37.714t-37.714 28q-5.143 0-16.286-9.143t-20.857-18.857-22-22.857-14-14.857l-54.857 54.857 125.714 125.714q16 16 16 38.857 0 24-22.286 46.286t-46.286 22.286q-22.857 0-38.857-16l-383.429-383.429q-100.571 74.857-208.571 74.857-93.143 0-151.714-58.571t-58.571-151.714zM109.714 438.857q0 45.714 32 77.714t77.714 32 77.714-32 32-77.714q0-24-10.857-47.429 23.429 10.857 47.429 10.857 45.714 0 77.714-32t32-77.714-32-77.714-77.714-32-77.714 32-32 77.714q0 24 10.857 47.429-23.429-10.857-47.429-10.857-45.714 0-77.714 32t-32 77.714z" + ], + "tags": [ + "key" + ], + "defaultCode": 61572, + "grid": 14, + "matchesSearch": false + }, + { + "id": 125, + "paths": [ + "M0 564v-105.714q0-5.714 4-11.143t9.143-6l88.571-13.714q6.286-20 18.286-43.429-19.429-27.429-51.429-65.714-4-6.286-4-11.429 0-6.857 4-11.429 12.571-17.143 46.857-50.857t45.143-33.714q6.286 0 12 4l65.714 51.429q19.429-10.286 44-18.286 6.286-61.714 13.143-88 4-13.714 17.143-13.714h106.286q6.286 0 11.429 4.286t5.714 10l13.143 87.429q19.429 5.714 42.857 17.714l67.429-50.857q4.571-4 11.429-4 6.286 0 12 4.571 82.286 76 82.286 91.429 0 5.143-4 10.857-6.857 9.143-24 30.857t-25.714 34.286q13.143 27.429 19.429 46.857l86.857 13.143q5.714 1.143 9.714 6t4 11.143v105.714q0 5.714-4 11.143t-9.143 6l-88.571 13.714q-6.286 20-18.286 43.429 19.429 27.429 51.429 65.714 4 5.714 4 11.429 0 6.857-4 10.857-13.143 17.143-47.143 51.143t-44.857 34q-6.286 0-12-4l-65.714-51.429q-21.143 10.857-44 17.714-6.286 61.714-13.143 88.571-4 13.714-17.143 13.714h-106.286q-6.286 0-11.429-4.286t-5.714-10l-13.143-87.429q-19.429-5.714-42.857-17.714l-67.429 50.857q-4 4-11.429 4-6.286 0-12-4.571-82.286-76-82.286-91.429 0-5.143 4-10.857 5.714-8 23.429-30.286t26.857-34.857q-13.143-25.143-20-46.857l-86.857-13.714q-5.714-0.571-9.714-5.429t-4-11.143zM219.429 512q0 60.571 42.857 103.429t103.429 42.857 103.429-42.857 42.857-103.429-42.857-103.429-103.429-42.857-103.429 42.857-42.857 103.429zM658.286 844.571v-80q0-9.143 85.143-17.714 7.429-16.571 17.143-29.714-29.143-64.571-29.143-78.857 0-2.286 2.286-4 2.286-1.143 20-11.429t33.714-19.429 17.143-9.143q4.571 0 26.286 26.571t29.714 38.571q11.429-1.143 17.143-1.143t17.143 1.143q29.143-40.571 52.571-64l3.429-1.143q2.286 0 70.857 40 2.286 1.714 2.286 4 0 14.286-29.143 78.857 9.714 13.143 17.143 29.714 85.143 8.571 85.143 17.714v80q0 9.143-85.143 17.714-6.857 15.429-17.143 29.714 29.143 64.571 29.143 78.857 0 2.286-2.286 4-69.714 40.571-70.857 40.571-4.571 0-26.286-26.857t-29.714-38.857q-11.429 1.143-17.143 1.143t-17.143-1.143q-8 12-29.714 38.857t-26.286 26.857q-1.143 0-70.857-40.571-2.286-1.714-2.286-4 0-14.286 29.143-78.857-10.286-14.286-17.143-29.714-85.143-8.571-85.143-17.714zM658.286 259.429v-80q0-9.143 85.143-17.714 7.429-16.571 17.143-29.714-29.143-64.571-29.143-78.857 0-2.286 2.286-4 2.286-1.143 20-11.429t33.714-19.429 17.143-9.143q4.571 0 26.286 26.571t29.714 38.571q11.429-1.143 17.143-1.143t17.143 1.143q29.143-40.571 52.571-64l3.429-1.143q2.286 0 70.857 40 2.286 1.714 2.286 4 0 14.286-29.143 78.857 9.714 13.143 17.143 29.714 85.143 8.571 85.143 17.714v80q0 9.143-85.143 17.714-6.857 15.429-17.143 29.714 29.143 64.571 29.143 78.857 0 2.286-2.286 4-69.714 40.571-70.857 40.571-4.571 0-26.286-26.857t-29.714-38.857q-11.429 1.143-17.143 1.143t-17.143-1.143q-8 12-29.714 38.857t-26.286 26.857q-1.143 0-70.857-40.571-2.286-1.714-2.286-4 0-14.286 29.143-78.857-10.286-14.286-17.143-29.714-85.143-8.571-85.143-17.714zM804.571 804.571q0 30.286 21.429 51.714t51.714 21.429 51.714-21.429 21.429-51.714q0-29.714-21.714-51.429t-51.429-21.714-51.429 21.714-21.714 51.429zM804.571 219.429q0 30.286 21.429 51.714t51.714 21.429 51.714-21.429 21.429-51.714q0-29.714-21.714-51.429t-51.429-21.714-51.429 21.714-21.714 51.429z" + ], + "width": 1097, + "tags": [ + "gears", + "cogs" + ], + "defaultCode": 61573, + "grid": 14, + "matchesSearch": false + }, + { + "id": 126, + "paths": [ + "M0 438.857q0-79.429 53.714-146.857t146.571-106.571 202-39.143 202 39.143 146.571 106.571 53.714 146.857-53.714 146.857-146.571 106.571-202 39.143q-49.143 0-100.571-9.143-70.857 50.286-158.857 73.143-20.571 5.143-49.143 9.143h-1.714q-6.286 0-11.714-4.571t-6.571-12q-0.571-1.714-0.571-3.714t0.286-3.714 1.143-3.429l1.429-2.857t2-3.143 2.286-2.857 2.571-2.857 2.286-2.571q2.857-3.429 13.143-14.286t14.857-16.857 12.857-16.571 14.286-22 11.714-25.143q-70.857-41.143-111.429-101.143t-40.571-128zM352 802.286q33.143 2.286 50.286 2.286 92 0 176.571-25.714t150.857-73.714q71.429-52.571 109.714-121.143t38.286-145.143q0-44-13.143-86.857 73.714 40.571 116.571 101.714t42.857 131.429q0 68.571-40.571 128.286t-111.429 100.857q5.714 13.714 11.714 25.143t14.286 22 12.857 16.571 14.857 16.857 13.143 14.286q0.571 0.571 2.286 2.571t2.571 2.857 2.286 2.857 2 3.143l1.429 2.857t1.143 3.429 0.286 3.714-0.571 3.714q-1.714 8-7.429 12.571t-12.571 4q-28.571-4-49.143-9.143-88-22.857-158.857-73.143-51.429 9.143-100.571 9.143-154.857 0-269.714-75.429z" + ], + "tags": [ + "comments" + ], + "defaultCode": 61574, + "grid": 14, + "matchesSearch": false + }, + { + "id": 127, + "paths": [ + "M0 804.571v-365.714q0-30.286 21.429-51.714t51.714-21.429h156.571q20.571-13.714 78.286-88.571 33.143-42.857 61.143-73.143 13.714-14.286 20.286-48.857t17.429-72.286 35.429-61.714q22.286-21.143 51.429-21.143 48 0 86.286 18.571t58.286 58 20 106.286q0 53.143-27.429 109.714h100.571q59.429 0 102.857 43.429t43.429 102.286q0 50.857-28 93.143 5.143 18.857 5.143 39.429 0 44-21.714 82.286 1.714 12 1.714 24.571 0 57.714-34.286 101.714 0.571 79.429-48.571 125.429t-129.714 46h-73.714q-54.857 0-108.286-12.857t-123.714-37.429q-66.286-22.857-78.857-22.857h-164.571q-30.286 0-51.714-21.429t-21.429-51.714zM73.143 768q0 14.857 10.857 25.714t25.714 10.857 25.714-10.857 10.857-25.714-10.857-25.714-25.714-10.857-25.714 10.857-10.857 25.714zM219.429 804.571h18.286q7.429 0 18 1.714t18.857 3.714 21.714 6.286 20 6.571 20.286 7.143 16.571 6q120.571 41.714 195.429 41.714h69.143q109.714 0 109.714-95.429 0-14.857-2.857-32 17.143-9.143 27.143-30t10-42-10.286-39.429q30.286-28.571 30.286-68 0-14.286-5.714-31.714t-14.286-27.143q18.286-0.571 30.571-26.857t12.286-46.286q0-29.143-22.286-51.143t-50.857-22h-201.143q0-33.143 27.429-91.143t27.429-91.714q0-56-18.286-82.857t-73.143-26.857q-14.857 14.857-21.714 48.571t-17.429 71.714-34 62.571q-12.571 13.143-44 52-2.286 2.857-13.143 17.143t-18 23.429-19.714 24.286-22.857 25.143-22 20.286-22.857 15.429-20.286 5.143h-18.286v365.714z" + ], + "tags": [ + "thumbs-o-up" + ], + "defaultCode": 61575, + "grid": 14, + "matchesSearch": false + }, + { + "id": 128, + "paths": [ + "M0 585.143v-365.714q0-30.286 21.429-51.714t51.714-21.429h164.571q12.571 0 78.857-22.857 73.143-25.143 127.429-37.714t114.286-12.571h64q80 0 129.429 45.143t48.857 123.429v2.857q34.286 44 34.286 101.714 0 12.571-1.714 24.571 21.714 38.286 21.714 82.286 0 20.571-5.143 39.429 28 42.286 28 93.143 0 58.857-43.429 102.286t-102.857 43.429h-100.571q27.429 56.571 27.429 109.714 0 67.429-20 106.286-20 39.429-58.286 58t-86.286 18.571q-29.143 0-51.429-21.143-19.429-18.857-30.857-46.857t-14.571-51.714-10-48.286-17.714-36.571q-27.429-28.571-61.143-72.571-57.714-74.857-78.286-88.571h-156.571q-30.286 0-51.714-21.429t-21.429-51.714zM73.143 256q0 14.857 10.857 25.714t25.714 10.857 25.714-10.857 10.857-25.714-10.857-25.714-25.714-10.857-25.714 10.857-10.857 25.714zM219.429 585.143h18.286q9.143 0 20.286 5.143t22.857 15.429 22 20.286 22.857 25.143 19.714 24.286 18 23.429 13.143 17.143q31.429 38.857 44 52 23.429 24.571 34 62.571t17.429 71.714 21.714 48.571q54.857 0 73.143-26.857t18.286-82.857q0-33.714-27.429-91.714t-27.429-91.143h201.143q28.571 0 50.857-22t22.286-51.143q0-20-12.286-46.286t-30.571-26.857q8.571-9.714 14.286-27.143t5.714-31.714q0-39.429-30.286-68 10.286-18.286 10.286-39.429t-10-42-27.143-30q2.857-17.143 2.857-32 0-48.571-28-72t-77.714-23.429h-73.143q-74.857 0-195.429 41.714-2.857 1.143-16.571 6t-20.286 7.143-20 6.571-21.714 6.286-18.857 3.714-18 1.714h-18.286v365.714z" + ], + "tags": [ + "thumbs-o-down" + ], + "defaultCode": 61576, + "grid": 14, + "matchesSearch": false + }, + { + "id": 129, + "paths": [ + "M0 369.714q0-21.143 32-26.286l286.857-41.714 128.571-260q10.857-23.429 28-23.429v765.143l-256.571 134.857q-12.571 6.857-22.857 6.857-12 0-18-8.286t-6-20.286q0-3.429 1.143-11.429l49.143-285.714-208-202.286q-14.286-15.429-14.286-27.429z" + ], + "width": 512, + "tags": [ + "star-half" + ], + "defaultCode": 61577, + "grid": 14, + "matchesSearch": false + }, + { + "id": 130, + "paths": [ + "M0 340.571q0-125.714 72.571-196.571t200.571-70.857q35.429 0 72.286 12.286t68.571 33.143 54.571 39.143 43.429 38.857q20.571-20.571 43.429-38.857t54.571-39.143 68.571-33.143 72.286-12.286q128 0 200.571 70.857t72.571 196.571q0 126.286-130.857 257.143l-356 342.857q-10.286 10.286-25.143 10.286t-25.143-10.286l-356.571-344q-5.714-4.571-15.714-14.857t-31.714-37.429-38.857-55.714-30.571-69.143-13.429-78.857zM73.143 340.571q0 96 106.857 202.857l332 320 331.429-319.429q107.429-107.429 107.429-203.429 0-46.286-12.286-81.714t-31.429-56.286-46.571-34-53.714-17.714-56-4.571-64 14.571-63.143 36.571-49.429 41.143-34.286 35.143q-10.286 12.571-28 12.571t-28-12.571q-13.714-16-34.286-35.143t-49.429-41.143-63.143-36.571-64-14.571-56 4.571-53.714 17.714-46.571 34-31.429 56.286-12.286 81.714z" + ], + "tags": [ + "heart-o" + ], + "defaultCode": 61578, + "grid": 14, + "matchesSearch": false + }, + { + "id": 131, + "paths": [ + "M0 713.143v-402.286q0-68 48.286-116.286t116.286-48.286h182.857q7.429 0 12.857 5.429t5.429 12.857q0 2.286 0.571 11.429t0.286 15.143-1.714 13.429-5.714 11.143-11.714 3.714h-182.857q-37.714 0-64.571 26.857t-26.857 64.571v402.286q0 37.714 26.857 64.571t64.571 26.857h178.286t6.571 0.571 6.571 1.714 4.571 3.143 4 5.143 1.143 7.714q0 2.286 0.571 11.429t0.286 15.143-1.714 13.429-5.714 11.143-11.714 3.714h-182.857q-68 0-116.286-48.286t-48.286-116.286zM219.429 621.714v-219.429q0-14.857 10.857-25.714t25.714-10.857h256v-164.571q0-14.857 10.857-25.714t25.714-10.857 25.714 10.857l310.857 310.857q10.857 10.857 10.857 25.714t-10.857 25.714l-310.857 310.857q-10.857 10.857-25.714 10.857t-25.714-10.857-10.857-25.714v-164.571h-256q-14.857 0-25.714-10.857t-10.857-25.714z" + ], + "width": 951, + "tags": [ + "sign-out" + ], + "defaultCode": 61579, + "grid": 14, + "matchesSearch": false + }, + { + "id": 132, + "paths": [ + "M0 786.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286zM127.429 289.143q0 29.143 20.286 48.857t52.857 19.714h0.571q33.714 0 54.286-19.714t20.571-48.857q-0.571-29.714-20.571-49.143t-53.143-19.429-54 19.429-20.857 49.143zM135.429 808h132v-396.571h-132v396.571zM340 808h132v-221.714q0-21.714 4-32 8.571-20 25.714-34t42.286-14q66.286 0 66.286 89.714v212h132v-227.429q0-88-41.714-133.143t-110.286-45.143q-77.714 0-119.429 66.857h1.143v-57.714h-132q1.714 37.714 0 396.571z" + ], + "tags": [ + "linkedin-square" + ], + "defaultCode": 61580, + "grid": 14, + "matchesSearch": false + }, + { + "id": 133, + "paths": [ + "M0 694.857q0-70.286 44.857-126.571t101.429-56.286v-292.571q-29.714 0-51.429-21.714t-21.714-51.429 21.714-51.429 51.429-21.714h365.714q29.714 0 51.429 21.714t21.714 51.429-21.714 51.429-51.429 21.714v292.571q56.571 0 101.429 56.286t44.857 126.571q0 14.857-10.857 25.714t-25.714 10.857h-245.143l-29.143 276q-1.143 6.857-6 11.714t-11.714 4.857h-0.571q-15.429 0-18.286-15.429l-43.429-277.143h-230.857q-14.857 0-25.714-10.857t-10.857-25.714zM237.714 493.714q0 8 5.143 13.143t13.143 5.143 13.143-5.143 5.143-13.143v-256q0-8-5.143-13.143t-13.143-5.143-13.143 5.143-5.143 13.143v256z" + ], + "width": 658, + "tags": [ + "thumb-tack" + ], + "defaultCode": 61581, + "grid": 14, + "matchesSearch": false + }, + { + "id": 134, + "paths": [ + "M0 713.143v-475.429q0-68 48.286-116.286t116.286-48.286h402.286q8 0 13.143 5.143t5.143 13.143v36.571q0 8-5.143 13.143t-13.143 5.143h-402.286q-37.714 0-64.571 26.857t-26.857 64.571v475.429q0 37.714 26.857 64.571t64.571 26.857h475.429q37.714 0 64.571-26.857t26.857-64.571v-182.857q0-8 5.143-13.143t13.143-5.143h36.571q8 0 13.143 5.143t5.143 13.143v182.857q0 68-48.286 116.286t-116.286 48.286h-475.429q-68 0-116.286-48.286t-48.286-116.286zM391.429 548.571q0-7.429 5.714-13.143l372.571-372.571-100.571-100.571q-10.857-10.857-10.857-25.714t10.857-25.714 25.714-10.857h292.571q14.857 0 25.714 10.857t10.857 25.714v292.571q0 14.857-10.857 25.714t-25.714 10.857-25.714-10.857l-100.571-100.571-372.571 372.571q-5.714 5.714-13.143 5.714t-13.143-5.714l-65.143-65.143q-5.714-5.714-5.714-13.143z" + ], + "tags": [ + "external-link" + ], + "defaultCode": 61582, + "grid": 14, + "matchesSearch": false + }, + { + "id": 135, + "paths": [ + "M0 621.714v-219.429q0-14.857 10.857-25.714t25.714-10.857h256v-164.571q0-14.857 10.857-25.714t25.714-10.857 25.714 10.857l310.857 310.857q10.857 10.857 10.857 25.714t-10.857 25.714l-310.857 310.857q-10.857 10.857-25.714 10.857t-25.714-10.857-10.857-25.714v-164.571h-256q-14.857 0-25.714-10.857t-10.857-25.714zM511.143 832.857q0.286-6 1.714-13.429t5.714-11.143 11.714-3.714h182.857q37.714 0 64.571-26.857t26.857-64.571v-402.286q0-37.714-26.857-64.571t-64.571-26.857h-178.286t-6.571-0.571-6.571-1.714-4.571-3.143-4-5.143-1.143-7.714q0-2.286-0.571-11.429t-0.286-15.143 1.714-13.429 5.714-11.143 11.714-3.714h182.857q68 0 116.286 48.286t48.286 116.286v402.286q0 68-48.286 116.286t-116.286 48.286h-182.857q-7.429 0-12.857-5.429t-5.429-12.857q0-2.286-0.571-11.429t-0.286-15.143z" + ], + "tags": [ + "sign-in" + ], + "defaultCode": 61584, + "grid": 14, + "matchesSearch": false + }, + { + "id": 136, + "paths": [ + "M0 347.429v-73.143q0-22.857 16-38.857t38.857-16h164.571v-54.857q0-37.714 26.857-64.571t64.571-26.857h329.143q37.714 0 64.571 26.857t26.857 64.571v54.857h164.571q22.857 0 38.857 16t16 38.857v73.143q0 40.571-23.714 81.714t-64 74.286-98.857 55.714-123.143 25.429q-24 30.857-54.286 54.286-21.714 19.429-30 41.429t-8.286 51.143q0 30.857 17.429 52t55.714 21.143q42.857 0 76.286 26t33.429 65.429v36.571q0 8-5.143 13.143t-13.143 5.143h-475.429q-8 0-13.143-5.143t-5.143-13.143v-36.571q0-39.429 33.429-65.429t76.286-26q38.286 0 55.714-21.143t17.429-52q0-29.143-8.286-51.143t-30-41.429q-30.286-23.429-54.286-54.286-64.571-2.857-123.143-25.429t-98.857-55.714-64-74.286-23.714-81.714zM73.143 347.429q0 44.571 54 92.571t134.571 64.571q-42.286-92.571-42.286-212h-146.286v54.857zM689.143 504.571q80.571-16.571 134.571-64.571t54-92.571v-54.857h-146.286q0 119.429-42.286 212z" + ], + "width": 951, + "tags": [ + "trophy" + ], + "defaultCode": 61585, + "grid": 14, + "matchesSearch": false + }, + { + "id": 137, + "paths": [ + "M0 786.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286v548.571q0 68-48.286 116.286t-116.286 48.286h-128q-9.143 0-14-0.571t-11.143-2.857-9.143-8.286-2.857-15.714v-136.571q0-55.429-29.714-81.143 32.571-3.429 58.571-10.286t53.714-22.286 46.286-38 30.286-60 11.714-86q0-69.143-45.143-117.714 21.143-52-4.571-116.571-16-5.143-46.286 6.286t-52.571 25.143l-21.714 13.714q-53.143-14.857-109.714-14.857t-109.714 14.857q-9.143-6.286-24.286-15.429t-47.714-22-49.143-7.714q-25.143 64.571-4 116.571-45.143 48.571-45.143 117.714 0 48.571 11.714 85.714t30 60 46 38.286 53.714 22.286 58.571 10.286q-22.857 20.571-28 58.857-12 5.714-25.714 8.571t-32.571 2.857-37.429-12.286-31.714-35.714q-10.857-18.286-27.714-29.714t-28.286-13.714l-11.429-1.714q-12 0-16.571 2.571t-2.857 6.571 5.143 8 7.429 6.857l4 2.857q12.571 5.714 24.857 21.714t18 29.143l5.714 13.143q7.429 21.714 25.143 35.143t38.286 17.143 39.714 4 31.714-2l13.143-2.286q0 21.714 0.286 58.857t0.286 38.857q0 12.571-6.286 19.143t-12.571 7.429-18.857 0.857h-128q-68 0-116.286-48.286t-48.286-116.286zM154.857 697.714q1.714-2.857 7.429-1.143 5.714 2.857 4 6.857-2.857 4-7.429 1.143-5.714-2.857-4-6.857zM173.714 712q3.429-3.429 9.143 1.714 5.143 6.286 1.143 9.143-3.429 4-9.143-1.714-5.143-6.286-1.143-9.143zM191.429 744.571q-5.143-7.429 0-10.286 5.143-4 9.714 3.429 5.143 6.857 0 10.857-4.571 3.429-9.714-4zM211.429 760q4.571-5.143 11.429 1.714 6.857 6.286 2.286 10.857-4.571 5.143-11.429-1.714-7.429-6.286-2.286-10.857zM239.429 781.714q2.286-6.286 10.857-4 9.143 2.857 7.429 9.143-2.286 6.857-10.857 3.429-9.714-2.286-7.429-8.571zM274.857 789.714q0-6.286 9.143-6.286 9.714-1.143 9.714 6.286 0 6.286-9.143 6.286-9.714 1.143-9.714-6.286zM308.571 787.429q-1.143-6.857 8-8.571 9.143-1.143 10.286 5.143 1.143 5.714-8 8t-10.286-4.571z" + ], + "tags": [ + "github-square" + ], + "defaultCode": 61586, + "grid": 14, + "matchesSearch": false + }, + { + "id": 138, + "paths": [ + "M0 896v-182.857q0-22.857 16-38.857t38.857-16h244q12 32 40.286 52.571t63.143 20.571h146.286q34.857 0 63.143-20.571t40.286-52.571h244q22.857 0 38.857 16t16 38.857v182.857q0 22.857-16 38.857t-38.857 16h-841.143q-22.857 0-38.857-16t-16-38.857zM185.714 342.857q-9.714-22.286 8-39.429l256-256q10.286-10.857 25.714-10.857t25.714 10.857l256 256q17.714 17.143 8 39.429-9.714 22.857-33.714 22.857h-146.286v256q0 14.857-10.857 25.714t-25.714 10.857h-146.286q-14.857 0-25.714-10.857t-10.857-25.714v-256h-146.286q-24 0-33.714-22.857zM658.286 841.143q0 14.857 10.857 25.714t25.714 10.857 25.714-10.857 10.857-25.714-10.857-25.714-25.714-10.857-25.714 10.857-10.857 25.714zM804.571 841.143q0 14.857 10.857 25.714t25.714 10.857 25.714-10.857 10.857-25.714-10.857-25.714-25.714-10.857-25.714 10.857-10.857 25.714z" + ], + "width": 951, + "tags": [ + "upload" + ], + "defaultCode": 61587, + "grid": 14, + "matchesSearch": false + }, + { + "id": 139, + "paths": [ + "M0 630.286q0-63.429 10.286-124.286t31.143-119.714 57.429-110.857 85.714-89.143q44.571-33.714 132.571-68.571 110.857-44.571 180.571-44.571 34.286 0 100.286 13.714t99.143 13.714q10.857 0 32.571-2.857t33.143-2.857q46.286 0 67.429 28.857t21.143 76.857q0 13.143-2.857 38.857t-2.857 38.857q0 5.714 0.571 10.571t1.714 9.714 2.286 7.714 3.714 9.143 3.714 9.714q9.143 22.857 14.286 67.714t5.143 78q0 94.286-40 187.143t-112 164.571-160.571 103.143q-70.857 25.143-186.286 25.143-32.571 0-97.143-8.286t-96.571-8.286q-13.714 0-41.429 8.286t-42 8.286q-41.714 0-70.571-31.714t-28.857-73.429q0-13.714 6.286-38.857t6.286-38.286q0-22.857-7.143-68.857t-7.143-69.429zM73.143 629.714q0 22.857 7.143 68.571t7.143 69.143q0 13.143-6.286 38t-6.286 37.429 6.857 20.857 19.429 8.286q13.714 0 41.429-6.286t42-6.286q32.571 0 96.857 8.857t96.857 8.857q103.429 0 162.286-20.571 73.714-25.714 134.571-87.143t94.857-140.286 34-157.143q0-25.143-4-64.857t-10.286-55.143q-6.857-17.143-9.714-25.143t-5.143-20.857-2.286-27.714q0-13.143 2.857-39.143t2.857-38.571q0-21.143-5.714-31.429-2.286-0.571-7.429-0.571-10.857 0-33.143 2.571t-33.714 2.571q-34.286 0-100.571-13.714t-100-13.714q-24.571 0-54 6.571t-48.571 13.429-51.143 19.429q-78.286 30.857-115.429 58.857-54.857 41.714-91.143 108.286t-50.286 134.857-14 142z" + ], + "tags": [ + "lemon-o" + ], + "defaultCode": 61588, + "grid": 14, + "matchesSearch": false + }, + { + "id": 140, + "paths": [ + "M0 266.857q0-52.571 29.143-106.286 32-57.714 60.571-69.714 14.286-6.286 39.143-12t40.286-5.714q8 0 12 1.714 10.286 3.429 30.286 43.429 6.286 10.857 17.143 30.857t20 36.286 17.714 30.571q1.714 2.286 10 14.286t12.286 20.286 4 16.286q0 11.429-16.286 28.571t-35.429 31.429-35.429 30.286-16.286 26.286q0 5.143 2.857 12.857t4.857 11.714 8 13.714 6.571 10.857q43.429 78.286 99.429 134.286t134.286 99.429q1.143 0.571 10.857 6.571t13.714 8 11.714 4.857 12.857 2.857q10.286 0 26.286-16.286t30.286-35.429 31.429-35.429 28.571-16.286q8 0 16.286 4t20.286 12.286 14.286 10q14.286 8.571 30.571 17.714t36.286 20 30.857 17.143q40 20 43.429 30.286 1.714 4 1.714 12 0 15.429-5.714 40.286t-12 39.143q-12 28.571-69.714 60.571-53.714 29.143-106.286 29.143-15.429 0-30-2t-32.857-7.143-27.143-8.286-31.714-11.714-28-10.286q-56-20-100-47.429-73.143-45.143-151.143-123.143t-123.143-151.143q-27.429-44-47.429-100-1.714-5.143-10.286-28t-11.714-31.714-8.286-27.143-7.143-32.857-2-30z" + ], + "width": 805, + "tags": [ + "phone" + ], + "defaultCode": 61589, + "grid": 14, + "matchesSearch": false + }, + { + "id": 141, + "paths": [ + "M0 713.143v-475.429q0-68 48.286-116.286t116.286-48.286h475.429q68 0 116.286 48.286t48.286 116.286v475.429q0 68-48.286 116.286t-116.286 48.286h-475.429q-68 0-116.286-48.286t-48.286-116.286zM73.143 713.143q0 37.714 26.857 64.571t64.571 26.857h475.429q37.714 0 64.571-26.857t26.857-64.571v-475.429q0-37.714-26.857-64.571t-64.571-26.857h-475.429q-37.714 0-64.571 26.857t-26.857 64.571v475.429z" + ], + "width": 805, + "tags": [ + "square-o" + ], + "defaultCode": 61590, + "grid": 14, + "matchesSearch": false + }, + { + "id": 142, + "paths": [ + "M0 873.714v-736.571q0-19.429 11.143-35.429t30-23.429q12-5.143 25.143-5.143h598.857q13.143 0 25.143 5.143 18.857 7.429 30 23.429t11.143 35.429v736.571q0 19.429-11.143 35.429t-30 23.429q-10.857 4.571-25.143 4.571-27.429 0-47.429-18.286l-252-242.286-252 242.286q-20.571 18.857-47.429 18.857-13.143 0-25.143-5.143-18.857-7.429-30-23.429t-11.143-35.429zM73.143 856l292.571-280.571 50.857 48.571 241.714 232v-709.714h-585.143v709.714z" + ], + "width": 731, + "tags": [ + "bookmark-o" + ], + "defaultCode": 61591, + "grid": 14, + "matchesSearch": false + }, + { + "id": 143, + "paths": [ + "M0 786.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286zM146.286 360.571q0 9.143 1.429 19.429t2.857 17.429 5.143 18.857 5.714 16.857 7.143 18.857 6.286 17.143q34.286 93.714 123.714 183.143t183.143 123.714q3.429 1.143 17.143 6.286t18.857 7.143 16.857 5.714 18.857 5.143 17.429 2.857 19.429 1.429q32.571 0 74.571-19.429t54-45.714q12.571-30.286 12.571-57.714 0-6.286-1.143-9.143-1.714-4.571-22-16.857t-50.571-28.286l-30.286-16.571q-2.857-1.714-10.857-7.429t-14.286-8.571-12-2.857q-10.286 0-26.857 18.571t-32.571 37.429-25.143 18.857q-4 0-9.429-2t-8.857-3.714-9.714-5.429-8-4.857q-56.571-31.429-97.429-72.286t-72.286-97.429q-1.143-1.714-4.857-8t-5.429-9.714-3.714-8.857-2-9.429q0-7.429 11.714-19.143t25.714-22 25.714-22.571 11.714-20.857q0-5.714-2.857-12t-8.571-14.286-7.429-10.857q-1.714-3.429-8.571-16.286t-14.286-26-15.143-27.143-14.286-23.143-9.429-10.286-9.143-1.143q-27.429 0-57.714 12.571-26.286 12-45.714 54t-19.429 74.571z" + ], + "tags": [ + "phone-square" + ], + "defaultCode": 61592, + "grid": 14, + "matchesSearch": false + }, + { + "id": 144, + "paths": [ + "M25.143 794.857q20 2.286 44.571 2.286 128.571 0 229.143-78.857-60-1.143-107.429-36.857t-65.143-91.143q18.857 2.857 34.857 2.857 24.571 0 48.571-6.286-64-13.143-106-63.714t-42-117.429v-2.286q38.857 21.714 83.429 23.429-37.714-25.143-60-65.714t-22.286-88q0-50.286 25.143-93.143 69.143 85.143 168.286 136.286t212.286 56.857q-4.571-21.714-4.571-42.286 0-76.571 54-130.571t130.571-54q80 0 134.857 58.286 62.286-12 117.143-44.571-21.143 65.714-81.143 101.714 53.143-5.714 106.286-28.571-38.286 56-92.571 95.429 0.571 8 0.571 24 0 74.286-21.714 148.286t-66 142-105.429 120.286-147.429 83.429-184.571 31.143q-154.857 0-283.429-82.857z" + ], + "width": 951, + "tags": [ + "twitter" + ], + "defaultCode": 61593, + "grid": 14, + "matchesSearch": false + }, + { + "id": 145, + "paths": [ + "M54.286 517.143v-169.143h145.714v-124.571q0-106.286 59.429-164.857t158.286-58.571q84 0 130.286 6.857v150.857h-89.714q-49.143 0-66.286 20.571t-17.143 61.714v108h167.429l-22.286 169.143h-145.143v433.714h-174.857v-433.714h-145.714z" + ], + "width": 585, + "tags": [ + "facebook" + ], + "defaultCode": 61594, + "grid": 14, + "matchesSearch": false + }, + { + "id": 146, + "paths": [ + "M0 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286q0 143.429-83.714 258t-216.286 158.571q-15.429 2.857-22.571-4t-7.143-17.143v-120.571q0-55.429-29.714-81.143 32.571-3.429 58.571-10.286t53.714-22.286 46.286-38 30.286-60 11.714-86q0-69.143-45.143-117.714 21.143-52-4.571-116.571-16-5.143-46.286 6.286t-52.571 25.143l-21.714 13.714q-53.143-14.857-109.714-14.857t-109.714 14.857q-9.143-6.286-24.286-15.429t-47.714-22-49.143-7.714q-25.143 64.571-4 116.571-45.143 48.571-45.143 117.714 0 48.571 11.714 85.714t30 60 46 38.286 53.714 22.286 58.571 10.286q-22.857 20.571-28 58.857-12 5.714-25.714 8.571t-32.571 2.857-37.429-12.286-31.714-35.714q-10.857-18.286-27.714-29.714t-28.286-13.714l-11.429-1.714q-12 0-16.571 2.571t-2.857 6.571 5.143 8 7.429 6.857l4 2.857q12.571 5.714 24.857 21.714t18 29.143l5.714 13.143q7.429 21.714 25.143 35.143t38.286 17.143 39.714 4 31.714-2l13.143-2.286q0 21.714 0.286 50.857t0.286 30.857q0 10.286-7.429 17.143t-22.857 4q-132.571-44-216.286-158.571t-83.714-258z" + ], + "tags": [ + "github" + ], + "defaultCode": 61595, + "grid": 14, + "matchesSearch": false + }, + { + "id": 147, + "paths": [ + "M0 822.857v-329.143q0-22.857 16-38.857t38.857-16h384v-109.714q0-105.714 75.143-180.857t180.857-75.143 180.857 75.143 75.143 180.857v146.286q0 14.857-10.857 25.714t-25.714 10.857h-36.571q-14.857 0-25.714-10.857t-10.857-25.714v-146.286q0-60.571-42.857-103.429t-103.429-42.857-103.429 42.857-42.857 103.429v109.714h54.857q22.857 0 38.857 16t16 38.857v329.143q0 22.857-16 38.857t-38.857 16h-548.571q-22.857 0-38.857-16t-16-38.857z" + ], + "width": 951, + "tags": [ + "unlock" + ], + "defaultCode": 61596, + "grid": 14, + "matchesSearch": false + }, + { + "id": 148, + "paths": [ + "M0 859.429v-694.857q0-37.714 26.857-64.571t64.571-26.857h914.286q37.714 0 64.571 26.857t26.857 64.571v694.857q0 37.714-26.857 64.571t-64.571 26.857h-914.286q-37.714 0-64.571-26.857t-26.857-64.571zM73.143 859.429q0 7.429 5.429 12.857t12.857 5.429h914.286q7.429 0 12.857-5.429t5.429-12.857v-347.429h-950.857v347.429zM73.143 292.571h950.857v-128q0-7.429-5.429-12.857t-12.857-5.429h-914.286q-7.429 0-12.857 5.429t-5.429 12.857v128zM146.286 804.571v-73.143h146.286v73.143h-146.286zM365.714 804.571v-73.143h219.429v73.143h-219.429z" + ], + "width": 1097, + "tags": [ + "credit-card" + ], + "defaultCode": 61597, + "grid": 14, + "matchesSearch": false + }, + { + "id": 149, + "paths": [ + "M0 768q0-45.714 32-77.714t77.714-32 77.714 32 32 77.714-32 77.714-77.714 32-77.714-32-32-77.714zM0 479.429v-77.143q0-16.571 12-26.857 9.714-9.714 24.571-9.714h2.857q91.429 7.429 174.857 46t148 103.714q65.143 64.571 103.714 148t46 174.857q1.143 16-9.714 27.429-10.286 12-26.857 12h-77.143q-14.286 0-24.571-9.429t-11.429-23.714q-12.571-130.857-105.429-223.714t-223.714-105.429q-14.286-1.143-23.714-11.429t-9.429-24.571zM0 191.429v-81.714q0-16 11.429-26.286 10.286-10.286 25.143-10.286h1.714q149.714 7.429 286.571 68.571t243.143 168q106.857 106.286 168 243.143t68.571 286.571q1.143 15.429-10.286 26.857-10.286 11.429-26.286 11.429h-81.714q-14.857 0-25.429-10t-11.143-24.286q-6.857-122.857-57.714-233.429t-132.286-192-192-132.286-233.429-58.286q-14.286-0.571-24.286-11.143t-10-24.857z" + ], + "width": 805, + "tags": [ + "rss" + ], + "defaultCode": 61598, + "grid": 14, + "matchesSearch": false + }, + { + "id": 150, + "paths": [ + "M0 786.286v-182.857q0-14.286 9.143-42.857l112.571-346.286q9.714-30.286 36-49.143t57.714-18.857h446.857q31.429 0 57.714 18.857t36 49.143l112.571 346.286q9.143 28.571 9.143 42.857v182.857q0 37.714-26.857 64.571t-64.571 26.857h-694.857q-37.714 0-64.571-26.857t-26.857-64.571zM73.143 786.286q0 7.429 5.429 12.857t12.857 5.429h694.857q7.429 0 12.857-5.429t5.429-12.857v-182.857q0-7.429-5.429-12.857t-12.857-5.429h-694.857q-7.429 0-12.857 5.429t-5.429 12.857v182.857zM101.714 512h674.286l-89.714-275.429q-2.286-7.429-9.143-12.286t-14.857-4.857h-446.857q-8 0-14.857 4.857t-9.143 12.286zM502.857 694.857q0-18.857 13.429-32.286t32.286-13.429 32.286 13.429 13.429 32.286-13.429 32.286-32.286 13.429-32.286-13.429-13.429-32.286zM649.143 694.857q0-18.857 13.429-32.286t32.286-13.429 32.286 13.429 13.429 32.286-13.429 32.286-32.286 13.429-32.286-13.429-13.429-32.286z" + ], + "tags": [ + "hdd-o" + ], + "defaultCode": 61600, + "grid": 14, + "matchesSearch": false + }, + { + "id": 151, + "paths": [ + "M0 493.714v-109.714q0-37.714 26.857-64.571t64.571-26.857h274.286q248.571 0 512-219.429 29.714 0 51.429 21.714t21.714 51.429v219.429q30.286 0 51.714 21.429t21.429 51.714-21.429 51.714-51.714 21.429v219.429q0 29.714-21.714 51.429t-51.429 21.714q-238.286-198.286-464-217.143-33.143 10.857-52 37.714t-17.714 57.429 22.857 52.857q-11.429 18.857-13.143 37.429t3.429 33.143 19.143 31.429 27.429 28.571 35.143 28.857q-16.571 33.143-63.714 47.429t-96.286 6.571-75.429-31.714q-4-13.143-16.857-50t-18.286-54-13.143-50.857-8.571-57.714 2-56.286 12.571-63.143h-69.714q-37.714 0-64.571-26.857t-26.857-64.571zM438.857 516q215.429 24 438.857 194.857v-545.143q-225.143 172.571-438.857 196v154.286z" + ], + "tags": [ + "bullhorn" + ], + "defaultCode": 61601, + "grid": 14, + "matchesSearch": false + }, + { + "id": 152, + "paths": [ + "M0 804.571q108.571-92 164-227.143t55.429-284.857q0-94.286 54.857-149.714t150.857-66.857q-4.571-10.286-4.571-21.143 0-22.857 16-38.857t38.857-16 38.857 16 16 38.857q0 10.857-4.571 21.143 96 11.429 150.857 66.857t54.857 149.714q0 149.714 55.429 284.857t164 227.143q0 29.714-21.714 51.429t-51.429 21.714h-256q0 60.571-42.857 103.429t-103.429 42.857-103.429-42.857-42.857-103.429h-256q-29.714 0-51.429-21.714t-21.714-51.429zM104.571 804.571h741.714q-93.714-103.429-140.857-235.143t-47.143-276.857q0-146.286-182.857-146.286t-182.857 146.286q0 145.143-47.143 276.857t-140.857 235.143zM374.857 877.714q0 41.714 29.429 71.143t71.143 29.429q9.143 0 9.143-9.143t-9.143-9.143q-33.714 0-58-24.286t-24.286-58q0-9.143-9.143-9.143t-9.143 9.143z" + ], + "width": 951, + "tags": [ + "bell-o" + ], + "defaultCode": 61602, + "grid": 14, + "matchesSearch": false + }, + { + "id": 153, + "paths": [ + "M1.143 629.143q-5.714-24 11.429-40l78.857-77.143-78.857-77.143q-17.143-16-11.429-40 6.857-23.429 29.714-29.143l107.429-27.429-30.286-106.286q-6.857-23.429 10.857-40 16.571-17.714 40-10.857l106.286 30.286 27.429-107.429q5.714-23.429 29.143-29.143 23.429-6.857 40 10.857l77.143 79.429 77.143-79.429q16.571-17.143 40-10.857 23.429 5.714 29.143 29.143l27.429 107.429 106.286-30.286q23.429-6.857 40 10.857 17.714 16.571 10.857 40l-30.286 106.286 107.429 27.429q22.857 5.714 29.714 29.143 5.714 24-11.429 40l-78.857 77.143 78.857 77.143q17.143 16 11.429 40-6.857 23.429-29.714 29.143l-107.429 27.429 30.286 106.286q6.857 23.429-10.857 40-16.571 17.714-40 10.857l-106.286-30.286-27.429 107.429q-5.714 22.857-29.143 29.714-6.857 1.143-10.857 1.143-17.714 0-29.143-12.571l-77.143-78.857-77.143 78.857q-16 17.143-40 11.429-23.429-6.286-29.143-29.714l-27.429-107.429-106.286 30.286q-23.429 6.857-40-10.857-17.714-16.571-10.857-40l30.286-106.286-107.429-27.429q-22.857-5.714-29.714-29.143z" + ], + "tags": [ + "certificate" + ], + "defaultCode": 61603, + "grid": 14, + "matchesSearch": false + }, + { + "id": 154, + "paths": [ + "M0 804.571v-365.714q0-30.286 21.429-51.714t51.714-21.429h164.571q5.714 0 12.286-2.571t13.429-8 12.857-10.286 13.714-12.857 11.714-12.286 10.857-12.286 8-9.714q37.143-42.286 57.143-73.714 7.429-12 18.857-35.429t21.143-41.143 23.143-36 31.429-28.286 39.714-10q71.429 0 118 38.286t46.571 108q0 38.857-12.571 73.143h213.714q59.429 0 102.857 43.429t43.429 102.286q0 60-43.143 103.429t-103.143 43.429h-96.571q-2.286 35.429-21.143 68 1.714 12 1.714 24.571 0 57.714-34.286 101.714 0.571 79.429-48.571 125.429t-129.714 46q-76 0-184-39.429-93.714-33.714-127.429-33.714h-164.571q-30.286 0-51.714-21.429t-21.429-51.714zM73.143 768q0 14.857 10.857 25.714t25.714 10.857 25.714-10.857 10.857-25.714-10.857-25.714-25.714-10.857-25.714 10.857-10.857 25.714zM219.429 804.571h18.286q41.143 0 95.429 18.286t110.571 36.571 102.571 18.286q108 0 108-95.429 0-14.857-2.857-32 17.143-9.143 27.143-30t10-42-10.286-39.429q30.286-28.571 30.286-68 0-14.286-5.714-31.714t-14.286-27.143h189.143q29.714 0 51.429-21.714t21.714-51.429q0-29.143-22.286-51.143t-50.857-22h-329.143q0-11.429 8.571-27.714t18.857-31.429 18.857-38.857 8.571-48.286q0-38.286-25.429-55.714t-66-17.429q-13.714 0-51.429 79.429-13.714 25.143-21.143 37.143-22.857 36.571-64 82.857-40.571 46.286-57.714 60.571-39.429 32.571-80 32.571h-18.286v365.714z" + ], + "tags": [ + "hand-o-right" + ], + "defaultCode": 61604, + "grid": 14, + "matchesSearch": false + }, + { + "id": 155, + "paths": [ + "M0 438.286q0-58.857 43.429-102.286t102.857-43.429h213.714q-12.571-34.286-12.571-73.143 0-69.714 46.571-108t118-38.286q21.714 0 39.714 10t31.429 28.286 23.143 36 21.143 41.143 18.857 35.429q20 31.429 57.143 73.714 1.143 1.714 8 9.714t10.857 12.286 11.714 12.286 13.714 12.857 12.857 10.286 13.429 8 12.286 2.571h164.571q30.286 0 51.714 21.429t21.429 51.714v365.714q0 30.286-21.429 51.714t-51.714 21.429h-164.571q-33.714 0-127.429 33.714-108.571 39.429-181.143 39.429-81.143 0-131.429-44.286t-49.714-124.286l0.571-2.857q-34.857-43.429-34.857-101.714 0-12.571 1.714-24.571-18.857-32.571-21.143-68h-96.571q-60 0-103.143-43.429t-43.143-103.429zM73.143 438.857q0 29.714 21.714 51.429t51.429 21.714h189.143q-8.571 9.714-14.286 27.143t-5.714 31.714q0 39.429 30.286 68-10.286 18.286-10.286 39.429t10 42 27.143 30q-2.286 13.714-2.286 32 0 48.571 27.714 72t77.429 23.429q48 0 104.571-18.286t110.857-36.571 95.429-18.286h18.286v-365.714h-18.286q-20 0-38.571-6.857t-35.714-21.143-28.571-26.286-28-30.857q-1.143-1.714-2-2.571t-2.286-2.571-2.571-2.857q-41.143-46.286-64-82.857-8-12.571-21.714-38.857-0.571-1.714-6-12.857t-10.571-20.571-11.429-20.286-12.286-17.429-10.571-6.571q-40.571 0-66 17.429t-25.429 55.714q0 24.571 8.571 48.286t18.857 38.857 18.857 31.429 8.571 27.714h-329.143q-28.571 0-50.857 22t-22.286 51.143zM877.714 768q0 14.857 10.857 25.714t25.714 10.857 25.714-10.857 10.857-25.714-10.857-25.714-25.714-10.857-25.714 10.857-10.857 25.714z" + ], + "tags": [ + "hand-o-left" + ], + "defaultCode": 61605, + "grid": 14, + "matchesSearch": false + }, + { + "id": 156, + "paths": [ + "M0 512q0-71.429 38.286-118t108-46.571q38.857 0 73.143 12.571v-213.714q0-59.429 43.429-102.857t102.286-43.429q60 0 103.429 43.143t43.429 103.143v96.571q35.429 2.286 68 21.143 12-1.714 24.571-1.714 57.714 0 101.714 34.286 79.429-0.571 125.429 48.571t46 129.714q0 76-39.429 184-33.714 93.714-33.714 127.429v164.571q0 30.286-21.429 51.714t-51.714 21.429h-365.714q-30.286 0-51.714-21.429t-21.429-51.714v-164.571q0-5.714-2.571-12.286t-8-13.429-10.286-12.857-12.857-13.714-12.286-11.714-12.286-10.857-9.714-8q-42.286-37.143-73.714-57.143-12-7.429-35.429-18.857t-41.143-21.143-36-23.143-28.286-31.429-10-39.714zM73.143 512q0 13.714 79.429 51.429 25.143 13.714 37.143 21.143 36.571 22.857 82.857 64 46.286 40.571 60.571 57.714 32.571 39.429 32.571 80v18.286h365.714v-18.286q0-41.143 18.286-95.429t36.571-110.571 18.286-102.571q0-108-95.429-108-14.857 0-32 2.857-9.143-17.143-30-27.143t-42-10-39.429 10.286q-28.571-30.286-68-30.286-14.286 0-31.714 5.714t-27.143 14.286v-189.143q0-29.714-21.714-51.429t-51.429-21.714q-29.143 0-51.143 22.286t-22 50.857v329.143q-11.429 0-27.714-8.571t-31.429-18.857-38.857-18.857-48.286-8.571q-38.286 0-55.714 25.429t-17.429 66zM658.286 914.286q0 14.857 10.857 25.714t25.714 10.857 25.714-10.857 10.857-25.714-10.857-25.714-25.714-10.857-25.714 10.857-10.857 25.714z" + ], + "tags": [ + "hand-o-up" + ], + "defaultCode": 61606, + "grid": 14, + "matchesSearch": false + }, + { + "id": 157, + "paths": [ + "M0 512q0-21.714 10-39.714t28.286-31.429 36-23.143 41.143-21.143 35.429-18.857q31.429-20 73.714-57.143 1.714-1.143 9.714-8t12.286-10.857 12.286-11.714 12.857-13.714 10.286-12.857 8-13.429 2.571-12.286v-164.571q0-30.286 21.429-51.714t51.714-21.429h365.714q30.286 0 51.714 21.429t21.429 51.714v164.571q0 33.714 33.714 127.429 39.429 108.571 39.429 181.143 0 81.143-44.286 131.429t-124.286 49.714l-2.857-0.571q-43.429 34.857-101.714 34.857-12.571 0-24.571-1.714-30.857 17.143-68 21.143v96.571q0 60-43.429 103.143t-103.429 43.143q-58.857 0-102.286-43.429t-43.429-102.857v-213.714q-30.857 12.571-73.143 12.571-69.143 0-107.714-46.571t-38.571-118zM73.143 512q0 40.571 17.429 66t55.714 25.429q24.571 0 48.286-8.571t38.857-18.857 31.429-18.857 27.714-8.571v329.143q0 28.571 22 50.857t51.143 22.286q29.714 0 51.429-21.714t21.714-51.429v-189.143q26.286 20 58.857 20 39.429 0 68-30.286 18.286 10.286 39.429 10.286t42-10 30-27.143q13.714 2.286 32 2.286 48.571 0 72-27.714t23.429-77.429q0-48-18.286-104.571t-36.571-110.857-18.286-95.429v-18.286h-365.714v18.286q0 20-6.857 38.571t-21.143 35.714-26.286 28.571-30.857 28q-5.143 4.571-8 6.857-46.286 41.143-82.857 64-12.571 8-38.857 21.714-1.714 0.571-12.857 6t-20.571 10.571-20.286 11.429-17.429 12.286-6.571 10.571zM658.286 109.714q0 14.857 10.857 25.714t25.714 10.857 25.714-10.857 10.857-25.714-10.857-25.714-25.714-10.857-25.714 10.857-10.857 25.714z" + ], + "tags": [ + "hand-o-down" + ], + "defaultCode": 61607, + "grid": 14, + "matchesSearch": false + }, + { + "id": 158, + "paths": [ + "M0 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286zM143.429 512q0 15.429 10.286 25.714l258.857 258.857q10.286 10.286 25.714 10.286t25.714-10.286l52-52q10.286-10.286 10.286-25.714t-10.286-25.714l-108-108h286.857q14.857 0 25.714-10.857t10.857-25.714v-73.143q0-14.857-10.857-25.714t-25.714-10.857h-286.857l108-108q10.857-10.857 10.857-25.714t-10.857-25.714l-52-52q-10.286-10.286-25.714-10.286t-25.714 10.286l-258.857 258.857q-10.286 10.286-10.286 25.714z" + ], + "tags": [ + "arrow-circle-left" + ], + "defaultCode": 61608, + "grid": 14, + "matchesSearch": false + }, + { + "id": 159, + "paths": [ + "M0 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286zM146.286 548.571q0 14.857 10.857 25.714t25.714 10.857h286.857l-108 108q-10.857 10.857-10.857 25.714t10.857 25.714l52 52q10.286 10.286 25.714 10.286t25.714-10.286l258.857-258.857q10.286-10.286 10.286-25.714t-10.286-25.714l-258.857-258.857q-10.286-10.286-25.714-10.286t-25.714 10.286l-52 52q-10.286 10.286-10.286 25.714t10.286 25.714l108 108h-286.857q-14.857 0-25.714 10.857t-10.857 25.714v73.143z" + ], + "tags": [ + "arrow-circle-right" + ], + "defaultCode": 61609, + "grid": 14, + "matchesSearch": false + }, + { + "id": 160, + "paths": [ + "M0 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286zM144 511.429q0 15.429 10.286 25.714l52 52q10.286 10.286 25.714 10.286t25.714-10.286l108-108v286.857q0 14.857 10.857 25.714t25.714 10.857h73.143q14.857 0 25.714-10.857t10.857-25.714v-286.857l108 108q10.857 10.857 25.714 10.857t25.714-10.857l52-52q10.286-10.286 10.286-25.714t-10.286-25.714l-258.857-258.857q-10.286-10.286-25.714-10.286t-25.714 10.286l-258.857 258.857q-10.286 10.286-10.286 25.714z" + ], + "tags": [ + "arrow-circle-up" + ], + "defaultCode": 61610, + "grid": 14, + "matchesSearch": false + }, + { + "id": 161, + "paths": [ + "M0 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286zM144 512.571q0 15.429 10.286 25.714l258.857 258.857q10.286 10.286 25.714 10.286t25.714-10.286l258.857-258.857q10.286-10.286 10.286-25.714t-10.286-25.714l-52-52q-10.286-10.286-25.714-10.286t-25.714 10.286l-108 108v-286.857q0-14.857-10.857-25.714t-25.714-10.857h-73.143q-14.857 0-25.714 10.857t-10.857 25.714v286.857l-108-108q-10.857-10.857-25.714-10.857t-25.714 10.857l-52 52q-10.286 10.286-10.286 25.714z" + ], + "tags": [ + "arrow-circle-down" + ], + "defaultCode": 61611, + "grid": 14, + "matchesSearch": false + }, + { + "id": 162, + "paths": [ + "M0 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286zM129.143 318.286q4 4 6.857 4.571 2.286 0.571 2.857 5.143t1.429 6.286 6.571-1.714q5.143 4.571 1.714 10.857 0.571-0.571 25.143 15.429 10.857 9.714 12 12 1.714 6.286-5.714 10.286-0.571-1.143-5.143-5.143t-5.143-2.286q-1.714 2.857 0.286 10.571t6 7.143q-4 0-5.429 9.143t-1.429 20.286-0.571 13.429l1.143 0.571q-1.714 6.857 3.143 19.714t12.286 11.143q-7.429 1.714 11.429 24.571 3.429 4.571 4.571 5.143 1.714 1.143 6.857 4.286t8.571 5.714 5.714 6q2.286 2.857 5.714 12.857t8 13.429q-1.143 3.429 5.429 11.429t6 13.143q-0.571 0-1.429 0.571t-1.429 0.571q1.714 4 8.857 8t8.857 7.429q0.571 1.714 1.143 5.714t1.714 6.286 4.571 1.143q1.143-11.429-13.714-35.429-8.571-14.286-9.714-16.571-1.714-2.857-3.143-8.857t-2.571-8.286q1.143 0 3.429 0.857t4.857 2 4.286 2.286 1.143 1.714q-1.714 4 1.143 10t6.857 10.571 9.714 10.857 6.857 7.429q3.429 3.429 8 11.143t0 7.714q5.143 0 11.429 5.714t9.714 11.429q2.857 4.571 4.571 14.857t2.857 13.714q1.143 4 4.857 7.714t7.143 5.429l9.143 4.571t7.429 4q2.857 1.143 10.571 6t12.286 6.571q5.714 2.286 9.143 2.286t8.286-1.429 7.714-2q8.571-1.143 16.571 8.571t12 12q20.571 10.857 31.429 6.286-1.143 0.571 0.286 4.286t4.571 8.857 5.143 8.286 3.143 4.857q2.857 3.429 10.286 8.571t10.286 8.571q3.429-2.286 4-5.143-1.714 4.571 4 11.429t10.286 5.714q8-1.714 8-18.286-17.714 8.571-28-10.286 0-0.571-1.429-3.143t-2.286-4.857-1.429-4.857 0-4.286 2.857-1.714q5.143 0 5.714-2t-1.143-7.143-2.286-7.429q-0.571-4.571-6.286-11.429t-6.857-8.571q-2.857 5.143-9.143 4.571t-9.143-5.143q0 0.571-0.857 3.143t-0.857 3.714q-7.429 0-8.571-0.571 0.571-1.714 1.429-10t2-12.857q0.571-2.286 3.143-6.857t4.286-8.286 2.286-7.143-2.571-5.429-10-1.429q-10.857 0.571-14.857 11.429-0.571 1.714-1.714 6t-2.857 6.571-5.143 4q-4 1.714-13.714 1.143t-13.714-2.857q-7.429-4.571-12.857-16.571t-5.429-21.143q0-5.714 1.429-15.143t1.714-14.286-3.143-14q1.714-1.143 5.143-5.429t5.714-6q1.143-0.571 2.571-0.857t2.571 0 2.286-0.857 1.714-3.429q-0.571-0.571-2.286-1.714-1.714-1.714-2.286-1.714 4 1.714 16.286-0.857t15.714 0.857q8.571 6.286 12.571-1.143 0-0.571-1.429-5.429t-0.286-7.714q2.857 15.429 16.571 5.143 1.714 1.714 8.857 2.857t10 2.857q1.714 1.143 4 3.143t3.143 2.571 2.857-0.286 4.857-3.714q5.714 8 6.857 13.714 6.286 22.857 10.857 25.143 4 1.714 6.286 1.143t2.571-5.429 0-8-0.857-7.143l-0.571-4.571v-10.286l-0.571-4.571q-8.571-1.714-10.571-6.857t0.857-10.571 8.571-10.571q0.571-0.571 4.571-2t8.857-3.714 7.143-4.571q12-10.857 8.571-20 4 0 6.286-5.143-0.571 0-2.857-1.714t-4.286-2.857-2.571-1.143q5.143-2.857 1.143-9.143 2.857-1.714 4.286-6.286t4.286-5.714q5.143 6.857 12 1.143 4-4.571 0.571-9.143 2.857-4 11.714-6t10.571-5.429q4 1.143 4.571-1.143t0.571-6.857 1.714-6.857q2.286-2.857 8.571-5.143t7.429-2.857l9.714-6.286q1.714-2.286 0-2.286 10.286 1.143 17.714-6.286 5.714-6.286-3.429-11.429 1.714-3.429-1.714-5.429t-8.571-3.143q1.714-0.571 6.571-0.286t6-0.857q8.571-5.714-4-9.143-9.714-2.857-24.571 6.857-1.143 0.571-5.429 5.429t-7.714 5.429q1.143 0 2.571-2.857t2.857-6.286 2-4q3.429-4 12.571-8.571 8-3.429 29.714-6.857 19.429-4.571 29.143 6.286-1.143-1.143 5.429-7.429t8.286-6.857q1.714-1.143 8.571-2.571t8.571-4.286l1.143-12.571q-6.857 0.571-10-4t-3.714-12q0 1.143-3.429 4.571 0-4-2.571-4.571t-6.571 0.571-5.143 0.571q-5.714-1.714-8.571-4.286t-4.571-9.429-2.286-8.571q-1.143-2.857-5.429-6t-5.429-6q-0.571-1.143-1.429-3.143t-1.714-3.714-2.286-3.143-3.143-1.429-4 2.857-4.286 5.714-2.571 2.857q-1.714-1.143-3.429-0.857t-2.571 0.571-2.571 1.714-2.857 2q-1.714 1.143-4.857 1.714t-4.857 1.143q8.571-2.857-0.571-6.286-5.714-2.286-9.143-1.714 5.143-2.286 4.286-6.857t-4.857-8h2.857q-0.571-2.286-4.857-4.857t-10-4.857-7.429-3.429q-4.571-2.857-19.429-5.429t-18.857-0.286q-2.857 3.429-2.571 6t2.286 8 2 7.143q0.571 3.429-3.143 7.429t-3.714 6.857q0 4 8 8.857t5.714 12.286q-1.714 4.571-9.143 9.143t-9.143 6.857q-2.857 4.571-0.857 10.571t6 9.429q1.143 1.143 0.857 2.286t-2 2.571-3.143 2.286-3.714 2l-1.714 1.143q-6.286 2.857-11.714-3.429t-7.714-14.857q-4-14.286-9.143-17.143-13.143-4.571-16.571 0.571-2.857-7.429-23.429-14.857-14.286-5.143-33.143-2.286 3.429-0.571 0-8.571-4-8.571-10.857-6.857 1.714-3.429 2.286-10t0.571-7.714q1.714-7.429 6.857-13.143 0.571-0.571 4-4.857t5.429-7.714 0.286-3.429q20 2.286 28.571-6.286 2.857-2.857 6.571-9.714t6-9.714q5.143-3.429 8-3.143t8.286 3.143 8.286 2.857q8 0.571 8.857-6.286t-4.286-11.429q6.857 0.571 1.714-9.714-2.857-4-4.571-5.143-6.857-2.286-15.429 2.857-4.571 2.286 1.143 4.571-0.571-0.571-5.429 6t-9.429 10-9.143-2.857q-0.571-0.571-3.143-7.714t-5.429-7.714q-4.571 0-9.143 8.571 1.714-4.571-6.286-8.571t-13.714-4.571q10.857-6.857-4.571-15.429-4-2.286-11.714-2.857t-11.143 2.286q-2.857 4-3.143 6.571t2.857 4.571 6 3.143 6.571 2.286 4.857 1.714q8 5.714 4.571 8-1.143 0.571-4.857 2t-6.571 2.571-3.429 2.286q-1.714 2.286 0 8t-1.143 8q-2.857-2.857-5.143-10t-4-9.429q4 5.143-14.286 3.429l-5.714-0.571q-2.286 0-9.143 1.143t-11.714 0.571-7.714-4.571q-2.286-4.571 0-11.429 0.571-2.286 2.286-1.143-2.286-1.714-6.286-5.429t-5.714-4.857q-26.286 8.571-53.714 23.429 3.429 0.571 6.857-0.571 2.857-1.143 7.429-3.714t5.714-3.143q19.429-8 24-4l2.857-2.857q8 9.143 11.429 14.286-4-2.286-17.143-0.571-11.429 3.429-12.571 6.857 4 6.857 2.857 10.286-2.286-1.714-6.571-5.714t-8.286-6.286-8.571-2.857q-9.143 0-12.571 0.571-83.429 45.714-134.286 126.857zM501.143 862.857q0 3.429 1.143 9.143 117.714-20.571 200.571-108-1.714-1.714-7.143-2.571t-7.143-2q-10.286-4-13.714-4.571 0.571-4-1.429-7.429t-4.571-5.143-7.143-4.571-6.286-4q-1.143-1.143-4-3.429t-4-3.143-4.286-2.571-4.857-1.143-5.714 0.571l-1.714 0.571q-1.714 0.571-3.143 1.429t-3.143 1.714-2.286 1.714 0 1.429q-12-9.714-20.571-12.571-2.857-0.571-6.286-3.143t-6-4-5.714-0.857-6.571 4q-2.857 2.857-3.429 8.571t-1.143 7.429q-4-2.857 0-10t1.143-10.571q-1.714-3.429-6-2.571t-6.857 2.571-6.571 4.857-5.143 3.714-4.857 3.143-4.857 4.286q-1.714 2.286-3.429 6.857t-2.857 6.286q-1.143-2.286-6.571-3.714t-5.429-3.143q1.143 5.714 2.286 20t2.857 21.714q4 17.714-6.857 27.429-15.429 14.286-16.571 22.857-2.286 12.571 6.857 14.857 0 4-4.571 11.714t-4 12.286z" + ], + "tags": [ + "globe" + ], + "defaultCode": 61612, + "grid": 14, + "matchesSearch": false + }, + { + "id": 163, + "paths": [ + "M12 877.714q0-30.286 21.714-52l389.143-389.143q22.286 56 65.429 99.143t99.143 65.429l-389.714 389.714q-21.143 21.143-51.429 21.143-29.714 0-52-21.143l-60.571-61.714q-21.714-20.571-21.714-51.429zM146.286 841.143q0 14.857 10.857 25.714t25.714 10.857 25.714-10.857 10.857-25.714-10.857-25.714-25.714-10.857-25.714 10.857-10.857 25.714zM438.857 329.143q0-105.714 75.143-180.857t180.857-75.143q33.143 0 69.429 9.429t61.429 26.571q9.143 6.286 9.143 16t-9.143 16l-167.429 96.571v128l110.286 61.143q2.857-1.714 45.143-27.714t77.429-46.286 40.286-20.286q8.571 0 13.429 5.714t4.857 14.286q0 22.286-13.143 60.571-26.857 76.571-94 124.286t-147.714 47.714q-105.714 0-180.857-75.143t-75.143-180.857z" + ], + "width": 951, + "tags": [ + "wrench" + ], + "defaultCode": 61613, + "grid": 14, + "matchesSearch": false + }, + { + "id": 164, + "paths": [ + "M0 841.143v-146.286q0-14.857 10.857-25.714t25.714-10.857h950.857q14.857 0 25.714 10.857t10.857 25.714v146.286q0 14.857-10.857 25.714t-25.714 10.857h-950.857q-14.857 0-25.714-10.857t-10.857-25.714zM0 548.571v-146.286q0-14.857 10.857-25.714t25.714-10.857h950.857q14.857 0 25.714 10.857t10.857 25.714v146.286q0 14.857-10.857 25.714t-25.714 10.857h-950.857q-14.857 0-25.714-10.857t-10.857-25.714zM0 256v-146.286q0-14.857 10.857-25.714t25.714-10.857h950.857q14.857 0 25.714 10.857t10.857 25.714v146.286q0 14.857-10.857 25.714t-25.714 10.857h-950.857q-14.857 0-25.714-10.857t-10.857-25.714zM365.714 512h585.143v-73.143h-585.143v73.143zM585.143 804.571h365.714v-73.143h-365.714v73.143zM731.429 219.429h219.429v-73.143h-219.429v73.143z" + ], + "tags": [ + "tasks" + ], + "defaultCode": 61614, + "grid": 14, + "matchesSearch": false + }, + { + "id": 165, + "paths": [ + "M2.857 168.571q9.714-22.286 33.714-22.286h731.429q24 0 33.714 22.286 9.714 23.429-8 40l-281.714 281.714v424q0 24-22.286 33.714-7.429 2.857-14.286 2.857-15.429 0-25.714-10.857l-146.286-146.286q-10.857-10.857-10.857-25.714v-277.714l-281.714-281.714q-17.714-16.571-8-40z" + ], + "width": 805, + "tags": [ + "filter" + ], + "defaultCode": 61616, + "grid": 14, + "matchesSearch": false + }, + { + "id": 166, + "paths": [ + "M0 786.286v-274.286h384v91.429q0 14.857 10.857 25.714t25.714 10.857h182.857q14.857 0 25.714-10.857t10.857-25.714v-91.429h384v274.286q0 37.714-26.857 64.571t-64.571 26.857h-841.143q-37.714 0-64.571-26.857t-26.857-64.571zM0 457.143v-219.429q0-37.714 26.857-64.571t64.571-26.857h201.143v-91.429q0-22.857 16-38.857t38.857-16h329.143q22.857 0 38.857 16t16 38.857v91.429h201.143q37.714 0 64.571 26.857t26.857 64.571v219.429h-1024zM365.714 146.286h292.571v-73.143h-292.571v73.143zM438.857 585.143v-73.143h146.286v73.143h-146.286z" + ], + "tags": [ + "briefcase" + ], + "defaultCode": 61617, + "grid": 14, + "matchesSearch": false + }, + { + "id": 167, + "paths": [ + "M0 914.286v-256q0-24 22.857-33.714 22.286-9.714 39.429 8l82.286 82.286 202.857-202.857-202.857-202.857-82.286 82.286q-10.857 10.857-25.714 10.857-6.857 0-13.714-2.857-22.857-9.714-22.857-33.714v-256q0-14.857 10.857-25.714t25.714-10.857h256q24 0 33.714 22.857 9.714 22.286-8 39.429l-82.286 82.286 202.857 202.857 202.857-202.857-82.286-82.286q-17.714-17.143-8-39.429 9.714-22.857 33.714-22.857h256q14.857 0 25.714 10.857t10.857 25.714v256q0 24-22.286 33.714-7.429 2.857-14.286 2.857-14.857 0-25.714-10.857l-82.286-82.286-202.857 202.857 202.857 202.857 82.286-82.286q16.571-17.714 40-8 22.286 9.714 22.286 33.714v256q0 14.857-10.857 25.714t-25.714 10.857h-256q-24 0-33.714-22.857-9.714-22.286 8-39.429l82.286-82.286-202.857-202.857-202.857 202.857 82.286 82.286q17.714 17.143 8 39.429-9.714 22.857-33.714 22.857h-256q-14.857 0-25.714-10.857t-10.857-25.714z" + ], + "tags": [ + "arrows-alt" + ], + "defaultCode": 61618, + "grid": 14, + "matchesSearch": false + }, + { + "id": 168, + "paths": [ + "M0 494.286q0-201.714 70.857-201.714 3.429 0 24.857 12t55.714 24.286 68 12.286q38.286 0 76-13.143-2.857 21.143-2.857 37.714 0 79.429 46.286 146.286-92.571 2.857-151.429 73.143h-76.571q-46.857 0-78.857-23.143t-32-67.714zM73.143 146.286q0-60.571 42.857-103.429t103.429-42.857 103.429 42.857 42.857 103.429-42.857 103.429-103.429 42.857-103.429-42.857-42.857-103.429zM146.286 876q0-30.286 2-59.143t8-62.286 15.143-62 24.571-55.714 35.429-46.286 48.857-30.571 63.714-11.429q5.714 0 24.571 12.286t41.714 27.429 61.143 27.429 77.143 12.286 77.143-12.286 61.143-27.429 41.714-27.429 24.571-12.286q34.857 0 63.714 11.429t48.857 30.571 35.429 46.286 24.571 55.714 15.143 62 8 62.286 2 59.143q0 68.571-41.714 108.286t-110.857 39.714h-499.429q-69.143 0-110.857-39.714t-41.714-108.286zM329.143 365.714q0-90.857 64.286-155.143t155.143-64.286 155.143 64.286 64.286 155.143-64.286 155.143-155.143 64.286-155.143-64.286-64.286-155.143zM731.429 146.286q0-60.571 42.857-103.429t103.429-42.857 103.429 42.857 42.857 103.429-42.857 103.429-103.429 42.857-103.429-42.857-42.857-103.429zM758.286 512q46.286-66.857 46.286-146.286 0-16.571-2.857-37.714 37.714 13.143 76 13.143 33.714 0 68-12.286t55.714-24.286 24.857-12q70.857 0 70.857 201.714 0 44.571-32 67.714t-78.857 23.143h-76.571q-58.857-70.286-151.429-73.143z" + ], + "width": 1097, + "tags": [ + "group", + "users" + ], + "defaultCode": 61632, + "grid": 14, + "matchesSearch": true + }, + { + "id": 169, + "paths": [ + "M9.143 256q0-68.571 48.571-116l84-83.429q47.429-47.429 116-47.429 69.143 0 116.571 48.571l117.714 118.286q47.429 47.429 47.429 116 0 70.286-50.286 119.429l50.286 50.286q49.143-50.286 118.857-50.286 68.571 0 116.571 48l118.857 118.857q48 48 48 116.571t-48.571 116l-84 83.429q-47.429 47.429-116 47.429-69.143 0-116.571-48.571l-117.714-118.286q-47.429-47.429-47.429-116 0-70.286 50.286-119.429l-50.286-50.286q-49.143 50.286-118.857 50.286-68.571 0-116.571-48l-118.857-118.857q-48-48-48-116.571zM118.857 256q0 22.857 16 38.857l118.857 118.857q15.429 15.429 38.857 15.429 24 0 41.143-17.714-1.714-1.714-10.857-10.571t-12.286-12.286-8.571-10.857-7.429-14.571-2-15.714q0-22.857 16-38.857t38.857-16q8.571 0 15.714 2t14.571 7.429 10.857 8.571 12.286 12.286 10.571 10.857q18.857-17.714 18.857-41.714 0-22.857-16-38.857l-117.714-118.286q-16-16-38.857-16-22.286 0-38.857 15.429l-84 83.429q-16 16-16 38.286zM520.571 658.857q0 22.857 16 38.857l117.714 118.286q15.429 15.429 38.857 15.429 22.857 0 38.857-14.857l84-83.429q16-16 16-38.286 0-22.857-16-38.857l-118.857-118.857q-16-16-38.857-16-24 0-41.143 18.286 1.714 1.714 10.857 10.571t12.286 12.286 8.571 10.857 7.429 14.571 2 15.714q0 22.857-16 38.857t-38.857 16q-8.571 0-15.714-2t-14.571-7.429-10.857-8.571-12.286-12.286-10.571-10.857q-18.857 17.714-18.857 41.714z" + ], + "width": 951, + "tags": [ + "chain", + "link" + ], + "defaultCode": 61633, + "grid": 14, + "matchesSearch": false + }, + { + "id": 170, + "paths": [ + "M0 621.714q0-75.429 40.571-138t106.857-93.429q-1.143-16-1.143-24.571 0-121.143 85.714-206.857t206.857-85.714q90.286 0 163.714 50.286t107.143 131.429q40-35.429 94.857-35.429 60.571 0 103.429 42.857t42.857 103.429q0 42.857-23.429 78.857 73.714 17.143 121.714 76.857t48 136.857q0 90.857-64.286 155.143t-155.143 64.286h-621.714q-105.714 0-180.857-75.143t-75.143-180.857z" + ], + "width": 1097, + "tags": [ + "cloud" + ], + "defaultCode": 61634, + "grid": 14, + "matchesSearch": false + }, + { + "id": 171, + "paths": [ + "M66 914.571q-19.714-36.286 12.286-87.143l287.429-453.143v-228h-36.571q-14.857 0-25.714-10.857t-10.857-25.714 10.857-25.714 25.714-10.857h292.571q14.857 0 25.714 10.857t10.857 25.714-10.857 25.714-25.714 10.857h-36.571v228l287.429 453.143q32 50.857 12.286 87.143t-80.286 36.286h-658.286q-60.571 0-80.286-36.286zM272 658.286h406.857l-155.429-245.143-11.429-17.714v-249.143h-73.143v249.143l-11.429 17.714z" + ], + "width": 951, + "tags": [ + "flask" + ], + "defaultCode": 61635, + "grid": 14, + "matchesSearch": false + }, + { + "id": 172, + "paths": [ + "M0.571 788q4-43.429 32-84t74.857-70.857q75.429-48 158.857-48 47.429 0 86.286 17.714 5.143-7.429 12.571-12.571l69.714-41.714-69.714-41.714q-7.429-5.143-12.571-12.571-38.857 17.714-86.286 17.714-83.429 0-158.857-48-46.857-30.286-74.857-70.857t-32-84q-2.857-33.714 8.857-64.571t36.286-53.143q48.571-45.143 126.857-45.143 82.857 0 158.286 48 47.429 29.714 75.429 70.286t32 84.571q2.286 27.429-5.714 55.429 2.286 0.571 6.857 2.857l62.857 37.714 394.286-221.143q8-4.571 17.714-4.571 9.143 0 16.571 4l73.143 36.571q17.143 9.143 20 29.143 1.714 20.571-14.286 32l-289.714 227.429 289.714 227.429q16 11.429 14.286 32-2.857 20-20 29.143l-73.143 36.571q-7.429 4-16.571 4-9.714 0-17.714-4.571l-394.286-221.143-62.857 37.714q-4.571 2.286-6.857 2.857 8 28 5.714 55.429-4 44-32 84.286t-75.429 70.571q-75.429 48-158.286 48-77.714 0-126.857-44.571-51.429-48-45.143-118.286zM96 777.143q-14.286 37.714 12 61.714 22.286 20.571 64.571 20.571 57.143 0 109.714-33.714 46.286-29.143 60.571-66.857t-12-61.714q-22.286-20.571-64.571-20.571-57.143 0-109.714 33.714-46.286 29.143-60.571 66.857zM96 320q14.286 37.714 60.571 66.857 52.571 33.714 109.714 33.714 42.286 0 64.571-20.571 26.286-24 12-61.714t-60.571-66.857q-52.571-33.714-109.714-33.714-42.286 0-64.571 20.571-26.286 24-12 61.714zM384 621.714l5.143 4.571q1.143 1.143 4 3.429 2.286 2.286 6.286 6.857t6.286 6.857l14.857 14.857 91.429-54.857 54.857 18.286 420.571-329.143-73.143-36.571-438.857 246.286v64.571zM384 475.429l54.857 33.143v-6.286q0-20.571 18.857-32l8-4.571-45.143-26.857-14.857 14.857q-1.714 1.714-5.714 6.286t-6.857 6.857q-1.143 1.143-2.286 2t-1.714 1.429zM512 548.571q0-14.857 10.857-25.714t25.714-10.857 25.714 10.857 10.857 25.714-10.857 25.714-25.714 10.857-25.714-10.857-10.857-25.714zM581.714 654.286l332.571 186.857 73.143-36.571-297.143-233.143-101.143 78.857q-1.143 1.714-7.429 4z" + ], + "tags": [ + "cut", + "scissors" + ], + "defaultCode": 61636, + "grid": 14, + "matchesSearch": false + }, + { + "id": 173, + "paths": [ + "M0 749.714v-384q0-22.857 11.429-50.286t27.429-43.429l233.143-233.143q16-16 43.429-27.429t50.286-11.429h237.714q22.857 0 38.857 16t16 38.857v187.429q38.857-22.857 73.143-22.857h237.714q22.857 0 38.857 16t16 38.857v694.857q0 22.857-16 38.857t-38.857 16h-548.571q-22.857 0-38.857-16t-16-38.857v-164.571h-310.857q-22.857 0-38.857-16t-16-38.857zM73.143 731.429h292.571v-146.286q0-22.857 11.429-50.286t27.429-43.429l180.571-180.571v-237.714h-219.429v237.714q0 22.857-16 38.857t-38.857 16h-237.714v365.714zM121.714 292.571h170.857v-170.857zM438.857 950.857h512v-658.286h-219.429v237.714q0 22.857-16 38.857t-38.857 16h-237.714v365.714zM487.429 512h170.857v-170.857z" + ], + "tags": [ + "copy", + "files-o" + ], + "defaultCode": 61637, + "grid": 14, + "matchesSearch": false + }, + { + "id": 174, + "paths": [ + "M2.286 293.143q0-90.857 62.857-154.286t153.714-63.429q90.286 0 156 64.571l345.714 346.286q5.714 5.714 5.714 12.571 0 9.143-17.429 26.571t-26.571 17.429q-7.429 0-13.143-5.714l-346.286-346.857q-45.143-44-103.429-44-60.571 0-102.286 42.857t-41.714 103.429q0 60 43.429 103.429l443.429 444q36 36 82.857 36 36.571 0 60.571-24t24-60.571q0-46.857-36-82.857l-332-332q-14.857-13.714-34.286-13.714-16.571 0-27.429 10.857t-10.857 27.429q0 18.286 14.286 33.714l234.286 234.286q5.714 5.714 5.714 12.571 0 9.143-17.714 26.857t-26.857 17.714q-6.857 0-12.571-5.714l-234.286-234.286q-36-34.857-36-85.143 0-46.857 32.571-79.429t79.429-32.571q50.286 0 85.143 36l332 332q57.143 56 57.143 134.286 0 66.857-45.143 112t-112 45.143q-77.143 0-134.286-57.143l-444-443.429q-64.571-65.714-64.571-154.857z" + ], + "width": 805, + "tags": [ + "paperclip" + ], + "defaultCode": 61638, + "grid": 14, + "matchesSearch": false + }, + { + "id": 175, + "paths": [ + "M0 896v-768q0-22.857 16-38.857t38.857-16h530.286q22.857 0 50.286 11.429t43.429 27.429l160 160q16 16 27.429 43.429t11.429 50.286v530.286q0 22.857-16 38.857t-38.857 16h-768q-22.857 0-38.857-16t-16-38.857zM73.143 877.714h73.143v-237.714q0-22.857 16-38.857t38.857-16h475.429q22.857 0 38.857 16t16 38.857v237.714h73.143v-512q0-8-5.714-22t-11.429-19.714l-160.571-160.571q-5.714-5.714-19.429-11.429t-22.286-5.714v237.714q0 22.857-16 38.857t-38.857 16h-329.143q-22.857 0-38.857-16t-16-38.857v-237.714h-73.143v731.429zM219.429 877.714h438.857v-219.429h-438.857v219.429zM365.714 347.429q0 7.429 5.429 12.857t12.857 5.429h109.714q7.429 0 12.857-5.429t5.429-12.857v-182.857q0-7.429-5.429-12.857t-12.857-5.429h-109.714q-7.429 0-12.857 5.429t-5.429 12.857v182.857z" + ], + "tags": [ + "save", + "floppy-o" + ], + "defaultCode": 61639, + "grid": 14, + "matchesSearch": false + }, + { + "id": 176, + "paths": [ + "M0 786.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286z" + ], + "tags": [ + "square" + ], + "defaultCode": 61640, + "grid": 14, + "matchesSearch": false + }, + { + "id": 177, + "paths": [ + "M0 841.143v-73.143q0-14.857 10.857-25.714t25.714-10.857h804.571q14.857 0 25.714 10.857t10.857 25.714v73.143q0 14.857-10.857 25.714t-25.714 10.857h-804.571q-14.857 0-25.714-10.857t-10.857-25.714zM0 548.571v-73.143q0-14.857 10.857-25.714t25.714-10.857h804.571q14.857 0 25.714 10.857t10.857 25.714v73.143q0 14.857-10.857 25.714t-25.714 10.857h-804.571q-14.857 0-25.714-10.857t-10.857-25.714zM0 256v-73.143q0-14.857 10.857-25.714t25.714-10.857h804.571q14.857 0 25.714 10.857t10.857 25.714v73.143q0 14.857-10.857 25.714t-25.714 10.857h-804.571q-14.857 0-25.714-10.857t-10.857-25.714z" + ], + "tags": [ + "navicon", + "reorder", + "bars" + ], + "defaultCode": 61641, + "grid": 14, + "matchesSearch": false + }, + { + "id": 178, + "paths": [ + "M0 804.571q0-45.714 32-77.714t77.714-32 77.714 32 32 77.714-32 77.714-77.714 32-77.714-32-32-77.714zM0 512q0-45.714 32-77.714t77.714-32 77.714 32 32 77.714-32 77.714-77.714 32-77.714-32-32-77.714zM0 219.429q0-45.714 32-77.714t77.714-32 77.714 32 32 77.714-32 77.714-77.714 32-77.714-32-32-77.714zM292.571 859.429v-109.714q0-7.429 5.429-12.857t12.857-5.429h694.857q7.429 0 12.857 5.429t5.429 12.857v109.714q0 7.429-5.429 12.857t-12.857 5.429h-694.857q-7.429 0-12.857-5.429t-5.429-12.857zM292.571 566.857v-109.714q0-7.429 5.429-12.857t12.857-5.429h694.857q7.429 0 12.857 5.429t5.429 12.857v109.714q0 7.429-5.429 12.857t-12.857 5.429h-694.857q-7.429 0-12.857-5.429t-5.429-12.857zM292.571 274.286v-109.714q0-7.429 5.429-12.857t12.857-5.429h694.857q7.429 0 12.857 5.429t5.429 12.857v109.714q0 7.429-5.429 12.857t-12.857 5.429h-694.857q-7.429 0-12.857-5.429t-5.429-12.857z" + ], + "tags": [ + "list-ul" + ], + "defaultCode": 61642, + "grid": 14, + "matchesSearch": false + }, + { + "id": 179, + "paths": [ + "M8.571 627.429q0-29.143 13.429-53.143t32.286-38.857 37.714-27.143 32.286-24.857 13.429-25.714q0-14.286-8.286-22t-22.571-7.714q-26.286 0-46.286 33.143l-48.571-33.714q13.714-29.143 40.857-45.429t60.286-16.286q41.714 0 70.286 23.714t28.571 64.286q0 28.571-19.429 52.286t-42.857 36.857-43.143 28.857-20.286 30h72.571v-34.286h60v90.857h-206.857q-3.429-20.571-3.429-30.857zM10.857 986.286l32.571-50.286q28 25.714 60.571 25.714 16.571 0 28.857-8.286t12.286-24.286q0-36.571-60-32l-14.857-32q4.571-5.714 18.571-24.857t24.286-30.857 21.143-22v-0.571q-9.143 0-27.714 0.571t-27.714 0.571v30.286h-60.571v-86.857h190.286v50.286l-54.286 65.714q29.143 6.857 46.286 28t17.143 50.286q0 45.714-31.143 72t-77.429 26.286q-60.571 0-98.286-37.714zM19.429 77.714l77.714-72.571h60.571v230.857h61.714v56.571h-191.429v-56.571h61.143q0-23.429 0.286-69.714t0.286-69.143v-6.857h-1.143q-4.571 9.714-28.571 30.857zM292.571 859.429v-109.714q0-8 5.143-13.143t13.143-5.143h694.857q7.429 0 12.857 5.429t5.429 12.857v109.714q0 7.429-5.429 12.857t-12.857 5.429h-694.857q-7.429 0-12.857-5.429t-5.429-12.857zM292.571 566.857v-109.714q0-8 5.143-13.143t13.143-5.143h694.857q7.429 0 12.857 5.429t5.429 12.857v109.714q0 7.429-5.429 12.857t-12.857 5.429h-694.857q-7.429 0-12.857-5.429t-5.429-12.857zM292.571 274.286v-109.714q0-7.429 5.429-12.857t12.857-5.429h694.857q7.429 0 12.857 5.429t5.429 12.857v109.714q0 7.429-5.429 12.857t-12.857 5.429h-694.857q-7.429 0-12.857-5.429t-5.429-12.857z" + ], + "tags": [ + "list-ol" + ], + "defaultCode": 61643, + "grid": 14, + "matchesSearch": false + }, + { + "id": 180, + "paths": [ + "M0 566.857v-36.571q0-8 5.143-13.143t13.143-5.143h987.429q8 0 13.143 5.143t5.143 13.143v36.571q0 8-5.143 13.143t-13.143 5.143h-987.429q-8 0-13.143-5.143t-5.143-13.143zM219.429 322.286q0-103.429 76.571-176.571 76-72.571 224.571-72.571 28.571 0 95.429 10.857 37.714 6.857 101.143 27.429 5.714 21.714 12 67.429 8 70.286 8 104.571 0 10.286-2.857 25.714l-6.857 1.714-48-3.429-8-1.143q-28.571-85.143-58.857-117.143-50.286-52-120-52-65.143 0-104 33.714-38.286 33.143-38.286 83.429 0 41.714 37.714 80t159.429 73.714q39.429 11.429 98.857 37.714 33.143 16 54.286 29.714h-424.571q-16-20-29.143-45.714-27.429-55.429-27.429-107.429zM236.571 789.714q-0.571-17.143 0-38.857l1.143-21.143v-25.143l58.286-1.143q8.571 19.429 17.143 40.571t12.857 32 7.143 15.429q20 32.571 45.714 53.714 24.571 20.571 60 32.571 33.714 12.571 75.429 12.571 36.571 0 79.429-15.429 44-14.857 69.714-49.143 26.857-34.857 26.857-73.714 0-48-46.286-89.714-19.429-16.571-78.286-40.571h234.857q4 22.286 4 52.571 0 63.429-23.429 121.143-13.143 31.429-40.571 59.429-21.143 20-62.286 46.286-45.714 27.429-87.429 37.714-45.714 12-116 12-65.143 0-111.429-13.143l-80-22.857q-32.571-9.143-41.143-16-4.571-4.571-4.571-12.571v-7.429q0-61.714-1.143-89.143z" + ], + "tags": [ + "strikethrough" + ], + "defaultCode": 61644, + "grid": 14, + "matchesSearch": false + }, + { + "id": 181, + "paths": [ + "M0 896v36.571q0 8 5.143 13.143t13.143 5.143h841.143q8 0 13.143-5.143t5.143-13.143v-36.571q0-8-5.143-13.143t-13.143-5.143h-841.143q-8 0-13.143 5.143t-5.143 13.143zM0 74.857q7.429-0.571 22.857-0.571 34.286 0 64 2.286 75.429 4 94.857 4 49.143 0 96-1.714 66.286-2.286 83.429-2.857 32 0 49.143-1.143l-0.571 8 1.143 36.571v5.143q-34.286 5.143-70.857 5.143-34.286 0-45.143 14.286-7.429 8-7.429 75.429 0 7.429 0.286 18.571t0.286 14.571l0.571 130.857 8 160q3.429 70.857 29.143 115.429 20 33.714 54.857 52.571 50.286 26.857 101.143 26.857 59.429 0 109.143-16 32-10.286 56.571-29.143 27.429-20.571 37.143-36.571 20.571-32 30.286-65.143 12-41.714 12-130.857 0-45.143-2-73.143t-6.286-70-7.714-91.143l-2.286-33.714q-2.857-38.286-13.714-50.286-19.429-20-44-19.429l-57.143 1.143-8-1.714 1.143-49.143h48l117.143 5.714q43.429 1.714 112-5.714l10.286 1.143q3.429 21.714 3.429 29.143 0 4-2.286 17.714-25.714 6.857-48 7.429-41.714 6.286-45.143 9.714-8.571 8.571-8.571 23.429 0 4 0.857 15.429t0.857 17.714q4.571 10.857 12.571 226.286 3.429 111.429-8.571 173.714-8.571 43.429-23.429 69.714-21.714 37.143-64 70.286-42.857 32.571-104 50.857-62.286 18.857-145.714 18.857-95.429 0-162.286-26.286-68-26.857-102.286-69.714-34.857-43.429-47.429-111.429-9.143-45.714-9.143-135.429v-190.286q0-107.429-9.714-121.714-14.286-20.571-84-22.286-21.143-1.143-25.714-2.286z" + ], + "tags": [ + "underline" + ], + "defaultCode": 61645, + "grid": 14, + "matchesSearch": false + }, + { + "id": 182, + "paths": [ + "M0 786.286v-621.714q0-37.714 26.857-64.571t64.571-26.857h768q37.714 0 64.571 26.857t26.857 64.571v621.714q0 37.714-26.857 64.571t-64.571 26.857h-768q-37.714 0-64.571-26.857t-26.857-64.571zM73.143 786.286q0 8 5.143 13.143t13.143 5.143h182.857q8 0 13.143-5.143t5.143-13.143v-109.714q0-8-5.143-13.143t-13.143-5.143h-182.857q-8 0-13.143 5.143t-5.143 13.143v109.714zM73.143 566.857q0 8 5.143 13.143t13.143 5.143h182.857q8 0 13.143-5.143t5.143-13.143v-109.714q0-8-5.143-13.143t-13.143-5.143h-182.857q-8 0-13.143 5.143t-5.143 13.143v109.714zM73.143 347.429q0 8 5.143 13.143t13.143 5.143h182.857q8 0 13.143-5.143t5.143-13.143v-109.714q0-8-5.143-13.143t-13.143-5.143h-182.857q-8 0-13.143 5.143t-5.143 13.143v109.714zM365.714 786.286q0 8 5.143 13.143t13.143 5.143h182.857q8 0 13.143-5.143t5.143-13.143v-109.714q0-8-5.143-13.143t-13.143-5.143h-182.857q-8 0-13.143 5.143t-5.143 13.143v109.714zM365.714 566.857q0 8 5.143 13.143t13.143 5.143h182.857q8 0 13.143-5.143t5.143-13.143v-109.714q0-8-5.143-13.143t-13.143-5.143h-182.857q-8 0-13.143 5.143t-5.143 13.143v109.714zM365.714 347.429q0 8 5.143 13.143t13.143 5.143h182.857q8 0 13.143-5.143t5.143-13.143v-109.714q0-8-5.143-13.143t-13.143-5.143h-182.857q-8 0-13.143 5.143t-5.143 13.143v109.714zM658.286 786.286q0 8 5.143 13.143t13.143 5.143h182.857q8 0 13.143-5.143t5.143-13.143v-109.714q0-8-5.143-13.143t-13.143-5.143h-182.857q-8 0-13.143 5.143t-5.143 13.143v109.714zM658.286 566.857q0 8 5.143 13.143t13.143 5.143h182.857q8 0 13.143-5.143t5.143-13.143v-109.714q0-8-5.143-13.143t-13.143-5.143h-182.857q-8 0-13.143 5.143t-5.143 13.143v109.714zM658.286 347.429q0 8 5.143 13.143t13.143 5.143h182.857q8 0 13.143-5.143t5.143-13.143v-109.714q0-8-5.143-13.143t-13.143-5.143h-182.857q-8 0-13.143 5.143t-5.143 13.143v109.714z" + ], + "width": 951, + "tags": [ + "table" + ], + "defaultCode": 61646, + "grid": 14, + "matchesSearch": false + }, + { + "id": 183, + "paths": [ + "M15.429 786.286q0-15.429 10.286-25.714l734.857-734.857q10.286-10.286 25.714-10.286t25.714 10.286l113.143 113.143q10.286 10.286 10.286 25.714t-10.286 25.714l-734.857 734.857q-10.286 10.286-25.714 10.286t-25.714-10.286l-113.143-113.143q-10.286-10.286-10.286-25.714zM73.143 73.143l56-17.143 17.143-56 17.143 56 56 17.143-56 17.143-17.143 56-17.143-56zM182.857 182.857l112-34.286 34.286-112 34.286 112 112 34.286-112 34.286-34.286 112-34.286-112zM438.857 73.143l56-17.143 17.143-56 17.143 56 56 17.143-56 17.143-17.143 56-17.143-56zM618.857 270.857l61.143 61.143 167.429-167.429-61.143-61.143zM804.571 438.857l56-17.143 17.143-56 17.143 56 56 17.143-56 17.143-17.143 56-17.143-56z" + ], + "width": 951, + "tags": [ + "magic" + ], + "defaultCode": 61648, + "grid": 14, + "matchesSearch": false + }, + { + "id": 184, + "paths": [ + "M36.571 768q0-14.857 10.857-25.714t25.714-10.857v-182.857q0-4.571-0.286-20t0-21.714 1.429-19.714 3.714-21.143 8-17.429 12.857-17.143l113.143-113.143q10.857-10.857 28.857-18.286t33.429-7.429h91.429v-109.714q0-14.857 10.857-25.714t25.714-10.857h585.143q14.857 0 25.714 10.857t10.857 25.714v585.143q0 8.571-2.286 15.143t-7.714 10.571-9.429 6.571-13.429 3.429-12.857 1.143-14.571 0-12.857-0.286q0 60.571-42.857 103.429t-103.429 42.857-103.429-42.857-42.857-103.429h-219.429q0 60.571-42.857 103.429t-103.429 42.857-103.429-42.857-42.857-103.429h-36.571q-1.714 0-12.857 0.286t-14.571 0-12.857-1.143-13.429-3.429-9.429-6.571-7.714-10.571-2.286-15.143zM146.286 512h219.429v-146.286h-90.286q-7.429 0-12.571 5.143l-111.429 111.429q-5.143 5.143-5.143 12.571v17.143zM219.429 804.571q0 29.714 21.714 51.429t51.429 21.714 51.429-21.714 21.714-51.429-21.714-51.429-51.429-21.714-51.429 21.714-21.714 51.429zM731.429 804.571q0 29.714 21.714 51.429t51.429 21.714 51.429-21.714 21.714-51.429-21.714-51.429-51.429-21.714-51.429 21.714-21.714 51.429z" + ], + "tags": [ + "truck" + ], + "defaultCode": 61649, + "grid": 14, + "matchesSearch": false + }, + { + "id": 185, + "paths": [ + "M0 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857q-63.429 0-124.571-18.286 33.714-53.143 44.571-93.714 5.143-19.429 30.857-120.571 11.429 22.286 41.714 38.571t65.143 16.286q69.143 0 123.429-39.143t84-107.714 29.714-154.286q0-65.143-34-122.286t-98.571-93.143-145.714-36q-60 0-112 16.571t-88.286 44-62.286 63.143-38.286 74-12.286 76.571q0 59.429 22.857 104.571t66.857 63.429q17.143 6.857 21.714-11.429 1.143-4 4.571-17.714t4.571-17.143q3.429-13.143-6.286-24.571-29.143-34.857-29.143-86.286 0-86.286 59.714-148.286t156.286-62q86.286 0 134.571 46.857t48.286 121.714q0 97.143-39.143 165.143t-100.286 68q-34.857 0-56-24.857t-13.143-59.714q4.571-20 15.143-53.429t17.143-58.857 6.571-43.143q0-28.571-15.429-47.429t-44-18.857q-35.429 0-60 32.571t-24.571 81.143q0 41.714 14.286 69.714l-56.571 238.857q-9.714 40-7.429 101.143-117.714-52-190.286-160.571t-72.571-241.714z" + ], + "tags": [ + "pinterest" + ], + "defaultCode": 61650, + "grid": 14, + "matchesSearch": false + }, + { + "id": 186, + "paths": [ + "M0 786.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286v548.571q0 68-48.286 116.286t-116.286 48.286h-414.286q48.571-69.714 61.714-120 5.143-19.429 30.286-119.429 12 22.286 42 38.286t64.286 16q103.429 0 168.857-84.286t65.429-213.429q0-48-20-92.857t-55.143-79.429-87.143-55.429-112.571-20.857q-59.429 0-111.143 16.286t-87.429 43.714-61.429 62.571-38 73.143-12.286 75.714q0 58.286 22.571 102.857t66.571 62.857q7.429 2.857 13.429 0t8.286-10.857q5.714-25.143 8.571-34.857 3.429-13.143-6.286-24-28.571-35.429-28.571-85.714 0-85.714 59.143-146.571t154.571-60.857q85.143 0 132.857 46.286t47.714 120q0 96-38.571 163.429t-99.143 67.429q-34.286 0-55.429-24.857t-13.143-59.143q4.571-19.429 15.143-52.857t16.857-58.286 6.286-42.571q0-28-15.143-46.571t-43.143-18.571q-34.857 0-59.143 32.286t-24.286 79.714q0 41.143 13.714 69.143l-56 236.571q-13.714 57.143-4 145.143h-104.571q-68 0-116.286-48.286t-48.286-116.286z" + ], + "tags": [ + "pinterest-square" + ], + "defaultCode": 61651, + "grid": 14, + "matchesSearch": false + }, + { + "id": 187, + "paths": [ + "M0 786.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286zM157.714 701.143q0 24.571 10.571 44.286t27.714 32.286 39.429 21.143 44.286 12 43.714 3.429q34.286 0 68.857-8.857t64.857-26.286 49.143-47.143 18.857-66.857q0-28-11.429-51.143t-28-38-33.143-27.143-28-25.143-11.429-25.429 8.857-24.286 21.429-22.571 25.143-24 21.429-34 8.857-47.143q0-34.286-12.857-56.857t-41.429-51.714h47.429l50.286-36.571h-151.429q-48.571 0-92 18.286t-72.857 56-29.429 87.429q0 53.143 36.857 88.286t90.571 35.143q12.571 0 24.571-1.714-7.429 16.571-7.429 30.857 0 25.143 22.857 53.714-100 6.857-146.857 36-26.857 16.571-43.143 41.714t-16.286 54.286zM225.714 684.571q0-26.286 14.286-45.714t37.429-29.429 46.857-14.286 48.286-4.286q11.429 0 17.714 1.143 1.143 0.571 13.143 9.429t14.857 10.857 13.143 10.286 14 12.571 10.857 12.857 9.714 14.857 5.143 15.143 2.571 18q0 43.429-33.429 64.286t-79.714 20.857q-23.429 0-46-5.429t-43.143-16.286-33.143-30.286-12.571-44.571zM264 324q0-34.857 18.286-59.429t52.571-24.571q30.286 0 53.429 25.714t33.143 57.714 10 61.143q0 34.286-18.857 56.857t-52.571 22.571q-30.286 0-53.143-24.286t-32.857-55.143-10-60.571zM548.571 493.714h73.143v91.429h36.571v-91.429h73.143v-36.571h-73.143v-73.143h-36.571v73.143h-73.143v36.571z" + ], + "tags": [ + "google-plus-square" + ], + "defaultCode": 61652, + "grid": 14, + "matchesSearch": false + }, + { + "id": 188, + "paths": [ + "M18.286 773.714q0-46.286 25.429-85.714t67.714-65.714q74.857-46.857 230.857-57.143-18.286-24-27.143-42.286t-8.857-41.714q0-20.571 12-48.571-26.286 2.286-38.857 2.286-84.571 0-142.571-55.143t-58-139.714q0-46.857 20.571-90.857t56.571-74.857q44-37.714 104.286-56t124.286-18.286h238.857l-78.857 50.286h-74.857q42.286 36 64 76t21.714 91.429q0 41.143-14 74t-33.714 53.143-39.714 37.143-34 35.143-14 37.714q0 20.571 18.286 40.286t44.286 38.857 51.714 42 44 59.429 18.286 81.143q0 51.429-27.429 98.857-41.143 69.714-120.571 102.571t-170.286 32.857q-75.429 0-140.857-23.714t-98-78.571q-21.143-34.286-21.143-74.857zM124.571 747.429q0 40 20 70.571t52.286 47.429 68 25.143 72.857 8.286q33.143 0 63.714-7.429t56.571-22.286 41.714-41.714 15.714-62.286q0-14.286-4-28t-8.286-24-15.429-23.714-16.857-20-22-19.714-20.857-16.571-23.714-17.143-20.857-14.857q-9.143-1.143-27.429-1.143-30.286 0-60 4t-61.429 14.286-55.429 26.286-39.143 42.571-15.429 60.286zM185.143 179.429q0 26.286 5.714 55.714t18 58.857 29.714 52.857 42.857 38.286 55.143 14.857q21.714 0 44.571-9.429t37.714-24.857q30.286-32.571 30.286-90.857 0-33.143-9.714-71.429t-27.714-74-48.286-59.143-66.857-23.429q-24 0-47.143 11.143t-37.429 30q-26.857 33.714-26.857 91.429zM619.429 460v-61.714h121.143v-124h60v124h121.714v61.714h-121.714v125.143h-60v-125.143h-121.143z" + ], + "width": 951, + "tags": [ + "google-plus" + ], + "defaultCode": 61653, + "grid": 14, + "matchesSearch": false + }, + { + "id": 189, + "paths": [ + "M0 841.143v-658.286q0-14.857 10.857-25.714t25.714-10.857h1024q14.857 0 25.714 10.857t10.857 25.714v658.286q0 14.857-10.857 25.714t-25.714 10.857h-1024q-14.857 0-25.714-10.857t-10.857-25.714zM73.143 658.286q60.571 0 103.429 42.857t42.857 103.429h658.286q0-60.571 42.857-103.429t103.429-42.857v-292.571q-60.571 0-103.429-42.857t-42.857-103.429h-658.286q0 60.571-42.857 103.429t-103.429 42.857v292.571zM365.714 512q0-40 12-81.143t34-76.571 58-57.714 78.857-22.286 78.857 22.286 58 57.714 34 76.571 12 81.143-12 81.143-34 76.571-58 57.714-78.857 22.286-78.857-22.286-58-57.714-34-76.571-12-81.143zM435.429 425.714l44 45.714q24-21.143 31.429-32.571h1.143v164.571h-73.143v54.857h219.429v-54.857h-73.143v-256h-65.143z" + ], + "width": 1097, + "tags": [ + "money" + ], + "defaultCode": 61654, + "grid": 14, + "matchesSearch": false + }, + { + "id": 190, + "paths": [ + "M0 402.286q0-14.857 10.857-25.714t25.714-10.857h512q14.857 0 25.714 10.857t10.857 25.714-10.857 25.714l-256 256q-10.857 10.857-25.714 10.857t-25.714-10.857l-256-256q-10.857-10.857-10.857-25.714z" + ], + "width": 585, + "tags": [ + "caret-down" + ], + "defaultCode": 61655, + "grid": 14, + "matchesSearch": false + }, + { + "id": 191, + "paths": [ + "M0 694.857q0-14.857 10.857-25.714l256-256q10.857-10.857 25.714-10.857t25.714 10.857l256 256q10.857 10.857 10.857 25.714t-10.857 25.714-25.714 10.857h-512q-14.857 0-25.714-10.857t-10.857-25.714z" + ], + "width": 585, + "tags": [ + "caret-up" + ], + "defaultCode": 61656, + "grid": 14, + "matchesSearch": false + }, + { + "id": 192, + "paths": [ + "M36.571 512q0-14.857 10.857-25.714l256-256q10.857-10.857 25.714-10.857t25.714 10.857 10.857 25.714v512q0 14.857-10.857 25.714t-25.714 10.857-25.714-10.857l-256-256q-10.857-10.857-10.857-25.714z" + ], + "width": 366, + "tags": [ + "caret-left" + ], + "defaultCode": 61657, + "grid": 14, + "matchesSearch": false + }, + { + "id": 193, + "paths": [ + "M0 768v-512q0-14.857 10.857-25.714t25.714-10.857 25.714 10.857l256 256q10.857 10.857 10.857 25.714t-10.857 25.714l-256 256q-10.857 10.857-25.714 10.857t-25.714-10.857-10.857-25.714z" + ], + "width": 366, + "tags": [ + "caret-right" + ], + "defaultCode": 61658, + "grid": 14, + "matchesSearch": false + }, + { + "id": 194, + "paths": [ + "M0 859.429v-694.857q0-37.714 26.857-64.571t64.571-26.857h768q37.714 0 64.571 26.857t26.857 64.571v694.857q0 37.714-26.857 64.571t-64.571 26.857h-768q-37.714 0-64.571-26.857t-26.857-64.571zM73.143 859.429q0 7.429 5.429 12.857t12.857 5.429h347.429v-658.286h-365.714v640zM512 877.714h347.429q7.429 0 12.857-5.429t5.429-12.857v-640h-365.714v658.286z" + ], + "width": 951, + "tags": [ + "columns" + ], + "defaultCode": 61659, + "grid": 14, + "matchesSearch": false + }, + { + "id": 195, + "paths": [ + "M0 621.714q0-14.857 10.857-25.714t25.714-10.857h512q14.857 0 25.714 10.857t10.857 25.714-10.857 25.714l-256 256q-10.857 10.857-25.714 10.857t-25.714-10.857l-256-256q-10.857-10.857-10.857-25.714zM0 402.286q0-14.857 10.857-25.714l256-256q10.857-10.857 25.714-10.857t25.714 10.857l256 256q10.857 10.857 10.857 25.714t-10.857 25.714-25.714 10.857h-512q-14.857 0-25.714-10.857t-10.857-25.714z" + ], + "width": 585, + "tags": [ + "unsorted", + "sort" + ], + "defaultCode": 61660, + "grid": 14, + "matchesSearch": false + }, + { + "id": 196, + "paths": [ + "M0 621.714q0-14.857 10.857-25.714t25.714-10.857h512q14.857 0 25.714 10.857t10.857 25.714-10.857 25.714l-256 256q-10.857 10.857-25.714 10.857t-25.714-10.857l-256-256q-10.857-10.857-10.857-25.714z" + ], + "width": 585, + "tags": [ + "sort-down", + "sort-desc" + ], + "defaultCode": 61661, + "grid": 14, + "matchesSearch": false + }, + { + "id": 197, + "paths": [ + "M0 402.286q0-14.857 10.857-25.714l256-256q10.857-10.857 25.714-10.857t25.714 10.857l256 256q10.857 10.857 10.857 25.714t-10.857 25.714-25.714 10.857h-512q-14.857 0-25.714-10.857t-10.857-25.714z" + ], + "width": 585, + "tags": [ + "sort-up", + "sort-asc" + ], + "defaultCode": 61662, + "grid": 14, + "matchesSearch": false + }, + { + "id": 198, + "paths": [ + "M0 859.429v-453.714q25.143 28 57.714 49.714 206.857 140.571 284 197.143 32.571 24 52.857 37.429t54 27.429 62.857 14h1.143q29.143 0 62.857-14t54-27.429 52.857-37.429q97.143-70.286 284.571-197.143 32.571-22.286 57.143-49.714v453.714q0 37.714-26.857 64.571t-64.571 26.857h-841.143q-37.714 0-64.571-26.857t-26.857-64.571zM0 250.286q0-44.571 23.714-74.286t67.714-29.714h841.143q37.143 0 64.286 26.857t27.143 64.571q0 45.143-28 86.286t-69.714 70.286q-214.857 149.143-267.429 185.714-5.714 4-24.286 17.429t-30.857 21.714-29.714 18.571-32.857 15.429-28.571 5.143h-1.143q-13.143 0-28.571-5.143t-32.857-15.429-29.714-18.571-30.857-21.714-24.286-17.429q-52-36.571-149.714-104.286t-117.143-81.429q-35.429-24-66.857-66t-31.429-78z" + ], + "tags": [ + "envelope" + ], + "defaultCode": 61664, + "grid": 14, + "matchesSearch": false + }, + { + "id": 199, + "paths": [ + "M0 182.286q0-42.286 29.429-70t76.857-27.714 76 27.714 29.143 70q0.571 41.714-28.857 69.714t-77.429 28h-1.143q-46.857 0-75.429-28t-28.571-69.714zM10.857 923.429v-566.286h188.571v566.286h-188.571zM303.429 923.429q1.143-228 1.143-369.714t-0.571-169.143l-0.571-27.429h188v82.286h-1.143q11.429-18.286 23.429-32t32.286-29.714 49.714-24.857 65.429-8.857q97.714 0 157.143 64.857t59.429 190v324.571h-188v-302.857q0-60-23.143-94t-72.286-34q-36 0-60.286 19.714t-36.286 48.857q-6.286 17.143-6.286 46.286v316h-188z" + ], + "tags": [ + "linkedin" + ], + "defaultCode": 61665, + "grid": 14, + "matchesSearch": false + }, + { + "id": 200, + "paths": [ + "M0 402.286v-256q0-24 22.857-33.714 22.286-9.714 39.429 8l74.286 73.714q61.143-57.714 139.714-89.429t162.571-31.714q89.143 0 170.286 34.857t140 93.714 93.714 140 34.857 170.286-34.857 170.286-93.714 140-140 93.714-170.286 34.857q-98.286 0-186.857-41.429t-150.857-116.857q-4-5.714-3.714-12.857t4.857-11.714l78.286-78.857q5.714-5.143 14.286-5.143 9.143 1.143 13.143 6.857 41.714 54.286 102.286 84t128.571 29.714q59.429 0 113.429-23.143t93.429-62.571 62.571-93.429 23.143-113.429-23.143-113.429-62.571-93.429-93.429-62.571-113.429-23.143q-56 0-107.429 20.286t-91.429 58l78.286 78.857q17.714 17.143 8 39.429-9.714 22.857-33.714 22.857h-256q-14.857 0-25.714-10.857t-10.857-25.714z" + ], + "tags": [ + "rotate-left", + "undo" + ], + "defaultCode": 61666, + "grid": 14, + "matchesSearch": false + }, + { + "id": 201, + "paths": [ + "M22.857 457.143q0-7.429 2.571-14.857t5.143-12.571 8.857-12.571 9.429-10.571 11.714-10.857 10.286-9.429q17.143-16 38.857-16 5.714 0 10.286 0.857t9.429 3.143 7.714 3.429 7.714 5.714 6.571 5.714 7.429 7.143 6.857 7.143q-8-8-8-19.429t8-19.429l198.857-198.857q8-8 19.429-8t19.429 8q-1.143-1.143-7.143-6.857t-7.143-7.429-5.714-6.571-5.714-7.714-3.429-7.714-3.143-9.429-0.857-10.286q0-21.714 16-38.857 1.714-1.714 9.429-10.286t10.857-11.714 10.571-9.429 12.571-8.857 12.571-5.143 14.857-2.571q22.857 0 38.857 16l233.143 233.143q16 16 16 38.857 0 7.429-2.571 14.857t-5.143 12.571-8.857 12.571-9.429 10.571-11.714 10.857-10.286 9.429q-17.143 16-38.857 16-5.714 0-10.286-0.857t-9.429-3.143-7.714-3.429-7.714-5.714-6.571-5.714-7.429-7.143-6.857-7.143q8 8 8 19.429t-8 19.429l-72 72 146.286 146.286q24.571-24.571 54.857-24.571 29.714 0 52 21.143l207.429 207.429q21.143 22.286 21.143 52 0 30.286-21.143 51.429l-61.143 61.714q-22.286 21.143-52 21.143-30.286 0-51.429-21.143l-207.429-208q-21.714-20.571-21.714-51.429 0-30.286 24.571-54.857l-146.286-146.286-72 72q-8 8-19.429 8t-19.429-8q1.143 1.143 7.143 6.857t7.143 7.429 5.714 6.571 5.714 7.714 3.429 7.714 3.143 9.429 0.857 10.286q0 21.714-16 38.857-1.714 1.714-9.429 10.286t-10.857 11.714-10.571 9.429-12.571 8.857-12.571 5.143-14.857 2.571q-22.857 0-38.857-16l-233.143-233.143q-16-16-16-38.857z" + ], + "tags": [ + "legal", + "gavel" + ], + "defaultCode": 61667, + "grid": 14, + "matchesSearch": false + }, + { + "id": 202, + "paths": [ + "M0 658.286q0-104 40.571-198.857t109.143-163.429 163.429-109.143 198.857-40.571 198.857 40.571 163.429 109.143 109.143 163.429 40.571 198.857q0 149.143-80.571 276-10.857 16.571-30.857 16.571h-801.143q-20 0-30.857-16.571-80.571-126.286-80.571-276zM73.143 658.286q0 30.286 21.429 51.714t51.714 21.429 51.714-21.429 21.429-51.714-21.429-51.714-51.714-21.429-51.714 21.429-21.429 51.714zM182.857 402.286q0 30.286 21.429 51.714t51.714 21.429 51.714-21.429 21.429-51.714-21.429-51.714-51.714-21.429-51.714 21.429-21.429 51.714zM405.714 740q-11.429 44 11.429 83.429t66.857 50.857 83.429-11.429 50.857-66.857q9.143-34.286-3.429-66.857t-41.143-52l57.714-218.286q3.429-14.857-4.286-27.714t-22-16.857-27.429 3.714-17.143 22.571l-57.714 218.286q-34.286 2.857-61.143 24.857t-36 56.286zM438.857 292.571q0 30.286 21.429 51.714t51.714 21.429 51.714-21.429 21.429-51.714-21.429-51.714-51.714-21.429-51.714 21.429-21.429 51.714zM694.857 402.286q0 30.286 21.429 51.714t51.714 21.429 51.714-21.429 21.429-51.714-21.429-51.714-51.714-21.429-51.714 21.429-21.429 51.714zM804.571 658.286q0 30.286 21.429 51.714t51.714 21.429 51.714-21.429 21.429-51.714-21.429-51.714-51.714-21.429-51.714 21.429-21.429 51.714z" + ], + "tags": [ + "dashboard", + "tachometer" + ], + "defaultCode": 61668, + "grid": 14, + "matchesSearch": false + }, + { + "id": 203, + "paths": [ + "M0 512q0-99.429 68.571-183.714t186.286-133.143 257.143-48.857 257.143 48.857 186.286 133.143 68.571 183.714-68.571 183.714-186.286 133.143-257.143 48.857q-40 0-82.857-4.571-113.143 100-262.857 138.286-28 8-65.143 12.571h-2.857q-8.571 0-15.429-6t-9.143-15.714v-0.571q-1.714-2.286-0.286-6.857t1.143-5.714 2.571-5.429l3.429-5.143t4-4.857 4.571-5.143q4-4.571 17.714-19.714t19.714-21.714 17.714-22.571 18.571-29.143 15.429-33.714 14.857-43.429q-89.714-50.857-141.429-125.714t-51.714-160.571zM73.143 512q0 64 40.857 122t115.143 100.286l49.714 28.571-15.429 54.857q-13.714 52-40 98.286 86.857-36 157.143-97.714l24.571-21.714 32.571 3.429q39.429 4.571 74.286 4.571 116.571 0 218-39.714t161.143-107.143 59.714-145.714-59.714-145.714-161.143-107.143-218-39.714-218 39.714-161.143 107.143-59.714 145.714z" + ], + "tags": [ + "comment-o" + ], + "defaultCode": 61669, + "grid": 14, + "matchesSearch": false + }, + { + "id": 204, + "paths": [ + "M0 438.857q0-79.429 53.714-146.857t146.571-106.571 202-39.143 202 39.143 146.571 106.571 53.714 146.857-53.714 146.857-146.571 106.571-202 39.143q-49.143 0-100.571-9.143-70.857 50.286-158.857 73.143-20.571 5.143-49.143 9.143h-1.714q-6.286 0-11.714-4.571t-6.571-12q-0.571-1.714-0.571-3.714t0.286-3.714 1.143-3.429l1.429-2.857t2-3.143 2.286-2.857 2.571-2.857 2.286-2.571q2.857-3.429 13.143-14.286t14.857-16.857 12.857-16.571 14.286-22 11.714-25.143q-70.857-41.143-111.429-101.143t-40.571-128zM73.143 438.857q0 46.857 30.286 90.286t85.143 75.429l55.429 32-20 48q19.429-11.429 35.429-22.286l25.143-17.714 30.286 5.714q44.571 8 87.429 8 87.429 0 163.429-29.714t120.857-80.571 44.857-109.143-44.857-109.143-120.857-80.571-163.429-29.714-163.429 29.714-120.857 80.571-44.857 109.143zM352 802.286q33.143 2.286 50.286 2.286 92 0 176.571-25.714t150.857-73.714q71.429-52.571 109.714-121.143t38.286-145.143q0-44-13.143-86.857 73.714 40.571 116.571 101.714t42.857 131.429q0 68.571-40.571 128.286t-111.429 100.857q5.714 13.714 11.714 25.143t14.286 22 12.857 16.571 14.857 16.857 13.143 14.286q0.571 0.571 2.286 2.571t2.571 2.857 2.286 2.857 2 3.143l1.429 2.857t1.143 3.429 0.286 3.714-0.571 3.714q-1.714 8-7.429 12.571t-12.571 4q-28.571-4-49.143-9.143-88-22.857-158.857-73.143-51.429 9.143-100.571 9.143-154.857 0-269.714-75.429z" + ], + "tags": [ + "comments-o" + ], + "defaultCode": 61670, + "grid": 14, + "matchesSearch": false + }, + { + "id": 205, + "paths": [ + "M0.571 562.857l114.857-471.429q2.286-8 9.143-13.143t16-5.143h187.429q10.857 0 18.286 7.143t7.429 16.857q0 4.571-2.857 10.286l-97.714 264.571 226.286-56q4.571-1.143 6.857-1.143 10.857 0 19.429 8.571 10.286 11.429 4 25.143l-308.571 661.143q-7.429 14.286-24 14.286-2.286 0-8-1.143-9.714-2.857-14.571-10.857t-2.571-17.143l112.571-461.714-232 57.714q-2.286 0.571-6.857 0.571-10.286 0-17.714-6.286-10.286-8.571-7.429-22.286z" + ], + "width": 512, + "tags": [ + "flash", + "bolt" + ], + "defaultCode": 61671, + "grid": 14, + "matchesSearch": false + }, + { + "id": 206, + "paths": [ + "M0 896v-182.857q0-22.857 16-38.857t38.857-16h54.857v-109.714q0-29.714 21.714-51.429t51.429-21.714h292.571v-109.714h-54.857q-22.857 0-38.857-16t-16-38.857v-182.857q0-22.857 16-38.857t38.857-16h182.857q22.857 0 38.857 16t16 38.857v182.857q0 22.857-16 38.857t-38.857 16h-54.857v109.714h292.571q29.714 0 51.429 21.714t21.714 51.429v109.714h54.857q22.857 0 38.857 16t16 38.857v182.857q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857v-182.857q0-22.857 16-38.857t38.857-16h54.857v-109.714h-292.571v109.714h54.857q22.857 0 38.857 16t16 38.857v182.857q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857v-182.857q0-22.857 16-38.857t38.857-16h54.857v-109.714h-292.571v109.714h54.857q22.857 0 38.857 16t16 38.857v182.857q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857z" + ], + "tags": [ + "sitemap" + ], + "defaultCode": 61672, + "grid": 14, + "matchesSearch": false + }, + { + "id": 207, + "paths": [ + "M0 488.571q0-2.857 0.571-4 25.714-104.571 98.571-182.571t170.286-116.857 206-38.857q80 0 156.857 22.857t140.857 64.857 111.143 106.857 66 143.714q0.571 1.143 0.571 4 0 7.429-5.429 12.857t-12.857 5.429q-6.286 0-13.143-5.714-28-26.286-53.143-39.429t-58.286-13.143q-38.857 0-73.143 21.143t-58.857 55.429q-4 5.714-10 16t-8.286 13.714q-6.286 9.714-16 9.714-10.286 0-16.571-9.714-2.286-3.429-8.286-13.714t-10-16q-24.571-34.286-58.571-55.429t-72.857-21.143-72.857 21.143-58.571 55.429q-4 5.714-10 16t-8.286 13.714q-6.286 9.714-16.571 9.714-9.714 0-16-9.714-2.286-3.429-8.286-13.714t-10-16q-24.571-34.286-58.857-55.429t-73.143-21.143q-33.143 0-58.286 13.143t-53.143 39.429q-6.857 5.714-13.143 5.714-7.429 0-12.857-5.429t-5.429-12.857zM219.429 804.571q0-14.857 10.857-25.714t25.714-10.857 25.714 10.857 10.857 25.714q0 28.571 22.286 50.857t50.857 22.286 50.857-22.286 22.286-50.857v-331.429q18.857-6.286 36.571-6.286t36.571 6.286v331.429q0 59.429-43.429 102.857t-102.857 43.429-102.857-43.429-43.429-102.857zM438.857 129.143v-56q0-14.857 10.857-25.714t25.714-10.857 25.714 10.857 10.857 25.714v56q-24-1.143-36.571-1.143t-36.571 1.143z" + ], + "width": 951, + "tags": [ + "umbrella" + ], + "defaultCode": 61673, + "grid": 14, + "matchesSearch": false + }, + { + "id": 208, + "paths": [ + "M0 822.857v-768q0-22.857 16-38.857t38.857-16h621.714q22.857 0 38.857 16t16 38.857v187.429q12 7.429 20.571 16l233.143 233.143q16 16 27.429 43.429t11.429 50.286v384q0 22.857-16 38.857t-38.857 16h-548.571q-22.857 0-38.857-16t-16-38.857v-91.429h-310.857q-22.857 0-38.857-16t-16-38.857zM146.286 128q0 7.429 5.429 12.857t12.857 5.429h402.286q7.429 0 12.857-5.429t5.429-12.857v-36.571q0-7.429-5.429-12.857t-12.857-5.429h-402.286q-7.429 0-12.857 5.429t-5.429 12.857v36.571zM438.857 950.857h512v-365.714h-237.714q-22.857 0-38.857-16t-16-38.857v-237.714h-219.429v658.286zM731.429 512h170.857l-170.857-170.857v170.857z" + ], + "tags": [ + "paste", + "clipboard" + ], + "defaultCode": 61674, + "grid": 14, + "matchesSearch": false + }, + { + "id": 209, + "paths": [ + "M0 329.143q0-56.571 25.429-105.429t66.857-81.143 93.714-50.857 106.571-18.571 106.571 18.571 93.714 50.857 66.857 81.143 25.429 105.429q0 88.571-58.857 153.143-25.714 28-42.571 49.714t-34 54.571-19.429 61.429q26.857 16 26.857 46.857 0 21.143-14.286 36.571 14.286 15.429 14.286 36.571 0 29.714-25.714 46.286 7.429 13.143 7.429 26.857 0 26.286-18 40.571t-44.286 14.286q-11.429 25.143-34.286 40t-49.714 14.857-49.714-14.857-34.286-40q-26.286 0-44.286-14.286t-18-40.571q0-13.714 7.429-26.857-25.714-16.571-25.714-46.286 0-21.143 14.286-36.571-14.286-15.429-14.286-36.571 0-30.857 26.857-46.857-2.286-28.571-19.429-61.429t-34-54.571-42.571-49.714q-58.857-64.571-58.857-153.143zM73.143 329.143q0 57.714 38.857 102.857 5.714 6.286 17.429 18.857t17.429 18.857q73.143 87.429 80.571 170.286h130.286q7.429-82.857 80.571-170.286 5.714-6.286 17.429-18.857t17.429-18.857q38.857-45.143 38.857-102.857 0-41.143-19.714-76.571t-51.429-58-70.286-35.429-78-12.857-78 12.857-70.286 35.429-51.429 58-19.714 76.571zM274.286 256q0-7.429 5.429-12.857t12.857-5.429q28.571 0 56.857 9.143t49.714 30.857 21.429 51.429q0 7.429-5.429 12.857t-12.857 5.429-12.857-5.429-5.429-12.857q0-26.286-30.857-40.571t-60.571-14.286q-7.429 0-12.857-5.429t-5.429-12.857z" + ], + "width": 585, + "tags": [ + "lightbulb-o" + ], + "defaultCode": 61675, + "grid": 14, + "matchesSearch": false + }, + { + "id": 210, + "paths": [ + "M0 731.429q0-8 5.143-13.143l182.857-182.857q5.143-5.143 13.143-5.143 7.429 0 12.857 5.429t5.429 12.857v109.714h786.286q7.429 0 12.857 5.429t5.429 12.857v109.714q0 7.429-5.429 12.857t-12.857 5.429h-786.286v109.714q0 7.429-5.429 12.857t-12.857 5.429q-6.857 0-13.714-5.714l-182.286-182.857q-5.143-5.143-5.143-12.571zM0 420.571v-109.714q0-7.429 5.429-12.857t12.857-5.429h786.286v-109.714q0-8 5.143-13.143t13.143-5.143q6.857 0 13.714 5.714l182.286 182.286q5.143 5.143 5.143 13.143t-5.143 13.143l-182.857 182.857q-5.143 5.143-13.143 5.143-7.429 0-12.857-5.429t-5.429-12.857v-109.714h-786.286q-7.429 0-12.857-5.429t-5.429-12.857z" + ], + "tags": [ + "exchange" + ], + "defaultCode": 61676, + "grid": 14, + "matchesSearch": false + }, + { + "id": 211, + "paths": [ + "M0 621.714q0-74.286 40-137.143t107.429-94.286q-1.143-17.143-1.143-24.571 0-121.143 85.714-206.857t206.857-85.714q89.143 0 163.143 49.714t107.714 132q40.571-35.429 94.857-35.429 60.571 0 103.429 42.857t42.857 103.429q0 43.429-23.429 78.857 74.286 17.714 122 77.429t47.714 136.286q0 90.857-64.286 155.143t-155.143 64.286h-621.714q-105.714 0-180.857-75.143t-75.143-180.857zM292.571 530.286q0 8 5.143 13.143l201.143 201.143q5.143 5.143 13.143 5.143t13.143-5.143l200.571-200.571q5.714-6.857 5.714-13.714 0-8-5.143-13.143t-13.143-5.143h-128v-201.143q0-7.429-5.429-12.857t-12.857-5.429h-109.714q-7.429 0-12.857 5.429t-5.429 12.857v201.143h-128q-7.429 0-12.857 5.429t-5.429 12.857z" + ], + "width": 1097, + "tags": [ + "cloud-download" + ], + "defaultCode": 61677, + "grid": 14, + "matchesSearch": false + }, + { + "id": 212, + "paths": [ + "M0 621.714q0-74.286 40-137.143t107.429-94.286q-1.143-17.143-1.143-24.571 0-121.143 85.714-206.857t206.857-85.714q89.143 0 163.143 49.714t107.714 132q40.571-35.429 94.857-35.429 60.571 0 103.429 42.857t42.857 103.429q0 43.429-23.429 78.857 74.286 17.714 122 77.429t47.714 136.286q0 90.857-64.286 155.143t-155.143 64.286h-621.714q-105.714 0-180.857-75.143t-75.143-180.857zM292.571 493.714q0 8 5.143 13.143t13.143 5.143h128v201.143q0 7.429 5.429 12.857t12.857 5.429h109.714q7.429 0 12.857-5.429t5.429-12.857v-201.143h128q7.429 0 12.857-5.429t5.429-12.857q0-8-5.143-13.143l-201.143-201.143q-5.143-5.143-13.143-5.143t-13.143 5.143l-200.571 200.571q-5.714 6.857-5.714 13.714z" + ], + "width": 1097, + "tags": [ + "cloud-upload" + ], + "defaultCode": 61678, + "grid": 14, + "matchesSearch": false + }, + { + "id": 213, + "paths": [ + "M0 802.857q0-38.857 3.143-74.857t13.714-78.857 27.143-75.714 46.286-58.857 68.571-34.571q-12.571 29.714-12.571 68.571v116q-33.143 11.429-53.143 40t-20 63.429q0 45.714 32 77.714t77.714 32 77.714-32 32-77.714q0-34.857-20.286-63.429t-52.857-40v-116q0-35.429 14.286-53.143 75.429 59.429 168.571 59.429t168.571-59.429q14.286 17.714 14.286 53.143v36.571q-60.571 0-103.429 42.857t-42.857 103.429v50.857q-18.286 16.571-18.286 40.571 0 22.857 16 38.857t38.857 16 38.857-16 16-38.857q0-24-18.286-40.571v-50.857q0-29.714 21.714-51.429t51.429-21.714 51.429 21.714 21.714 51.429v50.857q-18.286 16.571-18.286 40.571 0 22.857 16 38.857t38.857 16 38.857-16 16-38.857q0-24-18.286-40.571v-50.857q0-38.857-19.714-72.857t-53.429-53.429q0-5.714 0.286-24.286t0-27.429-1.429-23.714-4-26.857-7.429-22.857q38.857 8.571 68.571 34.571t46.286 58.857 27.143 75.714 13.714 78.857 3.143 74.857q0 69.143-41.714 108.571t-110.857 39.429h-499.429q-69.143 0-110.857-39.429t-41.714-108.571zM146.286 768q0-14.857 10.857-25.714t25.714-10.857 25.714 10.857 10.857 25.714-10.857 25.714-25.714 10.857-25.714-10.857-10.857-25.714zM182.857 292.571q0-90.857 64.286-155.143t155.143-64.286 155.143 64.286 64.286 155.143-64.286 155.143-155.143 64.286-155.143-64.286-64.286-155.143z" + ], + "width": 805, + "tags": [ + "user-md" + ], + "defaultCode": 61680, + "grid": 14, + "matchesSearch": true + }, + { + "id": 214, + "paths": [ + "M0 438.857v-292.571q0-14.857 10.857-25.714t25.714-10.857q3.429 0 9.143 1.143 9.714-17.143 26.857-27.429t37.143-10.286q30.286 0 51.714 21.429t21.429 51.714-21.429 51.714-51.714 21.429q-18.857 0-36.571-10.286v229.714q0 60.571 53.714 103.429t129.143 42.857 129.143-42.857 53.714-103.429v-229.714q-17.714 10.286-36.571 10.286-30.286 0-51.714-21.429t-21.429-51.714 21.429-51.714 51.714-21.429q20 0 37.143 10.286t26.857 27.429q5.714-1.143 9.143-1.143 14.857 0 25.714 10.857t10.857 25.714v292.571q0 82.286-62.857 144t-156.571 73.143v75.429q0 60.571 53.714 103.429t129.143 42.857 129.143-42.857 53.714-103.429v-225.714q-32.571-12-52.857-40t-20.286-63.429q0-45.714 32-77.714t77.714-32 77.714 32 32 77.714q0 35.429-20.286 63.429t-52.857 40v225.714q0 90.857-75.143 155.143t-180.857 64.286-180.857-64.286-75.143-155.143v-75.429q-93.714-11.429-156.571-73.143t-62.857-144zM658.286 402.286q0 14.857 10.857 25.714t25.714 10.857 25.714-10.857 10.857-25.714-10.857-25.714-25.714-10.857-25.714 10.857-10.857 25.714z" + ], + "width": 805, + "tags": [ + "stethoscope" + ], + "defaultCode": 61681, + "grid": 14, + "matchesSearch": false + }, + { + "id": 215, + "paths": [ + "M0 822.857v-475.429q0-52.571 37.714-90.286t90.286-37.714h36.571v731.429h-36.571q-52.571 0-90.286-37.714t-37.714-90.286zM219.429 950.857v-731.429h73.143v-91.429q0-22.857 16-38.857t38.857-16h329.143q22.857 0 38.857 16t16 38.857v91.429h73.143v731.429h-585.143zM365.714 219.429h292.571v-73.143h-292.571v73.143zM859.429 950.857v-731.429h36.571q52.571 0 90.286 37.714t37.714 90.286v475.429q0 52.571-37.714 90.286t-90.286 37.714h-36.571z" + ], + "tags": [ + "suitcase" + ], + "defaultCode": 61682, + "grid": 14, + "matchesSearch": false + }, + { + "id": 216, + "paths": [ + "M0 804.571q108.571-92 164-227.143t55.429-284.857q0-94.286 54.857-149.714t150.857-66.857q-4.571-10.286-4.571-21.143 0-22.857 16-38.857t38.857-16 38.857 16 16 38.857q0 10.857-4.571 21.143 96 11.429 150.857 66.857t54.857 149.714q0 149.714 55.429 284.857t164 227.143q0 29.714-21.714 51.429t-51.429 21.714h-256q0 60.571-42.857 103.429t-103.429 42.857-103.429-42.857-42.857-103.429h-256q-29.714 0-51.429-21.714t-21.714-51.429zM374.857 877.714q0 41.714 29.429 71.143t71.143 29.429q9.143 0 9.143-9.143t-9.143-9.143q-33.714 0-58-24.286t-24.286-58q0-9.143-9.143-9.143t-9.143 9.143z" + ], + "width": 951, + "tags": [ + "bell" + ], + "defaultCode": 61683, + "grid": 14, + "matchesSearch": false + }, + { + "id": 217, + "paths": [ + "M0 804.571h1024q0 60.571-42.857 103.429t-103.429 42.857h-731.429q-60.571 0-103.429-42.857t-42.857-103.429zM146.286 603.429v-420.571q0-14.857 10.857-25.714t25.714-10.857h658.286q90.857 0 155.143 64.286t64.286 155.143-64.286 155.143-155.143 64.286h-36.571v18.286q0 52.571-37.714 90.286t-90.286 37.714h-402.286q-52.571 0-90.286-37.714t-37.714-90.286zM804.571 475.429h36.571q45.714 0 77.714-32t32-77.714-32-77.714-77.714-32h-36.571v219.429z" + ], + "width": 1097, + "tags": [ + "coffee" + ], + "defaultCode": 61684, + "grid": 14, + "matchesSearch": false + }, + { + "id": 218, + "paths": [ + "M0 402.286v-365.714q0-14.857 10.857-25.714t25.714-10.857 25.714 10.857 10.857 25.714v237.714q0 14.857 10.857 25.714t25.714 10.857 25.714-10.857 10.857-25.714v-237.714q0-14.857 10.857-25.714t25.714-10.857 25.714 10.857 10.857 25.714v237.714q0 14.857 10.857 25.714t25.714 10.857 25.714-10.857 10.857-25.714v-237.714q0-14.857 10.857-25.714t25.714-10.857 25.714 10.857 10.857 25.714v365.714q0 34.857-20.286 63.429t-52.857 40v445.143q0 29.714-21.714 51.429t-51.429 21.714h-73.143q-29.714 0-51.429-21.714t-21.714-51.429v-445.143q-32.571-11.429-52.857-40t-20.286-63.429zM438.857 640v-457.143q0-75.429 53.714-129.143t129.143-53.714h146.286q14.857 0 25.714 10.857t10.857 25.714v914.286q0 29.714-21.714 51.429t-51.429 21.714h-73.143q-29.714 0-51.429-21.714t-21.714-51.429v-292.571h-128q-7.429 0-12.857-5.429t-5.429-12.857z" + ], + "width": 805, + "tags": [ + "cutlery" + ], + "defaultCode": 61685, + "grid": 14, + "matchesSearch": false + }, + { + "id": 219, + "paths": [ + "M0 969.143v-914.286q0-22.857 16-38.857t38.857-16h512q22.857 0 50.286 11.429t43.429 27.429l178.286 178.286q16 16 27.429 43.429t11.429 50.286v658.286q0 22.857-16 38.857t-38.857 16h-768q-22.857 0-38.857-16t-16-38.857zM73.143 950.857h731.429v-585.143h-237.714q-22.857 0-38.857-16t-16-38.857v-237.714h-438.857v877.714zM219.429 786.286v-36.571q0-8 5.143-13.143t13.143-5.143h402.286q8 0 13.143 5.143t5.143 13.143v36.571q0 8-5.143 13.143t-13.143 5.143h-402.286q-8 0-13.143-5.143t-5.143-13.143zM219.429 640v-36.571q0-8 5.143-13.143t13.143-5.143h402.286q8 0 13.143 5.143t5.143 13.143v36.571q0 8-5.143 13.143t-13.143 5.143h-402.286q-8 0-13.143-5.143t-5.143-13.143zM219.429 493.714v-36.571q0-8 5.143-13.143t13.143-5.143h402.286q8 0 13.143 5.143t5.143 13.143v36.571q0 8-5.143 13.143t-13.143 5.143h-402.286q-8 0-13.143-5.143t-5.143-13.143zM585.143 292.571h214.857q-5.714-16.571-12.571-23.429l-178.857-178.857q-6.857-6.857-23.429-12.571v214.857z" + ], + "tags": [ + "file-text-o" + ], + "defaultCode": 61686, + "grid": 14, + "matchesSearch": false + }, + { + "id": 220, + "paths": [ + "M0 987.429v-950.857q0-14.857 10.857-25.714t25.714-10.857h731.429q14.857 0 25.714 10.857t10.857 25.714v950.857q0 14.857-10.857 25.714t-25.714 10.857h-731.429q-14.857 0-25.714-10.857t-10.857-25.714zM73.143 950.857h219.429v-128q0-7.429 5.429-12.857t12.857-5.429h182.857q7.429 0 12.857 5.429t5.429 12.857v128h219.429v-877.714h-658.286v877.714zM146.286 786.286v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857zM146.286 640v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857zM146.286 493.714v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857zM146.286 347.429v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857zM146.286 201.143v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857zM292.571 640v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857zM292.571 493.714v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857zM292.571 347.429v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857zM292.571 201.143v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857zM438.857 640v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857zM438.857 493.714v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857zM438.857 347.429v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857zM438.857 201.143v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857zM585.143 786.286v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857zM585.143 640v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857zM585.143 493.714v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857zM585.143 347.429v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857zM585.143 201.143v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857z" + ], + "width": 805, + "tags": [ + "building-o" + ], + "defaultCode": 61687, + "grid": 14, + "matchesSearch": false + }, + { + "id": 221, + "paths": [ + "M0 987.429v-731.429q0-14.857 10.857-25.714t25.714-10.857h182.857v-164.571q0-22.857 16-38.857t38.857-16h256q22.857 0 38.857 16t16 38.857v164.571h182.857q14.857 0 25.714 10.857t10.857 25.714v731.429q0 14.857-10.857 25.714t-25.714 10.857h-731.429q-14.857 0-25.714-10.857t-10.857-25.714zM73.143 950.857h219.429v-128q0-7.429 5.429-12.857t12.857-5.429h182.857q7.429 0 12.857 5.429t5.429 12.857v128h219.429v-658.286h-146.286v18.286q0 22.857-16 38.857t-38.857 16h-256q-22.857 0-38.857-16t-16-38.857v-18.286h-146.286v658.286zM146.286 786.286v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857zM146.286 640v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857zM146.286 493.714v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857zM292.571 640v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857zM292.571 493.714v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857zM292.571 274.286q0 7.429 5.429 12.857t12.857 5.429h36.571q7.429 0 12.857-5.429t5.429-12.857v-54.857h73.143v54.857q0 7.429 5.429 12.857t12.857 5.429h36.571q7.429 0 12.857-5.429t5.429-12.857v-182.857q0-7.429-5.429-12.857t-12.857-5.429h-36.571q-7.429 0-12.857 5.429t-5.429 12.857v54.857h-73.143v-54.857q0-7.429-5.429-12.857t-12.857-5.429h-36.571q-7.429 0-12.857 5.429t-5.429 12.857v182.857zM438.857 640v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857zM438.857 493.714v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857zM585.143 786.286v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857zM585.143 640v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857zM585.143 493.714v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857z" + ], + "width": 805, + "tags": [ + "hospital-o" + ], + "defaultCode": 61688, + "grid": 14, + "matchesSearch": false + }, + { + "id": 222, + "paths": [ + "M36.571 768q0-14.857 10.857-25.714t25.714-10.857v-237.714q0-14.857 7.429-33.143t18.286-29.143l113.143-113.143q10.857-10.857 29.143-18.286t33.143-7.429h91.429v-182.857q0-14.857 10.857-25.714t25.714-10.857h658.286q14.857 0 25.714 10.857t10.857 25.714v658.286q0 14.857-10.857 25.714t-25.714 10.857h-109.714q0 60.571-42.857 103.429t-103.429 42.857-103.429-42.857-42.857-103.429h-219.429q0 60.571-42.857 103.429t-103.429 42.857-103.429-42.857-42.857-103.429h-73.143q-14.857 0-25.714-10.857t-10.857-25.714zM146.286 512h219.429v-146.286h-90.286q-8 1.143-12.571 5.143l-111.429 111.429q-4 6.857-5.143 12.571v17.143zM219.429 804.571q0 30.286 21.429 51.714t51.714 21.429 51.714-21.429 21.429-51.714-21.429-51.714-51.714-21.429-51.714 21.429-21.429 51.714zM512 420.571q0 8 5.143 13.143t13.143 5.143h128v128q0 8 5.143 13.143t13.143 5.143h109.714q8 0 13.143-5.143t5.143-13.143v-128h128q8 0 13.143-5.143t5.143-13.143v-109.714q0-8-5.143-13.143t-13.143-5.143h-128v-128q0-8-5.143-13.143t-13.143-5.143h-109.714q-8 0-13.143 5.143t-5.143 13.143v128h-128q-8 0-13.143 5.143t-5.143 13.143v109.714zM731.429 804.571q0 30.286 21.429 51.714t51.714 21.429 51.714-21.429 21.429-51.714-21.429-51.714-51.714-21.429-51.714 21.429-21.429 51.714z" + ], + "width": 1097, + "tags": [ + "ambulance" + ], + "defaultCode": 61689, + "grid": 14, + "matchesSearch": false + }, + { + "id": 223, + "paths": [ + "M0 822.857v-475.429q0-52.571 37.714-90.286t90.286-37.714h18.286v731.429h-18.286q-52.571 0-90.286-37.714t-37.714-90.286zM201.143 950.857v-731.429h91.429v-91.429q0-22.857 16-38.857t38.857-16h329.143q22.857 0 38.857 16t16 38.857v91.429h91.429v731.429h-621.714zM292.571 640q0 8 5.143 13.143t13.143 5.143h128v128q0 8 5.143 13.143t13.143 5.143h109.714q8 0 13.143-5.143t5.143-13.143v-128h128q8 0 13.143-5.143t5.143-13.143v-109.714q0-8-5.143-13.143t-13.143-5.143h-128v-128q0-8-5.143-13.143t-13.143-5.143h-109.714q-8 0-13.143 5.143t-5.143 13.143v128h-128q-8 0-13.143 5.143t-5.143 13.143v109.714zM365.714 219.429h292.571v-73.143h-292.571v73.143zM877.714 950.857v-731.429h18.286q52.571 0 90.286 37.714t37.714 90.286v475.429q0 52.571-37.714 90.286t-90.286 37.714h-18.286z" + ], + "tags": [ + "medkit" + ], + "defaultCode": 61690, + "grid": 14, + "matchesSearch": false + }, + { + "id": 224, + "paths": [ + "M0 585.143v-73.143l109.714-13.714v-4.571h-73.143v-18.286h-18.286v-109.714l18.286-18.286h54.857l109.714 128h91.429v-237.714h-36.571v-18.286h182.857q14.857 0 25.714 2.571t10.857 6.571-10.857 6.571-25.714 2.571h-39.429l167.429 201.143h36.571l128 36.571 201.143 18.286q149.143 33.143 164 53.143l0.571 1.714q-0.571 18.286-164.571 54.857l-201.143 18.286-128 36.571h-36.571l-167.429 201.143h39.429q14.857 0 25.714 2.571t10.857 6.571-10.857 6.571-25.714 2.571h-182.857v-18.286h36.571v-237.714h-91.429l-109.714 128h-54.857l-18.286-18.286v-109.714h18.286v-18.286h73.143v-4.571z" + ], + "width": 1097, + "tags": [ + "fighter-jet" + ], + "defaultCode": 61691, + "grid": 14, + "matchesSearch": false + }, + { + "id": 225, + "paths": [ + "M36.571 219.429l18.286-73.143h274.286l18.286-73.143h548.571l18.286 109.714-36.571 18.286v457.143l73.143 109.714v109.714h-658.286v-109.714l73.143-109.714h-73.143q-90.857 0-155.143-64.286t-64.286-155.143v-182.857zM219.429 438.857q0 30.286 21.429 51.714t51.714 21.429h73.143v-219.429h-146.286v146.286z" + ], + "width": 951, + "tags": [ + "beer" + ], + "defaultCode": 61692, + "grid": 14, + "matchesSearch": false + }, + { + "id": 226, + "paths": [ + "M0 786.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286zM146.286 768q0 14.857 10.857 25.714t25.714 10.857h73.143q14.857 0 25.714-10.857t10.857-25.714v-182.857h292.571v182.857q0 14.857 10.857 25.714t25.714 10.857h73.143q14.857 0 25.714-10.857t10.857-25.714v-512q0-14.857-10.857-25.714t-25.714-10.857h-73.143q-14.857 0-25.714 10.857t-10.857 25.714v182.857h-292.571v-182.857q0-14.857-10.857-25.714t-25.714-10.857h-73.143q-14.857 0-25.714 10.857t-10.857 25.714v512z" + ], + "tags": [ + "h-square" + ], + "defaultCode": 61693, + "grid": 14, + "matchesSearch": false + }, + { + "id": 227, + "paths": [ + "M0 786.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286zM146.286 548.571q0 14.857 10.857 25.714t25.714 10.857h182.857v182.857q0 14.857 10.857 25.714t25.714 10.857h73.143q14.857 0 25.714-10.857t10.857-25.714v-182.857h182.857q14.857 0 25.714-10.857t10.857-25.714v-73.143q0-14.857-10.857-25.714t-25.714-10.857h-182.857v-182.857q0-14.857-10.857-25.714t-25.714-10.857h-73.143q-14.857 0-25.714 10.857t-10.857 25.714v182.857h-182.857q-14.857 0-25.714 10.857t-10.857 25.714v73.143z" + ], + "tags": [ + "plus-square" + ], + "defaultCode": 61694, + "grid": 14, + "matchesSearch": false + }, + { + "id": 228, + "paths": [ + "M25.714 548.571q0-7.429 5.714-13.143l266.286-266.286q5.714-5.714 13.143-5.714t13.143 5.714l28.571 28.571q5.714 5.714 5.714 13.143t-5.714 13.143l-224.571 224.571 224.571 224.571q5.714 5.714 5.714 13.143t-5.714 13.143l-28.571 28.571q-5.714 5.714-13.143 5.714t-13.143-5.714l-266.286-266.286q-5.714-5.714-5.714-13.143zM245.143 548.571q0-7.429 5.714-13.143l266.286-266.286q5.714-5.714 13.143-5.714t13.143 5.714l28.571 28.571q5.714 5.714 5.714 13.143t-5.714 13.143l-224.571 224.571 224.571 224.571q5.714 5.714 5.714 13.143t-5.714 13.143l-28.571 28.571q-5.714 5.714-13.143 5.714t-13.143-5.714l-266.286-266.286q-5.714-5.714-5.714-13.143z" + ], + "width": 585, + "tags": [ + "angle-double-left" + ], + "defaultCode": 61696, + "grid": 14, + "matchesSearch": false + }, + { + "id": 229, + "paths": [ + "M7.429 786.286q0-7.429 5.714-13.143l224.571-224.571-224.571-224.571q-5.714-5.714-5.714-13.143t5.714-13.143l28.571-28.571q5.714-5.714 13.143-5.714t13.143 5.714l266.286 266.286q5.714 5.714 5.714 13.143t-5.714 13.143l-266.286 266.286q-5.714 5.714-13.143 5.714t-13.143-5.714l-28.571-28.571q-5.714-5.714-5.714-13.143zM226.857 786.286q0-7.429 5.714-13.143l224.571-224.571-224.571-224.571q-5.714-5.714-5.714-13.143t5.714-13.143l28.571-28.571q5.714-5.714 13.143-5.714t13.143 5.714l266.286 266.286q5.714 5.714 5.714 13.143t-5.714 13.143l-266.286 266.286q-5.714 5.714-13.143 5.714t-13.143-5.714l-28.571-28.571q-5.714-5.714-5.714-13.143z" + ], + "width": 585, + "tags": [ + "angle-double-right" + ], + "defaultCode": 61697, + "grid": 14, + "matchesSearch": false + }, + { + "id": 230, + "paths": [ + "M44 749.714q0-7.429 5.714-13.143l266.286-266.286q5.714-5.714 13.143-5.714t13.143 5.714l266.286 266.286q5.714 5.714 5.714 13.143t-5.714 13.143l-28.571 28.571q-5.714 5.714-13.143 5.714t-13.143-5.714l-224.571-224.571-224.571 224.571q-5.714 5.714-13.143 5.714t-13.143-5.714l-28.571-28.571q-5.714-5.714-5.714-13.143zM44 530.286q0-7.429 5.714-13.143l266.286-266.286q5.714-5.714 13.143-5.714t13.143 5.714l266.286 266.286q5.714 5.714 5.714 13.143t-5.714 13.143l-28.571 28.571q-5.714 5.714-13.143 5.714t-13.143-5.714l-224.571-224.571-224.571 224.571q-5.714 5.714-13.143 5.714t-13.143-5.714l-28.571-28.571q-5.714-5.714-5.714-13.143z" + ], + "width": 658, + "tags": [ + "angle-double-up" + ], + "defaultCode": 61698, + "grid": 14, + "matchesSearch": false + }, + { + "id": 231, + "paths": [ + "M44 493.714q0-7.429 5.714-13.143l28.571-28.571q5.714-5.714 13.143-5.714t13.143 5.714l224.571 224.571 224.571-224.571q5.714-5.714 13.143-5.714t13.143 5.714l28.571 28.571q5.714 5.714 5.714 13.143t-5.714 13.143l-266.286 266.286q-5.714 5.714-13.143 5.714t-13.143-5.714l-266.286-266.286q-5.714-5.714-5.714-13.143zM44 274.286q0-7.429 5.714-13.143l28.571-28.571q5.714-5.714 13.143-5.714t13.143 5.714l224.571 224.571 224.571-224.571q5.714-5.714 13.143-5.714t13.143 5.714l28.571 28.571q5.714 5.714 5.714 13.143t-5.714 13.143l-266.286 266.286q-5.714 5.714-13.143 5.714t-13.143-5.714l-266.286-266.286q-5.714-5.714-5.714-13.143z" + ], + "width": 658, + "tags": [ + "angle-double-down" + ], + "defaultCode": 61699, + "grid": 14, + "matchesSearch": false + }, + { + "id": 232, + "paths": [ + "M25.714 548.571q0-7.429 5.714-13.143l266.286-266.286q5.714-5.714 13.143-5.714t13.143 5.714l28.571 28.571q5.714 5.714 5.714 13.143t-5.714 13.143l-224.571 224.571 224.571 224.571q5.714 5.714 5.714 13.143t-5.714 13.143l-28.571 28.571q-5.714 5.714-13.143 5.714t-13.143-5.714l-266.286-266.286q-5.714-5.714-5.714-13.143z" + ], + "width": 366, + "tags": [ + "angle-left" + ], + "defaultCode": 61700, + "grid": 14, + "matchesSearch": false + }, + { + "id": 233, + "paths": [ + "M7.429 786.286q0-7.429 5.714-13.143l224.571-224.571-224.571-224.571q-5.714-5.714-5.714-13.143t5.714-13.143l28.571-28.571q5.714-5.714 13.143-5.714t13.143 5.714l266.286 266.286q5.714 5.714 5.714 13.143t-5.714 13.143l-266.286 266.286q-5.714 5.714-13.143 5.714t-13.143-5.714l-28.571-28.571q-5.714-5.714-5.714-13.143z" + ], + "width": 366, + "tags": [ + "angle-right" + ], + "defaultCode": 61701, + "grid": 14, + "matchesSearch": false + }, + { + "id": 234, + "paths": [ + "M44 676.571q0-7.429 5.714-13.143l266.286-266.286q5.714-5.714 13.143-5.714t13.143 5.714l266.286 266.286q5.714 5.714 5.714 13.143t-5.714 13.143l-28.571 28.571q-5.714 5.714-13.143 5.714t-13.143-5.714l-224.571-224.571-224.571 224.571q-5.714 5.714-13.143 5.714t-13.143-5.714l-28.571-28.571q-5.714-5.714-5.714-13.143z" + ], + "width": 658, + "tags": [ + "angle-up" + ], + "defaultCode": 61702, + "grid": 14, + "matchesSearch": false + }, + { + "id": 235, + "paths": [ + "M44 420.571q0-7.429 5.714-13.143l28.571-28.571q5.714-5.714 13.143-5.714t13.143 5.714l224.571 224.571 224.571-224.571q5.714-5.714 13.143-5.714t13.143 5.714l28.571 28.571q5.714 5.714 5.714 13.143t-5.714 13.143l-266.286 266.286q-5.714 5.714-13.143 5.714t-13.143-5.714l-266.286-266.286q-5.714-5.714-5.714-13.143z" + ], + "width": 658, + "tags": [ + "angle-down" + ], + "defaultCode": 61703, + "grid": 14, + "matchesSearch": false + }, + { + "id": 236, + "paths": [ + "M0 713.143v-621.714q0-37.714 26.857-64.571t64.571-26.857h914.286q37.714 0 64.571 26.857t26.857 64.571v621.714q0 37.714-26.857 64.571t-64.571 26.857h-310.857q0 21.143 9.143 44.286t18.286 40.571 9.143 24.857q0 14.857-10.857 25.714t-25.714 10.857h-292.571q-14.857 0-25.714-10.857t-10.857-25.714q0-8 9.143-25.143t18.286-40 9.143-44.571h-310.857q-37.714 0-64.571-26.857t-26.857-64.571zM73.143 566.857q0 7.429 5.429 12.857t12.857 5.429h914.286q7.429 0 12.857-5.429t5.429-12.857v-475.429q0-7.429-5.429-12.857t-12.857-5.429h-914.286q-7.429 0-12.857 5.429t-5.429 12.857v475.429z" + ], + "width": 1097, + "tags": [ + "desktop" + ], + "defaultCode": 61704, + "grid": 14, + "matchesSearch": false + }, + { + "id": 237, + "paths": [ + "M0 822.857v-54.857h1097.143v54.857q0 22.857-26.857 38.857t-64.571 16h-914.286q-37.714 0-64.571-16t-26.857-38.857zM146.286 640v-402.286q0-37.714 26.857-64.571t64.571-26.857h621.714q37.714 0 64.571 26.857t26.857 64.571v402.286q0 37.714-26.857 64.571t-64.571 26.857h-621.714q-37.714 0-64.571-26.857t-26.857-64.571zM219.429 640q0 7.429 5.429 12.857t12.857 5.429h621.714q7.429 0 12.857-5.429t5.429-12.857v-402.286q0-7.429-5.429-12.857t-12.857-5.429h-621.714q-7.429 0-12.857 5.429t-5.429 12.857v402.286zM493.714 813.714q0 9.143 9.143 9.143h91.429q9.143 0 9.143-9.143t-9.143-9.143h-91.429q-9.143 0-9.143 9.143z" + ], + "width": 1097, + "tags": [ + "laptop" + ], + "defaultCode": 61705, + "grid": 14, + "matchesSearch": false + }, + { + "id": 238, + "paths": [ + "M0 786.286v-621.714q0-37.714 26.857-64.571t64.571-26.857h475.429q37.714 0 64.571 26.857t26.857 64.571v621.714q0 37.714-26.857 64.571t-64.571 26.857h-475.429q-37.714 0-64.571-26.857t-26.857-64.571zM73.143 713.143q0 7.429 5.429 12.857t12.857 5.429h475.429q7.429 0 12.857-5.429t5.429-12.857v-548.571q0-7.429-5.429-12.857t-12.857-5.429h-475.429q-7.429 0-12.857 5.429t-5.429 12.857v548.571zM292.571 804.571q0 14.857 10.857 25.714t25.714 10.857 25.714-10.857 10.857-25.714-10.857-25.714-25.714-10.857-25.714 10.857-10.857 25.714z" + ], + "width": 658, + "tags": [ + "tablet" + ], + "defaultCode": 61706, + "grid": 14, + "matchesSearch": false + }, + { + "id": 239, + "paths": [ + "M0 804.571v-585.143q0-29.714 21.714-51.429t51.429-21.714h292.571q29.714 0 51.429 21.714t21.714 51.429v585.143q0 29.714-21.714 51.429t-51.429 21.714h-292.571q-29.714 0-51.429-21.714t-21.714-51.429zM54.857 713.143q0 7.429 5.429 12.857t12.857 5.429h292.571q7.429 0 12.857-5.429t5.429-12.857v-402.286q0-7.429-5.429-12.857t-12.857-5.429h-292.571q-7.429 0-12.857 5.429t-5.429 12.857v402.286zM164.571 228.571q0 9.143 9.143 9.143h91.429q9.143 0 9.143-9.143t-9.143-9.143h-91.429q-9.143 0-9.143 9.143zM173.714 804.571q0 18.857 13.429 32.286t32.286 13.429 32.286-13.429 13.429-32.286-13.429-32.286-32.286-13.429-32.286 13.429-13.429 32.286z" + ], + "width": 439, + "tags": [ + "mobile-phone", + "mobile" + ], + "defaultCode": 61707, + "grid": 14, + "matchesSearch": false + }, + { + "id": 240, + "paths": [ + "M0 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286zM128 512q0 84.571 41.714 156t113.143 113.143 156 41.714 156-41.714 113.143-113.143 41.714-156-41.714-156-113.143-113.143-156-41.714-156 41.714-113.143 113.143-41.714 156z" + ], + "tags": [ + "circle-o" + ], + "defaultCode": 61708, + "grid": 14, + "matchesSearch": false + }, + { + "id": 241, + "paths": [ + "M0 768v-402.286q0-59.429 23.143-113.429t62.571-93.429 93.429-62.571 113.429-23.143h36.571q14.857 0 25.714 10.857t10.857 25.714v73.143q0 14.857-10.857 25.714t-25.714 10.857h-36.571q-60.571 0-103.429 42.857t-42.857 103.429v18.286q0 22.857 16 38.857t38.857 16h128q45.714 0 77.714 32t32 77.714v219.429q0 45.714-32 77.714t-77.714 32h-219.429q-45.714 0-77.714-32t-32-77.714zM512 768v-402.286q0-59.429 23.143-113.429t62.571-93.429 93.429-62.571 113.429-23.143h36.571q14.857 0 25.714 10.857t10.857 25.714v73.143q0 14.857-10.857 25.714t-25.714 10.857h-36.571q-60.571 0-103.429 42.857t-42.857 103.429v18.286q0 22.857 16 38.857t38.857 16h128q45.714 0 77.714 32t32 77.714v219.429q0 45.714-32 77.714t-77.714 32h-219.429q-45.714 0-77.714-32t-32-77.714z" + ], + "width": 951, + "tags": [ + "quote-left" + ], + "defaultCode": 61709, + "grid": 14, + "matchesSearch": false + }, + { + "id": 242, + "paths": [ + "M0 402.286v-219.429q0-45.714 32-77.714t77.714-32h219.429q45.714 0 77.714 32t32 77.714v402.286q0 59.429-23.143 113.429t-62.571 93.429-93.429 62.571-113.429 23.143h-36.571q-14.857 0-25.714-10.857t-10.857-25.714v-73.143q0-14.857 10.857-25.714t25.714-10.857h36.571q60.571 0 103.429-42.857t42.857-103.429v-18.286q0-22.857-16-38.857t-38.857-16h-128q-45.714 0-77.714-32t-32-77.714zM512 402.286v-219.429q0-45.714 32-77.714t77.714-32h219.429q45.714 0 77.714 32t32 77.714v402.286q0 59.429-23.143 113.429t-62.571 93.429-93.429 62.571-113.429 23.143h-36.571q-14.857 0-25.714-10.857t-10.857-25.714v-73.143q0-14.857 10.857-25.714t25.714-10.857h36.571q60.571 0 103.429-42.857t42.857-103.429v-18.286q0-22.857-16-38.857t-38.857-16h-128q-45.714 0-77.714-32t-32-77.714z" + ], + "width": 951, + "tags": [ + "quote-right" + ], + "defaultCode": 61710, + "grid": 14, + "matchesSearch": false + }, + { + "id": 243, + "paths": [ + "M0 512q0-37.714 26.857-64.571t64.571-26.857 64.571 26.857 26.857 64.571-26.857 64.571-64.571 26.857-64.571-26.857-26.857-64.571zM100.571 256q0-41.714 29.429-71.143t71.143-29.429 71.143 29.429 29.429 71.143-29.429 71.143-71.143 29.429-71.143-29.429-29.429-71.143zM118.857 768q0-34.286 24-58.286t58.286-24q33.714 0 58 24t24.286 58.286-24.286 58.286-58 24q-34.286 0-58.286-24t-24-58.286zM347.429 146.286q0-45.714 32-77.714t77.714-32 77.714 32 32 77.714-32 77.714-77.714 32-77.714-32-32-77.714zM384 877.714q0-30.286 21.429-51.714t51.714-21.429 51.714 21.429 21.429 51.714-21.429 51.714-51.714 21.429-51.714-21.429-21.429-51.714zM649.143 768q0-26.286 18.857-45.143t45.143-18.857 45.143 18.857 18.857 45.143-18.857 45.143-45.143 18.857-45.143-18.857-18.857-45.143zM667.429 256q0-18.857 13.429-32.286t32.286-13.429 32.286 13.429 13.429 32.286-13.429 32.286-32.286 13.429-32.286-13.429-13.429-32.286zM768 512q0-22.857 16-38.857t38.857-16 38.857 16 16 38.857-16 38.857-38.857 16-38.857-16-16-38.857z" + ], + "width": 896, + "tags": [ + "spinner" + ], + "defaultCode": 61712, + "grid": 14, + "matchesSearch": false + }, + { + "id": 244, + "paths": [ + "M0 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286z" + ], + "tags": [ + "circle" + ], + "defaultCode": 61713, + "grid": 14, + "matchesSearch": false + }, + { + "id": 245, + "paths": [ + "M0 365.714q0-14.857 10.857-25.714l292.571-292.571q10.857-10.857 25.714-10.857t25.714 10.857 10.857 25.714v146.286h128q407.429 0 500 230.286 30.286 76.571 30.286 190.286 0 94.857-72.571 257.714-1.714 4-6 13.714t-7.714 17.143-7.429 12.571q-6.857 9.714-16 9.714-8.571 0-13.429-5.714t-4.857-14.286q0-5.143 1.429-15.143t1.429-13.429q2.857-38.857 2.857-70.286 0-57.714-10-103.429t-27.714-79.143-45.714-57.714-60.286-39.714-76-24.286-88-12.286-100.286-3.429h-128v146.286q0 14.857-10.857 25.714t-25.714 10.857-25.714-10.857l-292.571-292.571q-10.857-10.857-10.857-25.714z" + ], + "tags": [ + "mail-reply", + "reply" + ], + "defaultCode": 61714, + "grid": 14, + "matchesSearch": false + }, + { + "id": 246, + "paths": [ + "M0 594.286q0-135.429 77.714-226.286-15.429-46.857-15.429-97.143 0-66.286 29.143-124.571 61.714 0 108.571 22.571t108 70.571q84-20 176.571-20 84.571 0 160 18.286 60-46.857 106.857-69.143t108-22.286q29.143 58.286 29.143 124.571 0 49.714-15.429 96 77.714 91.429 77.714 227.429 0 118.286-34.857 189.143-21.714 44-60.286 76t-80.571 49.143-97.143 27.143-98 12.571-95.429 2.571q-44.571 0-81.143-1.714t-84.286-7.143-87.143-17.143-78.286-29.429-69.143-46.286-49.143-65.714q-35.429-70.286-35.429-189.143zM128 694.857q0 50.286 18.286 87.714t46.286 58.857 69.714 34.286 80 16.857 85.143 4h96q46.857 0 85.143-4t80-16.857 69.714-34.286 46.286-58.857 18.286-87.714q0-68.571-39.429-116.571t-106.857-48q-23.429 0-111.429 12-40.571 6.286-89.714 6.286t-89.714-6.286q-86.857-12-111.429-12-67.429 0-106.857 48t-39.429 116.571zM219.429 694.857q0-22.857 7.143-46.857t24.571-43.429 41.429-19.429 41.429 19.429 24.571 43.429 7.143 46.857-7.143 46.857-24.571 43.429-41.429 19.429-41.429-19.429-24.571-43.429-7.143-46.857zM585.143 694.857q0-22.857 7.143-46.857t24.571-43.429 41.429-19.429 41.429 19.429 24.571 43.429 7.143 46.857-7.143 46.857-24.571 43.429-41.429 19.429-41.429-19.429-24.571-43.429-7.143-46.857z" + ], + "width": 951, + "tags": [ + "github-alt" + ], + "defaultCode": 61715, + "grid": 14, + "matchesSearch": false + }, + { + "id": 247, + "paths": [ + "M0 749.714v-548.571q0-52.571 37.714-90.286t90.286-37.714h182.857q52.571 0 90.286 37.714t37.714 90.286v18.286h384q52.571 0 90.286 37.714t37.714 90.286v402.286q0 52.571-37.714 90.286t-90.286 37.714h-694.857q-52.571 0-90.286-37.714t-37.714-90.286zM73.143 749.714q0 22.857 16 38.857t38.857 16h694.857q22.857 0 38.857-16t16-38.857v-402.286q0-22.857-16-38.857t-38.857-16h-402.286q-22.857 0-38.857-16t-16-38.857v-36.571q0-22.857-16-38.857t-38.857-16h-182.857q-22.857 0-38.857 16t-16 38.857v548.571z" + ], + "width": 951, + "tags": [ + "folder-o" + ], + "defaultCode": 61716, + "grid": 14, + "matchesSearch": false + }, + { + "id": 248, + "paths": [ + "M0 749.714v-548.571q0-52.571 37.714-90.286t90.286-37.714h182.857q52.571 0 90.286 37.714t37.714 90.286v18.286h310.857q52.571 0 90.286 37.714t37.714 90.286v91.429h109.714q30.857 0 56.571 14t38.286 40.286q8.571 18.286 8.571 38.857 0 35.429-26.286 68.571l-168.571 207.429q-24.571 30.286-66.286 50t-80 19.714h-621.714q-52.571 0-90.286-37.714t-37.714-90.286zM73.143 688.571l146.286-180q25.143-30.286 66.286-50t80-19.714h438.857v-91.429q0-22.857-16-38.857t-38.857-16h-329.143q-22.857 0-38.857-16t-16-38.857v-36.571q0-22.857-16-38.857t-38.857-16h-182.857q-22.857 0-38.857 16t-16 38.857v487.429zM97.714 784.571q0 20 30.286 20h621.714q22.857 0 49.143-12.571t40.571-30.286l168-207.429q10.286-12.571 10.286-22.286 0-20-30.286-20h-621.714q-22.857 0-48.857 12.286t-40.857 30l-168 207.429q-10.286 13.714-10.286 22.857z" + ], + "width": 1097, + "tags": [ + "folder-open-o" + ], + "defaultCode": 61717, + "grid": 14, + "matchesSearch": false + }, + { + "id": 249, + "paths": [ + "M0 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286zM73.143 512q0 74.286 29.143 142t78 116.571 116.571 78 142 29.143 142-29.143 116.571-78 78-116.571 29.143-142-29.143-142-78-116.571-116.571-78-142-29.143-142 29.143-116.571 78-78 116.571-29.143 142zM219.429 365.714q0-30.286 21.429-51.714t51.714-21.429 51.714 21.429 21.429 51.714-21.429 51.714-51.714 21.429-51.714-21.429-21.429-51.714zM229.714 614.286q-4.571-14.286 2.286-27.714t21.714-18q14.286-4.571 27.714 2.286t18 21.714q14.286 45.714 52.857 74t86.571 28.286 86.571-28.286 52.857-74q4.571-14.857 18.286-21.714t28-2.286 21.143 18 2.286 27.714q-21.143 69.143-78.857 111.429t-130.286 42.286-130.286-42.286-78.857-111.429zM512 365.714q0-30.286 21.429-51.714t51.714-21.429 51.714 21.429 21.429 51.714-21.429 51.714-51.714 21.429-51.714-21.429-21.429-51.714z" + ], + "tags": [ + "smile-o" + ], + "defaultCode": 61720, + "grid": 14, + "matchesSearch": false + }, + { + "id": 250, + "paths": [ + "M0 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286zM73.143 512q0 74.286 29.143 142t78 116.571 116.571 78 142 29.143 142-29.143 116.571-78 78-116.571 29.143-142-29.143-142-78-116.571-116.571-78-142-29.143-142 29.143-116.571 78-78 116.571-29.143 142zM219.429 365.714q0-30.286 21.429-51.714t51.714-21.429 51.714 21.429 21.429 51.714-21.429 51.714-51.714 21.429-51.714-21.429-21.429-51.714zM229.714 702.286q21.143-69.143 78.857-111.429t130.286-42.286 130.286 42.286 78.857 111.429q4.571 14.286-2.286 27.714t-21.143 18-28-2.286-18.286-21.714q-14.286-45.714-52.857-74t-86.571-28.286-86.571 28.286-52.857 74q-4.571 14.857-18 21.714t-27.714 2.286q-14.857-4.571-21.714-18t-2.286-27.714zM512 365.714q0-30.286 21.429-51.714t51.714-21.429 51.714 21.429 21.429 51.714-21.429 51.714-51.714 21.429-51.714-21.429-21.429-51.714z" + ], + "tags": [ + "frown-o" + ], + "defaultCode": 61721, + "grid": 14, + "matchesSearch": false + }, + { + "id": 251, + "paths": [ + "M0 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286zM73.143 512q0 74.286 29.143 142t78 116.571 116.571 78 142 29.143 142-29.143 116.571-78 78-116.571 29.143-142-29.143-142-78-116.571-116.571-78-142-29.143-142 29.143-116.571 78-78 116.571-29.143 142zM219.429 621.714q0-14.857 10.857-25.714t25.714-10.857h365.714q14.857 0 25.714 10.857t10.857 25.714-10.857 25.714-25.714 10.857h-365.714q-14.857 0-25.714-10.857t-10.857-25.714zM219.429 365.714q0-30.286 21.429-51.714t51.714-21.429 51.714 21.429 21.429 51.714-21.429 51.714-51.714 21.429-51.714-21.429-21.429-51.714zM512 365.714q0-30.286 21.429-51.714t51.714-21.429 51.714 21.429 21.429 51.714-21.429 51.714-51.714 21.429-51.714-21.429-21.429-51.714z" + ], + "tags": [ + "meh-o" + ], + "defaultCode": 61722, + "grid": 14, + "matchesSearch": false + }, + { + "id": 252, + "paths": [ + "M0 585.143q0-121.143 85.714-206.857t206.857-85.714h512q121.143 0 206.857 85.714t85.714 206.857-85.714 206.857-206.857 85.714q-109.714 0-193.143-73.143h-125.714q-83.429 73.143-193.143 73.143-121.143 0-206.857-85.714t-85.714-206.857zM109.714 621.714q0 8 5.143 13.143t13.143 5.143h109.714v109.714q0 8 5.143 13.143t13.143 5.143h73.143q8 0 13.143-5.143t5.143-13.143v-109.714h109.714q8 0 13.143-5.143t5.143-13.143v-73.143q0-8-5.143-13.143t-13.143-5.143h-109.714v-109.714q0-8-5.143-13.143t-13.143-5.143h-73.143q-8 0-13.143 5.143t-5.143 13.143v109.714h-109.714q-8 0-13.143 5.143t-5.143 13.143v73.143zM658.286 658.286q0 30.286 21.429 51.714t51.714 21.429 51.714-21.429 21.429-51.714-21.429-51.714-51.714-21.429-51.714 21.429-21.429 51.714zM804.571 512q0 30.286 21.429 51.714t51.714 21.429 51.714-21.429 21.429-51.714-21.429-51.714-51.714-21.429-51.714 21.429-21.429 51.714z" + ], + "width": 1097, + "tags": [ + "gamepad" + ], + "defaultCode": 61723, + "grid": 14, + "matchesSearch": false + }, + { + "id": 253, + "paths": [ + "M0 804.571v-512q0-30.286 21.429-51.714t51.714-21.429h950.857q30.286 0 51.714 21.429t21.429 51.714v512q0 30.286-21.429 51.714t-51.714 21.429h-950.857q-30.286 0-51.714-21.429t-21.429-51.714zM73.143 804.571h950.857v-512h-950.857v512zM146.286 722.286v-54.857q0-9.143 9.143-9.143h54.857q9.143 0 9.143 9.143v54.857q0 9.143-9.143 9.143h-54.857q-9.143 0-9.143-9.143zM146.286 576v-54.857q0-9.143 9.143-9.143h128q9.143 0 9.143 9.143v54.857q0 9.143-9.143 9.143h-128q-9.143 0-9.143-9.143zM146.286 429.714v-54.857q0-9.143 9.143-9.143h54.857q9.143 0 9.143 9.143v54.857q0 9.143-9.143 9.143h-54.857q-9.143 0-9.143-9.143zM292.571 722.286v-54.857q0-9.143 9.143-9.143h493.714q9.143 0 9.143 9.143v54.857q0 9.143-9.143 9.143h-493.714q-9.143 0-9.143-9.143zM292.571 429.714v-54.857q0-9.143 9.143-9.143h54.857q9.143 0 9.143 9.143v54.857q0 9.143-9.143 9.143h-54.857q-9.143 0-9.143-9.143zM365.714 576v-54.857q0-9.143 9.143-9.143h54.857q9.143 0 9.143 9.143v54.857q0 9.143-9.143 9.143h-54.857q-9.143 0-9.143-9.143zM438.857 429.714v-54.857q0-9.143 9.143-9.143h54.857q9.143 0 9.143 9.143v54.857q0 9.143-9.143 9.143h-54.857q-9.143 0-9.143-9.143zM512 576v-54.857q0-9.143 9.143-9.143h54.857q9.143 0 9.143 9.143v54.857q0 9.143-9.143 9.143h-54.857q-9.143 0-9.143-9.143zM585.143 429.714v-54.857q0-9.143 9.143-9.143h54.857q9.143 0 9.143 9.143v54.857q0 9.143-9.143 9.143h-54.857q-9.143 0-9.143-9.143zM658.286 576v-54.857q0-9.143 9.143-9.143h54.857q9.143 0 9.143 9.143v54.857q0 9.143-9.143 9.143h-54.857q-9.143 0-9.143-9.143zM731.429 429.714v-54.857q0-9.143 9.143-9.143h54.857q9.143 0 9.143 9.143v54.857q0 9.143-9.143 9.143h-54.857q-9.143 0-9.143-9.143zM804.571 576v-54.857q0-9.143 9.143-9.143h64v-137.143q0-9.143 9.143-9.143h54.857q9.143 0 9.143 9.143v201.143q0 9.143-9.143 9.143h-128q-9.143 0-9.143-9.143zM877.714 722.286v-54.857q0-9.143 9.143-9.143h54.857q9.143 0 9.143 9.143v54.857q0 9.143-9.143 9.143h-54.857q-9.143 0-9.143-9.143z" + ], + "width": 1097, + "tags": [ + "keyboard-o" + ], + "defaultCode": 61724, + "grid": 14, + "matchesSearch": false + }, + { + "id": 254, + "paths": [ + "M36.571 146.286q0-30.286 21.429-51.714t51.714-21.429 51.714 21.429 21.429 51.714q0 20-10 36.571t-26.571 26.286v723.429q0 8-5.143 13.143t-13.143 5.143h-36.571q-8 0-13.143-5.143t-5.143-13.143v-723.429q-16.571-9.714-26.571-26.286t-10-36.571zM182.857 694.857v-424q0-20 17.714-31.429 20-12 44.857-24.286t65.143-29.714 87.143-28.286 88.571-10.857q64 0 119.429 17.714t119.429 49.143q21.714 10.857 50.857 10.857 69.714 0 177.143-64 12.571-6.857 17.714-9.714 17.714-9.143 35.429 1.143 17.714 11.429 17.714 31.429v436q0 22.286-20 32.571-5.714 2.857-9.714 5.143-124.571 66.286-210.857 66.286-50.286 0-90.286-20l-16-8q-36.571-18.857-56.571-27.429t-52-16.571-65.143-8q-58.286 0-134.571 25.143t-130.571 58.286q-8.571 5.143-18.857 5.143-9.143 0-18.286-4.571-18.286-10.857-18.286-32zM256 634.286q140-64.571 247.429-64.571 31.429 0 59.143 4.286t56 14.857 44 17.714 47.143 22.571l16 8q25.143 12.571 57.714 12.571 68.571 0 167.429-52.571v-352q-96.571 52-174.857 52-46.857 0-82.857-18.286-57.143-28-105.143-43.714t-101.714-15.714q-98.857 0-230.286 72.571v342.286z" + ], + "tags": [ + "flag-o" + ], + "defaultCode": 61725, + "grid": 14, + "matchesSearch": false + }, + { + "id": 255, + "paths": [ + "M36.571 146.286q0-30.286 21.429-51.714t51.714-21.429 51.714 21.429 21.429 51.714q0 20-10 36.571t-26.571 26.286v723.429q0 8-5.143 13.143t-13.143 5.143h-36.571q-8 0-13.143-5.143t-5.143-13.143v-723.429q-16.571-9.714-26.571-26.286t-10-36.571zM182.857 694.857v-424q0-20 17.714-31.429 20-12 44.857-24.286t65.143-29.714 87.143-28.286 88.571-10.857q64 0 119.429 17.714t119.429 49.143q21.714 10.857 50.857 10.857 69.714 0 177.143-64 12.571-6.857 17.714-9.714 17.714-9.143 35.429 1.143 17.714 11.429 17.714 31.429v436q0 22.286-20 32.571-5.714 2.857-9.714 5.143-124.571 66.286-210.857 66.286-50.286 0-90.286-20l-16-8q-36.571-18.857-56.571-27.429t-52-16.571-65.143-8q-58.286 0-134.571 25.143t-130.571 58.286q-8.571 5.143-18.857 5.143-9.143 0-18.286-4.571-18.286-10.857-18.286-32zM256 634.286q117.143-54.857 219.429-62.857v-109.714q-103.429 9.143-219.429 66.857v105.714zM256 400q122.857-63.429 219.429-67.429v-112.571q-98.286 4.571-219.429 72v108zM475.429 460.571h10.857q58.286 0 110 16.571t112.857 46.857q10.857 5.143 22.286 8.571v107.429q24 9.714 52 9.714 68.571 0 167.429-52.571v-105.143q-134.286 66.286-219.429 40.571v-128q-11.429-3.429-22.286-8.571-2.857-1.714-18.857-9.714t-19.714-9.714-18-8.571-19.714-8.857-18.571-7.429-20.571-7.143-20-4.857-22.571-4.286-22.571-2.286-25.143-1.143q-13.143 0-28 1.714v126.857zM731.429 404.571q84.571 24 219.429-51.429v-108q-96.571 52-174.857 52-25.714 0-44.571-4.571v112z" + ], + "tags": [ + "flag-checkered" + ], + "defaultCode": 61726, + "grid": 14, + "matchesSearch": false + }, + { + "id": 256, + "paths": [ + "M7.429 786.286q0-7.429 5.714-13.143l224.571-224.571-224.571-224.571q-5.714-5.714-5.714-13.143t5.714-13.143l28.571-28.571q5.714-5.714 13.143-5.714t13.143 5.714l266.286 266.286q5.714 5.714 5.714 13.143t-5.714 13.143l-266.286 266.286q-5.714 5.714-13.143 5.714t-13.143-5.714l-28.571-28.571q-5.714-5.714-5.714-13.143zM365.714 859.429v-36.571q0-8 5.143-13.143t13.143-5.143h548.571q8 0 13.143 5.143t5.143 13.143v36.571q0 8-5.143 13.143t-13.143 5.143h-548.571q-8 0-13.143-5.143t-5.143-13.143z" + ], + "width": 951, + "tags": [ + "terminal" + ], + "defaultCode": 61728, + "grid": 14, + "matchesSearch": false + }, + { + "id": 257, + "paths": [ + "M25.714 548.571q0-7.429 5.714-13.143l266.286-266.286q5.714-5.714 13.143-5.714t13.143 5.714l28.571 28.571q5.714 5.714 5.714 13.143t-5.714 13.143l-224.571 224.571 224.571 224.571q5.714 5.714 5.714 13.143t-5.714 13.143l-28.571 28.571q-5.714 5.714-13.143 5.714t-13.143-5.714l-266.286-266.286q-5.714-5.714-5.714-13.143zM406.857 907.429l213.143-737.714q2.286-7.429 8.857-11.143t13.429-1.429l35.429 9.714q7.429 2.286 11.143 8.857t1.429 14l-213.143 737.714q-2.286 7.429-8.857 11.143t-13.429 1.429l-35.429-9.714q-7.429-2.286-11.143-8.857t-1.429-14zM738.857 786.286q0-7.429 5.714-13.143l224.571-224.571-224.571-224.571q-5.714-5.714-5.714-13.143t5.714-13.143l28.571-28.571q5.714-5.714 13.143-5.714t13.143 5.714l266.286 266.286q5.714 5.714 5.714 13.143t-5.714 13.143l-266.286 266.286q-5.714 5.714-13.143 5.714t-13.143-5.714l-28.571-28.571q-5.714-5.714-5.714-13.143z" + ], + "width": 1097, + "tags": [ + "code" + ], + "defaultCode": 61729, + "grid": 14, + "matchesSearch": false + }, + { + "id": 258, + "paths": [ + "M0 365.714q0-14.857 10.857-25.714l292.571-292.571q16.571-17.714 40-8 22.286 9.714 22.286 33.714v39.429l-226.857 227.429q-10.857 10.857-10.857 25.714t10.857 25.714l226.857 226.857v40q0 24-22.286 33.714-7.429 2.857-14.286 2.857-15.429 0-25.714-10.857l-292.571-292.571q-10.857-10.857-10.857-25.714zM219.429 365.714q0-14.857 10.857-25.714l292.571-292.571q16.571-17.714 40-8 22.286 9.714 22.286 33.714v149.714q234.857 16 342.286 126.286 96.571 98.857 96.571 290.857 0 33.143-9.714 76.286t-22 78.857-27.429 71.429-23.143 51.714l-11.429 22.857q-4.571 9.714-16 9.714-3.429 0-5.143-0.571-14.286-4.571-13.143-19.429 24.571-228.571-60.571-322.857-36.571-40.571-97.429-63.143t-152.857-30v143.429q0 24-22.286 33.714-7.429 2.857-14.286 2.857-15.429 0-25.714-10.857l-292.571-292.571q-10.857-10.857-10.857-25.714z" + ], + "tags": [ + "mail-reply-all", + "reply-all" + ], + "defaultCode": 61730, + "grid": 14, + "matchesSearch": false + }, + { + "id": 259, + "paths": [ + "M1.143 363.143q5.143-15.714 30.857-19.714l286.857-41.714 128.571-260q11.429-23.429 28-23.429 16 0 28 23.429l128.571 260 286.857 41.714q25.714 4 30.857 19.714t-13.714 34l-207.429 202.286 49.143 285.714q2.857 18.857-3.429 29.429t-19.429 10.571q-9.714 0-22.857-6.857l-256.571-134.857-256.571 134.857q-13.143 6.857-22.857 6.857-13.143 0-19.429-10.571t-3.429-29.429l49.143-285.714-208-202.286q-18.286-18.286-13.143-34zM475.429 700.571l33.714 17.714 181.714 96-34.286-202.857-6.857-37.714 28-26.857 146.857-142.857-241.143-35.429-17.143-34.286-90.857-184v550.286z" + ], + "width": 951, + "tags": [ + "star-half-empty", + "star-half-full", + "star-half-o" + ], + "defaultCode": 61731, + "grid": 14, + "matchesSearch": false + }, + { + "id": 260, + "paths": [ + "M1.143 557.143q-2.857-12.571 2.286-24t16.571-17.143l731.429-365.714q7.429-4 16.571-4 15.429 0 25.714 10.857 8.571 8 10.571 19.714t-3.714 22.571l-365.714 731.429q-9.714 20-32.571 20-2.857 0-8.571-1.143-12.571-2.857-20.286-12.857t-7.714-22.571v-329.143h-329.143q-12.571 0-22.571-7.714t-12.857-20.286z" + ], + "width": 805, + "tags": [ + "location-arrow" + ], + "defaultCode": 61732, + "grid": 14, + "matchesSearch": false + }, + { + "id": 261, + "paths": [ + "M0 347.429v-109.714q0-8 5.143-13.143t13.143-5.143h128v-128q0-8 5.143-13.143t13.143-5.143h109.714q8 0 13.143 5.143t5.143 13.143v128h486.286l140.571-141.143q5.714-5.143 13.143-5.143t13.143 5.143q5.143 5.714 5.143 13.143t-5.143 13.143l-141.143 140.571v486.286h128q8 0 13.143 5.143t5.143 13.143v109.714q0 8-5.143 13.143t-13.143 5.143h-128v128q0 8-5.143 13.143t-13.143 5.143h-109.714q-8 0-13.143-5.143t-5.143-13.143v-128h-493.714q-8 0-13.143-5.143t-5.143-13.143v-493.714h-128q-8 0-13.143-5.143t-5.143-13.143zM292.571 705.714l340-340h-340v340zM318.286 731.429h340v-340z" + ], + "width": 951, + "tags": [ + "crop" + ], + "defaultCode": 61733, + "grid": 14, + "matchesSearch": false + }, + { + "id": 262, + "paths": [ + "M0 841.143q0-29.714 14.857-55.143t40-39.714v-468.571q-25.143-14.286-40-39.714t-14.857-55.143q0-45.714 32-77.714t77.714-32 77.714 32 32 77.714q0 29.714-14.857 55.143t-40 39.714v284q30.857-14.857 88-32.571 31.429-9.714 50-16.857t40.286-17.714 33.714-22.571 23.143-29.143 16-39.714 4.857-52.286q-25.143-14.286-40-39.714t-14.857-55.143q0-45.714 32-77.714t77.714-32 77.714 32 32 77.714q0 29.714-14.857 55.143t-40 39.714q-1.143 164-129.143 236.571-38.857 21.714-116 46.286-73.143 22.857-96.857 40.571t-23.714 57.143v14.857q25.143 14.286 40 39.714t14.857 55.143q0 45.714-32 77.714t-77.714 32-77.714-32-32-77.714zM54.857 841.143q0 22.857 16 38.857t38.857 16 38.857-16 16-38.857-16-38.857-38.857-16-38.857 16-16 38.857zM54.857 182.857q0 22.857 16 38.857t38.857 16 38.857-16 16-38.857-16-38.857-38.857-16-38.857 16-16 38.857zM420.571 256q0 22.857 16 38.857t38.857 16 38.857-16 16-38.857-16-38.857-38.857-16-38.857 16-16 38.857z" + ], + "width": 585, + "tags": [ + "code-fork" + ], + "defaultCode": 61734, + "grid": 14, + "matchesSearch": false + }, + { + "id": 263, + "paths": [ + "M0 621.714q0-8 5.143-13.143t13.143-5.143h182.857q8 0 13.143 5.143t5.143 13.143-5.143 13.143-13.143 5.143h-182.857q-8 0-13.143-5.143t-5.143-13.143zM9.143 256q0-68.571 48.571-116l84-83.429q47.429-47.429 116-47.429 69.143 0 116.571 48.571l190.857 191.429q12 12 24 32l-136.571 10.286-156-156.571q-16-16-38.857-16-22.286 0-38.857 15.429l-84 83.429q-16 16-16 38.286 0 22.857 16 38.857l156.571 156.571-10.286 137.143q-20-12-32-24l-192-192q-48-49.143-48-116.571zM73.143 859.429q0-7.429 5.143-13.143l146.286-146.286q5.714-5.143 13.143-5.143t13.143 5.143q5.143 5.714 5.143 13.143t-5.143 13.143l-146.286 146.286q-5.714 5.143-13.143 5.143-6.857 0-13.143-5.143-5.143-5.714-5.143-13.143zM310.857 932.571v-182.857q0-8 5.143-13.143t13.143-5.143 13.143 5.143 5.143 13.143v182.857q0 8-5.143 13.143t-13.143 5.143-13.143-5.143-5.143-13.143zM361.714 669.714l136.571-10.286 156 156.571q15.429 15.429 38.857 15.714t38.857-15.143l84-83.429q16-16 16-38.286 0-22.857-16-38.857l-156.571-157.143 10.286-136.571q20 12 32 24l192 192q48 49.143 48 116.571 0 68.571-48.571 116l-84 83.429q-47.429 47.429-116 47.429-69.143 0-116.571-48.571l-190.857-191.429q-12-12-24-32zM603.429 201.143v-182.857q0-8 5.143-13.143t13.143-5.143 13.143 5.143 5.143 13.143v182.857q0 8-5.143 13.143t-13.143 5.143-13.143-5.143-5.143-13.143zM694.857 237.714q0-7.429 5.143-13.143l146.286-146.286q5.714-5.143 13.143-5.143t13.143 5.143q5.143 5.714 5.143 13.143t-5.143 13.143l-146.286 146.286q-6.286 5.143-13.143 5.143t-13.143-5.143q-5.143-5.714-5.143-13.143zM731.429 329.143q0-8 5.143-13.143t13.143-5.143h182.857q8 0 13.143 5.143t5.143 13.143-5.143 13.143-13.143 5.143h-182.857q-8 0-13.143-5.143t-5.143-13.143z" + ], + "width": 951, + "tags": [ + "unlink", + "chain-broken" + ], + "defaultCode": 61735, + "grid": 14, + "matchesSearch": false + }, + { + "id": 264, + "paths": [ + "M55.143 314.286q-1.429-8.571 3.143-16 91.429-152 265.143-152 45.714 0 92 17.714t83.429 47.429 60.571 72.857 23.429 90.571q0 30.857-8.857 57.714t-20 43.714-31.429 34-32.857 24.857-34.857 20.286q-23.429 13.143-39.143 37.143t-15.714 38.286q0 9.714-6.857 18.571t-16 8.857h-137.143q-8.571 0-14.571-10.571t-6-21.429v-25.714q0-47.429 37.143-89.429t81.714-62q33.714-15.429 48-32t14.286-43.429q0-24-26.571-42.286t-61.429-18.286q-37.143 0-61.714 16.571-20 14.286-61.143 65.714-7.429 9.143-17.714 9.143-6.857 0-14.286-4.571l-93.714-71.429q-7.429-5.714-8.857-14.286zM219.429 854.857v-137.143q0-9.143 6.857-16t16-6.857h137.143q9.143 0 16 6.857t6.857 16v137.143q0 9.143-6.857 16t-16 6.857h-137.143q-9.143 0-16-6.857t-6.857-16z" + ], + "width": 585, + "tags": [ + "question" + ], + "defaultCode": 61736, + "grid": 14, + "matchesSearch": false + }, + { + "id": 265, + "paths": [ + "M0 841.143v-73.143q0-14.857 10.857-25.714t25.714-10.857h36.571v-219.429h-36.571q-14.857 0-25.714-10.857t-10.857-25.714v-73.143q0-14.857 10.857-25.714t25.714-10.857h219.429q14.857 0 25.714 10.857t10.857 25.714v329.143h36.571q14.857 0 25.714 10.857t10.857 25.714v73.143q0 14.857-10.857 25.714t-25.714 10.857h-292.571q-14.857 0-25.714-10.857t-10.857-25.714zM73.143 219.429v-109.714q0-14.857 10.857-25.714t25.714-10.857h146.286q14.857 0 25.714 10.857t10.857 25.714v109.714q0 14.857-10.857 25.714t-25.714 10.857h-146.286q-14.857 0-25.714-10.857t-10.857-25.714z" + ], + "width": 366, + "tags": [ + "info" + ], + "defaultCode": 61737, + "grid": 14, + "matchesSearch": false + }, + { + "id": 266, + "paths": [ + "M56 109.714q-0.571-14.857 10-25.714t25.429-10.857h182.857q14.857 0 25.429 10.857t10 25.714l-16 438.857q-0.571 14.857-11.714 25.714t-26 10.857h-146.286q-14.857 0-26-10.857t-11.714-25.714zM73.143 841.143v-128q0-14.857 10.857-25.714t25.714-10.857h146.286q14.857 0 25.714 10.857t10.857 25.714v128q0 14.857-10.857 25.714t-25.714 10.857h-146.286q-14.857 0-25.714-10.857t-10.857-25.714z" + ], + "width": 366, + "tags": [ + "exclamation" + ], + "defaultCode": 61738, + "grid": 14, + "matchesSearch": false + }, + { + "id": 267, + "paths": [ + "M2.857 877.714v-95.429h73.143l112.571-166.286-105.714-155.429h-78.286v-96h157.714l79.429 130.286q1.143 2.286 13.143 24 4.571 5.143 6.286 12h1.714q1.714-5.143 6.286-12l14.286-24 80-130.286h146.857v96h-71.429l-105.143 152.571 116.571 169.143h62.286v95.429h-141.714l-90.857-144-13.714-24q-4.571-5.143-6.286-12h-1.714l-5.143 12q-5.714 11.429-14.286 25.143l-88.571 142.857h-147.429zM578.857 470.286q0-36.571 14.857-66.857t37.143-49.429 48-37.143 48-31.143 37.143-30.857 14.857-36.571q0-21.714-16.857-35.714t-40.286-14q-29.143 0-55.429 22.286-8 6.286-20.571 21.714l-60-52.571q14.857-21.143 36-37.714 47.429-37.143 107.429-37.143 62.857 0 101.714 34t38.857 90.571q0 32-14 58.857t-35.429 43.714-46.571 33.429-46.857 28.857-37.429 29.429-17.429 36h132.571v-45.714h72v117.714h-293.714l-1.714-15.429q-2.286-16-2.286-26.286z" + ], + "tags": [ + "superscript" + ], + "defaultCode": 61739, + "grid": 14, + "matchesSearch": false + }, + { + "id": 268, + "paths": [ + "M2.857 877.714v-95.429h73.143l112.571-166.286-105.714-155.429h-78.286v-96h157.714l79.429 130.286q1.143 2.286 13.143 24 4.571 5.143 6.286 12h1.714q1.714-5.143 6.286-12l14.286-24 80-130.286h146.857v96h-71.429l-105.143 152.571 116.571 169.143h62.286v95.429h-141.714l-90.857-144-13.714-24q-4.571-5.143-6.286-12h-1.714l-5.143 12q-5.714 11.429-14.286 25.143l-88.571 142.857h-147.429zM580 982.286q0-36.571 14.857-66.857t37.143-49.429 48-37.143 48-31.143 37.143-30.857 14.857-36.571q0-21.714-16.857-35.714t-40.286-14q-29.143 0-55.429 22.286-8 6.286-20.571 21.714l-60-52.571q14.857-21.143 36-37.714 45.714-37.143 107.429-37.143 62.857 0 101.714 34t38.857 90.571q0 37.714-19.714 67.714t-48 49.143-56.857 35.714-49.714 36-23.429 41.714h132.571v-45.714h72v117.714h-293.714l-2.286-15.429q-1.714-25.714-1.714-26.286z" + ], + "tags": [ + "subscript" + ], + "defaultCode": 61740, + "grid": 14, + "matchesSearch": false + }, + { + "id": 269, + "paths": [ + "M0.857 794q3.143-21.429 17.429-37.429l512-585.143q21.714-25.143 54.857-25.143h438.857q21.714 0 39.714 11.714t27.143 31.143q8.571 19.429 5.429 40.857t-17.429 37.429l-512 585.143q-21.714 25.143-54.857 25.143h-438.857q-21.714 0-39.714-11.714t-27.143-31.143q-8.571-19.429-5.429-40.857zM73.143 804.571h438.857l192-219.429h-438.857z" + ], + "width": 1097, + "tags": [ + "eraser" + ], + "defaultCode": 61741, + "grid": 14, + "matchesSearch": false + }, + { + "id": 270, + "paths": [ + "M0 877.714v-585.143q1.143 0.571 10 2t19.429 2.857 12.286 2q85.714 13.714 140 13.714 45.714 0 66.857-20 26.286-25.143 26.286-50.857 0-12.571-8.571-28.857t-19.143-30.286-19.143-36.857-8.571-47.429q0-46.857 33.714-72.857t82.286-26q45.714 0 76.571 25.429t30.857 70.571q0 23.429-10 44.286t-21.714 33.714-21.714 32.286-10 40.571q0 32.571 24 47.714t58.857 15.143q36.571 0 102.857-8.571t93.143-9.714v1.143q-0.571 1.143-2 10t-2.857 19.429-2 12.286q-13.714 85.714-13.714 140 0 45.714 20 66.857 25.143 26.286 50.857 26.286 12.571 0 28.857-8.571t30.286-19.143 36.857-19.143 47.429-8.571q46.857 0 72.857 33.714t26 81.714q0 46.286-25.429 77.143t-70.571 30.857q-23.429 0-44.286-10t-33.714-21.714-32.286-21.714-40.571-10q-62.857 0-62.857 70.857 0 22.286 9.143 65.714t8.571 65.714v2.857q-12.571 0-18.857 0.571-19.429 1.714-55.714 6.571t-66 7.714-56 2.857q-34.857 0-58.857-15.143t-24-47.714q0-21.143 10-40.571t21.714-32.286 21.714-33.714 10-44.286q0-45.143-30.857-70.571t-77.143-25.429q-48 0-81.714 26t-33.714 72.857q0 24.571 8.571 47.429t19.143 36.857 19.143 30.286 8.571 28.857q0 25.714-26.286 50.857-21.143 20-66.857 20-54.286 0-140-13.714-5.143-1.143-15.714-2.286t-15.714-2.286l-7.429-1.143q-0.571 0-1.714-0.571-1.143 0-1.143-0.571z" + ], + "width": 951, + "tags": [ + "puzzle-piece" + ], + "defaultCode": 61742, + "grid": 14, + "matchesSearch": false + }, + { + "id": 271, + "paths": [ + "M0 475.429v-73.143q0-14.857 10.857-25.714t25.714-10.857 25.714 10.857 10.857 25.714v73.143q0 105.714 75.143 180.857t180.857 75.143 180.857-75.143 75.143-180.857v-73.143q0-14.857 10.857-25.714t25.714-10.857 25.714 10.857 10.857 25.714v73.143q0 126.286-84.286 219.714t-208.286 107.143v75.429h146.286q14.857 0 25.714 10.857t10.857 25.714-10.857 25.714-25.714 10.857h-365.714q-14.857 0-25.714-10.857t-10.857-25.714 10.857-25.714 25.714-10.857h146.286v-75.429q-124-13.714-208.286-107.143t-84.286-219.714zM146.286 475.429v-292.571q0-75.429 53.714-129.143t129.143-53.714 129.143 53.714 53.714 129.143v292.571q0 75.429-53.714 129.143t-129.143 53.714-129.143-53.714-53.714-129.143z" + ], + "width": 658, + "tags": [ + "microphone" + ], + "defaultCode": 61744, + "grid": 14, + "matchesSearch": false + }, + { + "id": 272, + "paths": [ + "M7.429 841.143q0-7.429 5.714-13.143l705.143-705.143q5.714-5.714 13.143-5.714t13.143 5.714l46.857 46.857q5.714 5.714 5.714 13.143t-5.714 13.143l-206.286 206.286v73.143q0 75.429-53.714 129.143t-129.143 53.714q-31.429 0-62.286-10.857l-54.857 54.857q55.429 29.143 117.143 29.143 105.714 0 180.857-75.143t75.143-180.857v-73.143q0-14.857 10.857-25.714t25.714-10.857 25.714 10.857 10.857 25.714v73.143q0 126.286-84.286 219.714t-208.286 107.143v75.429h146.286q14.857 0 25.714 10.857t10.857 25.714-10.857 25.714-25.714 10.857h-365.714q-14.857 0-25.714-10.857t-10.857-25.714 10.857-25.714 25.714-10.857h146.286v-75.429q-71.429-7.429-134.286-46.286l-145.143 145.143q-5.714 5.714-13.143 5.714t-13.143-5.714l-46.857-46.857q-5.714-5.714-5.714-13.143zM73.143 475.429v-73.143q0-14.857 10.857-25.714t25.714-10.857 25.714 10.857 10.857 25.714v73.143q0 30.286 8.571 64.571l-57.714 57.714q-24-58.857-24-122.286zM219.429 475.429v-292.571q0-75.429 53.714-129.143t129.143-53.714q58.286 0 105.429 33.714t66.571 86.857z" + ], + "width": 805, + "tags": [ + "microphone-slash" + ], + "defaultCode": 61745, + "grid": 14, + "matchesSearch": false + }, + { + "id": 273, + "paths": [ + "M0 548.571v-438.857q0-14.857 10.857-25.714t25.714-10.857h658.286q14.857 0 25.714 10.857t10.857 25.714v438.857q0 49.143-19.143 97.429t-47.429 85.714-67.429 72.857-72.286 58.857-69.143 44.286-51.143 28.286-24.286 11.429q-6.857 3.429-14.857 3.429t-14.857-3.429q-9.143-4-24.286-11.429t-51.143-28.286-69.143-44.286-72.286-58.857-67.429-72.857-47.429-85.714-19.143-97.429zM365.714 832.571q68-36 121.714-78.286 134.286-105.143 134.286-205.714v-365.714h-256v649.714z" + ], + "width": 731, + "tags": [ + "shield" + ], + "defaultCode": 61746, + "grid": 14, + "matchesSearch": false + }, + { + "id": 274, + "paths": [ + "M0 950.857v-731.429q0-29.714 21.714-51.429t51.429-21.714h73.143v-54.857q0-37.714 26.857-64.571t64.571-26.857h36.571q37.714 0 64.571 26.857t26.857 64.571v54.857h219.429v-54.857q0-37.714 26.857-64.571t64.571-26.857h36.571q37.714 0 64.571 26.857t26.857 64.571v54.857h73.143q29.714 0 51.429 21.714t21.714 51.429v731.429q0 29.714-21.714 51.429t-51.429 21.714h-804.571q-29.714 0-51.429-21.714t-21.714-51.429zM73.143 950.857h804.571v-585.143h-804.571v585.143zM219.429 256q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143v-164.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v164.571zM658.286 256q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143v-164.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v164.571z" + ], + "width": 951, + "tags": [ + "calendar-o" + ], + "defaultCode": 61747, + "grid": 14, + "matchesSearch": false + }, + { + "id": 275, + "paths": [ + "M2 340.571q-4.857-14.286 2-28 2.857-5.714 8.286-14.857t21.429-30.571 34.571-40 48.571-38.286 62-30q-14.286-24-14.286-49.143 0-37.714 26.857-64.571t64.571-26.857 64.571 26.857 26.857 64.571q0 18.857-8 36.571h172.571q0-6.286 4-11.429t10.286-6.286l256-54.857q1.714-0.571 4-0.571 6.857 0 11.429 4 6.857 5.143 6.857 14.286v182.857q0 9.143-6.857 14.286-4.571 4-11.429 4-2.286 0-4-0.571l-256-54.857q-6.286-1.143-10.286-6.286t-4-11.429h-146.286v58.286q63.429 13.143 104.857 63.429t41.429 116v457.143q0 14.857-10.857 25.714t-25.714 10.857h-292.571q-14.857 0-25.714-10.857t-10.857-25.714v-457.143q0-60.571 35.714-108.857t92.286-65.429v-63.429h-18.286q-33.714 0-65.714 13.429t-52.286 30.286-37.714 38-23.143 30.571-8 14q-9.714 20-32.571 20-9.143 0-16.571-4-13.143-6.857-18-21.143zM219.429 109.714q0 14.857 10.857 25.714t25.714 10.857 25.714-10.857 10.857-25.714-10.857-25.714-25.714-10.857-25.714 10.857-10.857 25.714z" + ], + "width": 805, + "tags": [ + "fire-extinguisher" + ], + "defaultCode": 61748, + "grid": 14, + "matchesSearch": false + }, + { + "id": 276, + "paths": [ + "M20.571 612.571l128-219.429q5.714-8 14.857-9.143l216.571-11.429q54.857-65.143 100.571-111.429 107.429-106.857 204.571-147.429t246.286-40.571q8 0 13.714 5.429t5.714 12.857q0 142.286-43.143 246t-144.857 206q-46.286 45.714-111.429 100.571l-11.429 216.571q-1.143 9.143-9.143 14.857l-219.429 128q-4 2.286-9.143 2.286-6.857 0-13.143-5.143l-36.571-36.571q-7.429-8-4.571-18.286l48.571-157.714-160.571-160.571-157.714 48.571q-1.714 0.571-5.143 0.571-8 0-13.143-5.143l-36.571-36.571q-9.714-10.857-2.857-22.286zM713.143 256q0 22.857 16 38.857t38.857 16 38.857-16 16-38.857-16-38.857-38.857-16-38.857 16-16 38.857z" + ], + "width": 951, + "tags": [ + "rocket" + ], + "defaultCode": 61749, + "grid": 14, + "matchesSearch": false + }, + { + "id": 277, + "paths": [ + "M0 877.714l116.571-544.571-87.429-186.857h729.143q57.714 0 108.286 23.143t84.286 64.857q34.286 41.714 46.286 96.286t0 111.143l-93.714 436h-190.857l101.714-475.429q7.429-32-8.571-50.286-15.429-18.857-47.429-18.857h-96.571l-116.571 544.571h-190.857l116.571-544.571h-163.429l-116.571 544.571h-190.857z" + ], + "tags": [ + "maxcdn" + ], + "defaultCode": 61750, + "grid": 14, + "matchesSearch": false + }, + { + "id": 278, + "paths": [ + "M0 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286zM197.714 512q0 14.857 10.857 25.714l259.429 259.429q10.857 10.857 25.714 10.857t25.714-10.857l58.286-58.286q10.857-10.857 10.857-25.714t-10.857-25.714l-175.429-175.429 175.429-175.429q10.857-10.857 10.857-25.714t-10.857-25.714l-58.286-58.286q-10.857-10.857-25.714-10.857t-25.714 10.857l-259.429 259.429q-10.857 10.857-10.857 25.714z" + ], + "tags": [ + "chevron-circle-left" + ], + "defaultCode": 61751, + "grid": 14, + "matchesSearch": false + }, + { + "id": 279, + "paths": [ + "M0 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286zM289.143 713.143q0 14.857 10.857 25.714l58.286 58.286q10.857 10.857 25.714 10.857t25.714-10.857l259.429-259.429q10.857-10.857 10.857-25.714t-10.857-25.714l-259.429-259.429q-10.857-10.857-25.714-10.857t-25.714 10.857l-58.286 58.286q-10.857 10.857-10.857 25.714t10.857 25.714l175.429 175.429-175.429 175.429q-10.857 10.857-10.857 25.714z" + ], + "tags": [ + "chevron-circle-right" + ], + "defaultCode": 61752, + "grid": 14, + "matchesSearch": false + }, + { + "id": 280, + "paths": [ + "M0 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286zM142.857 566.857q0 14.857 10.857 25.714l58.286 58.286q10.857 10.857 25.714 10.857t25.714-10.857l175.429-175.429 175.429 175.429q10.857 10.857 25.714 10.857t25.714-10.857l58.286-58.286q10.857-10.857 10.857-25.714t-10.857-25.714l-259.429-259.429q-10.857-10.857-25.714-10.857t-25.714 10.857l-259.429 259.429q-10.857 10.857-10.857 25.714z" + ], + "tags": [ + "chevron-circle-up" + ], + "defaultCode": 61753, + "grid": 14, + "matchesSearch": false + }, + { + "id": 281, + "paths": [ + "M0 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286zM142.857 457.143q0 14.857 10.857 25.714l259.429 259.429q10.857 10.857 25.714 10.857t25.714-10.857l259.429-259.429q10.857-10.857 10.857-25.714t-10.857-25.714l-58.286-58.286q-10.857-10.857-25.714-10.857t-25.714 10.857l-175.429 175.429-175.429-175.429q-10.857-10.857-25.714-10.857t-25.714 10.857l-58.286 58.286q-10.857 10.857-10.857 25.714z" + ], + "tags": [ + "chevron-circle-down" + ], + "defaultCode": 61754, + "grid": 14, + "matchesSearch": false + }, + { + "id": 282, + "paths": [ + "M0 73.143h804.571l-73.143 821.714-330.286 92.571-328-92.571zM149.714 241.143l26.857 305.143h349.714l-12.571 130.286-112.571 30.286-112-30.286-7.429-80h-100l12.571 158.857 206.857 57.143h2.286v-0.571l205.143-56.571 28.571-310.857h-368l-8.571-103.429h385.143l9.143-100h-505.143z" + ], + "width": 805, + "tags": [ + "html5" + ], + "defaultCode": 61755, + "grid": 14, + "matchesSearch": false + }, + { + "id": 283, + "paths": [ + "M6.857 834.857l40.571-203.429h169.714l-16.571 84 241.143 92 277.714-92 38.857-193.714h-690.286l33.143-169.714h690.857l21.714-109.143h-690.286l33.714-169.714h860l-152 761.714-459.429 152.571z" + ], + "tags": [ + "css3" + ], + "defaultCode": 61756, + "grid": 14, + "matchesSearch": false + }, + { + "id": 284, + "paths": [ + "M0 877.714v-201.143q0-8 5.143-13.143t13.143-5.143h201.143q12.571 0 17.143 11.429 4.571 10.857-4 20l-57.143 57.143q38.286 52 108.286 87.714t155.143 47.143v-369.714h-109.714q-14.857 0-25.714-10.857t-10.857-25.714v-73.143q0-14.857 10.857-25.714t25.714-10.857h109.714v-93.143q-33.143-19.429-53.143-52.857t-20-73.429q0-60.571 42.857-103.429t103.429-42.857 103.429 42.857 42.857 103.429q0 40-20 73.429t-53.143 52.857v93.143h109.714q14.857 0 25.714 10.857t10.857 25.714v73.143q0 14.857-10.857 25.714t-25.714 10.857h-109.714v369.714q85.143-11.429 155.143-47.143t108.286-87.714l-57.143-57.143q-8.571-9.143-4-20 4.571-11.429 17.143-11.429h201.143q8 0 13.143 5.143t5.143 13.143v201.143q0 12.571-11.429 17.143-4.571 1.143-6.857 1.143-7.429 0-13.143-5.143l-53.143-53.143q-68 81.714-182 129.429t-245.429 47.714-245.429-47.714-182-129.429l-53.143 53.143q-5.143 5.143-13.143 5.143-2.286 0-6.857-1.143-11.429-4.571-11.429-17.143zM475.429 146.286q0 14.857 10.857 25.714t25.714 10.857 25.714-10.857 10.857-25.714-10.857-25.714-25.714-10.857-25.714 10.857-10.857 25.714z" + ], + "tags": [ + "anchor" + ], + "defaultCode": 61757, + "grid": 14, + "matchesSearch": false + }, + { + "id": 285, + "paths": [ + "M0 822.857v-329.143q0-22.857 16-38.857t38.857-16h18.286v-182.857q0-105.714 75.143-180.857t180.857-75.143 180.857 75.143 75.143 180.857q0 14.857-10.857 25.714t-25.714 10.857h-36.571q-14.857 0-25.714-10.857t-10.857-25.714q0-60.571-42.857-103.429t-103.429-42.857-103.429 42.857-42.857 103.429v182.857h420.571q22.857 0 38.857 16t16 38.857v329.143q0 22.857-16 38.857t-38.857 16h-548.571q-22.857 0-38.857-16t-16-38.857z" + ], + "width": 658, + "tags": [ + "unlock-alt" + ], + "defaultCode": 61758, + "grid": 14, + "matchesSearch": false + }, + { + "id": 286, + "paths": [ + "M0 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286zM73.143 512q0 74.286 29.143 142t78 116.571 116.571 78 142 29.143 142-29.143 116.571-78 78-116.571 29.143-142-29.143-142-78-116.571-116.571-78-142-29.143-142 29.143-116.571 78-78 116.571-29.143 142zM146.286 512q0-121.143 85.714-206.857t206.857-85.714 206.857 85.714 85.714 206.857-85.714 206.857-206.857 85.714-206.857-85.714-85.714-206.857zM219.429 512q0 90.857 64.286 155.143t155.143 64.286 155.143-64.286 64.286-155.143-64.286-155.143-155.143-64.286-155.143 64.286-64.286 155.143zM292.571 512q0-60.571 42.857-103.429t103.429-42.857 103.429 42.857 42.857 103.429-42.857 103.429-103.429 42.857-103.429-42.857-42.857-103.429z" + ], + "tags": [ + "bullseye" + ], + "defaultCode": 61760, + "grid": 14, + "matchesSearch": false + }, + { + "id": 287, + "paths": [ + "M0 530.286v-109.714q0-22.857 16-38.857t38.857-16h109.714q22.857 0 38.857 16t16 38.857v109.714q0 22.857-16 38.857t-38.857 16h-109.714q-22.857 0-38.857-16t-16-38.857zM292.571 530.286v-109.714q0-22.857 16-38.857t38.857-16h109.714q22.857 0 38.857 16t16 38.857v109.714q0 22.857-16 38.857t-38.857 16h-109.714q-22.857 0-38.857-16t-16-38.857zM585.143 530.286v-109.714q0-22.857 16-38.857t38.857-16h109.714q22.857 0 38.857 16t16 38.857v109.714q0 22.857-16 38.857t-38.857 16h-109.714q-22.857 0-38.857-16t-16-38.857z" + ], + "width": 805, + "tags": [ + "ellipsis-h" + ], + "defaultCode": 61761, + "grid": 14, + "matchesSearch": false + }, + { + "id": 288, + "paths": [ + "M0 822.857v-109.714q0-22.857 16-38.857t38.857-16h109.714q22.857 0 38.857 16t16 38.857v109.714q0 22.857-16 38.857t-38.857 16h-109.714q-22.857 0-38.857-16t-16-38.857zM0 530.286v-109.714q0-22.857 16-38.857t38.857-16h109.714q22.857 0 38.857 16t16 38.857v109.714q0 22.857-16 38.857t-38.857 16h-109.714q-22.857 0-38.857-16t-16-38.857zM0 237.714v-109.714q0-22.857 16-38.857t38.857-16h109.714q22.857 0 38.857 16t16 38.857v109.714q0 22.857-16 38.857t-38.857 16h-109.714q-22.857 0-38.857-16t-16-38.857z" + ], + "width": 219, + "tags": [ + "ellipsis-v" + ], + "defaultCode": 61762, + "grid": 14, + "matchesSearch": false + }, + { + "id": 289, + "paths": [ + "M0 786.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286zM146.286 731.429q0 30.286 21.429 51.714t51.714 21.429 51.714-21.429 21.429-51.714-21.429-51.714-51.714-21.429-51.714 21.429-21.429 51.714zM146.286 549.143q0 7.429 4.857 12.571t12.286 5.714q88 6.286 150.857 69.143t69.143 150.857q0.571 7.429 5.714 12.286t12.571 4.857h73.143q7.429 0 13.143-5.714t5.143-13.714q-7.429-132.571-101.143-226.286t-226.286-101.143q-8-0.571-13.714 5.143t-5.714 13.143v73.143zM146.286 329.714q0 7.429 5.143 12.571t12.571 5.714q116.571 4 216 63.714t159.143 159.143 63.714 216q0.571 7.429 5.714 12.571t12.571 5.143h73.143q7.429 0 13.143-5.714 6.286-5.143 5.143-13.143-2.857-88-32-170t-79.714-148.571-117.143-117.143-148.571-79.714-170-32q-8-0.571-13.143 5.143-5.714 5.714-5.714 13.143v73.143z" + ], + "tags": [ + "rss-square" + ], + "defaultCode": 61763, + "grid": 14, + "matchesSearch": false + }, + { + "id": 290, + "paths": [ + "M0 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286zM292.571 694.857q0 21.143 18.286 32 9.143 4.571 18.286 4.571 9.714 0 18.286-5.143l310.857-182.857q18.286-10.286 18.286-31.429t-18.286-31.429l-310.857-182.857q-17.714-10.857-36.571-0.571-18.286 10.857-18.286 32v365.714z" + ], + "tags": [ + "play-circle" + ], + "defaultCode": 61764, + "grid": 14, + "matchesSearch": false + }, + { + "id": 291, + "paths": [ + "M30.857 621.429q0-30.571 21.143-51.714l518.286-517.714q21.143-21.143 51.714-21.143t51.714 21.143l71.429 71.429q-32 32-32 77.714t32 77.714 77.714 32 77.714-32l72 71.429q21.143 21.143 21.143 51.714t-21.143 51.714l-518.286 518.857q-21.143 21.143-51.714 21.143t-51.714-21.143l-72-72q32-32 32-77.714t-32-77.714-77.714-32-77.714 32l-71.429-72q-21.143-21.143-21.143-51.714zM195.429 585.143q0 14.857 10.857 25.714l206.857 206.857q10.286 10.286 25.714 10.286t25.714-10.286l353.143-353.143q10.857-10.857 10.857-25.714t-10.857-25.714l-206.857-206.857q-10.286-10.286-25.714-10.286t-25.714 10.286l-353.143 353.143q-10.857 10.857-10.857 25.714zM258.286 585.143l326.857-326.857 180.571 180.571-326.857 326.857z" + ], + "tags": [ + "ticket" + ], + "defaultCode": 61765, + "grid": 14, + "matchesSearch": false + }, + { + "id": 292, + "paths": [ + "M0 786.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286zM146.286 548.571q0 14.857 10.857 25.714t25.714 10.857h512q14.857 0 25.714-10.857t10.857-25.714v-73.143q0-14.857-10.857-25.714t-25.714-10.857h-512q-14.857 0-25.714 10.857t-10.857 25.714v73.143z" + ], + "tags": [ + "minus-square" + ], + "defaultCode": 61766, + "grid": 14, + "matchesSearch": false + }, + { + "id": 293, + "paths": [ + "M0 713.143v-475.429q0-68 48.286-116.286t116.286-48.286h475.429q68 0 116.286 48.286t48.286 116.286v475.429q0 68-48.286 116.286t-116.286 48.286h-475.429q-68 0-116.286-48.286t-48.286-116.286zM73.143 713.143q0 37.714 26.857 64.571t64.571 26.857h475.429q37.714 0 64.571-26.857t26.857-64.571v-475.429q0-37.714-26.857-64.571t-64.571-26.857h-475.429q-37.714 0-64.571 26.857t-26.857 64.571v475.429zM146.286 493.714v-36.571q0-8 5.143-13.143t13.143-5.143h475.429q8 0 13.143 5.143t5.143 13.143v36.571q0 8-5.143 13.143t-13.143 5.143h-475.429q-8 0-13.143-5.143t-5.143-13.143z" + ], + "width": 805, + "tags": [ + "minus-square-o" + ], + "defaultCode": 61767, + "grid": 14, + "matchesSearch": false + }, + { + "id": 294, + "paths": [ + "M1.714 867.429q-4.571-11.429 2.286-20l91.429-109.714q5.143-6.286 14.286-6.286h182.857v-365.714h-109.714q-22.857 0-33.143-21.143-9.714-21.143 5.143-38.857l182.857-219.429q10.286-12.571 28-12.571t28 12.571l182.857 219.429q15.429 18.286 5.143 38.857-10.286 21.143-33.143 21.143h-109.714v493.714q0 8-5.143 13.143t-13.143 5.143h-402.286q-12 0-16.571-10.286z" + ], + "width": 585, + "tags": [ + "level-up" + ], + "defaultCode": 61768, + "grid": 14, + "matchesSearch": false + }, + { + "id": 295, + "paths": [ + "M1.714 157.143q5.143-10.857 16.571-10.857h402.286q7.429 0 12.857 5.429t5.429 13.429v493.143h109.714q22.857 0 33.143 21.143t-5.143 39.429l-182.857 219.429q-10.286 12.571-28 12.571t-28-12.571l-182.857-219.429q-14.857-17.714-5.143-39.429 10.286-21.143 33.143-21.143h109.714v-365.714h-182.857q-8 0-14.286-6.286l-91.429-109.714q-7.429-8-2.286-19.429z" + ], + "width": 585, + "tags": [ + "level-down" + ], + "defaultCode": 61769, + "grid": 14, + "matchesSearch": false + }, + { + "id": 296, + "paths": [ + "M0 786.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286zM124.571 512q0 14.857 10.857 25.714l204.571 204.571q10.857 10.857 25.714 10.857t25.714-10.857l350.857-350.857q10.857-10.857 10.857-25.714t-10.857-25.714l-58.286-58.286q-10.857-10.857-25.714-10.857t-25.714 10.857l-266.857 266.857-120.571-120.571q-10.857-10.857-25.714-10.857t-25.714 10.857l-58.286 58.286q-10.857 10.857-10.857 25.714z" + ], + "tags": [ + "check-square" + ], + "defaultCode": 61770, + "grid": 14, + "matchesSearch": false + }, + { + "id": 297, + "paths": [ + "M0 786.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286zM146.286 804.571h164.571l310.857-310.857-164.571-164.571-310.857 310.857v164.571zM201.143 694.857v-32l29.714-29.714 86.857 86.857-29.714 29.714h-32v-54.857h-54.857zM282.286 595.429q-8-7.429 1.714-17.143l166.286-166.286q9.714-9.714 17.143-1.714 8 7.429-1.714 17.143l-166.286 166.286q-9.714 9.714-17.143 1.714zM493.714 292.571l164.571 164.571 52.571-52.571q16-16 16-38.857t-16-38.857l-86.857-86.857q-16-16-38.857-16t-38.857 16z" + ], + "tags": [ + "pencil-square" + ], + "defaultCode": 61771, + "grid": 14, + "matchesSearch": false + }, + { + "id": 298, + "paths": [ + "M0 786.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286zM161.143 694.857q0 14.857 10.857 25.714l58.286 58.286q10.857 10.857 25.714 10.857t25.714-10.857l305.143-305.143 82.286 82.286q10.286 10.857 25.714 10.857 6.857 0 14.286-2.857 22.286-9.714 22.286-33.714v-274.286q0-14.857-10.857-25.714t-25.714-10.857h-274.286q-24 0-33.714 22.286-9.714 23.429 8 40l82.286 82.286-305.143 305.143q-10.857 10.857-10.857 25.714z" + ], + "tags": [ + "external-link-square" + ], + "defaultCode": 61772, + "grid": 14, + "matchesSearch": false + }, + { + "id": 299, + "paths": [ + "M0 786.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286zM146.286 621.714q0 103.429 95.429 230.857 5.714 6.857 14.286 6.857 4 0 7.429-1.714 12.571-5.143 10.857-18.857-25.143-202.286 35.429-270.286 26.286-29.714 74.286-43.143t128-13.429v91.429q0 24 22.857 33.714 6.857 2.857 13.714 2.857 14.857 0 25.714-10.857l201.143-201.143q10.857-10.857 10.857-25.714t-10.857-25.714l-201.143-201.143q-17.143-17.714-39.429-8-22.857 9.714-22.857 33.714v91.429q-68 0-123.429 11.143t-92.857 29.143-65.143 45.143-43.714 54.571-25.429 62.286-12.286 63.714-2.857 63.143z" + ], + "tags": [ + "share-square" + ], + "defaultCode": 61773, + "grid": 14, + "matchesSearch": false + }, + { + "id": 300, + "paths": [ + "M0 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286zM128 512q0 84.571 41.714 156t113.143 113.143 156 41.714 156-41.714 113.143-113.143 41.714-156-41.714-156-113.143-113.143-156-41.714-156 41.714-113.143 113.143-41.714 156zM292.571 740v-309.714l292.571-146.286v309.714zM365.714 621.714l146.286-73.143-146.286-73.143v146.286z" + ], + "tags": [ + "compass" + ], + "defaultCode": 61774, + "grid": 14, + "matchesSearch": false + }, + { + "id": 301, + "paths": [ + "M0 786.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286zM146.286 786.286q0 7.429 5.429 12.857t12.857 5.429h548.571q7.429 0 12.857-5.429t5.429-12.857v-548.571q0-7.429-5.429-12.857t-12.857-5.429h-548.571q-7.429 0-12.857 5.429t-5.429 12.857v548.571zM223.429 385.714q9.714-20 32.571-20h365.714q22.857 0 32.571 20 10.286 20-2.857 37.714l-182.857 256q-10.857 15.429-29.714 15.429t-29.714-15.429l-182.857-256q-13.143-17.714-2.857-37.714z" + ], + "tags": [ + "toggle-down", + "caret-square-o-down" + ], + "defaultCode": 61776, + "grid": 14, + "matchesSearch": false + }, + { + "id": 302, + "paths": [ + "M0 786.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286zM146.286 786.286q0 7.429 5.429 12.857t12.857 5.429h548.571q7.429 0 12.857-5.429t5.429-12.857v-548.571q0-7.429-5.429-12.857t-12.857-5.429h-548.571q-7.429 0-12.857 5.429t-5.429 12.857v548.571zM223.429 638.286q-10.286-20 2.857-37.714l182.857-256q10.857-15.429 29.714-15.429t29.714 15.429l182.857 256q13.143 17.714 2.857 37.714-9.714 20-32.571 20h-365.714q-22.857 0-32.571-20z" + ], + "tags": [ + "toggle-up", + "caret-square-o-up" + ], + "defaultCode": 61777, + "grid": 14, + "matchesSearch": false + }, + { + "id": 303, + "paths": [ + "M0 786.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286zM146.286 786.286q0 8 5.143 13.143t13.143 5.143h548.571q8 0 13.143-5.143t5.143-13.143v-548.571q0-8-5.143-13.143t-13.143-5.143h-548.571q-8 0-13.143 5.143t-5.143 13.143v548.571zM292.571 694.857v-365.714q0-22.857 20-32.571 20-10.286 37.714 2.857l256 182.857q15.429 10.857 15.429 29.714t-15.429 29.714l-256 182.857q-17.714 13.143-37.714 2.857-20-9.714-20-32.571z" + ], + "tags": [ + "toggle-right", + "caret-square-o-right" + ], + "defaultCode": 61778, + "grid": 14, + "matchesSearch": false + }, + { + "id": 304, + "paths": [ + "M0 584v-64.571q0-7.429 5.429-12.857t12.857-5.429h37.714q-1.143-32.571 0.571-60h-38.286q-8 0-13.143-5.143t-5.143-13.143v-65.143q0-8 5.143-13.143t13.143-5.143h56q38.286-120 139.143-193.143t228.857-73.143q58.286 0 110.857 13.143 6.286 1.714 11.429 8.571 3.429 6.286 1.714 13.714l-24.571 90.857q-1.714 7.429-8 11.143t-13.714 1.429l-2.286-0.571q-2.286-0.571-6.571-1.429l-10-2t-12.857-2-14.857-1.714-16.571-1.429-16.857-0.571q-72 0-129.143 36.571t-85.714 100.571h267.429q9.143 0 14.286 6.857 5.714 6.857 4 14.857l-13.714 65.143q-2.857 14.857-18.286 14.857h-278.857q-1.714 21.143 0 60h262.286q8.571 0 14.286 6.857 5.143 6.857 3.429 15.429l-13.714 64q-1.143 6.286-6.286 10.571t-11.429 4.286h-221.143q27.429 66.857 85.429 106t130.571 39.143q10.286 0 20.571-0.857t19.143-2 16.857-2.571 14-2.857 10.571-2.571l6.857-1.714 2.857-1.143q7.429-2.857 14.857 1.143 6.857 4 8.571 12l20 90.857q1.714 6.857-1.714 12.857t-9.714 8.286l-2.857 0.571q-2.286 1.143-6 2t-9.143 2.571-12.286 3.143-14.571 2.857-17.143 2.857-19.143 2.571-20.857 1.714-22 0.571q-133.714 0-233.714-74.571t-136-200.857h-54.286q-7.429 0-12.857-5.429t-5.429-12.857z" + ], + "width": 585, + "tags": [ + "euro", + "eur" + ], + "defaultCode": 61779, + "grid": 14, + "matchesSearch": false + }, + { + "id": 305, + "paths": [ + "M0 859.429v-85.714q0-7.429 5.429-12.857t12.857-5.429h55.429v-218.857h-54.286q-8 0-13.143-5.429t-5.143-12.857v-74.857q0-8 5.143-13.143t13.143-5.143h54.286v-127.429q0-97.714 70.571-161.143t179.714-63.429q105.714 0 191.429 71.429 5.143 4.571 5.714 11.714t-4 12.857l-58.857 72.571q-5.143 6.286-12.571 6.857-7.429 1.143-13.143-4-2.857-2.857-14.857-10.857t-39.429-18.286-53.143-10.286q-48.571 0-78.286 26.857t-29.714 70.286v122.857h174.286q7.429 0 12.857 5.143t5.429 13.143v74.857q0 7.429-5.429 12.857t-12.857 5.429h-174.286v216.571h236.571v-103.429q0-7.429 5.143-12.857t13.143-5.429h92.571q8 0 13.143 5.429t5.143 12.857v209.714q0 8-5.143 13.143t-13.143 5.143h-546.286q-8 0-13.143-5.143t-5.143-13.143z" + ], + "width": 585, + "tags": [ + "gbp" + ], + "defaultCode": 61780, + "grid": 14, + "matchesSearch": false + }, + { + "id": 306, + "paths": [ + "M29.714 780l58.857-77.143q4-5.714 13.143-6.857 8.571-1.143 13.714 5.143l1.143 1.143q64.571 56.571 138.857 71.429 21.143 4.571 42.286 4.571 46.286 0 81.429-24.571t35.143-69.714q0-16-8.571-30.286t-19.143-24-33.429-21.429-37.714-18.286-45.714-18.571q-22.286-9.143-35.143-14.286t-35.143-15.143-35.714-17.714-32.286-20.286-30.571-24.286-24.857-28-20.286-33.143-12-38-4.857-44.571q0-78.857 56-138.286t145.714-76.571v-102.857q0-7.429 5.429-12.857t12.857-5.429h77.143q8 0 13.143 5.143t5.143 13.143v100.571q32.571 3.429 63.143 13.143t49.714 19.143 36.286 21.429 22.286 16.571 8.571 8q9.714 10.286 2.857 21.714l-46.286 83.429q-4.571 8.571-13.143 9.143-8 1.714-15.429-4-1.714-1.714-8.286-6.857t-22.286-15.143-33.429-18.286-42.571-14.857-48.857-6.571q-54.286 0-88.571 24.571t-34.286 63.429q0 14.857 4.857 27.429t16.857 23.714 22.571 18.857 32 17.714 34.571 15.429 40 15.714q30.286 11.429 46.286 18t43.429 20 43.143 24.286 35.429 28.571 30.286 36.286 18 43.714 7.429 53.714q0 87.429-56.857 150.571t-147.714 78v100q0 8-5.143 13.143t-13.143 5.143h-77.143q-7.429 0-12.857-5.429t-5.429-12.857v-100q-37.714-5.143-72.857-17.714t-58-25.429-42.286-27.429-26.571-21.429-10-10.286q-9.714-12-1.143-23.429z" + ], + "width": 585, + "tags": [ + "dollar", + "usd" + ], + "defaultCode": 61781, + "grid": 14, + "matchesSearch": false + }, + { + "id": 307, + "paths": [ + "M0 532v-72.571q0-7.429 5.429-12.857t12.857-5.429h64q75.429 0 121.429-24.571t58.571-71.429h-244q-8 0-13.143-5.143t-5.143-13.143v-58.286q0-8 5.143-13.143t13.143-5.143h236q-32.571-64.571-153.143-64.571h-82.857q-7.429 0-12.857-5.429t-5.429-12.857v-76q0-8 5.143-13.143t13.143-5.143h475.429q8 0 13.143 5.143t5.143 13.143v58.286q0 8-5.143 13.143t-13.143 5.143h-133.143q26.857 34.857 36.571 82.286h97.714q8 0 13.143 5.143t5.143 13.143v58.286q0 8-5.143 13.143t-13.143 5.143h-96q-13.143 82.286-73.714 133.714t-157.714 62.857q95.429 101.714 262.286 306.286 8 9.143 2.286 19.429-4.571 10.286-16.571 10.286h-111.429q-9.143 0-14.286-6.857-174.857-209.714-284.571-326.286-5.143-5.143-5.143-12.571z" + ], + "width": 513, + "tags": [ + "rupee", + "inr" + ], + "defaultCode": 61782, + "grid": 14, + "matchesSearch": false + }, + { + "id": 308, + "paths": [ + "M2.286 100.571q-4.571-9.143 0-18.286 5.714-9.143 16-9.143h110.857q10.857 0 16.571 10.286l122.857 242.857q10.857 21.714 32 71.429 5.714-13.714 17.429-38.857t15.714-34.857l109.143-240q4.571-10.857 16.571-10.857h109.143q9.714 0 15.429 9.143 5.143 8 0.571 17.714l-178.857 330.857h122.857q7.429 0 12.857 5.429t5.429 12.857v59.429q0 8-5.429 13.143t-12.857 5.143h-165.714v48.571h165.714q7.429 0 12.857 5.429t5.429 12.857v58.857q0 8-5.429 13.143t-12.857 5.143h-165.714v188.571q0 7.429-5.429 12.857t-12.857 5.429h-98.286q-7.429 0-12.857-5.143t-5.429-13.143v-188.571h-164.571q-7.429 0-12.857-5.143t-5.429-13.143v-58.857q0-7.429 5.429-12.857t12.857-5.429h164.571v-48.571h-164.571q-7.429 0-12.857-5.143t-5.429-13.143v-59.429q0-7.429 5.429-12.857t12.857-5.429h122.286z" + ], + "width": 587, + "tags": [ + "cny", + "rmb", + "yen", + "jpy" + ], + "defaultCode": 61783, + "grid": 14, + "matchesSearch": false + }, + { + "id": 309, + "paths": [ + "M0 731.429v-73.143q0-8 5.143-13.143t13.143-5.143h128v-67.429h-128q-8 0-13.143-5.143t-5.143-13.143v-85.143q0-7.429 5.143-12.857t13.143-5.429h128v-359.429q0-8 5.143-13.143t13.143-5.143h308q114.286 0 186.571 69.714t72.286 180-72.286 180-186.571 69.714h-194.286v67.429h288.571q8 0 13.143 5.143t5.143 13.143v73.143q0 8-5.143 13.143t-13.143 5.143h-288.571v109.714q0 8-5.429 13.143t-12.857 5.143h-95.429q-8 0-13.143-5.143t-5.143-13.143v-109.714h-128q-8 0-13.143-5.143t-5.143-13.143zM278.286 450.857h182.857q60.571 0 97.714-35.429t37.143-92.571-37.143-92.571-97.714-35.429h-182.857v256z" + ], + "width": 731, + "tags": [ + "ruble", + "rouble", + "rub" + ], + "defaultCode": 61784, + "grid": 14, + "matchesSearch": false + }, + { + "id": 310, + "paths": [ + "M0 493.714v-36.571q0-8 5.143-13.143t13.143-5.143h100l-18.857-73.143h-81.143q-8 0-13.143-5.143t-5.143-13.143v-36.571q0-8 5.143-13.143t13.143-5.143h62.286l-50.857-196.571q-2.857-8.571 2.857-16 5.714-6.857 14.857-6.857h78.286q14.857 0 17.714 13.714l51.429 205.714h205.143l55.429-205.714q4-13.714 17.714-13.714h72q13.714 0 17.714 13.714l56 205.714h208.571l53.143-205.714q2.857-13.714 17.714-13.714h78.286q9.143 0 14.857 6.857 5.714 7.429 2.857 16l-52 196.571h63.429q8 0 13.143 5.143t5.143 13.143v36.571q0 8-5.143 13.143t-13.143 5.143h-82.857l-19.429 73.143h102.286q8 0 13.143 5.143t5.143 13.143v36.571q0 8-5.143 13.143t-13.143 5.143h-121.714l-93.714 352q-4 13.714-17.714 13.714h-90.857q-13.714 0-17.714-13.714l-94.857-352h-119.429l-95.429 352q-4 13.714-17.714 13.714h-90.857q-6.286 0-11.143-4t-6-9.714l-91.429-352h-118.857q-8 0-13.143-5.143t-5.143-13.143zM213.143 365.714l18.286 73.143h128.571l20-73.143h-166.857zM249.143 512l42.857 171.429q0.571 0.571 0.571 1.714t0.571 1.714q0-0.571 0.286-2t0.286-2l46.286-170.857h-90.857zM469.714 438.857h79.429l-20-73.143h-40zM638.857 365.714l19.429 73.143h131.429l18.857-73.143h-169.714zM678.286 512l46.286 170.857q0 0.571 0.286 2t0.857 2q0-0.571 0.286-1.714t0.286-1.714l44.571-171.429h-92.571z" + ], + "tags": [ + "won", + "krw" + ], + "defaultCode": 61785, + "grid": 14, + "matchesSearch": false + }, + { + "id": 311, + "paths": [ + "M32 877.714l17.714-104.571h63.429q28.571 0 33.143-29.143v-229.714h9.143q-3.429-0.571-9.143-0.571v-164q-7.429-38.857-50.857-38.857h-63.429v-93.714l121.143 0.571q36.571 0 55.429-0.571v-144h88v141.143q46.857-1.143 69.714-1.143v-140h88v144q45.143 4 80 12.857t64.571 25.714 47.143 44.571 20.857 65.429q10.286 104-74.857 147.429 66.857 16 100 58.857t25.714 122.286q-4 40.571-18.571 71.429t-36.857 50.857-55.429 33.429-69.429 19.714-83.143 8.571v145.714h-88v-143.429q-45.714 0-69.714-0.571v144h-88v-145.714q-10.286 0-30.857-0.286t-31.429-0.286h-114.286zM298.286 773.714q4.571 0 21.143 0.286t27.429 0.286 30.286-0.857 33.429-2.286 32.571-4.857 31.714-8 27.143-12 22.571-17.143 14-22.857 5.429-29.143q0-20.571-8.571-36.571t-21.143-26.286-32.857-17.429-37.429-10.571-42.286-5.143-39.429-1.714-36.857 0.571-27.143 0.571v193.143zM298.286 492.571q2.857 0 19.714 0.286t26.571 0 28.571-1.143 31.429-3.143 29.429-6.286 27.714-10.571 21.143-15.429 15.429-22 5.143-29.143q0-18.857-7.143-33.429t-17.429-24-27.429-16-31.429-9.429-35.143-4.571-33.143-1.429-30.857 0.571-22.571 0.286v175.429z" + ], + "width": 731, + "tags": [ + "bitcoin", + "btc" + ], + "defaultCode": 61786, + "grid": 14, + "matchesSearch": false + }, + { + "id": 312, + "paths": [ + "M0 969.143v-914.286q0-22.857 16-38.857t38.857-16h457.143v310.857q0 22.857 16 38.857t38.857 16h310.857v603.429q0 22.857-16 38.857t-38.857 16h-768q-22.857 0-38.857-16t-16-38.857zM585.143 292.571v-269.714q12.571 8 20.571 16l233.143 233.143q8 8 16 20.571h-269.714z" + ], + "tags": [ + "file" + ], + "defaultCode": 61787, + "grid": 14, + "matchesSearch": false + }, + { + "id": 313, + "paths": [ + "M0 969.143v-914.286q0-22.857 16-38.857t38.857-16h457.143v310.857q0 22.857 16 38.857t38.857 16h310.857v603.429q0 22.857-16 38.857t-38.857 16h-768q-22.857 0-38.857-16t-16-38.857zM219.429 786.286q0 8 5.143 13.143t13.143 5.143h402.286q8 0 13.143-5.143t5.143-13.143v-36.571q0-8-5.143-13.143t-13.143-5.143h-402.286q-8 0-13.143 5.143t-5.143 13.143v36.571zM219.429 640q0 8 5.143 13.143t13.143 5.143h402.286q8 0 13.143-5.143t5.143-13.143v-36.571q0-8-5.143-13.143t-13.143-5.143h-402.286q-8 0-13.143 5.143t-5.143 13.143v36.571zM219.429 493.714q0 8 5.143 13.143t13.143 5.143h402.286q8 0 13.143-5.143t5.143-13.143v-36.571q0-8-5.143-13.143t-13.143-5.143h-402.286q-8 0-13.143 5.143t-5.143 13.143v36.571zM585.143 292.571v-269.714q12.571 8 20.571 16l233.143 233.143q8 8 16 20.571h-269.714z" + ], + "tags": [ + "file-text" + ], + "defaultCode": 61788, + "grid": 14, + "matchesSearch": false + }, + { + "id": 314, + "paths": [ + "M19.429 816q4.571-11.429 17.143-11.429h109.714v-786.286q0-8 5.143-13.143t13.143-5.143h109.714q8 0 13.143 5.143t5.143 13.143v786.286h109.714q8 0 13.143 5.143t5.143 13.143q0 6.857-5.714 13.714l-182.286 182.286q-5.714 5.143-13.143 5.143-6.857 0-13.143-5.143l-182.857-182.857q-8.571-9.143-4-20zM513.714 438.857v-60.571h40l131.429-378.286h92.571l131.429 378.286h40v60.571h-164.571v-60.571h42.857l-26.857-82.286h-138.857l-26.857 82.286h42.857v60.571h-164zM564.571 972.571l210.857-302.286q6.857-10.286 12-15.429l6.286-5.143v-1.714q-1.143 0-3.714 0.286t-4.286 0.286q-6.857 1.714-17.143 1.714h-132.571v65.714h-68.571v-130.857h324v50.857l-210.857 302.857q-3.429 4.571-12 14.857l-6.286 6.286v1.143l8-1.143q5.143-1.143 17.143-1.143h141.714v-68h69.143v133.143h-333.714v-51.429zM680.571 233.143h101.143l-41.143-124.571-6.857-26.857q-1.143-9.143-1.143-11.429h-2.286l-1.714 11.429q0 0.571-2 10.286t-4.286 16.571z" + ], + "width": 951, + "tags": [ + "sort-alpha-asc" + ], + "defaultCode": 61789, + "grid": 14, + "matchesSearch": false + }, + { + "id": 315, + "paths": [ + "M19.429 816q4.571-11.429 17.143-11.429h109.714v-786.286q0-8 5.143-13.143t13.143-5.143h109.714q8 0 13.143 5.143t5.143 13.143v786.286h109.714q8 0 13.143 5.143t5.143 13.143q0 6.857-5.714 13.714l-182.286 182.286q-5.714 5.143-13.143 5.143-6.857 0-13.143-5.143l-182.857-182.857q-8.571-9.143-4-20zM513.714 963.429h40l131.429-378.286h92.571l131.429 378.286h40v60.571h-164.571v-60.571h42.857l-26.857-82.286h-138.857l-26.857 82.286h42.857v60.571h-164v-60.571zM564.571 438.857v-51.429l210.857-302.286q6.857-10.286 12-15.429l6.286-5.143v-1.714q-1.143 0-3.714 0.286t-4.286 0.286q-6.857 1.714-17.143 1.714h-132.571v65.714h-68.571v-130.857h324v50.857l-210.857 302.857q-3.429 4.571-12 14.857l-6.286 5.714v1.714l8-1.714q5.143-0.571 17.143-0.571h141.714v-68h69.143v133.143h-333.714zM680.571 818.286h101.143l-41.143-124.571-6.857-26.857q-1.143-9.143-1.143-11.429h-2.286l-1.714 11.429q0 0.571-2 10.286t-4.286 16.571z" + ], + "width": 951, + "tags": [ + "sort-alpha-desc" + ], + "defaultCode": 61790, + "grid": 14, + "matchesSearch": false + }, + { + "id": 316, + "paths": [ + "M19.429 816q4.571-11.429 17.143-11.429h109.714v-786.286q0-8 5.143-13.143t13.143-5.143h109.714q8 0 13.143 5.143t5.143 13.143v786.286h109.714q8 0 13.143 5.143t5.143 13.143q0 6.857-5.714 13.714l-182.286 182.286q-5.714 5.143-13.143 5.143-6.857 0-13.143-5.143l-182.857-182.857q-8.571-9.143-4-20zM512 896q0-8 5.143-13.143t13.143-5.143h475.429q8 0 13.143 5.143t5.143 13.143v109.714q0 8-5.143 13.143t-13.143 5.143h-475.429q-8 0-13.143-5.143t-5.143-13.143v-109.714zM512 713.143v-109.714q0-8 5.143-13.143t13.143-5.143h365.714q8 0 13.143 5.143t5.143 13.143v109.714q0 8-5.143 13.143t-13.143 5.143h-365.714q-8 0-13.143-5.143t-5.143-13.143zM512 420.571v-109.714q0-8 5.143-13.143t13.143-5.143h256q8 0 13.143 5.143t5.143 13.143v109.714q0 8-5.143 13.143t-13.143 5.143h-256q-8 0-13.143-5.143t-5.143-13.143zM512 128v-109.714q0-8 5.143-13.143t13.143-5.143h146.286q8 0 13.143 5.143t5.143 13.143v109.714q0 8-5.143 13.143t-13.143 5.143h-146.286q-8 0-13.143-5.143t-5.143-13.143z" + ], + "tags": [ + "sort-amount-asc" + ], + "defaultCode": 61792, + "grid": 14, + "matchesSearch": false + }, + { + "id": 317, + "paths": [ + "M19.429 816q4.571-11.429 17.143-11.429h109.714v-786.286q0-8 5.143-13.143t13.143-5.143h109.714q8 0 13.143 5.143t5.143 13.143v786.286h109.714q8 0 13.143 5.143t5.143 13.143q0 6.857-5.714 13.714l-182.286 182.286q-5.714 5.143-13.143 5.143-6.857 0-13.143-5.143l-182.857-182.857q-8.571-9.143-4-20zM512 896q0-8 5.143-13.143t13.143-5.143h146.286q8 0 13.143 5.143t5.143 13.143v109.714q0 8-5.143 13.143t-13.143 5.143h-146.286q-8 0-13.143-5.143t-5.143-13.143v-109.714zM512 713.143v-109.714q0-8 5.143-13.143t13.143-5.143h256q8 0 13.143 5.143t5.143 13.143v109.714q0 8-5.143 13.143t-13.143 5.143h-256q-8 0-13.143-5.143t-5.143-13.143zM512 420.571v-109.714q0-8 5.143-13.143t13.143-5.143h365.714q8 0 13.143 5.143t5.143 13.143v109.714q0 8-5.143 13.143t-13.143 5.143h-365.714q-8 0-13.143-5.143t-5.143-13.143zM512 128v-109.714q0-8 5.143-13.143t13.143-5.143h475.429q8 0 13.143 5.143t5.143 13.143v109.714q0 8-5.143 13.143t-13.143 5.143h-475.429q-8 0-13.143-5.143t-5.143-13.143z" + ], + "tags": [ + "sort-amount-desc" + ], + "defaultCode": 61793, + "grid": 14, + "matchesSearch": false + }, + { + "id": 318, + "paths": [ + "M19.429 816q4.571-11.429 17.143-11.429h109.714v-786.286q0-8 5.143-13.143t13.143-5.143h109.714q8 0 13.143 5.143t5.143 13.143v786.286h109.714q8 0 13.143 5.143t5.143 13.143q0 6.857-5.714 13.714l-182.286 182.286q-5.714 5.143-13.143 5.143-6.857 0-13.143-5.143l-182.857-182.857q-8.571-9.143-4-20zM540.571 728.571q0-60 41.143-101.714t103.429-41.714q70.286 0 117.143 54t46.857 144.286q0 35.429-7.429 69.429t-23.429 65.143-38.857 54.571-56.286 37.429-72.857 14q-35.429 0-61.714-9.143-13.714-4.571-24-8.571l22.286-64.571q8.571 4 17.714 6.286 21.143 7.429 42.857 7.429 48 0 76.857-33.429t38-83.143h-1.143q-12 13.143-35.143 21.143t-48.286 8q-60.571 0-98.857-40.857t-38.286-98.571zM557.714 105.714l109.714-105.714h70.286v373.714h94.286v65.143h-268v-65.143h95.429v-246.857q0-4 0.286-10.857t0.286-9.714v-9.143h-1.143l-4 6.857q-4.571 7.429-14.857 17.714l-35.429 33.143zM620 728.571q0 32.571 20.857 54.286t59.714 21.714q28.571 0 48.571-15.429t20-38.857q0-36-25.143-66.286t-58.857-30.286q-29.714 0-47.429 21.143t-17.714 53.714z" + ], + "tags": [ + "sort-numeric-asc" + ], + "defaultCode": 61794, + "grid": 14, + "matchesSearch": false + }, + { + "id": 319, + "paths": [ + "M19.429 816q4.571-11.429 17.143-11.429h109.714v-786.286q0-8 5.143-13.143t13.143-5.143h109.714q8 0 13.143 5.143t5.143 13.143v786.286h109.714q8 0 13.143 5.143t5.143 13.143q0 6.857-5.714 13.714l-182.286 182.286q-5.714 5.143-13.143 5.143-6.857 0-13.143-5.143l-182.857-182.857q-8.571-9.143-4-20zM540.571 143.429q0-60 41.143-101.714t103.429-41.714q70.286 0 117.143 54t46.857 144.286q0 35.429-7.429 69.429t-23.429 65.143-38.857 54.571-56.286 37.429-72.857 14q-35.429 0-61.714-9.143-13.714-4.571-24-8.571l22.286-64.571q8.571 4 17.714 6.286 21.143 7.429 42.857 7.429 48 0 76.857-33.429t38-83.143h-1.143q-12 13.143-35.143 21.143t-48.286 8q-60.571 0-98.857-40.857t-38.286-98.571zM557.714 690.857l109.714-105.714h70.286v373.714h94.286v65.143h-268v-65.143h95.429v-246.857q0-4 0.286-10.857t0.286-9.714v-9.143h-1.143l-4 6.857q-4.571 7.429-14.857 17.714l-35.429 33.143zM620 143.429q0 32.571 20.857 54.286t59.714 21.714q28.571 0 48.571-15.429t20-38.857q0-36-25.143-66.286t-58.857-30.286q-29.714 0-47.429 21.143t-17.714 53.714z" + ], + "tags": [ + "sort-numeric-desc" + ], + "defaultCode": 61795, + "grid": 14, + "matchesSearch": false + }, + { + "id": 320, + "paths": [ + "M0 841.143v-365.714q0-14.857 10.857-25.714t25.714-10.857h164.571q14.857 0 25.714 10.857t10.857 25.714v365.714q0 14.857-10.857 25.714t-25.714 10.857h-164.571q-14.857 0-25.714-10.857t-10.857-25.714zM73.143 768q0 15.429 10.571 26t26 10.571q14.857 0 25.714-10.571t10.857-26q0-14.857-10.857-25.714t-25.714-10.857q-15.429 0-26 10.857t-10.571 25.714zM274.286 841.143v-366.286q0-14.286 10.286-24.857t24.571-11.714q13.714-1.143 43.429-33.714t57.714-69.143q38.857-49.714 57.714-68.571 10.286-10.286 17.714-27.429t10-27.714 7.714-34.571q4-22.286 7.143-34.857t11.143-29.714 19.429-28.571q10.857-10.857 25.714-10.857 26.286 0 47.143 6t34.286 14.857 22.857 23.143 13.714 25.714 6.857 28.571 2.857 25.714 0.286 22.286q0 21.714-5.429 43.429t-10.857 34.286-15.714 32q-1.714 3.429-5.714 10.286t-6.286 12.571-4.571 13.714h158.286q44.571 0 77.143 32.571t32.571 77.143q0 49.143-31.429 85.143 8.571 25.143 8.571 43.429 1.714 43.429-24.571 78.286 9.714 32 0 66.857-8.571 32.571-30.857 53.714 5.143 64-28 103.429-36.571 43.429-112.571 44.571h-73.714q-37.714 0-82.286-8.857t-69.429-16.571-68.857-22.571q-70.286-24.571-90.286-25.143-14.857-0.571-25.714-11.143t-10.857-25.429z" + ], + "width": 951, + "tags": [ + "thumbs-up" + ], + "defaultCode": 61796, + "grid": 14, + "matchesSearch": false + }, + { + "id": 321, + "paths": [ + "M0 621.714q0 14.857 10.857 25.714t25.714 10.857h164.571q14.857 0 25.714-10.857t10.857-25.714v-365.714q0-14.857-10.857-25.714t-25.714-10.857h-164.571q-14.857 0-25.714 10.857t-10.857 25.714v365.714zM73.143 329.143q0-15.429 10.571-26t26-10.571q14.857 0 25.714 10.571t10.857 26q0 14.857-10.857 25.714t-25.714 10.857q-15.429 0-26-10.857t-10.571-25.714zM274.286 622.286v-366.286q0-14.857 10.857-25.429t25.714-11.143q20-0.571 90.286-25.143 44-14.857 68.857-22.571t69.429-16.571 82.286-8.857h73.714q76 1.143 112.571 44.571 33.143 39.429 28 103.429 22.286 21.143 30.857 53.714 9.714 34.857 0 66.857 26.286 34.857 24.571 78.286 0 18.286-8.571 43.429 31.429 34.857 31.429 85.143-0.571 44.571-32.857 77.143t-76.857 32.571h-158.286q2.286 8 4.571 13.714t6.286 12.571 5.714 10.286q10.286 21.143 15.429 32.571t10.857 33.429 5.714 43.714q0 13.714-0.286 22.286t-2.857 25.714-6.857 28.571-13.714 25.714-22.857 23.143-34.286 14.857-47.143 6q-14.857 0-25.714-10.857-11.429-11.429-19.429-28.571t-11.143-29.714-7.143-34.857q-5.143-24-7.714-34.571t-10-27.714-17.714-27.429q-18.857-18.857-57.714-68.571-28-36.571-57.714-69.143t-43.429-33.714q-14.286-1.143-24.571-11.714t-10.286-24.857z" + ], + "width": 951, + "tags": [ + "thumbs-down" + ], + "defaultCode": 61797, + "grid": 14, + "matchesSearch": false + }, + { + "id": 322, + "paths": [ + "M0 786.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286zM124.571 668.571q0 100.571 11.429 148.571 5.714 24.571 24.286 41.714t43.143 20q78.286 8.571 235.429 8.571t235.429-8.571q24.571-2.857 43.143-20t24.286-41.714q11.429-48 11.429-148.571 0-101.143-10.857-148.571-5.714-25.143-24.571-42t-43.429-19.714q-77.714-8.571-235.429-8.571-157.143 0-234.857 8.571-25.143 2.857-43.714 19.714t-24.286 42q-11.429 49.714-11.429 148.571zM171.429 562.857v-40h132.571v40h-45.714v241.714h-42.286v-241.714h-44.571zM226.286 127.429l13.714 39.429t13.143 39.429q20 58.857 26.286 90.286v114.857h42.286v-114.857l51.429-169.143h-42.857l-29.143 111.429-30.286-111.429h-44.571zM309.714 760.571v-165.714h37.714v154.286q0 13.714 0.571 14.857 0.571 8.571 8.571 8.571 11.429 0 24-17.714v-160h38.286v209.714h-38.286v-22.857q-22.286 25.714-43.429 25.714-18.857 0-24-16-3.429-9.143-3.429-30.857zM373.714 342.857q0 33.143 12 49.714 15.429 21.714 44.571 21.714 28 0 44.571-21.714 12-15.429 12-49.714v-74.286q0-33.143-12-49.714-16.571-21.714-44.571-21.714-29.143 0-44.571 21.714-12 16.571-12 49.714v74.286zM412 350.286v-89.143q0-29.714 18.286-29.714t18.286 29.714v89.143q0 29.143-18.286 29.143t-18.286-29.143zM451.429 804.571v-281.714h38.286v92q18.286-22.857 38.857-22.857 23.429 0 30.286 24 4 12 4 42.286v83.429q0 29.714-4 41.714-6.857 24-30.286 24-20 0-38.857-23.429v20.571h-38.286zM489.714 763.429q9.143 9.143 18.857 9.143 16.571 0 16.571-28v-89.714q0-28.571-16.571-28.571-9.714 0-18.857 9.143v128zM518.286 367.429q0 21.143 3.429 31.429 6.286 15.429 24.571 15.429 20.571 0 44-25.714v22.857h38.286v-211.429h-38.286v161.714q-12.571 17.714-24 17.714-8.571 0-9.143-9.143-0.571-1.143-0.571-14.857v-155.429h-38.286v167.429zM592.571 736.571v-73.714q0-33.714 11.429-49.143 16.571-21.714 45.714-21.714t44.571 21.714q12 16 12 49.143v43.429h-76v37.143q0 29.143 19.429 29.143 13.714 0 17.143-14.857 0-0.571 0.286-4t0.286-9.429v-12.286h38.857v5.143q0 16.571-1.143 24.571-1.714 12.571-8.571 22.857-15.429 22.857-45.714 22.857-29.714 0-46.286-21.714-12-15.429-12-49.143zM630.286 674.857h37.714v-19.429q0-29.143-18.857-29.143t-18.857 29.143v19.429z" + ], + "tags": [ + "youtube-square" + ], + "defaultCode": 61798, + "grid": 14, + "matchesSearch": false + }, + { + "id": 323, + "paths": [ + "M15.429 729.143q0-133.714 14.857-200 8-33.714 33.143-56.571t58.857-26.857q104.571-11.429 316.571-11.429t317.143 11.429q33.143 4 58.571 26.857t32.857 56.571q14.857 64 14.857 200 0 133.714-14.857 200-8 33.714-33.143 56.571t-58.286 26.286q-105.143 12-317.143 12t-317.143-12q-33.143-3.429-58.571-26.286t-32.857-56.571q-14.857-64-14.857-200zM78.857 586.857h60v325.143h57.143v-325.143h61.143v-53.714h-178.286v53.714zM152 0h60.571l40.571 150.286 38.857-150.286h58.286l-69.143 228v154.857h-57.143v-154.857q-8-42.286-34.857-121.143-21.143-58.857-37.143-106.857zM264.571 853.143q0 28 4.571 41.714 6.857 21.143 33.143 21.143 27.429 0 58.286-34.857v30.857h50.857v-282.286h-50.857v216q-17.143 24-32.571 24-10.286 0-12-12-0.571-1.714-0.571-20v-208h-50.857v223.429zM350.857 290.286v-100q0-45.714 16-66.857 21.714-29.143 60-29.143 39.429 0 60.571 29.143 16 21.143 16 66.857v100q0 46.286-16 67.429-21.143 29.143-60.571 29.143-38.286 0-60-29.143-16-21.714-16-67.429zM402.286 300q0 40 24.571 40t24.571-40v-120q0-39.429-24.571-39.429t-24.571 39.429v120zM456 912h50.857v-27.429q25.714 31.429 53.143 31.429 30.857 0 40.571-31.429 5.143-15.429 5.143-57.143v-112.571q0-41.714-5.143-56.571-9.714-32-40.571-32-28.571 0-53.143 30.857v-124h-50.857v378.857zM506.857 857.143v-172q12.571-12.571 25.714-12.571 22.286 0 22.286 38.286v120.571q0 38.286-22.286 38.286-13.143 0-25.714-12.571zM545.714 322.857v-225.143h52v209.714q0 18.857 0.571 20 1.714 12.571 12 12.571 15.429 0 32.571-24.571v-217.714h52v285.143h-52v-31.429q-30.286 35.429-58.857 35.429-26.286 0-33.714-21.143-4.571-13.714-4.571-42.857zM645.714 820.571q0 45.143 16.571 66.286 22.286 29.143 61.714 29.143 41.143 0 61.714-30.286 10.286-15.429 12-30.857 1.143-5.143 1.143-33.143v-7.429h-52q0 29.143-1.143 34.857-4 20.571-22.857 20.571-26.286 0-26.286-39.429v-49.714h102.286v-58.857q0-45.143-15.429-66.286-22.286-29.143-60.571-29.143-38.857 0-61.143 29.143-16 21.143-16 66.286v98.857zM696.571 737.714v-26.286q0-38.857 25.714-38.857t25.714 38.857v26.286h-51.429z" + ], + "tags": [ + "youtube" + ], + "defaultCode": 61799, + "grid": 14, + "matchesSearch": false + }, + { + "id": 324, + "paths": [ + "M2.857 658.286q-5.714-9.714 0-20.571l144.571-256q0.571 0 0-0.571l-92-159.429q-6.857-12.571-0.571-21.143 5.143-8.571 18.286-8.571h136.571q22.857 0 37.714 25.714l93.714 163.429q-5.714 10.286-146.857 260.571-15.429 26.286-37.143 26.286h-136.571q-12 0-17.714-9.714zM306.286 569.714q10.286-18.286 303.429-538.286 14.286-25.714 36.571-25.714h137.714q12.571 0 17.714 8.571 6.286 9.143 0 21.143l-301.714 533.714v0.571l192 351.429q6.286 11.429 0.571 21.143-5.714 8.571-18.286 8.571h-136.571q-24 0-37.714-25.714z" + ], + "width": 805, + "tags": [ + "xing" + ], + "defaultCode": 61800, + "grid": 14, + "matchesSearch": false + }, + { + "id": 325, + "paths": [ + "M0 786.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286zM129.714 651.429q4.571 7.429 13.714 7.429h105.714q17.714 0 28.571-20.571l113.714-201.143q0-0.571-72-126.857-12-19.429-29.714-19.429h-105.143q-10.286 0-14.857 6.286-4 6.857 0.571 16.571l71.429 123.429v0.571l-112 197.714q-5.143 8 0 16zM364.571 582.857q0.571 1.143 149.714 274.857 11.429 20 29.714 20h105.143q10.286 0 14.286-6.857 4.571-7.429-0.571-16l-148.571-272v-0.571l233.714-413.143q4.571-9.143 0-16-4-6.857-13.714-6.857h-106.857q-17.143 0-28 20z" + ], + "tags": [ + "xing-square" + ], + "defaultCode": 61801, + "grid": 14, + "matchesSearch": false + }, + { + "id": 326, + "paths": [ + "M0 512q0-54.857 0.571-85.714t4.857-78 12.857-84.286q9.143-41.714 39.429-70.286t70.857-33.143q126.857-14.286 383.429-14.286t383.429 14.286q40.571 4.571 71.143 33.143t39.714 70.286q8 37.143 12.286 84.286t4.857 78 0.571 85.714-0.571 85.714-4.857 78-12.857 84.286q-9.143 41.714-39.429 70.286t-70.857 33.143q-126.857 14.286-383.429 14.286t-383.429-14.286q-40.571-4.571-71.143-33.143t-39.714-70.286q-8-37.143-12.286-84.286t-4.857-78-0.571-85.714zM365.714 694.857q0 21.714 18.857 32 9.143 4.571 17.714 4.571 11.429 0 19.429-5.714l292.571-182.857q17.143-9.714 17.143-30.857t-17.143-30.857l-292.571-182.857q-17.714-11.429-37.143-1.143-18.857 10.286-18.857 32v365.714z" + ], + "tags": [ + "youtube-play" + ], + "defaultCode": 61802, + "grid": 14, + "matchesSearch": false + }, + { + "id": 327, + "paths": [ + "M36.571 558.857l193.143-154.857 282.286 174.286-195.429 162.857zM36.571 249.714l280-182.286 195.429 162.857-282.286 173.714zM232.571 782.857v-61.714l84 54.857 195.429-162.286v-1.143l0.571 0.571 0.571-0.571v1.143l196 162.286 84-54.857v61.714l-280 167.429v0.571l-0.571-0.571-0.571 0.571v-0.571zM512 578.286l282.286-174.286 193.143 154.857-279.429 182.286zM512 230.286l196-162.857 279.429 182.286-193.143 154.286z" + ], + "tags": [ + "dropbox" + ], + "defaultCode": 61803, + "grid": 14, + "matchesSearch": false + }, + { + "id": 328, + "paths": [ + "M0 1023.429v-420.571h69.143v353.143h530.286v-353.143h68.571v400.571l-0.571 20v0.571l-667.429-0.571zM126.286 887.429v-86.286l404-0.571v86.286zM129.714 738.857l8-85.714 402.286 37.143-7.429 85.714zM154.286 556l22.286-83.429 390.286 104.571-22.286 83.429zM225.714 347.429l44-74.286 348 205.714-44 74.286zM404 133.143l71.429-49.143 227.429 334.286-70.857 48.571zM649.143 14.857l85.143-14.857 69.143 398.286-85.143 14.857z" + ], + "width": 805, + "tags": [ + "stack-overflow" + ], + "defaultCode": 61804, + "grid": 14, + "matchesSearch": false + }, + { + "id": 329, + "paths": [ + "M0 838.286v-652.571q0-46.286 33.143-79.429t79.429-33.143h652.571q46.286 0 79.429 33.143t33.143 79.429v652.571q0 46.286-33.143 79.429t-79.429 33.143h-652.571q-46.286 0-79.429-33.143t-33.143-79.429zM97.714 814.857q0 14.857 10 24.857t24.857 10h610.857q14.286 0 24.571-10t10.286-24.857v-370.286h-77.143q11.429 36 11.429 74.857 0 72-36.571 132.857t-99.429 96.286-137.143 35.429q-112.571 0-192.571-77.429t-80-187.143q0-38.857 11.429-74.857h-80.571v370.286zM263.429 510.286q0 70.857 51.714 120.857t124.286 50q73.143 0 124.857-50t51.714-120.857-51.714-120.857-124.857-50q-72.571 0-124.286 50t-51.714 120.857zM600 304.571q0 16.571 11.429 28t28 11.429h99.429q16.571 0 28-11.429t11.429-28v-94.286q0-16-11.429-27.714t-28-11.714h-99.429q-16.571 0-28 11.714t-11.429 27.714v94.286z" + ], + "tags": [ + "instagram" + ], + "defaultCode": 61805, + "grid": 14, + "matchesSearch": false + }, + { + "id": 330, + "paths": [ + "M0 786.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286zM156.571 512q0 50.286 35.429 85.714t85.714 35.429 85.714-35.429 35.429-85.714-35.429-85.714-85.714-35.429-85.714 35.429-35.429 85.714zM478.857 512q0 50.286 35.429 85.714t85.714 35.429 85.714-35.429 35.429-85.714-35.429-85.714-85.714-35.429-85.714 35.429-35.429 85.714z" + ], + "tags": [ + "flickr" + ], + "defaultCode": 61806, + "grid": 14, + "matchesSearch": false + }, + { + "id": 331, + "paths": [ + "M0 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286zM176.571 658.286h53.714l59.429-91.429h298.286l59.429 91.429h53.714l-262.286-394.857zM324 530.286l114.857-174.857 114.857 174.857h-229.714z" + ], + "tags": [ + "adn" + ], + "defaultCode": 61808, + "grid": 14, + "matchesSearch": false + }, + { + "id": 332, + "paths": [ + "M0 179.429q1.714-14.857 10-27.714t18-21.429 25.714-17.143 26.286-12.857 27.429-10.571q71.429-26.286 178.857-36.571 216.571-21.143 386.286 28.571 88.571 26.286 122.857 69.714 9.143 11.429 9.429 29.143t-3.143 30.857q-14.857 95.429-63.429 374.286-2.857 17.143-15.429 32t-24.857 22.857-31.143 17.714q-144 72-348.571 50.286-141.714-15.429-225.143-79.429-8.571-6.857-14.571-15.143t-9.714-20-5.143-19.429-3.429-22.571-3.143-20q-5.143-28.571-15.143-85.714t-16-92.286-13.429-84.286-12.571-90.286zM98.857 714.857l3.429-9.143 10.286-5.143q127.429 84.571 289.429 84.571t290-84.571q12 3.429 13.714 13.143t-2.857 25.714-4.571 21.143q-4.571 14.857-8.857 43.714t-8 48-16.286 40-33.143 32.286q-49.143 27.429-108.286 40.857t-115.429 12.571-115.143-10.571q-26.286-4.571-46.571-10.286t-43.714-15.429-41.714-24.857-29.714-35.143q-14.286-54.857-32.571-166.857zM138.857 169.143q17.143 16 43.429 26t42 12.571 50 6.571q130.286 16.571 256 0.571 36-4.571 51.143-6.857t41.429-12.286 42.857-26.571q-11.429-15.429-32-25.429t-33.143-12.571-40.571-7.143q-166.286-26.857-323.429 1.143-24.571 4-37.714 6.857t-31.429 12.571-28.571 24.571zM274.857 502.286q2.286 52 44.286 88.571t94.571 32q52-4.571 86.857-48t28.571-96q-8-61.143-64.571-93.714t-112.571-7.429q-36 16-57.429 50.571t-19.714 74zM342.286 472q8-23.429 29.714-33.143 20.571-10.286 41.429-6.857t36.571 20.286 15.714 38.571q4.571 36-28.857 57.714t-63.714 3.429q-22.286-9.714-30.571-33.143t-0.286-46.857z" + ], + "width": 805, + "tags": [ + "bitbucket" + ], + "defaultCode": 61809, + "grid": 14, + "matchesSearch": false + }, + { + "id": 333, + "paths": [ + "M0 786.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286zM148.571 272q4.571 38.857 10.857 78.857t16.571 97.714 13.714 78.286q0.571 2.857 2.857 17.714t4 20.571 6.857 15.429 12.571 16q60 45.714 162.286 57.143 148 16 251.429-36 13.714-7.429 22.571-13.143t17.714-16.571 11.143-22.857q27.429-152.571 45.714-270.286 5.143-30.286-4.571-42.857-24.571-31.429-88.571-50.286-123.429-36-278.286-20.571-75.429 6.857-129.143 26.286-21.714 8.571-34 14.286t-26.857 19.429-16.857 30.857zM220 658.286q14.857 88 23.429 120 26.857 46.286 116.571 61.714 142.286 26.286 244.571-30.286 19.429-10.857 28-29.429t12.857-48.857 7.143-40.571q0-4 3.143-15.143t1.714-18.286-10-9.429q-92 60.571-208.571 60.571t-209.143-60.571l-6.857 3.429zM249.143 264.571q7.429-10.857 20.571-17.714t22.857-8.857 26.857-4.857q113.143-20 233.143-0.571 18.857 2.857 29.143 4.857t24.571 9.143 22.286 18q-11.429 12-30.571 19.429t-30.286 9.143-36.286 4.571q-88.571 11.429-185.143 0-25.143-3.429-36-5.429t-30-9.143-31.143-18.571zM346.857 504.571q-1.143-28 14.571-53.143t41.429-36.571q40-17.714 80.857 5.714t46.571 67.429q4.571 37.714-20.571 69.143t-62.857 34.857-68-22.857-32-64.571zM392.857 500.286q0.286 30 24.857 40.286 22.286 13.143 46.286-2.286t20.571-41.143q0-24.571-23.429-37.714t-44-0.571q-24.571 11.429-24.286 41.429z" + ], + "tags": [ + "bitbucket-square" + ], + "defaultCode": 61810, + "grid": 14, + "matchesSearch": false + }, + { + "id": 334, + "paths": [ + "M44.571 432.571v-124q52-17.143 88.571-48 36.571-31.429 58.857-75.429 22.286-44.571 30.857-112h125.143v221.714h208v137.714h-208v225.143q0 77.714 8 98.286 7.429 21.143 29.714 34.286 28.571 17.714 66.857 17.714 66.857 0 132.571-43.429v138.286q-58.286 27.429-101.714 37.143-44 10.857-98.857 10.857-60 0-106.286-15.429-44.571-14.286-78.857-42.857-33.143-29.143-45.143-60-12.571-30.857-12.571-92v-308h-97.143z" + ], + "width": 585, + "tags": [ + "tumblr" + ], + "defaultCode": 61811, + "grid": 14, + "matchesSearch": false + }, + { + "id": 335, + "paths": [ + "M0 786.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286zM236 452.571h72.571v230.857q0 44.571 9.714 69.143 9.714 24 33.714 44.571 24.571 21.143 59.429 32.571 35.429 11.429 80 11.429 38.286 0 73.714-8 32.571-7.429 76.571-28v-103.429q-50.286 32-99.429 32-29.143 0-50.286-13.143-16.571-9.714-22.286-25.714-6.286-17.143-6.286-73.714v-168.571h156.571v-103.429h-156.571v-166.286h-93.714q-6.286 51.429-22.857 84t-44.571 56.571q-27.429 22.857-66.286 36v93.143z" + ], + "tags": [ + "tumblr-square" + ], + "defaultCode": 61812, + "grid": 14, + "matchesSearch": false + }, + { + "id": 336, + "paths": [ + "M1.714 742.286q5.143-10.857 16.571-10.857h128v-713.143q0-8 5.143-13.143t13.143-5.143h109.714q8 0 13.143 5.143t5.143 13.143v713.143h128q12 0 16.571 10.857t-2.857 20l-200 219.429q-5.714 5.714-13.143 5.714-8 0-13.714-5.714l-202.857-219.429q-7.429-9.143-2.857-20z" + ], + "width": 439, + "tags": [ + "long-arrow-down" + ], + "defaultCode": 61813, + "grid": 14, + "matchesSearch": false + }, + { + "id": 337, + "paths": [ + "M1.714 281.714q-4.571-10.857 2.857-20l200-219.429q5.714-5.714 13.143-5.714 8 0 13.714 5.714l202.857 219.429q7.429 9.143 2.857 20-5.143 10.857-16.571 10.857h-128v713.143q0 8-5.143 13.143t-13.143 5.143h-109.714q-8 0-13.143-5.143t-5.143-13.143v-713.143h-128q-12 0-16.571-10.857z" + ], + "width": 439, + "tags": [ + "long-arrow-up" + ], + "defaultCode": 61814, + "grid": 14, + "matchesSearch": false + }, + { + "id": 338, + "paths": [ + "M36.571 513.714q0-8 5.714-13.714l219.429-202.286q9.143-8 20-3.429 10.857 5.143 10.857 16.571v128h713.143q8 0 13.143 5.143t5.143 13.143v109.714q0 8-5.143 13.143t-13.143 5.143h-713.143v128q0 12-10.857 16.571t-20-2.857l-219.429-200q-5.714-5.714-5.714-13.143z" + ], + "tags": [ + "long-arrow-left" + ], + "defaultCode": 61815, + "grid": 14, + "matchesSearch": false + }, + { + "id": 339, + "paths": [ + "M0 566.857v-109.714q0-8 5.143-13.143t13.143-5.143h713.143v-128q0-12 10.857-16.571t20 2.857l219.429 200q5.714 5.714 5.714 13.143 0 8-5.714 13.714l-219.429 202.286q-9.143 8-20 3.429-10.857-5.143-10.857-16.571v-128h-713.143q-8 0-13.143-5.143t-5.143-13.143z" + ], + "tags": [ + "long-arrow-right" + ], + "defaultCode": 61816, + "grid": 14, + "matchesSearch": false + }, + { + "id": 340, + "paths": [ + "M0 515.429q0-130.286 64.571-213.714 64-82.286 162.286-82.286 41.143 0 101.143 17.143 59.429 17.143 78.857 17.143 25.714 0 81.714-19.429 58.286-19.429 98.857-19.429 68 0 121.714 37.143 29.714 20.571 59.429 57.143-45.143 38.286-65.143 67.429-37.143 53.714-37.143 118.286 0 70.857 39.429 127.429t90.286 72q-22.286 71.429-70.286 142.857-73.714 112-146.857 112-28 0-80-18.286-49.143-18.286-86.286-18.286-34.857 0-81.143 18.857-46.286 19.429-75.429 19.429-86.857 0-172-148-84-149.143-84-287.429zM390.286 231.429q1.714-85.143 44.571-146.857 42.286-61.143 142.857-84.571 0.571 1.714 1.429 6.286t1.429 6.286q0 2.286 0.286 5.714t0.286 5.714q0 34.857-16.571 77.714-17.143 42.857-53.143 78.857-30.857 30.857-61.714 41.143-21.143 6.286-59.429 9.714z" + ], + "width": 805, + "tags": [ + "apple" + ], + "defaultCode": 61817, + "grid": 14, + "matchesSearch": false + }, + { + "id": 341, + "paths": [ + "M0 893.143v-318.286h389.714v372zM0 526.857v-322.857l389.714-53.714v376.571h-389.714zM432.571 952.571v-377.714h518.286v449.143zM432.571 526.857v-382.286l518.286-71.429v453.714h-518.286z" + ], + "width": 951, + "tags": [ + "windows" + ], + "defaultCode": 61818, + "grid": 14, + "matchesSearch": false + }, + { + "id": 342, + "paths": [ + "M0 685.143v-245.714q0-24 17.143-41.143t41.714-17.143q24 0 41.143 17.143t17.143 41.143v245.714q0 24.571-16.857 41.714t-41.429 17.143-41.714-17.143-17.143-41.714zM137.714 371.429q0-66.857 36.571-123.143t98.286-87.714l-40.571-74.857q-4-7.429 2.857-11.429 7.429-3.429 11.429 3.429l41.143 75.429q54.286-24 114.857-24t114.857 24l41.143-75.429q4-6.857 11.429-3.429 6.857 4 2.857 11.429l-40.571 74.857q61.143 31.429 97.714 87.714t36.571 123.143h-528.571zM140 772.571v-380.571h524.571v380.571q0 26.286-18.286 44.571t-44 18.286h-42.857v129.714q0 24.571-17.143 41.714t-41.714 17.143-41.714-17.143-17.143-41.714v-129.714h-78.857v129.714q0 24.571-17.143 41.714t-41.714 17.143q-24 0-41.143-17.143t-17.143-41.714l-0.571-129.714h-42.286q-26.286 0-44.571-18.286t-18.286-44.571zM260 253.714q0 9.143 6.286 15.714t15.429 6.571 15.714-6.571 6.571-15.714-6.571-15.714-15.714-6.571-15.429 6.571-6.286 15.714zM500.571 253.714q0 9.143 6.571 15.714t15.714 6.571 15.429-6.571 6.286-15.714-6.286-15.714-15.429-6.571-15.714 6.571-6.571 15.714zM687.429 685.143v-245.714q0-24.571 17.143-41.429t41.143-16.857q24.571 0 41.714 16.857t17.143 41.429v245.714q0 24.571-17.143 41.714t-41.714 17.143q-24 0-41.143-17.143t-17.143-41.714z" + ], + "width": 805, + "tags": [ + "android" + ], + "defaultCode": 61819, + "grid": 14, + "matchesSearch": false + }, + { + "id": 343, + "paths": [ + "M6.286 943.429q-5.714-13.143 4-38t10.286-31.143q0.571-9.143-2.286-22.857t-5.714-24.286-2.571-20.857 6-15.429q8-6.857 32.571-8t34.286-6.857q17.143-10.286 24-20t6.857-29.143q12 41.714-18.286 60.571-18.286 11.429-47.429 8.571-19.429-1.714-24.571 5.714-7.429 8.571 2.857 32.571 1.143 3.429 4.571 10.286t4.857 10.286 2.571 9.714 0.571 12.571q0 8.571-9.714 28t-8 27.429q1.714 9.714 21.143 14.857 11.429 3.429 48.286 10.571t56.857 11.714q13.714 3.429 42.286 12.571t47.143 13.143 31.714 2.286q24.571-3.429 36.857-16t13.143-27.429-4.286-33.429-10.857-29.714-11.429-20.857q-69.143-108.571-96.571-138.286-38.857-42.286-64.571-22.857-6.286 5.143-8.571-8.571-1.714-9.143-1.143-21.714 0.571-16.571 5.714-29.714t13.714-26.857 12.571-24q4.571-12 15.143-41.143t16.857-44.571 17.143-34.857 22.286-30.857q62.857-81.714 70.857-111.429-6.857-64-9.143-177.143-1.143-51.429 13.714-86.571t60.571-59.714q22.286-12 59.429-12 30.286-0.571 60.571 7.714t50.857 23.714q32.571 24 52.286 69.429t16.857 84.286q-2.857 54.286 17.143 122.286 19.429 64.571 76 124.571 31.429 33.714 56.857 93.143t34 109.143q4.571 28 2.857 48.286t-6.857 31.714-11.429 12.571q-5.714 1.143-13.429 10.857t-15.429 20.286-23.143 19.143-34.857 8q-10.286-0.571-18-2.857t-12.857-7.714-7.714-8.857-6.571-11.714-5.143-11.143q-12.571-21.143-23.429-17.143t-16 28 4 55.429q11.429 40 0.571 111.429-5.714 37.143 10.286 57.429t41.714 18.857 48.571-20.286q33.714-28 51.143-38t59.143-24.286q30.286-10.286 44-20.857t10.571-19.714-14.286-16.286-29.429-13.429q-18.857-6.286-28.286-27.429t-8.571-41.429 8.857-27.143q0.571 17.714 4.571 32.286t8.286 23.143 11.714 16.286 12 10.857 12.286 7.429 9.429 5.429q11.429 6.857 17.714 14t6.857 13.714-1.429 12.857-8.857 12.571-13.429 11.143-17.143 10.571-18 9.429-18.286 8.857-15.429 7.429q-21.714 10.857-48.857 32t-43.143 36.571q-9.714 9.143-38.857 11.143t-50.857-8.286q-10.286-5.143-16.857-13.429t-9.429-14.571-12.571-11.143-26.857-5.429q-25.143-0.571-74.286-0.571-10.857 0-32.571 0.857t-33.143 1.429q-25.143 0.571-45.429 8.571t-30.571 17.143-24.857 16.286-30.571 6.571q-16.571-0.571-63.429-17.714t-83.429-24.571q-10.857-2.286-29.143-5.429t-28.571-5.143-22.571-5.429-19.143-8.286-9.714-11.143zM183.429 594.857q-20.571 37.143 5.714 94.857 2.857 6.857 14.286 16t13.714 11.429q11.429 13.143 59.429 51.714t53.143 43.714q9.143 8.571 10 21.714t-8 24.571-26 13.143q4.571 8.571 16.571 25.429t16 30.857 4 40.286q26.286-13.714 4-52.571-2.286-4.571-6-9.143t-5.429-6.857-1.143-3.429q1.714-2.857 7.429-5.429t11.429 1.429q26.286 29.714 94.857 20.571 76-8.571 101.143-49.714 13.143-21.714 19.429-17.143 6.857 3.429 5.714 29.714-0.571 14.286-13.143 52.571-5.143 13.143-3.429 21.429t13.714 8.857q1.714-10.857 8.286-44t7.714-51.429q1.143-12-3.714-42t-4.286-55.429 13.143-40.286q8.571-10.286 29.143-10.286 0.571-21.143 19.714-30.286t41.429-6 34.286 12.857q0-10.286-31.429-24 2.286-8.571 4.286-15.714t2.857-14.857 1.714-12.286 0.286-12.857-0.571-11.143-2-12.571-2.286-11.714-2.857-14.286-3.143-15.143q-5.714-27.429-26.857-58.857t-41.143-42.857q13.714 11.429 32.571 47.429 49.714 92.571 30.857 158.857-6.286 22.857-28.571 24-17.714 2.286-22-10.571t-4.571-47.714-6.571-61.143q-5.143-22.286-11.143-39.429t-11.143-26-8.857-14-7.429-8.571-4.286-4q-8-35.429-17.714-58.857t-16.857-32-13.429-18.857-8.571-22.857q-2.286-12 3.429-30.571t2.571-28.286-25.429-14.286q-8.571-1.714-25.429-10.286t-20.286-9.143q-4.571-0.571-6.286-14.857t4.571-29.143 20.571-15.429q21.143-1.714 29.143 17.143t2.286 33.143q-6.286 10.857-1.143 15.143t17.143 0.286q7.429-2.286 7.429-20.571v-21.143q-2.857-17.143-7.714-28.571t-12-17.429-13.429-8.571-15.429-4.286q-61.143 4.571-50.857 76.571 0 8.571-0.571 8.571-5.143-5.143-16.857-6t-18.857 0.286-8.857-2.857q0.571-32.571-9.143-51.429t-25.714-19.429q-15.429-0.571-23.714 15.714t-9.429 34q-0.571 8.571 2 21.143t7.429 21.429 8.857 7.714q5.714-1.714 9.143-8 2.286-5.143-4-4.571-4 0-8.857-8.286t-5.429-19.143q-0.571-12.571 5.143-21.143t19.429-8q9.714 0 15.429 12t5.429 22.286-0.857 12.571q-12.571 8.571-17.714 16.571-4.571 6.857-15.714 13.429t-11.714 7.143q-7.429 8-8.857 15.429t4.286 10.286q8 4.571 14.286 11.143t9.143 10.857 10.571 7.429 20.286 3.714q26.857 1.143 58.286-8.571 1.143-0.571 13.143-4t19.714-6 16.857-7.429 12-10q5.143-8 11.429-4.571 2.857 1.714 3.714 4.857t-1.714 6.857-9.429 5.429q-11.429 3.429-32.286 12.286t-26 11.143q-25.143 10.857-40 13.143-14.286 2.857-45.143-1.143-5.714-1.143-5.143 1.143t9.714 10.857q14.286 13.143 38.286 12.571 9.714-0.571 20.571-4t20.571-8 19.143-10 17.143-9.714 14-6.857 10-1.429 4.857 6.286q0 1.143-0.571 2.571t-2.286 2.857-3.429 2.571-4.857 2.857-5.143 2.571-5.714 2.857-5.429 2.571q-16 8-38.571 25.143t-38 24.571-28 0.571q-12-6.286-36-41.714-12.571-17.714-14.286-12.571-0.571 1.714-0.571 5.714 0 14.286-8.571 32.286t-16.857 31.714-12 33.143 6.571 36q-13.143 3.429-35.714 51.429t-27.143 80.571q-1.143 10.286-0.857 39.429t-3.143 33.714q-4.571 13.714-16.571 1.714-18.286-17.714-20.571-53.714-1.143-16 2.286-32 2.286-10.857-0.571-10.286zM212.571 517.714q2.286 0.571 7.143-4t7.143-10.286q0.571-1.714 1.143-4t1.143-3.429 0.857-2.571 0.286-2.286v-1.714t-0.571-1.429-1.714-1.143q-2.286-0.571-3.429 1.714t-2.571 7.143-3.143 7.714-5.714 7.429q-4 5.714-0.571 6.857zM344.571 197.714q1.143 2.857 2.857 3.429 5.714 0 4 8.571-1.714 11.429 4.571 11.429 1.714 0 1.714-1.714 1.714-9.714-1.429-17.143t-6.571-8.571q-5.143-1.143-5.143 4zM362.286 243.429q0-6.857 10.857-8.571h5.714q-6.286 0.571-8.857 6t-4.857 5.429q-2.857 0.571-2.857-2.857zM412 236.571q13.714-6.286 18.286 1.143 1.714 3.429-1.714 5.143-2.286 0.571-6.571-3.714t-10-2.571zM477.143 194.286l2.286 1.143q8 2.286 10.286 17.714 0 1.714 4.571-1.143l1.143-1.714q0-6.286-2.857-11.143t-6.286-7.143-5.143-1.714q-8 0.571-4 4zM486.286 88.286q-0.571 1.429 1.714 4.857 2.286 1.714 4.571 0t6.286-5.143 8.571-5.143q0.571-0.571 5.143-0.571t8.571-1.143 5.143-4q0-1.143-1.429-2.857t-5.143-4-5.429-3.429q-8.571-8.571-13.714-8.571-5.143 0.571-6.571 4.286t-0.571 7.429-0.286 7.143q-0.571 2.286-3.429 6t-3.429 5.143zM560.571 305.143q-8 9.143 4 24.857t22.286 18q5.143 0.571 8.286-4.571t2-11.429q-1.143-4.571-3.714-6.571t-7.429-2.857-8.286-3.143q-2.857-1.714-5.429-4.571t-4-4.571-3.143-3.714-2.286-2.286-2.286 0.857z" + ], + "tags": [ + "linux" + ], + "defaultCode": 61820, + "grid": 14, + "matchesSearch": false + }, + { + "id": 344, + "paths": [ + "M0 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286zM64 512q0 70.857 25.143 135.143t70.857 115.143q28.571-50.857 70.571-95.143t81.429-71.143 74.571-46.286 56.857-27.429l21.143-7.429q2.286-0.571 7.429-2t7.429-2.571q-12-28-30.286-63.429-177.714 53.143-384.571 53.143-0.571 4-0.571 12zM72 434.857q172.571 0 346.286-45.714-68.571-121.714-139.429-216-78.857 37.143-133.714 106.286t-73.143 155.429zM200 801.143q105.143 85.714 238.857 85.714 75.429 0 146.286-29.714-24-137.714-80-284.571h-1.143l-1.143 0.571q-9.143 3.429-24.571 9.429t-57.714 28-78.286 46.857-74.857 65.429-58.857 84.571zM348 148.571q0.571-0.571 1.143-0.571-0.571 0-1.143 0.571zM350.286 148q74.857 97.143 140.571 218.286 39.429-14.857 74.286-34.571t55.143-35.143 37.429-32.571 21.429-23.143l7.143-10q-105.714-93.714-247.429-93.714-43.429 0-88.571 10.857zM519.429 422.286q14.286 30.286 25.143 54.286 1.143 3.429 3.714 10t4.286 9.429q20.571-2.857 42.571-4t42-1.143 39.429 0.857 36.571 2.286 32.286 3.143 27.429 3.714 20.857 3.429 14.286 2.571l5.714 1.143q-1.714-132.571-85.143-234.286l-0.571 0.571q-5.143 6.857-10.857 14t-24.857 25.429-40.571 34.571-57.143 37.143-75.143 36.857zM575.429 554.857q49.714 136.571 73.143 268 63.429-42.857 105.714-108.286t54.857-143.143q-120-34.286-233.714-16.571z" + ], + "tags": [ + "dribbble" + ], + "defaultCode": 61821, + "grid": 14, + "matchesSearch": false + }, + { + "id": 345, + "paths": [ + "M0 292.571q0-90.857 64.286-155.143t155.143-64.286q74.286 0 133.714 45.714 44-9.143 85.714-9.143 81.714 0 156.286 31.714t128.571 85.714 85.714 128.571 31.714 156.286q0 41.714-9.143 85.714 45.714 59.429 45.714 133.714 0 90.857-64.286 155.143t-155.143 64.286q-74.286 0-133.714-45.714-44 9.143-85.714 9.143-81.714 0-156.286-31.714t-128.571-85.714-85.714-128.571-31.714-156.286q0-41.714 9.143-85.714-45.714-59.429-45.714-133.714zM214.857 649.714q0 52.571 69.714 90t166.286 37.429q41.714 0 80-10.571t70-30.571 50.571-53.429 18.857-75.143q0-28.571-11.143-52.286t-27.714-39.143-41.714-28-47.143-19.429-50-13.143l-59.429-13.714q-17.143-4-25.143-6t-20-6.571-17.143-9.143-9.429-12-4.286-17.143q0-44 82.286-44 24.571 0 44 6.857t30.857 16.286 21.714 19.143 22.857 16.571 27.429 6.857q26.857 0 43.143-18.286t16.286-44q0-31.429-32-56.857t-81.143-38.571-104-13.143q-38.857 0-75.429 8.857t-68.286 26.857-50.857 49.714-19.143 73.429q0 34.857 10.857 60.857t32 43.143 45.714 27.714 58.857 18.571l83.429 20.571q51.429 12.571 64 20.571 18.286 11.429 18.286 34.286 0 22.286-22.857 36.857t-60 14.571q-29.143 0-52.286-9.143t-37.143-22-26-25.714-26.286-22-30.857-9.143q-28.571 0-43.143 17.143t-14.571 42.857z" + ], + "tags": [ + "skype" + ], + "defaultCode": 61822, + "grid": 14, + "matchesSearch": false + }, + { + "id": 346, + "paths": [ + "M0 512q0-42.857 30.286-73.143l335.429-335.429q30.286-30.286 73.143-30.286t73.143 30.286l151.429 151.429-227.429 228-107.429-107.429q-24-24-56.571-24-33.714 0-57.143 23.429l-68.571 69.143q-24 22.857-24 56.571 0 33.143 24 57.143l232 233.143q17.143 16 38.286 21.143l3.429 2.286h16q34.286 0 56.571-23.429l353.714-353.714 1.143 1.714q30.286 30.286 30.286 73.143t-30.286 73.143l-335.429 335.429q-29.714 30.286-72.857 30.286t-73.429-30.286l-335.429-335.429q-30.286-30.286-30.286-73.143zM172.571 500.571q0-12 8-20l69.143-68.571q7.429-8.571 20-8.571t20.571 8.571l144 144 328-328.571q8.571-8.571 20.571-8.571t20.571 8.571l68.571 68.571q8 8.571 8 20.571t-8 20.571l-417.143 417.143q-9.714 8.571-21.143 8.571-2.286 0-3.429-0.571-10.286-1.143-17.143-8l-232.571-233.143q-8-8.571-8-20.571z" + ], + "width": 951, + "tags": [ + "foursquare" + ], + "defaultCode": 61824, + "grid": 14, + "matchesSearch": false + }, + { + "id": 347, + "paths": [ + "M0 914.286v-804.571q0-14.857 10.857-25.714t25.714-10.857h804.571q14.857 0 25.714 10.857t10.857 25.714v804.571q0 14.857-10.857 25.714t-25.714 10.857h-804.571q-14.857 0-25.714-10.857t-10.857-25.714zM91.429 768q0 8 5.143 13.143t13.143 5.143h274.286q8 0 13.143-5.143t5.143-13.143v-585.143q0-8-5.143-13.143t-13.143-5.143h-274.286q-8 0-13.143 5.143t-5.143 13.143v585.143zM475.429 548.571q0 8 5.143 13.143t13.143 5.143h274.286q8 0 13.143-5.143t5.143-13.143v-365.714q0-8-5.143-13.143t-13.143-5.143h-274.286q-8 0-13.143 5.143t-5.143 13.143v365.714z" + ], + "tags": [ + "trello" + ], + "defaultCode": 61825, + "grid": 14, + "matchesSearch": false + }, + { + "id": 348, + "paths": [ + "M0 603.429q0-16.571 9.143-30.286l146.286-219.429q41.714-61.143 100.571-61.143h219.429q58.857 0 100.571 61.143l146.286 219.429q9.143 13.714 9.143 30.286 0 22.857-16 38.857t-38.857 16q-29.143 0-45.714-24.571l-129.714-194.857h-25.714v75.429l141.143 234.857q5.143 8.571 5.143 18.857 0 14.857-10.857 25.714t-25.714 10.857h-109.714v155.429q0 26.286-18.857 45.143t-45.143 18.857h-91.429q-26.286 0-45.143-18.857t-18.857-45.143v-155.429h-109.714q-14.857 0-25.714-10.857t-10.857-25.714q0-10.286 5.143-18.857l141.143-234.857v-75.429h-25.714l-129.714 194.857q-16.571 24.571-45.714 24.571-22.857 0-38.857-16t-16-38.857zM237.714 146.286q0-53.143 37.429-90.571t90.571-37.429 90.571 37.429 37.429 90.571-37.429 90.571-90.571 37.429-90.571-37.429-37.429-90.571z" + ], + "width": 731, + "tags": [ + "female" + ], + "defaultCode": 61826, + "grid": 14, + "matchesSearch": false + }, + { + "id": 349, + "paths": [ + "M0 640v-237.714q0-45.714 32-77.714t77.714-32h365.714q45.714 0 77.714 32t32 77.714v237.714q0 22.857-16 38.857t-38.857 16-38.857-16-16-38.857v-201.143h-36.571v521.143q0 26.286-18.857 45.143t-45.143 18.857-45.143-18.857-18.857-45.143v-265.143h-36.571v265.143q0 26.286-18.857 45.143t-45.143 18.857-45.143-18.857-18.857-45.143v-521.143h-36.571v201.143q0 22.857-16 38.857t-38.857 16-38.857-16-16-38.857zM164.571 146.286q0-53.143 37.429-90.571t90.571-37.429 90.571 37.429 37.429 90.571-37.429 90.571-90.571 37.429-90.571-37.429-37.429-90.571z" + ], + "width": 585, + "tags": [ + "male" + ], + "defaultCode": 61827, + "grid": 14, + "matchesSearch": false + }, + { + "id": 350, + "paths": [ + "M0 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286zM228.286 440q4.857 21.143 14 33.714l199.429 270.286 200-270.286q9.143-12.571 14-33.714t-3.429-48.571-35.143-45.143q-22.857-14.857-47.429-14.571t-42 10-31.143 25.714q-20.571 22.857-54.857 22.857-33.714 0-54.286-22.857-13.714-16-31.143-25.714t-42-10-48 14.571q-26.286 17.714-34.571 45.143t-3.429 48.571z" + ], + "tags": [ + "gittip" + ], + "defaultCode": 61828, + "grid": 14, + "matchesSearch": false + }, + { + "id": 351, + "paths": [ + "M25.143 670.286q-2.857-9.714 2.286-16.571l102.857-141.714-102.857-141.714q-5.143-7.429-2.286-16.571 2.286-8.571 11.429-11.429l166.857-54.857v-174.857q0-9.143 7.429-14.857 8.571-5.714 16.571-2.286l166.857 53.714 102.857-141.714q5.143-6.857 14.857-6.857t14.857 6.857l102.857 141.714 166.857-53.714q8-3.429 16.571 2.286 7.429 5.714 7.429 14.857v174.857l166.857 54.857q9.143 2.857 11.429 11.429 2.857 9.143-2.286 16.571l-102.857 141.714 102.857 141.714q5.143 6.857 2.286 16.571-2.286 8.571-11.429 11.429l-166.857 54.857v174.857q0 9.143-7.429 14.857-8.571 5.714-16.571 2.286l-166.857-53.714-102.857 141.714q-5.714 7.429-14.857 7.429t-14.857-7.429l-102.857-141.714-166.857 53.714q-8 3.429-16.571-2.286-7.429-5.714-7.429-14.857v-174.857l-166.857-54.857q-9.143-2.857-11.429-11.429zM182.857 512q0 66.857 26 127.714t70.286 105.143 105.143 70.286 127.714 26 127.714-26 105.143-70.286 70.286-105.143 26-127.714-26-127.714-70.286-105.143-105.143-70.286-127.714-26-127.714 26-105.143 70.286-70.286 105.143-26 127.714z" + ], + "tags": [ + "sun-o" + ], + "defaultCode": 61829, + "grid": 14, + "matchesSearch": false + }, + { + "id": 352, + "paths": [ + "M0 512q0-87.429 32.857-167.143t89.143-138 134.571-94 165.714-39.143q25.143-1.143 34.857 22.286 10.286 23.429-8.571 41.143-49.143 44.571-75.143 103.714t-26 124.857q0 84.571 41.714 156t113.143 113.143 156 41.714q67.429 0 130.286-29.143 23.429-10.286 41.143 7.429 8 8 10 19.429t-2.571 21.714q-53.714 116-162 185.429t-236.286 69.429q-89.143 0-170.286-34.857t-140-93.714-93.714-140-34.857-170.286zM73.143 512q0 74.286 29.143 142t78 116.571 116.571 78 142 29.143q82.286 0 156.286-35.143t126-98q-30.857 5.143-62.857 5.143-104 0-192.571-51.429t-140-140-51.429-192.571q0-109.714 59.429-204-114.857 34.286-187.714 130.857t-72.857 219.429z" + ], + "tags": [ + "moon-o" + ], + "defaultCode": 61830, + "grid": 14, + "matchesSearch": false + }, + { + "id": 353, + "paths": [ + "M36.571 256v-146.286q0-14.857 10.857-25.714t25.714-10.857h877.714q14.857 0 25.714 10.857t10.857 25.714v146.286q0 14.857-10.857 25.714t-25.714 10.857h-877.714q-14.857 0-25.714-10.857t-10.857-25.714zM73.143 914.286v-548.571q0-14.857 10.857-25.714t25.714-10.857h804.571q14.857 0 25.714 10.857t10.857 25.714v548.571q0 14.857-10.857 25.714t-25.714 10.857h-804.571q-14.857 0-25.714-10.857t-10.857-25.714zM402.286 475.429q0 14.857 10.857 25.714t25.714 10.857h146.286q14.857 0 25.714-10.857t10.857-25.714-10.857-25.714-25.714-10.857h-146.286q-14.857 0-25.714 10.857t-10.857 25.714z" + ], + "tags": [ + "archive" + ], + "defaultCode": 61831, + "grid": 14, + "matchesSearch": false + }, + { + "id": 354, + "paths": [ + "M18.286 548.571q0-14.857 10.857-25.714t25.714-10.857h128v-168l-98.857-98.857q-10.857-10.857-10.857-25.714t10.857-25.714 25.714-10.857 25.714 10.857l98.857 98.857h482.286l98.857-98.857q10.857-10.857 25.714-10.857t25.714 10.857 10.857 25.714-10.857 25.714l-98.857 98.857v168h128q14.857 0 25.714 10.857t10.857 25.714-10.857 25.714-25.714 10.857h-128q0 97.714-38.286 165.714l118.857 119.429q10.857 10.857 10.857 25.714t-10.857 25.714q-10.286 10.857-25.714 10.857t-25.714-10.857l-113.143-112.571q-2.857 2.857-8.571 7.429t-24 16.286-37.143 20.857-46.857 16.571-55.429 7.429v-512h-73.143v512q-29.143 0-58-7.714t-49.714-18.857-37.714-22.286-24.857-18.571l-8.571-8-104.571 118.286q-11.429 12-27.429 12-13.714 0-24.571-9.143-10.857-10.286-11.714-25.429t8.857-26.571l115.429-129.714q-33.143-65.143-33.143-156.571h-128q-14.857 0-25.714-10.857t-10.857-25.714zM292.571 219.429q0-76 53.429-129.429t129.429-53.429 129.429 53.429 53.429 129.429h-365.714z" + ], + "width": 951, + "tags": [ + "bug" + ], + "defaultCode": 61832, + "grid": 14, + "matchesSearch": false + }, + { + "id": 355, + "paths": [ + "M-0.571 304q0-6.286 1.714-9.143l2.286-3.429q8.571-10.857 32.571-10.857l156.571-1.143q6.857 1.143 13.143 3.714t9.143 4.857l2.857 1.714q9.143 6.286 13.714 18.286 11.429 28.571 26.286 59.143t23.429 46.571l9.143 16.571q16.571 34.286 32 59.429t27.714 39.143 23.714 22 19.429 8 15.429-2.857q1.143-0.571 2.857-2.857t6.857-12.571 7.714-26.857 5.429-46.286 0-71.429q-1.143-22.857-5.143-41.714t-8-26.286l-3.429-6.857q-14.286-19.429-48.571-24.571-7.429-1.143 2.857-13.714 9.714-10.857 21.714-17.143 30.286-14.857 136.571-13.714 46.857 0.571 77.143 7.429 11.429 2.857 19.143 7.714t11.714 13.714 6 18.286 2 26-0.571 31.429-1.429 40.286-0.857 47.143q0 6.286-0.571 24t-0.286 27.429 2 23.143 6.571 22.286 12.857 14q4.571 1.143 9.714 2.286t14.857-6.286 21.714-19.714 29.714-38.286 38.857-61.429q34.286-59.429 61.143-128.571 2.286-5.714 5.714-10t6.286-6l2.286-1.714 2.857-1.429t7.429-1.714 11.429-0.286l164.571-1.143q22.286-2.857 36.571 1.429t17.714 9.429l3.429 5.714q13.143 36.571-85.714 168-13.714 18.286-37.143 48.571-44.571 57.143-51.429 74.857-9.714 23.429 8 46.286 9.714 12 46.286 46.857h0.571l2.286 2.286q80.571 74.857 109.143 126.286 1.714 2.857 3.714 7.143t4 15.143-0.286 19.429-14.286 15.714-33.714 7.143l-146.286 2.286q-13.714 2.857-32-2.857t-29.714-12.571l-11.429-6.857q-17.143-12-40-36.571t-39.143-44.286-34.857-33.143-32.286-8.857q-1.714 0.571-4.571 2t-9.714 8.286-12.286 16.857-9.714 29.714-3.714 44.286q0 8.571-2 15.714t-4.286 10.571l-2.286 2.857q-10.286 10.857-30.286 12.571h-65.714q-40.571 2.286-83.429-9.429t-75.143-30.286-58.857-37.714-40.286-32.857l-14.286-13.714q-5.714-5.714-15.714-17.143t-40.857-52-60.571-86.286-70-120.571-74.571-155.429q-3.429-9.143-3.429-15.429z" + ], + "width": 1097, + "tags": [ + "vk" + ], + "defaultCode": 61833, + "grid": 14, + "matchesSearch": false + }, + { + "id": 356, + "paths": [ + "M0 654.286q0-65.714 39.714-140t112.857-147.429q96.571-96.571 195.143-134.857t140.857 4q37.143 36.571 11.429 119.429-2.286 8-0.571 11.429t5.714 4 8.286-0.286 7.714-2l3.429-1.143q79.429-33.714 140.571-33.714t87.429 34.857q25.714 36 0 101.714-1.143 7.429-2.571 11.429t2.571 7.143 6.857 4.286 9.714 3.429q32.571 10.286 58.857 26.857t45.714 46.571 19.429 66.571q0 38.857-21.143 79.714t-62.286 78.286-96.286 67.143-129.143 47.429-154.571 17.714-157.143-19.143-137.429-53.143-98-86.286-37.143-114zM103.429 694.857q5.143 54.857 50.857 97.143t119.143 62.286 156.857 12q127.429-13.143 211.143-80.857t75.714-151.143q-5.143-54.857-50.857-97.143t-119.143-62.286-156.857-12q-127.429 13.143-211.143 80.857t-75.714 151.143zM236.286 746q-23.143-52.857 3.714-107.143 26.857-53.143 86.571-79.429t120.286-10.857q63.429 16.571 90.571 68.286t1.429 108.857q-25.714 58.286-90.286 85.714t-128 6.857q-61.143-19.429-84.286-72.286zM282.857 730.571q5.143 19.714 24.571 28.857t42.571 1.429 35.714-27.143q12-19.429 6.286-39.429t-25.714-28.571q-19.429-8-41.714-0.571t-34.286 26.286q-12.571 19.429-7.429 39.143zM402.857 649.714q-9.714 17.714 7.429 25.714 8 2.857 16.571-0.286t12.571-10.571q4.571-7.429 2-15.143t-10-10.571q-8-2.857-16.286 0.286t-12.286 10.571zM665.714 149.714q-3.429-16 5.429-29.429t24.857-16.857q70.286-14.857 139.429 6.571t118.857 76.857q49.714 54.857 64.286 127.143t-7.714 138q-5.143 15.429-19.429 22.857t-29.714 2.286-22.857-19.429-2.857-29.714q16-46.857 5.714-98.286t-45.714-90.286q-35.429-39.429-84.571-54.571t-98.857-4.857q-16 3.429-29.714-5.429t-17.143-24.857zM699.429 279.429q-2.857-13.714 4.571-25.429t21.143-14.571q34.286-7.429 68 3.143t57.714 37.429 31.143 62-3.714 67.143q-4.571 13.143-16.857 19.429t-25.429 2.286q-13.143-4.571-19.429-16.857t-2.286-25.429q11.429-36-13.714-63.429t-61.143-20q-13.714 2.857-25.714-4.571t-14.286-21.143z" + ], + "tags": [ + "weibo" + ], + "defaultCode": 61834, + "grid": 14, + "matchesSearch": false + }, + { + "id": 357, + "paths": [ + "M0 513.143q0-106.857 47.714-199.714t131.143-154 185.714-78.286v277.143q0 144-72.286 262.571t-188.857 175.143q-103.429-122.857-103.429-282.857zM227.429 897.143q78.857-49.714 134.571-120.571t75.143-153.143q20 82.286 75.714 153.143t134.571 120.571q-97.714 53.714-210.286 53.714-112 0-209.714-53.714zM513.143 358.286v-277.143q102.286 17.143 185.714 78.286t131.143 154 47.714 199.714q0 160-103.429 282.857-116.571-56.571-188.857-175.143t-72.286-262.571z" + ], + "tags": [ + "renren" + ], + "defaultCode": 61835, + "grid": 14, + "matchesSearch": false + }, + { + "id": 358, + "paths": [ + "M0 998.286q0-10.857 7.429-18t18.286-7.143q98.857-0.571 184.286-61.429t143.714-168.286q-20.571 8-41.143 13.143t-47.429 7.429-52-1.429-53.143-16.286-52.571-33.714-48.286-57.143-42.571-83.429q65.143-26.857 122.286-32.571t95.714 4.286 71.143 32.286 50.571 44 32.286 46.857q30.286-74.857 45.143-166.286-4 0.571-10.286 1.429t-26.571 1.429-39.714-0.286-46.571-5.714-50.571-13.143-48-24.286-42.857-37.143-31.143-54-16.286-72.857q40-16 76.286-20.857t64.286 0.571 52.571 17.143 42 28.571 32 34.857 24 36 15.714 32 9.143 22.571l2.286 9.143q6.857-69.714 6.857-111.429-4.571-3.429-12.286-9.143t-28-25.429-36.286-40.857-30.857-53.143-18.857-64.286 6.857-72.571 40-79.143q41.714 14.286 72.857 35.143t48.286 43.714 27.429 48.571 11.714 50.857-0.286 48.857-7.429 43.714-10.857 35.429-9.714 24l-4 8.571q0.571 2.857 0.571 28.857t-0.571 40.857q1.714-4 5.714-10.571t17.429-24.571 28.857-33.143 40.571-31.714 52.286-25.429 64-8.286 75.714 13.714q-1.143 44.571-12.286 80.857t-28.571 59.714-39.714 40.857-46.571 26-48.286 13.714-45.714 5.429-38.571-0.571-26.571-2.571l-9.714-1.714q-13.143 84-41.714 161.714 3.429-4 10.286-10.571t28.286-23.429 44.286-30 56.857-24 67.143-11.429 73.714 13.429 78.286 44.286q-18.286 45.714-43.429 78.857t-52 50.571-56.571 26.571-58 8.286-55.143-4.857-49.429-12.571-39.714-15.714-26.286-12.857l-9.714-5.714q-64.571 130.286-165.429 205.429t-219.714 75.714q-10.857 0-18.286-7.429t-7.429-18.286z" + ], + "width": 805, + "tags": [ + "pagelines" + ], + "defaultCode": 61836, + "grid": 14, + "matchesSearch": false + }, + { + "id": 359, + "paths": [ + "M12 753.714v-37.714h707.429v37.714q0 48.571-32.857 82.571t-79.143 34h-32.571l-148.571 153.714v-153.714h-302.286q-46.286 0-79.143-34t-32.857-82.571zM12 675.429v-145.714h707.429v145.714h-707.429zM12 488v-145.714h707.429v145.714h-707.429zM12 300.571v-38.286q0-48 32.857-82t79.143-34h483.429q46.286 0 79.143 34t32.857 82v38.286h-707.429z" + ], + "width": 731, + "tags": [ + "stack-exchange" + ], + "defaultCode": 61837, + "grid": 14, + "matchesSearch": false + }, + { + "id": 360, + "paths": [ + "M0 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286zM128 512q0 84.571 41.714 156t113.143 113.143 156 41.714 156-41.714 113.143-113.143 41.714-156-41.714-156-113.143-113.143-156-41.714-156 41.714-113.143 113.143-41.714 156zM219.429 566.857v-109.714q0-7.429 5.429-12.857t12.857-5.429h201.143v-109.714q0-8 5.143-13.143t13.143-5.143q6.857 0 13.714 5.714l182.286 182.286q5.143 5.143 5.143 13.143t-5.143 13.143l-182.857 182.857q-5.143 5.143-13.143 5.143-7.429 0-12.857-5.429t-5.429-12.857v-109.714h-201.143q-7.429 0-12.857-5.429t-5.429-12.857z" + ], + "tags": [ + "arrow-circle-o-right" + ], + "defaultCode": 61838, + "grid": 14, + "matchesSearch": false + }, + { + "id": 361, + "paths": [ + "M0 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286zM128 512q0 84.571 41.714 156t113.143 113.143 156 41.714 156-41.714 113.143-113.143 41.714-156-41.714-156-113.143-113.143-156-41.714-156 41.714-113.143 113.143-41.714 156zM219.429 512q0-8 5.143-13.143l182.857-182.857q5.143-5.143 13.143-5.143 7.429 0 12.857 5.429t5.429 12.857v109.714h201.143q7.429 0 12.857 5.429t5.429 12.857v109.714q0 7.429-5.429 12.857t-12.857 5.429h-201.143v109.714q0 8-5.143 13.143t-13.143 5.143q-6.857 0-13.714-5.714l-182.286-182.286q-5.143-5.143-5.143-13.143z" + ], + "tags": [ + "arrow-circle-o-left" + ], + "defaultCode": 61840, + "grid": 14, + "matchesSearch": false + }, + { + "id": 362, + "paths": [ + "M0 786.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286zM146.286 786.286q0 7.429 5.429 12.857t12.857 5.429h548.571q7.429 0 12.857-5.429t5.429-12.857v-548.571q0-7.429-5.429-12.857t-12.857-5.429h-548.571q-7.429 0-12.857 5.429t-5.429 12.857v548.571zM256 512q0-18.857 15.429-29.714l256-182.857q9.714-6.857 21.143-6.857 14.857 0 25.714 10.857t10.857 25.714v365.714q0 14.857-10.857 25.714t-25.714 10.857q-11.429 0-21.143-6.857l-256-182.857q-15.429-10.857-15.429-29.714z" + ], + "tags": [ + "toggle-left", + "caret-square-o-left" + ], + "defaultCode": 61841, + "grid": 14, + "matchesSearch": false + }, + { + "id": 363, + "paths": [ + "M0 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286zM128 512q0 84.571 41.714 156t113.143 113.143 156 41.714 156-41.714 113.143-113.143 41.714-156-41.714-156-113.143-113.143-156-41.714-156 41.714-113.143 113.143-41.714 156zM292.571 512q0-60.571 42.857-103.429t103.429-42.857 103.429 42.857 42.857 103.429-42.857 103.429-103.429 42.857-103.429-42.857-42.857-103.429z" + ], + "tags": [ + "dot-circle-o" + ], + "defaultCode": 61842, + "grid": 14, + "matchesSearch": false + }, + { + "id": 364, + "paths": [ + "M0 694.857q0-103.429 59.714-188.571t156.857-120.571l9.714 74.857q-69.714 30.857-111.429 94.571t-41.714 139.714q0 105.714 75.143 180.857t180.857 75.143q72 0 132.857-37.143t94.286-100.286 28.286-135.143l58.286 116.571q-33.143 102.286-120 165.714t-193.714 63.429q-89.143 0-164.857-44.286t-120-120-44.286-164.857zM237.714 107.429q-1.143-9.143 3.429-24 8-29.143 32.571-47.143t55.429-18q37.714 0 64.571 26.857t26.857 64.571q0 39.429-29.714 67.143t-68.571 23.714l21.143 165.143h241.714v73.143h-232.571l9.143 73.143h260q22.857 0 32.571 20l130.286 260 113.143-56.571 33.143 65.143-146.286 73.143q-7.429 4-16.571 4-22.857 0-32.571-20l-136.571-272.571h-269.714q-13.714 0-24.286-9.429t-12.286-23.143z" + ], + "width": 951, + "tags": [ + "wheelchair" + ], + "defaultCode": 61843, + "grid": 14, + "matchesSearch": false + }, + { + "id": 365, + "paths": [ + "M0 786.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286zM73.143 417.143q9.143 4.571 14.571 14.857t12.286 11.429q12 1.714 31.143-4.857t33.143-6 23.714 17.143q6.286 10.286 10.571 22t8.571 27.429 7.143 23.143q9.714 26.286 30.286 106.857 20.571 83.429 32.571 112.571 24 56.571 58.857 71.429 24.571 6.857 48.571 0.857t43.429-18q74.857-44 142.857-135.429 59.429-79.429 98.571-167.143t47.143-129.429q9.143-48.571-12-75.429-29.714-37.143-106.857-25.714-9.714 1.714-23.429 7.143t-32.857 17.429-36.857 27.714-34 40-25.429 52.286q45.714-4 64.857 9.143t15.143 56.571q-2.857 29.714-29.714 81.714-24.571 44.571-40.571 56.571-25.143 18.286-49.714-8-13.143-13.714-21.429-36.857t-10.857-41.714-5.714-48-4.857-40.857q-13.143-73.714-19.429-93.714-6.857-21.143-20.286-39.429t-28.857-22.857q-32.571-9.143-72.571 14.286-30.857 18.286-78 60.571t-70 58.286v4z" + ], + "tags": [ + "vimeo-square" + ], + "defaultCode": 61844, + "grid": 14, + "matchesSearch": false + }, + { + "id": 366, + "paths": [ + "M0 530.286v-73.143q0-13.143 13.143-17.714l133.143-40.571v-53.143l-122.857 37.714q-1.714 0.571-5.143 0.571-5.714 0-10.857-3.429-7.429-5.714-7.429-14.857v-73.143q0-13.143 13.143-17.714l133.143-40.571v-142.857q0-8 5.143-13.143t13.143-5.143h91.429q8 0 13.143 5.143t5.143 13.143v103.429l214.286-66.286q8.571-2.857 16 2.857t7.429 14.857v73.143q0 13.143-13.143 17.714l-224.571 69.143v53.143l214.286-66.286q8.571-2.857 16 2.857t7.429 14.857v73.143q0 13.143-13.143 17.714l-224.571 69.143v278.286q107.429-7.429 181.714-86.286t74.286-187.429q0-8 5.143-13.143t13.143-5.143h91.429q8 0 13.143 5.143t5.143 13.143q0 109.143-54 201.714t-146.571 146.571-201.714 54h-91.429q-8 0-13.143-5.143t-5.143-13.143v-349.143l-122.857 37.714q-1.714 0.571-5.143 0.571-5.714 0-10.857-3.429-7.429-5.714-7.429-14.857z" + ], + "width": 658, + "tags": [ + "turkish-lira", + "try" + ], + "defaultCode": 61845, + "grid": 14, + "matchesSearch": false + }, + { + "id": 367, + "paths": [ + "M0 713.143v-475.429q0-68 48.286-116.286t116.286-48.286h475.429q68 0 116.286 48.286t48.286 116.286v475.429q0 68-48.286 116.286t-116.286 48.286h-475.429q-68 0-116.286-48.286t-48.286-116.286zM73.143 713.143q0 37.714 26.857 64.571t64.571 26.857h475.429q37.714 0 64.571-26.857t26.857-64.571v-475.429q0-37.714-26.857-64.571t-64.571-26.857h-475.429q-37.714 0-64.571 26.857t-26.857 64.571v475.429zM146.286 493.714v-36.571q0-8 5.143-13.143t13.143-5.143h201.143v-201.143q0-8 5.143-13.143t13.143-5.143h36.571q8 0 13.143 5.143t5.143 13.143v201.143h201.143q8 0 13.143 5.143t5.143 13.143v36.571q0 8-5.143 13.143t-13.143 5.143h-201.143v201.143q0 8-5.143 13.143t-13.143 5.143h-36.571q-8 0-13.143-5.143t-5.143-13.143v-201.143h-201.143q-8 0-13.143-5.143t-5.143-13.143z" + ], + "width": 805, + "tags": [ + "plus-square-o" + ], + "defaultCode": 61846, + "grid": 14, + "matchesSearch": false + }, + { + "id": 368, + "paths": [ + "M0 548.571q0-6.857 22-11.714t55.143-6q-4-14.286-4-28 0-18.857 5.429-32.286t12.857-13.429h36.571v-36.571h73.143q90.286 0 153.143 36.571h636q24 4 60.857 10.286t46 8q50.857 8.571 85.714 23.143t47.714 27.143 12.857 22.857-12.857 22.857-47.714 27.143-85.714 23.143q-9.143 1.714-46 8t-60.857 10.286h-636q-62.857 36.571-153.143 36.571h-73.143v-36.571h-36.571q-7.429 0-12.857-13.429t-5.429-32.286q0-13.714 4-28-33.143-1.143-55.143-6t-22-11.714zM184.571 685.714h16.571q89.714 0 156-36.571h580q-124 21.714-260.571 45.714-32.571 0-64.571 13.714t-47.429 27.429l-16 13.714-164.571 164.571q-14.857 14.857-40.286 25.714t-51.143 10.857h-54.857zM184.571 411.429l53.143-265.143h54.857q26.286 0 51.429 10.857t40 25.714l164.571 164.571q2.286 2.286 6.286 6t17.429 13.143 27.714 16.571 35.143 13.143 41.429 6l260.571 45.714h-580q-66.286-36.571-156-36.571h-16.571zM993.714 601.143l46.286 17.143q38.857-27.429 38.857-69.714t-38.857-69.714l-46.286 17.143q30.286 20.571 30.286 52.571t-30.286 52.571z" + ], + "width": 1243, + "tags": [ + "space-shuttle" + ], + "defaultCode": 61847, + "grid": 14, + "matchesSearch": false + }, + { + "id": 369, + "paths": [ + "M0 422.857q0-26.857 15.714-48.571t40.857-30.286l89.714-30.286-30.286-90.857q-4.571-13.714-4.571-26.857 0-34.286 24-58.571t58.286-24.286q26.857 0 48.571 15.429t30.286 41.143l30.857 91.429 177.143-60-30.857-91.429q-4.571-13.714-4.571-26.857 0-33.714 24.286-58.286t58-24.571q26.857 0 48.857 15.714t30.571 40.857l30.286 92 92.571-31.429q12-3.429 24.571-3.429 34.286 0 58.571 22.571t24.286 56.286q0 25.714-17.143 46.571t-42.286 29.429l-89.714 30.857 60 180.571 93.714-32q13.714-4.571 26.286-4.571 35.429 0 59.143 23.143t23.714 58q0 55.429-53.143 74.286l-98.286 33.714 32 95.429q4 12 4 26.857 0 33.714-24 58.286t-57.714 24.571q-26.857 0-48.857-15.429t-30.571-41.143l-31.429-94.286-177.143 60.571 31.429 93.714q4.571 13.714 4.571 26.857 0 33.714-24 58.286t-58.286 24.571q-26.857 0-48.571-15.429t-30.286-41.143l-31.429-93.143-87.429 30.286q-16.571 5.143-28.571 5.143-34.857 0-58-22.857t-23.143-57.714q0-26.857 15.714-48.571t40.857-30.286l89.143-30.286-60-178.857-89.143 30.857q-14.857 4.571-27.429 4.571-34.286 0-57.714-23.143t-23.429-57.429zM354.286 414.286l60 178.857 177.143-60-60-180z" + ], + "width": 951, + "tags": [ + "slack" + ], + "defaultCode": 61848, + "grid": 14, + "matchesSearch": false + }, + { + "id": 370, + "paths": [ + "M0 786.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286zM146.286 676.571q0 22.857 16 38.857t38.857 16h475.429q22.857 0 38.857-16t16-38.857v-249.143q-17.714 20-36.571 31.429-19.429 12.571-75.714 48.571t-86.571 56.571q-56 39.429-93.714 39.429t-93.714-39.429q-26.286-18.286-80.857-52.857t-81.429-52.857q-6.857-4.571-18.857-15.429t-17.714-15.429v249.143zM146.286 347.429q0 21.143 17.429 43.714t38.571 36.857q26.857 18.286 78.571 50.857t74 47.429q1.714 1.143 9.714 6.571t12 8 12 7.429 13.429 7.429 12.286 5.429 12.857 4.286 11.714 1.429 11.714-1.429 12.857-4.286 12.286-5.429 13.429-7.429 12-7.429 12-8 9.714-6.571l152.571-99.429q20-13.143 38-35.714t18-42q0-23.429-15.714-40t-39.143-16.571h-475.429q-22.857 0-38.857 16t-16 38.857z" + ], + "tags": [ + "envelope-square" + ], + "defaultCode": 61849, + "grid": 14, + "matchesSearch": false + }, + { + "id": 371, + "paths": [ + "M0 512q0-104 40.571-198.857t109.143-163.429 163.429-109.143 198.857-40.571 198.857 40.571 163.429 109.143 109.143 163.429 40.571 198.857-40.571 198.857-109.143 163.429-163.429 109.143-198.857 40.571-198.857-40.571-163.429-109.143-109.143-163.429-40.571-198.857zM23.429 512q0 98.857 38.857 189.429t104.286 156 156 104.286 189.429 38.857 189.429-38.857 156-104.286 104.286-156 38.857-189.429-38.857-189.429-104.286-156-156-104.286-189.429-38.857-189.429 38.857-156 104.286-104.286 156-38.857 189.429zM72.571 512q0-93.143 38.286-178.857l209.714 574.286q-112-54.286-180-160.571t-68-234.857zM145.143 270.857q60-91.429 156.857-144.857t210-53.429q84 0 160.286 30.286t136.286 85.143h-5.714q-31.429 0-52.571 23.143t-21.143 54.571q0 6.857 1.143 13.714t2.286 12.286 4.571 13.143 5.143 12 6.857 12.857 7.143 12 8.286 13.714 8 13.143q36 61.143 36 121.143 0 10.857-1.429 22t-5.714 28.286-6.571 25.143-10 33.714-10 33.143l-43.429 146.286-158.857-472q26.286-1.714 50.286-4.571 10.857-1.143 14.857-10.571t-1.429-17.714-16.286-7.714l-117.143 5.714q-42.857-0.571-115.429-5.714-6.857-0.571-11.714 2.857t-6.571 8.571-0.857 10.571 5.143 9.429 11.143 4.571l45.714 4.571 68.571 187.429-96 288-160-475.429q26.286-1.714 50.286-4.571 10.857-1.143 14.857-10.571t-1.429-17.714-16.286-7.714l-117.143 5.714q-4 0-13.143-0.286t-14.857-0.286zM388 933.143l131.429-382.857 135.429 369.714q0.571 3.429 2.857 6.286-72 25.143-145.714 25.143-64 0-124-18.286zM732.571 891.429l134.286-387.429q33.714-96.571 33.714-157.714 0-24-3.429-45.143 54.286 99.429 54.286 210.857 0 119.429-59.429 220.286t-159.429 159.143z" + ], + "tags": [ + "wordpress" + ], + "defaultCode": 61850, + "grid": 14, + "matchesSearch": false + }, + { + "id": 372, + "paths": [ + "M0 617.714q0-80 57.429-150.571t157.143-117.429 223.714-61.714v98.286q-124 21.714-203.714 85.714t-79.714 145.714q0 86.857 88.286 152.571t222 82.857v-777.143l155.429-76v877.714l-155.429 73.143q-130.286-11.429-236.571-58.286t-167.429-119.143-61.143-155.714zM648 386.286v-98.286q158.286 18.857 274.857 89.714l80-45.143 21.143 222.857-300-65.143 84-47.429q-68-40-160-56.571z" + ], + "tags": [ + "openid" + ], + "defaultCode": 61851, + "grid": 14, + "matchesSearch": false + }, + { + "id": 373, + "paths": [ + "M0 950.857q0-14.857 11.714-25.714t27.714-10.857h1018.286q16 0 27.714 10.857t11.714 25.714v73.143h-1097.143v-73.143zM0 292.571v-73.143l548.571-219.429 548.571 219.429v73.143h-73.143q0 14.857-11.714 25.714t-27.714 10.857h-872q-16 0-27.714-10.857t-11.714-25.714h-73.143zM73.143 877.714v-36.571q0-14.857 11.714-25.714t27.714-10.857h33.714v-438.857h146.286v438.857h73.143v-438.857h146.286v438.857h73.143v-438.857h146.286v438.857h73.143v-438.857h146.286v438.857h33.714q16 0 27.714 10.857t11.714 25.714v36.571h-950.857z" + ], + "width": 1170, + "tags": [ + "institution", + "bank", + "university" + ], + "defaultCode": 61852, + "grid": 14, + "matchesSearch": false + }, + { + "id": 374, + "paths": [ + "M0 292.571q0-13.143 12.571-17.714l640-201.143q2.286-0.571 5.714-0.571t5.714 0.571l640 201.143q12.571 4.571 12.571 17.714t-12.571 17.714l-640 201.143q-2.286 0.571-5.714 0.571t-5.714-0.571l-372.571-117.714q-24.571 19.429-40.571 63.714t-19.429 102q36 20.571 36 62.286 0 39.429-33.143 61.143l33.143 247.429q1.143 8-4.571 14.286-5.143 6.286-13.714 6.286h-109.714q-8.571 0-13.714-6.286-5.714-6.286-4.571-14.286l33.143-247.429q-33.143-21.714-33.143-61.143 0-41.714 37.143-63.429 6.286-118.286 56-188.571l-190.286-59.429q-12.571-4.571-12.571-17.714zM292.571 658.286l10.286-180.571 328 103.429q12.571 4 27.429 4t27.429-4l328-103.429 10.286 180.571q2.286 39.429-46.857 73.143t-134.286 53.429-184.571 19.714-184.571-19.714-134.286-53.429-46.857-73.143z" + ], + "width": 1317, + "tags": [ + "mortar-board", + "graduation-cap" + ], + "defaultCode": 61853, + "grid": 14, + "matchesSearch": false + }, + { + "id": 375, + "paths": [ + "M62.286 0q33.143 8.571 61.714 8.571 24.571 0 63.429-8.571 36 63.429 76.286 131.143t95.429 158 79.143 129.714q21.143-34.857 62.571-101.429t67.143-108.571 60-100.571 61.143-108.286q30.857 8 61.143 8 32 0 65.143-8-16 22.286-34.286 50.571t-28.286 44.857-32.286 54.857-28 48q-83.429 141.714-201.714 348.571l7.429 404q-35.429-6.286-60-6.286-23.429 0-60 6.286l7.429-404q-22.857-39.429-96.286-168.857t-123.714-214-103.429-164z" + ], + "tags": [ + "yahoo" + ], + "defaultCode": 61854, + "grid": 14, + "matchesSearch": false + }, + { + "id": 376, + "paths": [ + "M63.429 773.714q0-46.286 25.429-85.714t67.714-65.714q74.857-46.857 230.857-57.143-18.286-23.429-27.143-42t-8.857-42q0-22.857 12-48.571-26.286 2.286-38.857 2.286-84.571 0-142.571-55.143t-58-139.714q0-46.857 20.571-90.857t56.571-74.857q43.429-37.714 104-56t124.571-18.286h238.286l-78.286 50.286h-75.429q42.857 36 64.571 76t21.714 91.429q0 41.143-14 74t-34 53.143-39.714 37.143-33.714 35.143-14 37.714q0 20.571 18.286 40.286t44 38.857 51.714 42 44.286 59.429 18.286 81.143q0 52-28 98.857-40.571 69.714-119.714 102.571t-170.571 32.857q-75.429 0-140.857-23.714t-98.571-78.571q-20.571-33.714-20.571-74.857zM169.714 747.429q0 32 13.429 58.286t34.857 43.143 49.714 28.571 57.143 16.571 58 4.857q33.143 0 63.714-7.429t56.571-22.286 41.714-41.714 15.714-62.286q0-14.286-4-28t-8.286-24-15.429-23.714-16.857-20-22-19.714-20.857-16.571-23.714-17.143-20.857-14.857q-9.143-1.143-28-1.143-30.286 0-59.714 4t-61.143 14.286-55.429 26.286-39.143 42.571-15.429 60.286zM230.286 179.429q0 26.286 5.714 55.714t18 58.857 29.714 52.857 42.857 38.286 55.143 14.857q21.143 0 44.286-9.429t37.429-24.857q30.286-32 30.286-90.857 0-33.714-9.714-71.714t-27.429-73.714-48-59.143-66.857-23.429q-24 0-47.143 11.143t-38 30q-26.286 33.714-26.286 91.429z" + ], + "width": 731, + "tags": [ + "google" + ], + "defaultCode": 61856, + "grid": 14, + "matchesSearch": false + }, + { + "id": 377, + "paths": [ + "M0 465.143q0-53.714 37.714-91.429t91.429-37.714q47.429 0 84.571 31.429 141.714-90.286 338.286-93.714l76.571-241.714q2.286-8 10-12.286t16.286-2.571l198.286 46.857q12.571-28.571 39.143-46.286t58.571-17.714q44 0 75.143 31.143t31.143 75.143-31.143 75.429-75.143 31.429q-43.429 0-74.571-30.857t-31.714-74.857l-180-42.286-66.286 209.143q186.857 8 320 94.857 36.571-33.143 86.286-33.143 53.714 0 91.429 37.714t37.714 91.429q0 35.429-17.714 65.143t-47.429 46.857q2.857 18.857 2.857 34.857 0 69.143-39.143 131.714t-112.857 110.571q-71.429 46.857-163.143 71.714t-191.714 24.857q-100.571 0-192.286-24.857t-162.571-71.714q-73.714-48-112.857-110.286t-39.143-132q0-16.571 2.857-37.714-27.429-17.714-44-46.571t-16.571-62.571zM44 465.143q0 38.286 29.143 63.429 28-74.857 102.857-134.286-20.571-14.286-46.857-14.286-35.429 0-60.286 24.857t-24.857 60.286zM101.714 612q0 57.714 34 110.857t98 94.857q66.286 42.857 151.714 66t179.143 23.143 179.143-23.143 151.714-66q64-41.714 98-94.857t34-110.857-34-110.571-98-94.571q-66.286-42.857-151.714-66t-179.143-23.143-179.143 23.143-151.714 66q-64 41.714-98 94.571t-34 110.571zM317.143 550.857q0-32.571 23.714-56t55.714-23.429 55.143 23.429 23.143 56q0 32-23.143 54.857t-55.143 22.857q-32.571 0-56-22.857t-23.429-54.857zM377.714 758q0-9.429 6.286-15.714t15.429-6.286 15.429 6.286q44 44 151.429 44h1.143q107.429 0 151.429-44 6.286-6.286 15.429-6.286t15.429 6.286 6.286 15.714-6.286 15.714q-56.571 56.571-182.286 56.571h-1.143q-125.714 0-182.286-56.571-6.286-6.286-6.286-15.714zM658.857 550.857q0-32.571 23.714-56t55.714-23.429 55.143 23.429 23.143 56q0 32-23.143 54.857t-55.143 22.857q-32.571 0-56-22.857t-23.429-54.857zM888.571 106.286q0 25.714 18.286 44t44 18.286 44-18.286 18.286-44-18.286-44-44-18.286-44 18.286-18.286 44zM955.429 396q74.857 60 101.714 136 32.571-26.286 32.571-66.857 0-35.429-24.857-60.286t-60.286-24.857q-28 0-49.143 16z" + ], + "width": 1134, + "tags": [ + "reddit" + ], + "defaultCode": 61857, + "grid": 14, + "matchesSearch": false + }, + { + "id": 378, + "paths": [ + "M0 767.429v-510.857q0-76 53.714-129.714t129.143-53.714h512q75.429 0 129.143 53.714t53.714 129.714v510.857q0 76-53.714 129.714t-129.143 53.714h-512q-75.429 0-129.143-53.714t-53.714-129.714zM88.571 472.571q0 21.143 11.143 38.571t30 26q-4 14.286-4 30.857 0 56 42.286 103.714t115.143 75.429 159.143 27.714q85.714 0 158.571-27.714t115.143-75.429 42.286-103.714q0-15.429-3.429-30.857 20-8 32.571-26t12.571-40.286q0-29.143-20.571-50t-49.714-20.857q-34.286 0-56 27.429-86.286-61.143-214.286-65.714l47.429-151.429 117.714 28q0.571 28.571 20.857 48.571t48.286 20q28.571 0 49.143-20.286t20.571-48.857-20.571-49.143-49.143-20.571q-20.571 0-37.714 11.714t-25.714 30.571l-129.714-30.857q-5.143-1.143-10 1.429t-6.571 8.286l-54.286 172.571q-128 2.286-217.714 64.571-20.571-24.571-53.143-24.571-29.143 0-49.714 20.857t-20.571 50zM281.714 527.429q0-21.143 14.857-36t36-14.857 36 14.857 14.857 36-14.857 36.571-36 15.429-36-15.429-14.857-36.571zM320 663.429q0-6.286 4.571-10.286 4-4 10-4t10 4q28 29.143 98.286 29.143h1.143q69.714 0 98.857-29.143 4-4 10-4t10 4 4 10.286-4 10.286q-37.143 36.571-118.857 36.571h-1.143q-81.714 0-118.286-36.571-4.571-4-4.571-10.286zM504 527.429q0-21.143 14.857-36t36-14.857 36 14.857 14.857 36-14.857 36.571-36 15.429-36-15.429-14.857-36.571zM653.143 237.714q0-17.143 12-29.143t28.571-12q17.143 0 29.143 12t12 29.143q0 16.571-12 28.571t-29.143 12q-16.571 0-28.571-12t-12-28.571z" + ], + "tags": [ + "reddit-square" + ], + "defaultCode": 61858, + "grid": 14, + "matchesSearch": false + }, + { + "id": 379, + "paths": [ + "M0 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286zM182.857 590.857q0 46.857 32.857 79.429t79.714 32.571q46.286 0 79.143-32.286t32.857-78v-160q0-10.857 7.714-18.857t19.143-8q10.857 0 18.571 8t7.714 18.857v30.857l34.286 16 51.429-15.429v-35.429q0-45.143-33.143-77.143t-78.857-32-78.857 31.714-33.143 76.857v161.714q0 11.429-8 19.143t-18.857 7.714-18.571-7.714-7.714-19.143v-68.571h-86.286v69.714zM460.571 592q0 45.714 33.143 78.286t79.429 32.571 79.143-32.571 32.857-79.429v-69.714h-85.714v72q0 11.429-7.714 19.143t-19.143 7.714q-10.857 0-18.571-8t-7.714-18.857v-70.286l-51.429 14.857-34.286-16v70.286z" + ], + "tags": [ + "stumbleupon-circle" + ], + "defaultCode": 61859, + "grid": 14, + "matchesSearch": false + }, + { + "id": 380, + "paths": [ + "M0 685.714v-152h187.429v149.714q0 24.571 17.143 41.429t41.143 16.857 41.143-16.857 17.143-41.429v-354.286q0-97.714 72.286-166.857t172.286-69.143q100.571 0 172.571 69.714t72 168v77.714l-111.429 33.143-74.857-34.857v-67.429q0-24-17.143-41.143t-41.143-17.143-41.143 17.143-17.143 41.143v349.714q0 100-72 170.857t-173.143 70.857q-101.714 0-173.429-71.714t-71.714-173.429zM606.857 688v-153.143l74.857 34.857 111.429-33.143v154.286q0 24 17.143 40.857t41.143 16.857 41.143-16.857 17.143-40.857v-157.143h187.429v152q0 101.714-71.714 173.429t-173.429 71.714q-101.143 0-173.143-71.143t-72-171.714z" + ], + "width": 1097, + "tags": [ + "stumbleupon" + ], + "defaultCode": 61860, + "grid": 14, + "matchesSearch": false + }, + { + "id": 381, + "paths": [ + "M0 786.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286zM36.571 512h402.286v402.286h274.286q53.143 0 90.571-37.429t37.429-90.571v-274.286h-402.286v-402.286h-274.286q-53.143 0-90.571 37.429t-37.429 90.571v274.286z" + ], + "tags": [ + "delicious" + ], + "defaultCode": 61861, + "grid": 14, + "matchesSearch": false + }, + { + "id": 382, + "paths": [ + "M0 722.857v-398.286h187.429v-163.429h116.571v561.714h-304zM117.143 629.143h70.286v-210.857h-70.286v210.857zM350.857 722.857h117.143v-398.286h-117.143v398.286zM350.857 277.714h117.143v-116.571h-117.143v116.571zM514.857 862.857v-93.143h187.429v-46.857h-187.429v-398.286h304.571v538.286h-304.571zM632 629.143h70.286v-210.857h-70.286v210.857zM866.286 862.857v-93.143h186.857v-46.857h-186.857v-398.286h304v538.286h-304zM982.857 629.143h70.286v-210.857h-70.286v210.857z" + ], + "width": 1170, + "tags": [ + "digg" + ], + "defaultCode": 61862, + "grid": 14, + "matchesSearch": false + }, + { + "id": 383, + "paths": [ + "M0 786.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286zM167.429 656l120.571-23.429v-117.714q31.429 10.857 66.286 10.857 71.429 0 122-54.286t50.571-130.857-50.571-130.857-122-54.286q-42.286 0-80.571 20.571h-106.286v480zM288 418.286v-158.286q16-9.714 40-9.714 30.286 0 52 25.714t21.714 62.286-21.714 62.571-52 26q-24.571 0-40-8.571zM363.429 900l120.571-23.429v-117.714q29.143 10.857 66.857 10.857 71.429 0 121.714-54.286t50.286-130.857-50.286-130.857-121.714-54.286q-11.429 0-22.286 1.714-13.143 44.571-44.571 77.714-49.714 54.286-120.571 57.714v363.429zM484 662.286v-158.286q16-9.714 40-9.714 30.286 0 52 26t21.714 62.571-21.714 62.286-52 25.714q-24.571 0-40-8.571z" + ], + "tags": [ + "pied-piper-square", + "pied-piper" + ], + "defaultCode": 61863, + "grid": 14, + "matchesSearch": false + }, + { + "id": 384, + "paths": [ + "M23.429 617.714q0-8.571 4.857-15.143t12.857-8.286l277.714-60.571q-4.571-8-4.571-14.286t3.143-10 9.143-6.571 11.429-4 13.143-2.571 10.571-2.571q2.286-0.571 8.857-4.286t10-3.714q8.571 0 16 9.143t11.429 18.857q93.143-21.143 98.286-21.143 9.714 0 16.857 6.286t7.143 16q0 8.571-4.857 14.857t-13.429 8l-104 22.857-0.571 9.143q-0.571 14.857 46.571 67.143t59.714 52.286q26.857 0 68-45.714t41.143-73.714q0-20.571-13.429-30.286t-29.143-10.571-29.143-6.571-13.429-19.429q0-9.143 5.714-19.429l-38.857-10.857q24.571-25.143 24.571-66.857 0-14.857-2.857-33.143 46.857-9.143 82.286-9.143 25.143 0 40.857 0.857t27.714 4.857 17.714 7.714 11.714 14 8.857 19.143 9.714 27.143 13.714 34.286l28.571-14.286q-1.714 22.857-13.143 34.286t-24.286 12-22.857 3.714-9.429 11.714l0.571 12q42.857-1.714 82 11.714t67.429 33.429 57.714 54 48 61.714 43.143 68.857q18.857 32 44.857 62.286t43.143 46 56.571 50.571q-27.429 17.143-62 32.857t-79.143 33.714-65.143 27.143q-25.143-21.143-42.286-65.714t-24.857-94-18.857-103.143-24.286-96.286-41.429-70.286-70-27.714l-5.714 1.143-3.429 2.286q2.286 2.857 7.429 8 3.429 2.857 16 13.429t14.571 12.571 10.857 10.286 10.286 11.714 6.571 12 6 15.714 2.571 17.714 2.286 23.143l0.571 18.857q0.571 14.857-1.429 32.857t-4.286 29.714-7.143 33.429-6.571 30.286q-20-0.571-57.714 5.429t-56 6q-22.286 0-41.143-5.714-1.143-9.143-1.143-26.857 0-42.286 1.714-54.857 1.143-7.429 18-23.714t32.571-33.714 15.143-29.429q-13.714-1.143-24.571 13.714-20.571 30.286-63.714 56.857t-78 26.571q-14.286 0-43.143-36t-60.857-79.714-48-55.143q-3.429-2.286-15.429-17.143-275.429 64-293.143 64-9.143 0-16-6.286t-6.857-15.429zM436.571 491.429q5.714-0.571 18.571-4t19.714-3.429q10.857 0 20 5.714l-54.857 11.429zM469.714 553.143l27.429-6.857 62.286 101.143-41.714 27.429zM490.857 372.571q9.143-17.143 20.571-26.571t30.857-16.857 37.429-20.571 26.286-20.857 28.571-31.429 24.857-28.857q6.857 5.143 16 18t18.286 20.857 21.714 7.429l6.857-0.571v43.429l12.571 0.571q141.143-54.286 212-108.571 16-12 28.571-22.286t24.286-21.429 18.857-17.714 16.857-19.429 13.714-17.714 14-21.143 13.143-21.714 15.429-27.143 16.857-30.286l4-5.143q-1.143 30.286-24.571 79.429-45.143 94.286-117.143 150.857t-174.857 81.143q-8 1.714-24 4.286t-28.571 5.429-22.286 8q1.714 10.857 14 26.286t12.286 19.429q0 6.286-14.857 17.143-2.857-2.857-7.714-8.857t-6.857-8.286-6-6.571-5.714-6l-4.571-4.571t-4.857-4.286-4.571-2.857-4.857-2.571q-4-1.714-8.286-2.857t-11.714-1.429-12.571-0.286h-40q-72 0-124 24.571zM606.286 852h17.714l5.714 47.429-23.429 6.857v-54.286zM606.286 922.857q22.286-14.857 75.143-27.143t83.714-12.286q5.143 0 12.857 8.857t16 24.286 14.857 28.571 13.714 29.143 8.286 18.857q-69.143 25.714-139.429 25.714-34.857 0-71.429-6.286zM637.714 861.143q12-1.143 34.571-4.857t41.143-5.714 34.571-2h8q1.714 8.571 1.714 9.143 0 4-10 8.286t-26.286 7.429-30.857 5.429-30.571 4.286-18.286 2.571zM1112.571 4.571l0.571-1.714 1.143-2.286-0.571 2.857zM1114.286 0.571v0zM1114.286 0.571l0.571-0.571z" + ], + "width": 1165, + "tags": [ + "pied-piper-alt" + ], + "defaultCode": 61864, + "grid": 14, + "matchesSearch": false + }, + { + "id": 385, + "paths": [ + "M0 580.571q0-50.857 11.143-98.571t28-83.143 40.286-67.714 44.857-53.714 44.857-39.714 36.857-26.571 24.286-14q8-4.571 29.143-15.143t31.143-16.286 27.429-17.143 34.571-25.143q20.571-16 33.143-41.429t17.143-71.714q73.714 88.571 106.286 110.286 25.143 16.571 74.286 38.857t73.714 37.714q12 7.429 22.286 14.286t34.571 26.571 43.429 40.286 42.857 54.286 39.429 69.714 26.857 84.857 11.143 101.429q0 93.714-35.429 174t-94.857 134.857-138.571 85.429-166 30.857-167.429-32.857-141.429-89.714-97.429-138-36.571-172.571zM190.286 731.429q-1.143 64 42.286 93.714 16.571 11.429 35.714 16.286t59.143 4.857q32.571 0 75.429-18.571t76.571-40.571 68.571-40.286 53.143-17.714q14.857 0.571 37.143 18t40.857 38.286 38.857 38.571 31.714 18.286q20 1.714 33.429-8t31.714-36q16-23.429 24.286-57.714t8.286-60.571q0-12.571-2.857-25.429t-9.429-25.714-19.429-20.857-30-8q-18.857 0-55.429 23.714t-73.714 47.714-57.714 24q-15.429 0.571-36.286-10.857t-43.429-28-47.714-33.143-57.143-28-63.429-10.857q-65.714 0.571-112.571 44.857t-48 102zM391.714 921.143q-0.286 5.714 4.286 11.429 19.429 18.286 50 26.286t58.571 7.143 56.571-2.571q23.429-2.286 48.286-11.714t37.143-17.143 16.286-11.714q6.857-6.857 4-16.571-2.857-10.857-13.714-2.857-17.143 12.571-49.714 22.286t-74.857 9.714q-73.714 0-110.286-28-2.857-2.286-7.429-2.286-6.286 0-14.857 6.857-4 3.429-4.286 9.143zM486.857 860q5.143 4.571 10 2.571t18-13.429q1.714-1.143 6-4.857t6-4.857 5.714-4 6.571-4 7.143-2.857 8.571-2.571 9.429-1.429 11.714-0.571q15.429 0 25.429 4.286t13.143 8.286 7.714 12.571q5.714 9.714 7.143 11.429t7.143-0.571q13.143-6.857 8-19.429-10.857-26.857-22.286-34.857-13.143-8.571-43.429-8.571-26.857 0-40.571 5.714-16.571 6.857-44.571 32-14.857 13.714-6.857 25.143z" + ], + "tags": [ + "drupal" + ], + "defaultCode": 61865, + "grid": 14, + "matchesSearch": false + }, + { + "id": 386, + "paths": [ + "M0 833.143q0-41.143 25.429-73.143t64.857-41.143q-12.571-49.143 0.571-98.857t50.286-86.857l6.857-6.857 86.286 86.857-6.286 6.286q-21.143 21.143-21.143 50.857t21.143 51.429q21.143 21.143 50.857 21.143t50.857-21.143l17.143-17.143 86.286-86.857 92-91.429 86.286 86.857-91.429 91.429-86.286 86.857-17.143 17.143q-37.143 36.571-86.571 49.714t-98 1.143q-9.143 40-41.143 65.714t-73.714 25.714q-48.571 0-82.857-34.571t-34.286-83.143zM1.143 190.857q0-48.571 34.286-83.143t82.857-34.571q43.429 0 76.286 28t39.714 70.286q48-11.429 96.857 2t85.429 50l6.857 6.857-86.857 86.857-6.857-6.857q-21.143-21.143-50.857-21.143t-50.857 21.143-21.143 51.143 21.143 51.143l194.857 194.857-86.286 86.857-92-91.429-86.286-86.857-17.143-17.143q-38.857-38.286-51.429-91.143t2.857-102.571q-40-8.571-65.714-40.571t-25.714-73.714zM254.857 418.857l92-91.429 86.857-86.857 16.571-17.143q38.286-38.286 90.857-51.143t101.714 2q6.286-42.857 39.143-72t77.429-29.143q48.571 0 82.857 34.571t34.286 83.143q0 44-29.143 77.143t-72.571 39.429q14.857 48.571 1.714 100.857t-51.429 90.571l-6.857 6.857-86.286-86.857 6.857-6.857q21.143-21.143 21.143-50.857t-21.143-50.857-50.857-21.143-50.857 21.143l-195.429 195.429zM443.429 424.571l86.857-86.857 178.286 178.286 16.571 17.143q36.571 36.571 50 86t1.429 98q43.429 6.286 72.286 39.143t28.857 76.857q0 48.571-34.286 83.143t-82.857 34.571q-42.286 0-74.857-26.857t-40.571-67.429q-49.143 16-102.571 3.429t-92.286-51.429l-6.286-6.857 86.286-86.857 6.857 6.857q21.143 21.143 50.857 21.143t50.857-21.143 21.143-50.857-21.143-50.857l-104-104z" + ], + "tags": [ + "joomla" + ], + "defaultCode": 61866, + "grid": 14, + "matchesSearch": false + }, + { + "id": 387, + "paths": [ + "M0 886.857v-616q1.714-5.143 2.286-5.714 2.857-3.429 11.429-6.286 60.571-20 85.143-28.571v-219.429l318.857 113.143q1.143 0 91.714-31.429t180.571-62 92.286-30.571q11.429 0 11.429 12v238.857l84 26.857v616.571l-442.286-140.571q-8 3.429-214.286 72.857t-210.286 69.429q-7.429 0-10.286-7.429 0-0.571-0.571-1.714zM22.286 869.143l396.571-132.571v-589.714l-396.571 133.143v589.143zM84 710.286q3.429-2.286 46.857-52.571 12-13.714 48.857-65.714t44.857-67.429q9.714-17.143 29.143-56.286t20.571-44.286q-4.571-0.571-62.857 18.857-4.571 1.143-15.714 4.286t-19.714 5.429-9.714 2.857q-1.143 1.143-1.143 6t-0.571 5.429q-2.857 5.714-17.714 8.571-13.143 4-26.857 0-10.286-2.286-16-12-2.286-3.429-2.857-13.143 3.429-1.143 14-2.857t16.857-3.429q33.143-9.143 60-18.286 57.143-20 58.286-20 5.714-1.143 24.571-11.143t25.143-12.286q5.143-1.714 12.286-4.571t8.286-3.143 3.429 0.286q1.143 6.857-0.571 18.857 0 1.143-7.143 15.429t-15.143 30.571-9.714 19.143q-14.286 28.571-44 74.857l36.571 16q6.857 3.429 42.571 18.286t38.571 16q2.286 0.571 6 14.571t2.571 17.429q-0.571 1.714-7.143-0.286t-18-6.571l-11.429-5.143q-25.143-11.429-49.714-28-4-2.857-23.429-18t-21.714-16.286q-38.286 58.857-76.571 103.429-46.286 54.286-60 62.857-2.286 1.143-11.143 2.286t-10.571 0zM153.143 344.571l0.571-1.714q1.714 1.714 11.143 2.857t15.143 0 33.143-9.143q20.571-6.857 31.429-8 9.714 0 12 9.714 1.714 8.571-2.286 16-6.857 13.143-28.571 21.714-17.143 6.857-34.286 6.857-14.857-1.714-28-14.857-8-8.571-10.286-23.429zM177.143 944q0-4.571 2.857-7.714t7.429-3.143q2.286 0 10.286 4.286t17.429 9.429 11.714 6.286q41.714 21.143 91.143 35.143t90 14q54.286 0 95.429-8.286t89.714-28.857q8.571-4 17.429-8.857t19.429-10.857 16.286-9.429l-24.571-41.714 90.286 7.429-30.857 91.429-22.857-37.714q-74.286 47.429-157.714 61.714-33.143 6.857-52 6.857h-48q-45.143 0-114-22.286t-104.857-48.571q-4.571-4-4.571-9.143zM444 138.286l327.429 105.143v-217.143zM505.714 618.857l58.286 17.714 25.714-62.857 120.571 37.143 21.143 77.143 58.286 17.714-103.429-375.429-57.143-17.714zM612 517.714l43.429-105.714 36 129.714z" + ], + "tags": [ + "language" + ], + "defaultCode": 61867, + "grid": 14, + "matchesSearch": false + }, + { + "id": 388, + "paths": [ + "M0 932.571v-621.714q0-37.714 26.857-64.571t64.571-26.857h73.143q37.714 0 64.571 26.857t26.857 64.571v621.714q0 37.714-26.857 64.571t-64.571 26.857h-73.143q-37.714 0-64.571-26.857t-26.857-64.571zM292.571 932.571v-877.714q0-22.857 16-38.857t38.857-16h384q22.857 0 50.286 11.429t43.429 27.429l86.857 86.857q16 16 27.429 43.429t11.429 50.286v93.143q33.143 19.429 53.143 53.143t20 73.143v438.857q0 60.571-42.857 103.429t-103.429 42.857h-493.714q-37.714 0-64.571-26.857t-26.857-64.571zM365.714 365.714h512v-146.286h-91.429q-22.857 0-38.857-16t-16-38.857v-91.429h-365.714v292.571zM420.571 877.714q0 8 5.143 13.143t13.143 5.143h73.143q8 0 13.143-5.143t5.143-13.143v-73.143q0-8-5.143-13.143t-13.143-5.143h-73.143q-8 0-13.143 5.143t-5.143 13.143v73.143zM420.571 731.429q0 8 5.143 13.143t13.143 5.143h73.143q8 0 13.143-5.143t5.143-13.143v-73.143q0-8-5.143-13.143t-13.143-5.143h-73.143q-8 0-13.143 5.143t-5.143 13.143v73.143zM420.571 585.143q0 8 5.143 13.143t13.143 5.143h73.143q8 0 13.143-5.143t5.143-13.143v-73.143q0-8-5.143-13.143t-13.143-5.143h-73.143q-8 0-13.143 5.143t-5.143 13.143v73.143zM566.857 877.714q0 8 5.143 13.143t13.143 5.143h73.143q8 0 13.143-5.143t5.143-13.143v-73.143q0-8-5.143-13.143t-13.143-5.143h-73.143q-8 0-13.143 5.143t-5.143 13.143v73.143zM566.857 731.429q0 8 5.143 13.143t13.143 5.143h73.143q8 0 13.143-5.143t5.143-13.143v-73.143q0-8-5.143-13.143t-13.143-5.143h-73.143q-8 0-13.143 5.143t-5.143 13.143v73.143zM566.857 585.143q0 8 5.143 13.143t13.143 5.143h73.143q8 0 13.143-5.143t5.143-13.143v-73.143q0-8-5.143-13.143t-13.143-5.143h-73.143q-8 0-13.143 5.143t-5.143 13.143v73.143zM713.143 877.714q0 8 5.143 13.143t13.143 5.143h73.143q8 0 13.143-5.143t5.143-13.143v-73.143q0-8-5.143-13.143t-13.143-5.143h-73.143q-8 0-13.143 5.143t-5.143 13.143v73.143zM713.143 731.429q0 8 5.143 13.143t13.143 5.143h73.143q8 0 13.143-5.143t5.143-13.143v-73.143q0-8-5.143-13.143t-13.143-5.143h-73.143q-8 0-13.143 5.143t-5.143 13.143v73.143zM713.143 585.143q0 8 5.143 13.143t13.143 5.143h73.143q8 0 13.143-5.143t5.143-13.143v-73.143q0-8-5.143-13.143t-13.143-5.143h-73.143q-8 0-13.143 5.143t-5.143 13.143v73.143z" + ], + "tags": [ + "fax" + ], + "defaultCode": 61868, + "grid": 14, + "matchesSearch": false + }, + { + "id": 389, + "paths": [ + "M0 987.429v-950.857q0-14.857 10.857-25.714t25.714-10.857h731.429q14.857 0 25.714 10.857t10.857 25.714v950.857q0 14.857-10.857 25.714t-25.714 10.857h-731.429q-14.857 0-25.714-10.857t-10.857-25.714zM146.286 786.286q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143v-36.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v36.571zM146.286 640q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143v-36.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v36.571zM146.286 493.714q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143v-36.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v36.571zM146.286 347.429q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143v-36.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v36.571zM146.286 201.143q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143v-36.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v36.571zM292.571 822.857v109.714q0 8 5.143 13.143t13.143 5.143h182.857q8 0 13.143-5.143t5.143-13.143v-109.714q0-8-5.143-13.143t-13.143-5.143h-182.857q-8 0-13.143 5.143t-5.143 13.143zM292.571 640q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143v-36.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v36.571zM292.571 493.714q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143v-36.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v36.571zM292.571 347.429q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143v-36.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v36.571zM292.571 201.143q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143v-36.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v36.571zM438.857 640q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143v-36.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v36.571zM438.857 493.714q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143v-36.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v36.571zM438.857 347.429q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143v-36.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v36.571zM438.857 201.143q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143v-36.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v36.571zM585.143 786.286q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143v-36.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v36.571zM585.143 640q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143v-36.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v36.571zM585.143 493.714q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143v-36.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v36.571zM585.143 347.429q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143v-36.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v36.571zM585.143 201.143q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143v-36.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v36.571z" + ], + "tags": [ + "building" + ], + "defaultCode": 61869, + "grid": 14, + "matchesSearch": false + }, + { + "id": 390, + "paths": [ + "M36.571 274.286q0-22.857 16-38.857t38.857-16 38.857 16l130.286 130.286h210.286l130.286-130.286q16-16 38.857-16t38.857 16 16 38.857-16 38.857l-166.857 166.857v470.857q0 26.286-18.857 45.143t-45.143 18.857-45.143-18.857-18.857-45.143v-219.429h-36.571v219.429q0 26.286-18.857 45.143t-45.143 18.857-45.143-18.857-18.857-45.143v-470.857l-166.857-166.857q-16-16-16-38.857zM237.714 219.429q0-53.143 37.429-90.571t90.571-37.429 90.571 37.429 37.429 90.571-37.429 90.571-90.571 37.429-90.571-37.429-37.429-90.571z" + ], + "width": 731, + "tags": [ + "child" + ], + "defaultCode": 61870, + "grid": 14, + "matchesSearch": false + }, + { + "id": 391, + "paths": [ + "M0 464q0-45.714 24-79.714t68-34q43.429 0 80.857 31.714t57.429 76.571 20 87.143q0 45.714-24 79.429t-68 33.714q-43.429 0-80.857-31.714t-57.429-76.286-20-86.857zM146.286 866.857q0-49.143 32-109.429t79.714-110 107.143-83.429 110.286-33.714q67.429 0 145.714 55.714t130.857 135.429 52.571 145.429q0 26.286-9.714 43.714t-27.714 25.714-36.857 11.429-43.429 3.143q-38.857 0-107.143-25.714t-104.286-25.714q-37.714 0-110 25.429t-114.571 25.429q-104.571 0-104.571-83.429zM190.286 213.143q0-34.286 10.857-64.857t36-52.857 60-22.286q44 0 79.143 32.857t52.286 77.143 17.143 86.571q0 34.286-10.857 64.857t-36 52.857-60 22.286q-43.429 0-78.857-32.857t-52.571-77.429-17.143-86.286zM505.143 269.714q0-42.286 17.143-86.571t52.286-77.143 79.143-32.857q34.857 0 60 22.286t36 52.857 10.857 64.857q0 41.714-17.143 86.286t-52.571 77.429-78.857 32.857q-34.857 0-60-22.286t-36-52.857-10.857-64.857zM700.571 545.714q0-42.286 20-87.143t57.429-76.571 80.857-31.714q44 0 68 34t24 79.714q0 42.286-20 86.857t-57.429 76.286-80.857 31.714q-44 0-68-33.714t-24-79.429z" + ], + "width": 951, + "tags": [ + "paw" + ], + "defaultCode": 61872, + "grid": 14, + "matchesSearch": false + }, + { + "id": 392, + "paths": [ + "M36.571 301.714q0-73.143 24.286-142.571t67.143-114.286 91.429-44.857 91.429 44.857 67.143 114.286 24.286 142.571q0 82.857-32.571 139.143t-86.857 77.429l25.714 469.143q1.143 14.857-9.143 25.714t-25.143 10.857h-109.714q-14.857 0-25.143-10.857t-9.143-25.714l25.714-469.143q-54.286-21.143-86.857-77.429t-32.571-139.143z" + ], + "width": 439, + "tags": [ + "spoon" + ], + "defaultCode": 61873, + "grid": 14, + "matchesSearch": false + }, + { + "id": 393, + "paths": [ + "M0 731.429v-438.857q0-22.857 13.143-41.714t34.857-26.857l402.286-146.286q12.571-4.571 25.143-4.571t25.143 4.571l402.286 146.286q21.714 8 34.857 26.857t13.143 41.714v438.857q0 20-10.286 37.143t-28 26.857l-402.286 219.429q-16 9.143-34.857 9.143t-34.857-9.143l-402.286-219.429q-17.714-9.714-28-26.857t-10.286-37.143zM76.571 291.429l398.857 145.143 398.857-145.143-398.857-145.143zM512 930.857l365.714-199.429v-363.429l-365.714 133.143v429.714z" + ], + "tags": [ + "cube" + ], + "defaultCode": 61874, + "grid": 14, + "matchesSearch": false + }, + { + "id": 394, + "paths": [ + "M0 822.857v-237.714q0-21.714 12.286-40t32.286-27.429l248-106.286v-228.571q0-21.714 12.286-40t32.286-27.429l256-109.714q13.143-5.714 28.571-5.714t28.571 5.714l256 109.714q20 9.143 32.286 27.429t12.286 40v228.571l248 106.286q20.571 9.143 32.571 27.429t12 40v237.714q0 20.571-10.857 38.286t-29.714 26.857l-256 128q-14.286 8-32.571 8t-32.571-8l-256-128q-2.857-1.143-4-2.286-1.143 1.143-4 2.286l-256 128q-14.286 8-32.571 8t-32.571-8l-256-128q-18.857-9.143-29.714-26.857t-10.857-38.286zM98.286 574.286l230.857 98.857 230.857-98.857-230.857-98.857zM365.714 932.571l219.429-109.714v-179.429l-219.429 93.714v195.429zM369.714 181.143l252 108 252-108-252-108zM658.286 505.714l219.429-94.286v-152l-219.429 93.714v152.571zM683.429 574.286l230.857 98.857 230.857-98.857-230.857-98.857zM950.857 932.571l219.429-109.714v-179.429l-219.429 93.714v195.429z" + ], + "width": 1317, + "tags": [ + "cubes" + ], + "defaultCode": 61875, + "grid": 14, + "matchesSearch": false + }, + { + "id": 395, + "paths": [ + "M0 865.143v-720h339.429q49.714 0 88.571 8t72.286 27.143 51.429 55.143 18 88q0 103.429-98.286 150.286 65.143 18.286 98.286 65.714t33.143 116.571q0 42.857-14 78t-37.714 59.143-56.286 40.571-69.143 24-76.571 7.429h-349.143zM158.286 742.857h169.143q117.143 0 117.143-95.429 0-102.857-113.714-102.857h-172.571v198.286zM158.286 436h160.571q44.571 0 70.571-20.857t26-64.857q0-82.286-108.571-82.286h-148.571v168zM649.714 605.143q0-118.857 74.571-197.429t192.286-78.571q78.857 0 137.429 38.857t87.429 102.286 28.857 141.714q0 9.714-1.143 26.857h-376q0 63.429 32.857 98t95.143 34.571q36 0 69.714-18.286t43.429-49.714h126.286q-57.143 175.429-244 175.429-122.286 0-194.571-75.429t-72.286-198.286zM764 264.571h292v-70.857h-292v70.857zM793.143 548.571h233.143q-10.286-111.429-114.286-111.429-51.429 0-83.429 30t-35.429 81.429z" + ], + "width": 1170, + "tags": [ + "behance" + ], + "defaultCode": 61876, + "grid": 14, + "matchesSearch": false + }, + { + "id": 396, + "paths": [ + "M0 786.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286zM73.143 732.571h218.286q66.857 0 112.571-32.857t45.714-97.429q0-90.286-81.714-114.286 61.143-29.714 61.143-93.714 0-32.571-11.143-55.143t-32.286-34.571-45.143-16.857-55.429-4.857h-212v449.714zM172 656v-124h108q70.857 0 70.857 64.571 0 59.429-73.143 59.429h-105.714zM172 464.571v-105.143h93.143q68 0 68 51.429 0 53.714-60.571 53.714h-100.571zM478.857 570.286q0 77.143 45.143 124t121.714 46.857q117.143 0 152.571-109.143h-78.857q-6.286 19.429-27.143 30.857t-43.143 11.429q-38.857 0-59.429-21.714t-20.571-61.143h234.857q0.571-5.714 0.571-17.143 0-75.429-42.571-126t-116.286-50.571q-73.143 0-120 49.143t-46.857 123.429zM550.857 357.143v-44h182.286v44h-182.286zM569.143 534.857q2.286-32 22.286-50.857t52-18.857q64.571 0 70.857 69.714h-145.143z" + ], + "tags": [ + "behance-square" + ], + "defaultCode": 61877, + "grid": 14, + "matchesSearch": false + }, + { + "id": 397, + "paths": [ + "M0 441.143q0-49.143 34.857-83.714t83.429-34.571q41.714 0 74.286 26.286t41.714 66.857l447.429 180q28-16.571 60.571-16.571 8 0 12 0.571l98.857-141.714q0.571-65.143 46.857-111.143t111.429-46q65.714 0 112.286 46.286t46.571 112-46.571 112.286-112.286 46.571l-151.429 110.857q-4.571 45.714-38.571 76.286t-79.143 30.571q-41.714 0-74.286-26.286t-41.714-66.857l-447.429-180q-29.143 17.143-60.571 17.143-48.571 0-83.429-34.857t-34.857-84zM31.429 441.143q0 36.571 25.429 62t61.429 25.429q6.286 0 18.857-2.286l-36.571-14.857q-18.857-8-30-25.429t-11.143-38q0-28.571 20.286-48.857t48.857-20.286q11.429 0 23.429 4.571v-0.571l43.429 17.714q-11.429-21.143-32.286-33.714t-44.857-12.571q-36 0-61.429 25.429t-25.429 61.429zM665.143 738.286q10.857 21.143 31.714 33.714t45.429 12.571q36 0 61.429-25.429t25.429-61.429-25.429-61.714-61.429-25.714q-7.429 0-18.857 2.286 1.143 0.571 11.429 4.571t12.286 4.857 10.571 4.857 10.857 5.714 9.143 6.286 8.857 7.714 6.286 8.286 5.714 10.286 2.857 12 1.429 14.286q0 28.571-20.286 48.857t-48.857 20.286q-8 0-18-2.571t-16.571-5.143-18-7.714-16-6.857zM905.143 439.429q0 44 31.143 75.143t75.143 31.143 75.429-31.143 31.429-75.143-31.429-75.143-75.429-31.143q-43.429 0-74.857 31.143t-31.429 75.143zM927.429 439.429q0-35.429 24.857-60.286t59.714-24.857 60 25.143 25.143 60-24.857 59.714-60.286 24.857q-34.857 0-59.714-24.857t-24.857-59.714z" + ], + "width": 1170, + "tags": [ + "steam" + ], + "defaultCode": 61878, + "grid": 14, + "matchesSearch": false + }, + { + "id": 398, + "paths": [ + "M0 786.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286zM73.143 481.714q0 30.286 21.714 52t52.571 21.714q20.571 0 37.714-10.286l279.429 112.571q5.714 25.143 26 41.714t46.571 16.571q28.571 0 49.429-19.429t23.714-47.429l95.429-69.714q40.571 0 69.714-28.857t29.143-70-29.143-70.286-69.714-29.143q-41.143 0-70 28.857t-29.429 69.429l-61.714 88.571q-1.143 0-3.714-0.286t-3.714-0.286q-20 0-38.286 10.857l-279.429-112.571q-5.714-25.143-26-41.714t-46-16.571q-30.857 0-52.571 21.714t-21.714 52.571zM92.571 481.714q0-22.857 16-38.857t38.857-16q15.429 0 28.286 8t19.714 21.143l-27.429-10.857q-16.571-6.286-32.286 1.143t-22 23.429q-6.857 16.571-0.286 32.571t22.571 22.857v0.571l22.857 9.143q-8 1.143-11.429 1.143-22.857 0-38.857-15.714t-16-38.571zM488.571 666.857q2.857 1.143 26.857 10.857 16.571 6.857 33.143-0.286t23.429-23.714q6.286-16.571-0.571-32.857t-23.429-23.143l-22.857-9.143q8-1.143 12-1.143 22.286 0 38.286 15.714t16 38.571-16 38.571-38.286 15.714q-33.714 0-48.571-29.143zM638.857 480.571q0-27.429 19.429-46.857t47.429-19.429q27.429 0 46.857 19.429t19.429 46.857-19.429 46.857-46.857 19.429q-28 0-47.429-19.429t-19.429-46.857zM652.571 480q0 22.286 15.714 37.714t37.429 15.429 37.429-15.429 15.714-37.714q0-21.714-15.714-37.429t-37.429-15.714-37.429 15.714-15.714 37.429z" + ], + "tags": [ + "steam-square" + ], + "defaultCode": 61879, + "grid": 14, + "matchesSearch": false + }, + { + "id": 399, + "paths": [ + "M9.143 323.429l247.429 9.714 102.857 216.571-84-52.571q-36 41.143-63.714 82.571t-41.429 71.429-22.571 54-10.571 36l-2.286 12-108.571-204q-9.714-14.857-10.286-32t3.429-26.857l4.571-10.286q20-36 65.143-107.429zM154.571 787.429q-2-16 2.286-37.143t6.857-31.429 12.286-36.571 10.857-30.286q44.571 6.857 290.857 16l-8.571 210.286-1.143 12.571-240-16.571q-20.571-1.714-38.286-18t-26.857-37.429q-6.286-15.429-8.286-31.429zM168 235.429l128.571-203.429q11.429-17.714 34.286-25.714t45.714-5.714q13.714 1.143 27.714 6.857t24 12 23.714 18.857 20.571 19.714 20.571 22.571 18.286 20q-26.857 36-151.429 248.571l-181.143-106.857zM446.857 6.857l231.429 0.571q17.714-1.714 33.143 6t22.286 16.286l6.286 8.571q22.286 34.857 64 108.571l81.143-47.429-125.714 213.143-239.429-11.429 86.286-49.143q-19.429-50.857-42.857-94.857t-43.143-70.571-36.857-45.714-26.857-26.571zM544.571 765.143l120.571-206.857 4 98.857q97.143 9.143 161.714 2.857t97.143-18.857l32-12.571-107.429 205.143q-6.857 16.571-20.857 26.571t-24.857 11.714l-10.286 2.286q-40.571 4-125.143 6.857l4.571 93.714zM696 393.714l178.857-111.429 10.857-6.286 121.143 207.429q10.286 21.143 7.143 43.429t-15.714 42.286q-7.429 11.429-18.857 21.143t-21.714 16-27.714 12.571-26.857 9.143-29.429 8-26.286 6.857q-19.429-41.143-151.429-249.143z" + ], + "tags": [ + "recycle" + ], + "defaultCode": 61880, + "grid": 14, + "matchesSearch": false + }, + { + "id": 400, + "paths": [ + "M0 786.286v-219.429q0-53.143 37.429-90.571t90.571-37.429h16l60-239.429q13.143-53.714 59.429-90t102.286-36.286h402.286q56 0 102.286 36.286t59.429 90l60 239.429h16q53.143 0 90.571 37.429t37.429 90.571v219.429q0 8-5.143 13.143t-13.143 5.143h-73.143v73.143q0 45.714-32 77.714t-77.714 32-77.714-32-32-77.714v-73.143h-530.286v73.143q0 45.714-32 77.714t-77.714 32-77.714-32-32-77.714v-73.143h-54.857q-8 0-13.143-5.143t-5.143-13.143zM91.429 621.714q0 37.714 26.857 64.571t64.571 26.857 64.571-26.857 26.857-64.571-26.857-64.571-64.571-26.857-64.571 26.857-26.857 64.571zM294.857 438.857h544l-50.857-204q-1.143-4.571-8-10t-12-5.429h-402.286q-5.143 0-12 5.429t-8 10zM841.143 621.714q0 37.714 26.857 64.571t64.571 26.857 64.571-26.857 26.857-64.571-26.857-64.571-64.571-26.857-64.571 26.857-26.857 64.571z" + ], + "width": 1134, + "tags": [ + "automobile", + "car" + ], + "defaultCode": 61881, + "grid": 14, + "matchesSearch": false + }, + { + "id": 401, + "paths": [ + "M0 859.429v-219.429q0-53.143 37.429-90.571t90.571-37.429h16l60-239.429q13.143-53.714 59.429-90t102.286-36.286h73.143v-128q0-8 5.143-13.143t13.143-5.143h256q8 0 13.143 5.143t5.143 13.143v128h36.571q56 0 102.286 36.286t59.429 90l60 239.429h16q53.143 0 90.571 37.429t37.429 90.571v219.429q0 8-5.143 13.143t-13.143 5.143h-73.143v36.571q0 45.714-32 77.714t-77.714 32-77.714-32-32-77.714v-36.571h-530.286v36.571q0 45.714-32 77.714t-77.714 32-77.714-32-32-77.714v-36.571h-54.857q-8 0-13.143-5.143t-5.143-13.143zM91.429 694.857q0 37.714 26.857 64.571t64.571 26.857 64.571-26.857 26.857-64.571-26.857-64.571-64.571-26.857-64.571 26.857-26.857 64.571zM294.857 512h544l-50.857-204q-1.143-4.571-8-10t-12-5.429h-402.286q-5.143 0-12 5.429t-8 10zM841.143 694.857q0 37.714 26.857 64.571t64.571 26.857 64.571-26.857 26.857-64.571-26.857-64.571-64.571-26.857-64.571 26.857-26.857 64.571z" + ], + "width": 1134, + "tags": [ + "cab", + "taxi" + ], + "defaultCode": 61882, + "grid": 14, + "matchesSearch": false + }, + { + "id": 402, + "paths": [ + "M18.286 841.143q0-14.857 10.857-25.714l229.714-230.286h-130.857q-14.857 0-25.714-10.857t-10.857-25.714 10.857-25.714l229.714-230.286h-112.571q-14.857 0-25.714-10.857t-10.857-25.714 10.857-25.714l219.429-219.429q10.857-10.857 25.714-10.857t25.714 10.857l219.429 219.429q10.857 10.857 10.857 25.714t-10.857 25.714-25.714 10.857h-112.571l229.714 230.286q10.857 10.857 10.857 25.714t-10.857 25.714-25.714 10.857h-130.857l229.714 230.286q10.857 10.857 10.857 25.714t-10.857 25.714-25.714 10.857h-264q0.571 9.714 3.429 50t2.857 62q0 14.286-10.286 24.286t-24.571 10h-182.857q-14.286 0-24.571-10t-10.286-24.286q0-21.714 2.857-62t3.429-50h-264q-14.857 0-25.714-10.857t-10.857-25.714z" + ], + "tags": [ + "tree" + ], + "defaultCode": 61883, + "grid": 14, + "matchesSearch": false + }, + { + "id": 403, + "paths": [ + "M0 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286zM135.429 371.429q0 17.714 11.714 29.714t29.429 12q6.286 0 22.857-4.571 76-21.143 175.429-21.143 90.857 0 176.857 19.429t144.857 54.286q12 6.857 22.857 6.857 16.571 0 28.857-11.714t12.286-29.429q0-26.857-22.857-40-72-41.714-167.429-63.143t-196-21.429q-116.571 0-208 26.857-13.143 4-22 14.571t-8.857 27.714zM165.143 513.714q0 14.286 10 24.286t24.286 10q4 0 21.143-4.571 69.714-18.857 143.429-18.857 159.429 0 278.857 70.857 13.714 7.429 21.714 7.429 14.286 0 24.286-10t10-24.286q0-22.857-20-34.857-135.429-80.571-313.143-80.571-87.429 0-173.143 24-27.429 7.429-27.429 36.571zM183.429 645.714q0 11.429 7.714 19.714t20.286 8.286q2.857 0 21.143-4.571 75.429-15.429 138.857-15.429 129.143 0 226.857 58.857 10.857 6.286 18.857 6.286 10.857 0 18.857-7.714t8-19.714q0-18.286-17.143-29.143-110.286-65.714-255.429-65.714-76 0-164 19.429-24 5.143-24 29.714z" + ], + "tags": [ + "spotify" + ], + "defaultCode": 61884, + "grid": 14, + "matchesSearch": false + }, + { + "id": 404, + "paths": [ + "M0 871.429v-718.857q0-33.143 23.143-56.286t56.286-23.143h718.857q33.143 0 56.286 23.143t23.143 56.286v718.857q0 33.143-23.143 56.286t-56.286 23.143h-718.857q-33.143 0-56.286-23.143t-23.143-56.286zM40.571 871.429q0 16 11.429 27.429t27.429 11.429h718.857q16 0 27.429-11.429t11.429-27.429v-718.857q0-16-11.429-27.429t-27.429-11.429h-718.857q-16 0-27.429 11.429t-11.429 27.429v718.857zM69.143 871.429v-80.571l406.286-111.429-121.143-250.857q2.286-0.571 6.857-1.429t6.857-0.857q97.143-18.286 173.429-12.286t126.286 26.286 82 54q15.429 16-14.286 24-36.571 9.143-146.286 35.429l-55.429-113.143q-63.429-4-137.143 9.143l107.429 221.143 304.571-82.857v283.429q0 4-3.143 7.143t-7.143 3.143h-718.857q-4 0-7.143-3.143t-3.143-7.143zM69.143 472.571v-320q0-4 3.143-7.143t7.143-3.143h718.857q4 0 7.143 3.143t3.143 7.143v244.571q-48.571-17.143-107.429-29.714-168-36.571-368.571-6.857l-10.286 1.714-37.143-76.571h-133.143l48.571 108.571q-75.429 29.143-131.429 78.286zM140.571 641.714q-13.714-116 94.857-174.286l73.714 154.286-145.714 34.857q-8 1.714-14.857-2.571t-8-12.286z" + ], + "tags": [ + "deviantart" + ], + "defaultCode": 61885, + "grid": 14, + "matchesSearch": false + }, + { + "id": 405, + "paths": [ + "M0 646.286l9.714-73.143q1.143-5.143 5.143-5.143t5.143 5.143l11.429 73.143-11.429 72q-1.143 5.143-5.143 5.143t-5.143-5.143zM45.143 646.286l13.143-118.286q0-5.143 5.143-5.143 4.571 0 5.714 5.143l14.857 118.286-14.857 116q-1.143 5.143-5.714 5.143-5.143 0-5.143-5.714zM96.571 646.286l12-140q1.143-6.857 6.857-6.857 6.286 0 6.286 6.857l14.286 140-14.286 135.429q0 6.286-6.286 6.286-5.714 0-6.857-6.286zM148 646.286l12-144q0-7.429 7.429-7.429 6.857 0 8 7.429l13.143 144-13.143 139.429q-1.143 7.429-8 7.429-7.429 0-7.429-7.429zM200 646.286l11.429-133.714q0-3.429 2.571-6t6-2.571q8 0 9.143 8.571l12 133.714-12 140.571q-1.143 9.143-9.143 9.143-3.429 0-6-2.571t-2.571-6.571zM252.571 646.286l10.286-217.143q1.143-10.286 10.286-10.286 4 0 6.857 3.143t2.857 7.143l12 217.143-12 140.571q0 4-2.857 7.143t-6.857 3.143q-9.143 0-10.286-10.286zM305.143 647.429l9.143-267.429q1.143-10.857 11.429-10.857 4.571 0 7.714 3.143t3.143 7.714l10.857 267.429-10.857 139.429q0 4.571-3.143 7.714t-7.714 3.143q-10.286 0-11.429-10.857zM358.857 646.286l9.143-289.143q0-5.143 3.714-8.857t8.286-3.714q5.143 0 8.571 3.714t4 8.857l10.286 289.143-10.286 138.286q-1.143 12-12.571 12-10.857 0-12-12zM413.143 646.286l8 137.714q0.571 5.714 4.286 9.429t8.857 3.714q12.571 0 13.714-13.143l9.143-137.714-9.143-298.857q-0.571-5.714-4.286-9.714t-9.429-4q-5.143 0-9.143 4t-4 9.714zM466.857 646.286l8-291.429q0-6.286 4.286-10.286t10-4 10 4 4.286 10.286l8.571 291.429-8.571 136.571q0 5.714-4.286 10t-10 4.286-9.714-4-4.571-10.286zM521.714 646.857l6.857-281.143q0.571-6.857 5.143-11.429t10.857-4.571 10.571 4.571 4.857 11.429l8 281.143-8 134.857q0 6.286-4.571 10.857t-10.857 4.571-10.857-4.571-5.143-10.857zM577.143 646.286q0 0.571 6.286 134.857v0.571q0 5.714 3.429 9.714 5.143 6.286 13.143 6.286 6.286 0 11.429-5.143 5.143-4 5.143-11.429l0.571-13.714 6.286-120.571-6.857-334.857q0-9.143-7.429-13.714-4.571-2.857-9.143-2.857t-9.143 2.857q-7.429 4.571-7.429 13.714l-0.571 3.429zM630.286 646.857l6.857-363.429v-1.714q1.143-8.571 6.857-13.714 5.143-4 11.429-4 4.571 0 8.571 2.857 8 4.571 9.143 14.857l8 365.143-8 132q0 7.429-5.143 12.571t-12.571 5.143-12.571-5.143-5.714-12.571l-3.429-65.143zM688 778.286v-513.714q0-13.143 16-18.857 48.571-19.429 103.429-19.429 111.429 0 193.143 75.143t91.429 184.857q30.286-12.571 62.857-12.571 66.857 0 114.286 47.429t47.429 114.857q0 66.857-47.429 114t-114.286 47.143h-449.143q-7.429-1.143-12.571-6.286t-5.143-12.571z" + ], + "width": 1317, + "tags": [ + "soundcloud" + ], + "defaultCode": 61886, + "grid": 14, + "matchesSearch": false + }, + { + "id": 406, + "paths": [ + "M0 877.714v-97.143q68 48 185.714 72.571t253.143 24.571 253.143-24.571 185.714-72.571v97.143q0 39.429-58.857 73.143t-160 53.429-220 19.714-220-19.714-160-53.429-58.857-73.143zM0 658.286v-97.143q68 48 185.714 72.571t253.143 24.571 253.143-24.571 185.714-72.571v97.143q0 39.429-58.857 73.143t-160 53.429-220 19.714-220-19.714-160-53.429-58.857-73.143zM0 438.857v-97.143q68 48 185.714 72.571t253.143 24.571 253.143-24.571 185.714-72.571v97.143q0 39.429-58.857 73.143t-160 53.429-220 19.714-220-19.714-160-53.429-58.857-73.143zM0 219.429v-73.143q0-39.429 58.857-73.143t160-53.429 220-19.714 220 19.714 160 53.429 58.857 73.143v73.143q0 39.429-58.857 73.143t-160 53.429-220 19.714-220-19.714-160-53.429-58.857-73.143z" + ], + "tags": [ + "database" + ], + "defaultCode": 61888, + "grid": 14, + "matchesSearch": false + }, + { + "id": 407, + "paths": [ + "M0 969.143v-914.286q0-22.857 16-38.857t38.857-16h512q22.857 0 50.286 11.429t43.429 27.429l178.286 178.286q16 16 27.429 43.429t11.429 50.286v658.286q0 22.857-16 38.857t-38.857 16h-768q-22.857 0-38.857-16t-16-38.857zM73.143 950.857h731.429v-585.143h-237.714q-22.857 0-38.857-16t-16-38.857v-237.714h-438.857v877.714zM146.857 843.429q5.143-22.857 32-52.286t75.429-55.143q8-5.143 13.143 3.429 1.143 1.143 1.143 2.286 29.714-48.571 61.143-112.571 38.857-77.714 59.429-149.714-13.714-46.857-17.429-91.143t3.714-72.857q6.286-22.857 24-22.857h12.571q13.143 0 20 8.571 10.286 12 5.143 38.857-1.143 3.429-2.286 4.571 0.571 1.714 0.571 4.571v17.143q-1.143 70.286-8 109.714 31.429 93.714 83.429 136 18.857 14.857 48 32 33.714-4 66.857-4 84 0 101.143 28 9.143 12.571 1.143 29.714 0 0.571-0.571 1.143l-1.143 1.143v0.571q-3.429 21.714-40.571 21.714-27.429 0-65.714-11.429t-74.286-30.286q-126.286 13.714-224 47.429-87.429 149.714-138.286 149.714-8.571 0-16-4l-13.714-6.857q-0.571-0.571-3.429-2.857-5.714-5.714-3.429-20.571zM181.714 846.857q29.714-13.714 78.286-90.286-29.143 22.857-50 48t-28.286 42.286zM338.286 698.857q77.143-30.857 162.286-46.286-1.143-0.571-7.429-5.429t-9.143-7.714q-43.429-38.286-72.571-100.571-15.429 49.143-47.429 112.571-17.143 32-25.714 47.429zM408 396.571q0.571-4 4-25.143 0-1.714 4-24.571 0.571-2.286 2.286-4.571-0.571-0.571-0.571-1.143t-0.286-0.857-0.286-0.857q-0.571-12.571-7.429-20.571 0 0.571-0.571 1.143v1.143q-8.571 24-1.143 75.429zM585.143 292.571h214.857q-5.714-16.571-12.571-23.429l-178.857-178.857q-6.857-6.857-23.429-12.571v214.857zM627.429 676q43.429 16 70.857 16 8 0 10.286-0.571 0-0.571-1.143-1.714-13.714-13.714-80-13.714z" + ], + "tags": [ + "file-pdf-o" + ], + "defaultCode": 61889, + "grid": 14, + "matchesSearch": false + }, + { + "id": 408, + "paths": [ + "M0 969.143v-914.286q0-22.857 16-38.857t38.857-16h512q22.857 0 50.286 11.429t43.429 27.429l178.286 178.286q16 16 27.429 43.429t11.429 50.286v658.286q0 22.857-16 38.857t-38.857 16h-768q-22.857 0-38.857-16t-16-38.857zM73.143 950.857h731.429v-585.143h-237.714q-22.857 0-38.857-16t-16-38.857v-237.714h-438.857v877.714zM133.143 500h40l93.714 377.714h90.857l73.143-277.143q4-11.429 5.714-26.286 1.143-9.143 1.143-13.714h2.286l1.714 13.714q0.571 1.714 2 11.429t3.143 14.857l73.143 277.143h90.857l93.714-377.714h40v-61.143h-171.429v61.143h51.429l-56.571 250.286q-2.857 11.429-4 26.286l-1.143 12h-2.286l-1.714-12q-0.571-2.857-2.286-12t-2.857-14.286l-82.286-311.429h-65.143l-82.286 311.429q-1.143 5.143-2.571 14t-2 12.286l-2.286 12h-2.286l-1.143-12q-1.143-14.857-4-26.286l-56.571-250.286h51.429v-61.143h-171.429v61.143zM585.143 292.571h214.857q-5.714-16.571-12.571-23.429l-178.857-178.857q-6.857-6.857-23.429-12.571v214.857z" + ], + "tags": [ + "file-word-o" + ], + "defaultCode": 61890, + "grid": 14, + "matchesSearch": false + }, + { + "id": 409, + "paths": [ + "M0 969.143v-914.286q0-22.857 16-38.857t38.857-16h512q22.857 0 50.286 11.429t43.429 27.429l178.286 178.286q16 16 27.429 43.429t11.429 50.286v658.286q0 22.857-16 38.857t-38.857 16h-768q-22.857 0-38.857-16t-16-38.857zM73.143 950.857h731.429v-585.143h-237.714q-22.857 0-38.857-16t-16-38.857v-237.714h-438.857v877.714zM245.143 877.714h160.571v-60.571h-42.857l58.857-92q2.857-4 5.714-9.429t4.286-7.714 2-2.286h1.143q0.571 2.286 2.857 5.714 1.143 2.286 2.571 4.286t3.429 4.571 3.714 4.857l61.143 92h-43.429v60.571h166.286v-60.571h-38.857l-109.714-156 111.429-161.143h38.286v-61.143h-159.429v61.143h42.286l-58.857 90.857q-2.286 4-5.714 9.429t-5.143 7.714l-1.143 1.714h-1.143q-0.571-2.286-2.857-5.714-3.429-6.286-9.714-13.143l-60.571-90.857h43.429v-61.143h-165.714v61.143h38.857l108 155.429-110.857 161.714h-38.857v60.571zM585.143 292.571h214.857q-5.714-16.571-12.571-23.429l-178.857-178.857q-6.857-6.857-23.429-12.571v214.857z" + ], + "tags": [ + "file-excel-o" + ], + "defaultCode": 61891, + "grid": 14, + "matchesSearch": false + }, + { + "id": 410, + "paths": [ + "M0 969.143v-914.286q0-22.857 16-38.857t38.857-16h512q22.857 0 50.286 11.429t43.429 27.429l178.286 178.286q16 16 27.429 43.429t11.429 50.286v658.286q0 22.857-16 38.857t-38.857 16h-768q-22.857 0-38.857-16t-16-38.857zM73.143 950.857h731.429v-585.143h-237.714q-22.857 0-38.857-16t-16-38.857v-237.714h-438.857v877.714zM237.714 877.714h186.857v-60.571h-53.143v-95.429h78.286q43.429 0 67.429-8.571 38.286-13.143 60.857-49.714t22.571-83.429q0-46.286-21.143-80.571t-57.143-49.714q-27.429-10.857-74.286-10.857h-210.286v61.143h52.571v317.143h-52.571v60.571zM371.429 657.143v-153.143h68.571q29.714 0 47.429 10.286 32 18.857 32 65.714 0 50.857-35.429 68.571-17.714 8.571-44.571 8.571h-68zM585.143 292.571h214.857q-5.714-16.571-12.571-23.429l-178.857-178.857q-6.857-6.857-23.429-12.571v214.857z" + ], + "tags": [ + "file-powerpoint-o" + ], + "defaultCode": 61892, + "grid": 14, + "matchesSearch": false + }, + { + "id": 411, + "paths": [ + "M0 969.143v-914.286q0-22.857 16-38.857t38.857-16h512q22.857 0 50.286 11.429t43.429 27.429l178.286 178.286q16 16 27.429 43.429t11.429 50.286v658.286q0 22.857-16 38.857t-38.857 16h-768q-22.857 0-38.857-16t-16-38.857zM73.143 950.857h731.429v-585.143h-237.714q-22.857 0-38.857-16t-16-38.857v-237.714h-438.857v877.714zM146.286 877.714v-109.714l109.714-109.714 73.143 73.143 219.429-219.429 182.857 182.857v182.857h-585.143zM146.286 475.429q0-45.714 32-77.714t77.714-32 77.714 32 32 77.714-32 77.714-77.714 32-77.714-32-32-77.714zM585.143 292.571h214.857q-5.714-16.571-12.571-23.429l-178.857-178.857q-6.857-6.857-23.429-12.571v214.857z" + ], + "tags": [ + "file-photo-o", + "file-picture-o", + "file-image-o" + ], + "defaultCode": 61893, + "grid": 14, + "matchesSearch": false + }, + { + "id": 412, + "paths": [ + "M0 969.143v-914.286q0-22.857 16-38.857t38.857-16h512q22.857 0 50.286 11.429t43.429 27.429l178.286 178.286q16 16 27.429 43.429t11.429 50.286v658.286q0 22.857-16 38.857t-38.857 16h-768q-22.857 0-38.857-16t-16-38.857zM73.143 950.857h731.429v-585.143h-237.714q-22.857 0-38.857-16t-16-38.857v-237.714h-73.143v73.143h-73.143v-73.143h-292.571v877.714zM219.429 768q0-14.286 4.571-29.714 12-36 68.571-226.286v-73.143h73.143v73.143h45.143q12.571 0 22.286 7.429t13.143 19.429l61.143 199.429q4.571 15.429 4.571 29.714 0 47.429-41.429 78.571t-104.857 31.143-104.857-31.143-41.429-78.571zM292.571 768q0 14.857 21.429 25.714t51.714 10.857 51.714-10.857 21.429-25.714-21.429-25.714-51.714-10.857-51.714 10.857-21.429 25.714zM292.571 365.714h73.143v-73.143h-73.143v73.143zM292.571 219.429h73.143v-73.143h-73.143v73.143zM365.714 438.857h73.143v-73.143h-73.143v73.143zM365.714 292.571h73.143v-73.143h-73.143v73.143zM585.143 292.571h214.857q-5.714-16.571-12.571-23.429l-178.857-178.857q-6.857-6.857-23.429-12.571v214.857z" + ], + "tags": [ + "file-zip-o", + "file-archive-o" + ], + "defaultCode": 61894, + "grid": 14, + "matchesSearch": false + }, + { + "id": 413, + "paths": [ + "M0 969.143v-914.286q0-22.857 16-38.857t38.857-16h512q22.857 0 50.286 11.429t43.429 27.429l178.286 178.286q16 16 27.429 43.429t11.429 50.286v658.286q0 22.857-16 38.857t-38.857 16h-768q-22.857 0-38.857-16t-16-38.857zM73.143 950.857h731.429v-585.143h-237.714q-22.857 0-38.857-16t-16-38.857v-237.714h-438.857v877.714zM146.286 713.143v-109.714q0-8 5.143-13.143t13.143-5.143h74.857l94.857-95.429q9.143-8.571 20-4 11.429 4.571 11.429 17.143v310.857q0 12.571-11.429 17.143-4.571 1.143-6.857 1.143-6.857 0-13.143-5.143l-94.857-95.429h-74.857q-8 0-13.143-5.143t-5.143-13.143zM435.429 759.714q0.571 15.143 11.429 25.429 11.429 9.714 25.143 9.714 15.429 0 26.857-11.429 49.714-53.143 49.714-125.143t-49.714-125.143q-10.286-10.857-25.714-11.429t-26.286 9.714-11.429 25.429 10.286 26.571q29.714 32.571 29.714 74.857t-29.714 74.857q-10.857 11.429-10.286 26.571zM556.286 846.571q1.429 15.143 13.429 24.286 10.286 8.571 22.857 8.571 17.714 0 28.571-13.714 73.714-90.857 73.714-207.429t-73.714-207.429q-9.143-12-24.571-13.714t-26.857 8q-12 9.714-13.429 24.857t8.286 27.143q57.143 70.286 57.143 161.143t-57.143 161.143q-9.714 12-8.286 27.143zM585.143 292.571h214.857q-5.714-16.571-12.571-23.429l-178.857-178.857q-6.857-6.857-23.429-12.571v214.857z" + ], + "tags": [ + "file-sound-o", + "file-audio-o" + ], + "defaultCode": 61895, + "grid": 14, + "matchesSearch": false + }, + { + "id": 414, + "paths": [ + "M0 969.143v-914.286q0-22.857 16-38.857t38.857-16h512q22.857 0 50.286 11.429t43.429 27.429l178.286 178.286q16 16 27.429 43.429t11.429 50.286v658.286q0 22.857-16 38.857t-38.857 16h-768q-22.857 0-38.857-16t-16-38.857zM73.143 950.857h731.429v-585.143h-237.714q-22.857 0-38.857-16t-16-38.857v-237.714h-438.857v877.714zM146.286 731.429v-219.429q0-29.714 21.714-51.429t51.429-21.714h219.429q29.714 0 51.429 21.714t21.714 51.429v219.429q0 29.714-21.714 51.429t-51.429 21.714h-219.429q-29.714 0-51.429-21.714t-21.714-51.429zM548.571 647.429v-51.429l151.429-152q5.143-5.143 13.143-5.143 2.286 0 6.857 1.143 11.429 4.571 11.429 17.143v329.143q0 12.571-11.429 17.143-4.571 1.143-6.857 1.143-8 0-13.143-5.143zM585.143 292.571h214.857q-5.714-16.571-12.571-23.429l-178.857-178.857q-6.857-6.857-23.429-12.571v214.857z" + ], + "tags": [ + "file-movie-o", + "file-video-o" + ], + "defaultCode": 61896, + "grid": 14, + "matchesSearch": false + }, + { + "id": 415, + "paths": [ + "M0 969.143v-914.286q0-22.857 16-38.857t38.857-16h512q22.857 0 50.286 11.429t43.429 27.429l178.286 178.286q16 16 27.429 43.429t11.429 50.286v658.286q0 22.857-16 38.857t-38.857 16h-768q-22.857 0-38.857-16t-16-38.857zM73.143 950.857h731.429v-585.143h-237.714q-22.857 0-38.857-16t-16-38.857v-237.714h-438.857v877.714zM145.143 632.571q-8-10.857 0-21.714l129.143-172q4.571-6.286 12-7.143t13.714 3.714l29.143 21.714q6.286 4.571 7.143 12t-3.714 13.714l-104 138.857 104 138.857q4.571 6.286 3.714 13.714t-7.143 12l-29.143 21.714q-6.286 4.571-13.714 3.714t-12-7.143zM363.429 853.143l78.857-474.857q1.143-7.429 7.429-11.714t13.714-3.143l36 5.714q7.429 1.143 11.714 7.429t3.143 13.714l-78.857 474.857q-1.143 7.429-7.429 11.714t-13.714 3.143l-36-5.714q-7.429-1.143-11.714-7.429t-3.143-13.714zM541.429 774.286q-0.857-7.429 3.714-13.714l104-138.857-104-138.857q-4.571-6.286-3.714-13.714t7.143-12l29.143-21.714q6.286-4.571 13.714-3.714t12 7.143l129.143 172q8 10.857 0 21.714l-129.143 172q-4.571 6.286-12 7.143t-13.714-3.714l-29.143-21.714q-6.286-4.571-7.143-12zM585.143 292.571h214.857q-5.714-16.571-12.571-23.429l-178.857-178.857q-6.857-6.857-23.429-12.571v214.857z" + ], + "tags": [ + "file-code-o" + ], + "defaultCode": 61897, + "grid": 14, + "matchesSearch": false + }, + { + "id": 416, + "paths": [ + "M22.286 142.857h161.714q14.857 124.571 40 227.714t59.714 181.143 69.429 134.571 80 111.429q96.571-96.571 164-232-81.143-41.143-127.429-125.714t-46.286-190.286q0-109.714 59.429-179.714t162.286-70q101.714 0 156 60.286t54.286 170q0 90.857-33.143 163.429-4 0.571-11.143 1.714t-26.286 1.143-36-3.429-35.429-14.571-28.857-29.429q17.714-58.857 17.714-105.143 0-49.714-16.571-75.429t-45.143-25.714q-30.286 0-48.571 28.286t-18.286 80.286q0 106.286 60 167.714t152.571 61.429q35.429 0 69.143-8v113.143q-57.714 13.143-113.143 13.143-37.143 77.714-94.571 154.857t-103.714 123.143-73.143 60.857q-45.714 25.714-92.571-1.714-16-9.714-34.571-24.857t-48.571-47.714-58.571-73.429-61.429-105.143-60.286-139.429-52.286-179.714-40.286-222.857z" + ], + "tags": [ + "vine" + ], + "defaultCode": 61898, + "grid": 14, + "matchesSearch": false + }, + { + "id": 417, + "paths": [ + "M0 668v-312q0-23.429 19.429-36.571l468-312q12-7.429 24.571-7.429t24.571 7.429l468 312q19.429 13.143 19.429 36.571v312q0 23.429-19.429 36.571l-468 312q-12 7.429-24.571 7.429t-24.571-7.429l-468-312q-19.429-13.143-19.429-36.571zM88 585.714l110.286-73.714-110.286-73.714v147.429zM123.429 668l344.571 229.714v-205.143l-190.857-127.429zM123.429 356l153.714 102.857 190.857-127.429v-205.143zM356.571 512l155.429 104 155.429-104-155.429-104zM556 897.714l344.571-229.714-153.714-102.857-190.857 127.429v205.143zM556 331.429l190.857 127.429 153.714-102.857-344.571-229.714v205.143zM825.714 512l110.286 73.714v-147.429z" + ], + "tags": [ + "codepen" + ], + "defaultCode": 61899, + "grid": 14, + "matchesSearch": false + }, + { + "id": 418, + "paths": [ + "M0 645.143q0-62.857 31.429-116t84-84q-6.857-22.286-6.857-46.857 0-65.714 46.857-112t113.714-46.286q54.286 0 98.286 33.143 42.857-88 127.143-141.714t186.571-53.714q94.857 0 174.857 46t126.571 124.857 46.571 172q0 3.429-0.286 10.286t-0.286 10.286q63.429 26.286 102.571 83.143t39.143 126.571q0 93.714-67.429 160.286t-162.857 66.571q-2.286 0-6.571-0.286t-6-0.286h-695.429q-97.143-5.714-164.571-71.714t-67.429-160.286zM267.429 593.143q0 69.714 48 110.286t118.857 40.571q78.286 0 137.143-56.571-9.143-11.429-27.143-32.286t-24.857-28.857q-38.286 37.143-82.286 37.143-31.429 0-53.429-19.143t-22-50q0-30.286 22-49.714t52.286-19.429q25.143 0 48.286 12t41.714 31.429 37.143 42.857 39.429 46.857 44 42.857 55.429 31.429 69.429 12q69.143 0 116.857-40.857t47.714-108.857q0-69.143-48-109.714t-118.286-40.571q-81.714 0-137.714 55.429 8 9.143 16.857 19.429t19.714 22.857 16.571 19.429q37.714-36.571 81.143-36.571 29.714 0 52.571 18.857t22.857 48q0 32.571-21.143 52.286t-53.714 19.714q-24.571 0-47.143-12t-41.143-31.429-37.429-42.857-39.714-46.857-44.286-42.857-55.143-31.429-67.714-12q-69.714 0-118.286 40.286t-48.571 108.286z" + ], + "width": 1170, + "tags": [ + "jsfiddle" + ], + "defaultCode": 61900, + "grid": 14, + "matchesSearch": false + }, + { + "id": 419, + "paths": [ + "M0 512q0-104 40.571-198.857t109.143-163.429 163.429-109.143 198.857-40.571 198.857 40.571 163.429 109.143 109.143 163.429 40.571 198.857-40.571 198.857-109.143 163.429-163.429 109.143-198.857 40.571-198.857-40.571-163.429-109.143-109.143-163.429-40.571-198.857zM73.143 512q0 108.571 51.429 206.286l110.857-110.857q-16-46.857-16-95.429t16-95.429l-110.857-110.857q-51.429 97.714-51.429 206.286zM292.571 512q0 90.857 64.286 155.143t155.143 64.286 155.143-64.286 64.286-155.143-64.286-155.143-155.143-64.286-155.143 64.286-64.286 155.143zM305.714 899.429q97.714 51.429 206.286 51.429t206.286-51.429l-110.857-110.857q-46.857 16-95.429 16t-95.429-16zM305.714 124.571l110.857 110.857q46.857-16 95.429-16t95.429 16l110.857-110.857q-97.714-51.429-206.286-51.429t-206.286 51.429zM788.571 607.429l110.857 110.857q51.429-97.714 51.429-206.286t-51.429-206.286l-110.857 110.857q16 46.857 16 95.429t-16 95.429z" + ], + "tags": [ + "life-bouy", + "life-saver", + "support", + "life-ring" + ], + "defaultCode": 61901, + "grid": 14, + "matchesSearch": false + }, + { + "id": 420, + "paths": [ + "M0 512q0-126.857 57.714-236.857t158-181.143 223.143-88.857v148.571q-126.286 25.714-209.429 126.286t-83.143 232q0 74.286 29.143 142t78 116.571 116.571 78 142 29.143 142-29.143 116.571-78 78-116.571 29.143-142q0-131.429-83.143-232t-209.429-126.286v-148.571q122.857 17.714 223.143 88.857t158 181.143 57.714 236.857q0 104-40.571 198.857t-109.143 163.429-163.429 109.143-198.857 40.571-198.857-40.571-163.429-109.143-109.143-163.429-40.571-198.857z" + ], + "tags": [ + "circle-o-notch" + ], + "defaultCode": 61902, + "grid": 14, + "matchesSearch": false + }, + { + "id": 421, + "paths": [ + "M10.857 499.429q4.571-124 66.286-232t174.286-181.714h2.857q0 0.571-0.571 1.714-4.571 4.571-16 19.143t-29.714 43.714-34.286 63.143-25.429 77.429-8 86 22.286 90 62 88q28.571 28.571 58.286 39.714t51.714 6.571 39.714-13.429 26.857-18.571l9.143-9.143q22.286-29.143 30.286-66.571t3.714-70-12-61.143-15.143-45.714l-8-16.571q-5.714-14.286-17.429-28.286t-24.571-23.429-24.857-16.857-20-10.857l-7.429-3.429 59.429-65.714q22.286 9.714 44.571 29.714t33.714 34.857l10.857 15.429q0.571-27.429-10.571-59.143t-23.143-50l-11.429-17.714 92-104.571 91.429 103.429q-18.857 26.286-30 58.571t-12.857 51.714l-2.286 18.857q12.571-21.143 35.143-41.429t38.571-30l16-9.714 58.857 65.714q-25.143 8-48.571 28.571t-34.286 37.143l-10.857 16.571q-17.714 32-27.429 76.286t-4 97.143 32.571 89.429q18.857 25.714 44.286 34.571t48.571 3.143 43.429-15.143 32.857-19.143l12-9.143q34.286-30.286 55.143-65.714t27.714-69.429 5.714-69.429-10.286-67.429-21.143-61.429-26-53.143-25.714-41.143-19.714-27.143l-7.429-9.714q-8-7.429-4-7.429l5.714 1.714q22.857 16.571 35.714 26.286t35.429 28.571 36.571 33.143 33.429 37.143 31.714 44 26 50.286 21.714 58.857 13.429 66.857 6 77.714q1.714 148-61.714 265.714t-178.286 183.429-260.571 65.714q-105.714 0-200.571-42.286t-162-113.143-105.143-167.429-34.571-201.714z" + ], + "tags": [ + "ra", + "rebel" + ], + "defaultCode": 61904, + "grid": 14, + "matchesSearch": false + }, + { + "id": 422, + "paths": [ + "M0 512q0-104 40.571-198.857t109.143-163.429 163.429-109.143 198.857-40.571 198.857 40.571 163.429 109.143 109.143 163.429 40.571 198.857-40.571 198.857-109.143 163.429-163.429 109.143-198.857 40.571-198.857-40.571-163.429-109.143-109.143-163.429-40.571-198.857zM25.143 512q0 98.857 38.571 189.143t103.714 155.429 155.429 103.714 189.143 38.571 189.143-38.571 155.429-103.714 103.714-155.429 38.571-189.143-38.571-189.143-103.714-155.429-155.429-103.714-189.143-38.571-189.143 38.571-155.429 103.714-103.714 155.429-38.571 189.143zM49.714 512q0-117.143 56-220l32.571 18.857q-17.143 32-28 64l46.857 16q-20 57.143-20 121.143 0 62.286 20.571 121.143l-47.429 16q12.571 34.286 28 64l-32.571 18.857q-56-102.857-56-220zM117.714 753.714l33.143-19.429q16.571 28 41.714 56.571l37.143-32.571q84.571 96 210.286 121.143l-9.714 49.143q37.143 6.857 69.143 7.429v37.714q-118.857-3.429-220-62.571t-161.714-157.429zM118.286 270.286q60.571-98.286 161.143-157.429t220-62.571v37.714q-37.143 1.143-69.143 7.429l9.714 49.143q-125.714 24-210.286 120.571l-37.143-32q-21.714 24-41.714 56zM237.143 417.714q18.857-53.143 56.571-96.571l105.714 92.571q33.714-38.857 84-49.143l-27.429-137.143q25.143-5.714 56-5.714t56 5.714l-27.429 137.143q50.286 10.286 84 49.143l105.714-92.571q37.714 43.429 56.571 96.571l-133.143 45.714q8 24 8 48.571t-8 48.571l132.571 45.714q-17.714 52.571-56 96.571l-105.714-92.571q-32.571 38.286-84 48.571l27.429 137.714q-29.714 5.714-56 5.714t-56-5.714l27.429-137.714q-51.429-10.286-84-48.571l-105.714 92.571q-38.286-44-56-96.571l132.571-45.714q-8-24-8-48.571t8-48.571zM524.571 936q32-0.571 69.143-7.429l-9.714-49.143q125.714-25.143 210.286-121.143l37.143 32.571q25.143-28.571 41.714-56.571l33.143 19.429q-60.571 98.286-161.714 157.429t-220 62.571v-37.714zM524.571 88v-37.714q119.429 3.429 220 62.571t161.143 157.429l-32.571 18.857q-20-32-41.714-56l-37.143 32q-84.571-96.571-210.286-120.571l9.714-49.143q-32-6.286-69.143-7.429zM866.286 633.143q20.571-58.857 20.571-121.143 0-64-20-121.143l46.857-16q-10.857-32-28-64l32.571-18.857q56 102.857 56 220t-56 220l-32.571-18.857q15.429-29.714 28-64z" + ], + "tags": [ + "ge", + "empire" + ], + "defaultCode": 61905, + "grid": 14, + "matchesSearch": false + }, + { + "id": 423, + "paths": [ + "M0 786.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286zM146.286 753.143q0 25.714 11.429 44.857t30.857 29.143 41.143 14.571 46.286 4.571q128 0 128-107.429 0-38.286-27.429-56.571t-72-26.286q-15.429-2.857-29.429-11.714t-14-22.571q0-25.143 28-29.714 44-8.571 69.714-40t25.714-76.571q0-13.714-5.714-29.714 21.143-5.143 28-7.429v-71.429q-44.571 16.571-77.143 16.571-28.571-16.571-62.857-16.571-49.143 0-82.857 32.571t-33.714 81.714q0 28.571 16.857 58.286t42 38.286v1.714q-21.714 9.714-21.714 48.571 0 30.286 23.429 44v1.714q-64.571 21.143-64.571 79.429zM218.286 749.143q0-36.571 56-36.571 58.286 0 58.286 34.857 0 37.714-53.143 37.714-61.143 0-61.143-36zM225.714 481.714q0-51.429 44-51.429 20.571 0 31.429 14.571t10.857 36.286q0 48.571-42.286 48.571-44 0-44-48zM431.429 265.143q0 20.571 14.286 35.714t34.286 15.143 34-15.429 14-35.429q0-20.571-13.714-36.286t-34.286-15.714-34.571 15.429-14 36.571zM440.571 677.714h78.286q-1.143-15.429-1.143-46.857v-221.143q0-26.286 1.143-39.429h-78.286q1.714 13.143 1.714 40.571v224q0 28.571-1.714 42.857zM552 437.143q20.571-1.714 21.143-1.714 1.714 0 6.286 0.286t6.857 0.286v1.143h-1.143v124q0 21.143 1.429 36.571t6.571 32.286 14 27.714 24.857 17.714 37.714 6.857q36.571 0 61.714-13.714v-69.143q-17.143 12-38.857 12-30.286 0-30.286-46.857v-128.571h29.714q5.143 0 15.143 0.571t15.143 0.571v-66.857h-60q0-46.857 1.714-58.286h-80q2.286 13.714 2.286 31.429v26.857h-34.286v66.857z" + ], + "tags": [ + "git-square" + ], + "defaultCode": 61906, + "grid": 14, + "matchesSearch": false + }, + { + "id": 424, + "paths": [ + "M38.857 873.714q0-94.286 104-128.571v-2.286q-38.286-23.429-38.286-72 0-62.286 36-78.286v-2.286q-41.143-13.714-68.286-62t-27.143-94.571q0-79.429 54.286-132.286t134.286-52.857q54.857 0 101.714 26.857 56 0 124.571-26.857v115.429q-20.571 6.857-45.143 12.571 9.143 24.571 9.143 48 0 72.571-41.714 123.714t-112.571 64.286q-22.857 4.571-34 15.429t-11.143 33.143q0 17.714 12.857 29.429t33.143 18.286 44.857 12.571 49.143 14.571 44.857 21.429 33.143 36.571 12.857 56.286q0 173.714-207.429 173.714-39.429 0-74.286-7.143t-66.286-23.429-50-46.857-18.571-72.857zM155.429 867.429q0 57.714 98.286 57.714 86.286 0 86.286-60 0-57.143-94.286-57.143-90.286 0-90.286 59.429zM167.429 434.857q0 77.143 70.857 77.143 68 0 68-78.286 0-34.857-17.143-58.286t-50.857-23.429q-70.857 0-70.857 82.857zM500 84q0-33.714 22.571-58.857t56.286-25.143q33.143 0 55.143 25.429t22 58.571-22.286 58-54.857 24.857q-33.143 0-56-24.857t-22.857-58zM514.857 752q2.286-25.714 2.286-76.571v-348q0-53.714-2.286-73.143h126.857q-2.286 18.857-2.286 70.857v350.286q0 50.857 2.286 76.571h-126.857zM695.429 362.857v-108.571h54.857v-43.429q0-30.857-3.429-50.857h129.714q-3.429 23.429-3.429 94.286h97.714v108.571q-8.571 0-24.857-1.143t-24.286-1.143h-48.571v208.571q0 74.857 49.714 74.857 34.857 0 62.286-18.857v112q-40.571 22.286-99.429 22.286-35.429 0-61.143-11.429t-40-28.571-22.571-44.571-10.571-52.571-2.286-58.857v-200.571h1.143v-2.286q-4 0-10.857-0.571t-10.286-0.571q-12 0-33.714 3.429z" + ], + "tags": [ + "git" + ], + "defaultCode": 61907, + "grid": 14, + "matchesSearch": false + }, + { + "id": 425, + "paths": [ + "M0 786.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286zM210.286 229.143l184.571 336.571v248.571h76.571v-249.143l196-336h-85.714q-12 22.286-36.286 67.714t-38.857 73.429-34 67.714-34.286 73.429h-1.714q-12-27.429-25.429-55.429t-29.714-60.286-26.571-52.571-30.857-59.714-28-54.286h-85.714z" + ], + "tags": [ + "hacker-news" + ], + "defaultCode": 61908, + "grid": 14, + "matchesSearch": false + }, + { + "id": 426, + "paths": [ + "M32.571 333.143q0-68 26.571-129.714t71.143-106.286 106.286-70.857 129.143-26.286q90.286 0 167.143 44.571t121.429 121.429 44.571 167.143-44.571 166.857-121.429 121.143-167.143 44.571q-36.571 0-74.857-8-12-2.857-18.571-13.429t-3.714-22.571q2.857-11.429 13.143-18t22.286-4.286q29.143 7.429 61.714 7.429 55.429 0 106.286-21.714t87.429-58.286 58.286-87.429 21.714-106.286-21.714-106.286-58.286-87.429-87.429-58.286-106.286-21.714-106.286 21.714-87.429 58.286-58.286 87.429-21.714 106.286q0 65.143 29.714 124.571 5.714 11.429 2 22.857t-14.571 17.143-22.571 1.714-17.429-14.857q-36.571-70.286-36.571-151.429zM64.857 855.714q6-69.429 16.857-124t30.857-106.286 39.429-88.857 42.286-71.429q34.857-51.429 75.429-94.286-9.143-20-9.143-44 0-45.714 32.286-78t78-32.286 78 32.286 32.286 78-32.571 78-77.714 32.286q-34.286 0-63.429-20-35.429 38.286-65.714 83.429-141.143 212-115.429 490.857 0.571 12.571-7.143 22t-19.714 10.571h-2.857q-11.429 0-20-7.714t-9.714-19.143q-8-72-2-141.429z" + ], + "width": 731, + "tags": [ + "tencent-weibo" + ], + "defaultCode": 61909, + "grid": 14, + "matchesSearch": false + }, + { + "id": 427, + "paths": [ + "M10.286 726.857q0-157.143 144-266.286-4.571-10.857-4.571-29.714 0-11.429 6.286-28t13.714-25.714q-0.571-12.571 4.286-30.286t12.857-24.571q0-79.429 52.857-164.857t124.286-119.714q79.429-37.714 185.143-37.714 76 0 152 31.429 28 12 51.429 27.429t40.571 32 31.429 38.857 24 42.286 18.571 48.286 14.571 51.143 12.571 56l0.571 2.857q31.429 47.429 31.429 85.714 0 8-5.143 22.857t-5.143 21.714q0 0.571 0.857 2t2 2.857 1.143 2q44 65.143 68.857 122.571t24.857 119.143q0 24.571-11.143 57.143t-31.714 32.571q-5.143 0-11.143-4.286t-10.857-10-10.857-14.857-9.143-15.143-7.714-14.857-5.143-10q-0.571-0.571-1.714-0.571l-2.857 2.286q-33.714 88-75.429 127.429 11.429 11.429 35.143 22t39.429 23.714 20.286 37.143q-1.143 2.286-2.286 9.143t-4 10.286q-36.571 55.429-172.571 55.429-30.286 0-63.143-5.143t-56-11.429-59.714-17.143q-8.571-2.857-13.143-4-8-2.286-26.286-2.571t-22.857-0.857q-23.429 25.714-72.857 37.143t-96.286 11.429q-20 0-39.429-0.857t-53.143-5.143-57.714-11.714-42.571-22.857-18.571-36.571q0-22.857 5.714-34t23.429-27.714q6.286-1.143 23.143-7.429t28.286-6.857q2.286 0 8-1.143 1.143-1.143 1.143-2.286l-1.143-1.714q-27.429-6.286-61.714-60.286t-41.714-89.429l-2.857-1.714q-2.286 0-6.857 11.429-10.286 23.429-31.143 42.571t-44.286 21.429h-0.571q-2.286 0-3.429-2.571t-2.857-3.143q-13.143-30.857-13.143-57.143z" + ], + "tags": [ + "qq" + ], + "defaultCode": 61910, + "grid": 14, + "matchesSearch": false + }, + { + "id": 428, + "paths": [ + "M0 387.429q0-96.571 55.714-177.714t150.857-127.714 207.714-46.571q100.571 0 190 37.714t149.714 104.286 78 148.857q-17.714-2.286-40-2.286-96.571 0-177.714 44t-127.714 119.143-46.571 164.286q0 44.571 13.143 86.857-20 1.714-38.857 1.714-14.857 0-28.571-0.857t-31.429-3.714-25.429-4-31.143-6-28.571-6l-144.571 72.571 41.143-124.571q-165.714-116-165.714-280zM217.143 263.429q0 22.286 18.857 36.857t43.429 14.571q23.429 0 37.714-14t14.286-37.429-14.286-37.714-37.714-14.286q-24.571 0-43.429 14.571t-18.857 37.429zM466.286 646.857q0-81.714 46.571-150.857t127.714-109.429 177.714-40.286q92 0 173.143 40.286t130 109.714 48.857 150.571q0 66.857-39.143 127.714t-106 110.571l31.429 103.429-113.714-62.286q-85.714 21.143-124.571 21.143-96.571 0-177.714-40.286t-127.714-109.429-46.571-150.857zM507.429 263.429q0 22.286 18.857 36.857t43.429 14.571q23.429 0 37.429-14t14-37.429-14-37.714-37.429-14.286q-24.571 0-43.429 14.571t-18.857 37.429zM662.857 553.143q0 16 12.857 28.857t28.286 12.857q22.857 0 37.429-12.571t14.571-29.143q0-16-14.571-28.571t-37.429-12.571q-15.429 0-28.286 12.857t-12.857 28.286zM890.857 553.143q0 16 12.857 28.857t28.286 12.857q22.286 0 37.143-12.571t14.857-29.143q0-16-14.857-28.571t-37.143-12.571q-15.429 0-28.286 12.857t-12.857 28.286z" + ], + "width": 1170, + "tags": [ + "wechat", + "weixin" + ], + "defaultCode": 61911, + "grid": 14, + "matchesSearch": false + }, + { + "id": 429, + "paths": [ + "M0 587.429q-1.143-22.857 18.286-33.714l950.857-548.571q8.571-5.143 18.286-5.143 11.429 0 20.571 6.286 18.857 13.714 15.429 36.571l-146.286 877.714q-2.857 16.571-18.286 25.714-8 4.571-17.714 4.571-6.286 0-13.714-2.857l-258.857-105.714-138.286 168.571q-10.286 13.143-28 13.143-7.429 0-12.571-2.286-10.857-4-17.429-13.429t-6.571-20.857v-199.429l493.714-605.143-610.857 528.571-225.714-92.571q-21.143-8-22.857-31.429z" + ], + "tags": [ + "send", + "paper-plane" + ], + "defaultCode": 61912, + "grid": 14, + "matchesSearch": false + }, + { + "id": 430, + "paths": [ + "M0 587.429q-1.714-22.286 18.286-33.714l950.857-548.571q20-12 38.857 1.143 18.857 13.714 15.429 36.571l-146.286 877.714q-2.857 16.571-18.286 25.714-8 4.571-17.714 4.571-6.286 0-13.714-2.857l-301.143-122.857-170.286 186.857q-10.286 12-26.857 12-8 0-13.143-2.286-10.857-4-17.143-13.429t-6.286-20.857v-258.286l-269.714-110.286q-21.143-8-22.857-31.429zM119.429 579.429l192 78.286 493.143-365.143-273.143 455.429 281.143 114.857 126.286-756z" + ], + "tags": [ + "send-o", + "paper-plane-o" + ], + "defaultCode": 61913, + "grid": 14, + "matchesSearch": false + }, + { + "id": 431, + "paths": [ + "M0 402.286v-256q0-24 22.857-33.714 22.286-9.714 39.429 8l74.286 73.714q61.143-57.714 139.714-89.429t162.571-31.714q89.143 0 170.286 34.857t140 93.714 93.714 140 34.857 170.286-34.857 170.286-93.714 140-140 93.714-170.286 34.857q-98.286 0-186.857-41.429t-150.857-116.857q-4-5.714-3.714-12.857t4.857-11.714l78.286-78.857q5.714-5.143 14.286-5.143 9.143 1.143 13.143 6.857 41.714 54.286 102.286 84t128.571 29.714q59.429 0 113.429-23.143t93.429-62.571 62.571-93.429 23.143-113.429-23.143-113.429-62.571-93.429-93.429-62.571-113.429-23.143q-56 0-107.429 20.286t-91.429 58l78.286 78.857q17.714 17.143 8 39.429-9.714 22.857-33.714 22.857h-256q-14.857 0-25.714-10.857t-10.857-25.714zM292.571 603.429v-36.571q0-8 5.143-13.143t13.143-5.143h128v-201.143q0-8 5.143-13.143t13.143-5.143h36.571q8 0 13.143 5.143t5.143 13.143v256q0 8-5.143 13.143t-13.143 5.143h-182.857q-8 0-13.143-5.143t-5.143-13.143z" + ], + "tags": [ + "history" + ], + "defaultCode": 61914, + "grid": 14, + "matchesSearch": false + }, + { + "id": 432, + "paths": [ + "M0 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286zM73.143 512q0 74.286 29.143 142t78 116.571 116.571 78 142 29.143 142-29.143 116.571-78 78-116.571 29.143-142-29.143-142-78-116.571-116.571-78-142-29.143-142 29.143-116.571 78-78 116.571-29.143 142z" + ], + "tags": [ + "circle-thin" + ], + "defaultCode": 61915, + "grid": 14, + "matchesSearch": false + }, + { + "id": 433, + "paths": [ + "M35.429 113.143q0-14.857 6.857-27.429t20.571-12.571q26.286 0 79.143 2t79.143 2q24 0 72.286-2t72.286-2q14.286 0 21.429 12.571t7.143 27.429q0 17.143-9.714 24.857t-22 8.286-28.286 2.286-24.571 7.429q-20 12-20 91.429l0.571 182.857q0 12 0.571 18.286 7.429 1.714 22.286 1.714h399.429q14.286 0 21.714-1.714 0.571-6.286 0.571-18.286l0.571-182.857q0-79.429-20-91.429-10.286-6.286-33.429-7.143t-37.714-7.429-14.571-28.286q0-14.857 7.143-27.429t21.429-12.571q25.143 0 75.429 2t75.429 2q24.571 0 73.714-2t73.714-2q14.286 0 21.429 12.571t7.143 27.429q0 17.143-10 25.143t-22.857 8.286-29.429 1.714-25.143 7.143q-20 13.143-20 92l0.571 538.857q0 68 19.429 80 9.143 5.714 26.286 7.714t30.571 2.571 23.714 8.857 10.286 25.429q0 14.857-6.857 27.429t-20.571 12.571q-25.143 0-75.714-2t-76.286-2q-25.143 0-75.429 2t-75.429 2q-13.714 0-21.143-11.714t-7.429-26q0-17.714 9.714-26.286t22.286-9.714 29.143-4 25.714-8.571q18.857-12 18.857-80l-0.571-223.429q0-12-0.571-17.714-7.429-2.286-28.571-2.286h-385.714q-21.714 0-29.143 2.286-0.571 5.714-0.571 17.714l-0.571 212q0 81.143 21.143 93.714 9.143 5.714 27.429 7.429t32.571 2 25.714 8.571 11.429 26q0 14.857-7.143 27.429t-20.857 12.571q-26.857 0-79.714-2t-79.143-2q-24.571 0-73.143 2t-72.571 2q-13.143 0-20.286-12t-7.143-25.714q0-17.143 8.857-25.714t20.571-10 27.143-4.286 24-8.571q18.857-13.143 18.857-81.714l-0.571-32.571v-464.571q0-1.714 0.286-14.857t0-20.857-0.857-22-2-24-3.714-20.857-6.286-18-9.143-10.286q-8.571-5.714-25.714-6.857t-30.286-1.143-23.429-8-10.286-25.714z" + ], + "tags": [ + "header" + ], + "defaultCode": 61916, + "grid": 14, + "matchesSearch": false + }, + { + "id": 434, + "paths": [ + "M13.714 348.571q0-94.857 50.286-163.429 50.286-67.429 119.429-90.857 63.429-21.143 238.286-21.143h273.714q14.286 0 24.571 10.286t10.286 24.571v41.714q0 16.571-10.571 34.857t-24.286 18.286q-28.571 0-30.857 0.571-14.857 3.429-18.286 17.714-1.714 6.286-1.714 36.571v658.286q0 14.286-10.286 24.571t-24.571 10.286h-61.714q-14.286 0-24.571-10.286t-10.286-24.571v-696h-81.714v696q0 14.286-10 24.571t-24.857 10.286h-61.714q-14.857 0-24.857-10.286t-10-24.571v-283.429q-84-6.857-140-33.714-72-33.143-109.714-102.286-36.571-66.857-36.571-148z" + ], + "width": 731, + "tags": [ + "paragraph" + ], + "defaultCode": 61917, + "grid": 14, + "matchesSearch": false + }, + { + "id": 435, + "paths": [ + "M0 457.143v-36.571q0-22.857 16-38.857t38.857-16h182.857q22.857 0 38.857 16t16 38.857v36.571q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857zM73.143 932.571v-384h146.286v384q0 8-5.143 13.143t-13.143 5.143h-109.714q-8 0-13.143-5.143t-5.143-13.143zM73.143 329.143v-237.714q0-8 5.143-13.143t13.143-5.143h109.714q8 0 13.143 5.143t5.143 13.143v237.714h-146.286zM292.571 749.714v-36.571q0-22.857 16-38.857t38.857-16h182.857q22.857 0 38.857 16t16 38.857v36.571q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857zM365.714 841.143h146.286v91.429q0 8-5.143 13.143t-13.143 5.143h-109.714q-8 0-13.143-5.143t-5.143-13.143v-91.429zM365.714 621.714v-530.286q0-8 5.143-13.143t13.143-5.143h109.714q8 0 13.143 5.143t5.143 13.143v530.286h-146.286zM585.143 310.857v-36.571q0-22.857 16-38.857t38.857-16h182.857q22.857 0 38.857 16t16 38.857v36.571q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857zM658.286 932.571v-530.286h146.286v530.286q0 8-5.143 13.143t-13.143 5.143h-109.714q-8 0-13.143-5.143t-5.143-13.143zM658.286 182.857v-91.429q0-8 5.143-13.143t13.143-5.143h109.714q8 0 13.143 5.143t5.143 13.143v91.429h-146.286z" + ], + "tags": [ + "sliders" + ], + "defaultCode": 61918, + "grid": 14, + "matchesSearch": false + }, + { + "id": 436, + "paths": [ + "M0 512q0-76 53.429-129.429t129.429-53.429q72 0 124.571 49.143l205.714-102.857q-1.143-12.571-1.143-19.429 0-76 53.429-129.429t129.429-53.429 129.429 53.429 53.429 129.429-53.429 129.429-129.429 53.429q-72 0-124.571-49.143l-205.714 102.857q1.143 12.571 1.143 19.429t-1.143 19.429l205.714 102.857q52.571-49.143 124.571-49.143 76 0 129.429 53.429t53.429 129.429-53.429 129.429-129.429 53.429-129.429-53.429-53.429-129.429q0-6.857 1.143-19.429l-205.714-102.857q-52.571 49.143-124.571 49.143-76 0-129.429-53.429t-53.429-129.429z" + ], + "tags": [ + "share-alt" + ], + "defaultCode": 61920, + "grid": 14, + "matchesSearch": false + }, + { + "id": 437, + "paths": [ + "M0 786.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286zM146.286 512q0 50.286 35.714 86t86 35.714q47.429 0 82.857-32.571l137.714 68.571q-1.143 9.143-1.143 13.143 0 50.286 36 86t86.286 35.714 86-35.714 35.714-86-35.714-86.286-86-36q-48 0-82.857 33.143l-137.714-68.571q1.143-9.143 1.143-13.143t-1.143-13.143l137.714-68.571q34.857 33.143 82.857 33.143 50.286 0 86-36t35.714-86.286-35.714-86-86-35.714-86.286 35.714-36 86q0 4 1.143 13.143l-137.714 68.571q-35.429-32.571-82.857-32.571-50.286 0-86 35.714t-35.714 86z" + ], + "tags": [ + "share-alt-square" + ], + "defaultCode": 61921, + "grid": 14, + "matchesSearch": false + }, + { + "id": 438, + "paths": [ + "M0 621.714q0-81.714 31.714-156.286t85.714-128.571 128.571-85.714 156.286-31.714q104 0 196 50.857l36.571-36.571q10.857-10.857 26-10.857t26 10.857l38.857 38.857 138.857-139.429 26.286 26.286-139.429 138.857 38.857 38.857q10.857 10.857 10.857 26t-10.857 26l-36.571 36.571q50.857 92 50.857 196 0 81.714-31.714 156.286t-85.714 128.571-128.571 85.714-156.286 31.714-156.286-31.714-128.571-85.714-85.714-128.571-31.714-156.286zM97.143 526.286q5.714 13.714 20 19.429 7.429 2.857 13.714 2.857 24 0 34.286-22.857 19.429-48 56.286-84.857t84.857-56.286q14.286-6.286 20-20t0-28-19.429-20-28 0q-61.714 25.143-109.143 72.571t-72.571 109.143q-5.714 14.286 0 28zM786.286 36.571q0-7.429 5.143-13.143 5.714-5.143 13.143-5.143t13.143 5.143l51.429 52q5.714 5.143 5.714 12.857t-5.714 12.857q-5.714 5.714-12.571 5.714-7.429 0-13.143-5.714l-52-51.429q-5.143-5.714-5.143-13.143zM877.714 73.143v-54.857q0-8 5.143-13.143t13.143-5.143 13.143 5.143 5.143 13.143v54.857q0 8-5.143 13.143t-13.143 5.143-13.143-5.143-5.143-13.143zM917.143 167.714q0-7.714 5.714-12.857 5.143-5.714 12.857-5.714t12.857 5.714l52 51.429q5.143 5.714 5.143 13.143t-5.143 13.143q-6.286 5.143-13.143 5.143t-13.143-5.143l-51.429-52q-5.714-5.143-5.714-12.857zM917.143 88.286q0-7.714 5.714-12.857l51.429-52q5.714-5.143 13.143-5.143t13.143 5.143q5.143 5.714 5.143 13.143t-5.143 13.143l-52 51.429q-5.714 5.714-12.571 5.714-7.429 0-13.143-5.714-5.714-5.143-5.714-12.857zM932.571 128q0-8 5.143-13.143t13.143-5.143h54.857q8 0 13.143 5.143t5.143 13.143-5.143 13.143-13.143 5.143h-54.857q-8 0-13.143-5.143t-5.143-13.143z" + ], + "tags": [ + "bomb" + ], + "defaultCode": 61922, + "grid": 14, + "matchesSearch": false + } + ] }, { - "icon": { - "paths": [ - "M515.010 48.76c-152.629 0-276.799 124.169-276.799 276.8v158.089c0 1.794-2.218 4.822-3.961 5.403-14.966 4.995-27.124 9.317-38.252 13.61-13.268 5.117-23.279 19.822-23.279 34.207v363.246c0 14.289 9.946 29.011 23.133 34.234 102.029 40.432 209.41 60.925 319.162 60.925s217.133-20.498 319.164-60.928c13.181-5.225 23.122-19.942 23.122-34.231v-363.246c0-14.392-10.010-29.092-23.284-34.214-11.133-4.292-23.292-8.616-38.246-13.61-1.736-0.579-3.952-3.608-3.952-5.403v-158.089c-0.001-152.629-124.17-276.796-276.798-276.796zM439.618 647.508c0-41.667 33.757-75.388 75.388-75.388s75.388 33.715 75.388 75.388c0 27.609-15.572 50.727-37.691 63.83v124.642c0 20.833-16.86 37.691-37.696 37.691-20.834 0-37.691-16.86-37.691-37.691v-124.642c-22.122-13.104-37.691-36.218-37.691-63.83zM696.635 325.555v136.403c-59.559-12.813-120.663-19.305-181.595-19.313-60.902 0-122 6.493-181.65 19.297v-136.386c0-100.146 81.472-181.62 181.62-181.62s181.627 81.473 181.627 181.622z" - ], - "width": 1044, - "tags": [ - "lock39 copy" - ], - "grid": 16 - }, - "properties": { - "order": 3, - "id": 67, - "prevSize": 32, - "code": 109, - "name": "lock39copy", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 0 - }, - { - "icon": { - "paths": [ - "M805.921 547.056c-10.185-3.925-35.708-12.802-36.074-13.097-29.889-7.465-89.61-24.137-89.61-24.137-54.486-11.722-110.388-17.662-166.132-17.667-54.142 0-108.438 5.627-161.538 16.693l-83.034-83.036c-64.786-64.784-64.786-170.192 0-234.978s170.195-64.788 234.982-0.003l86.341 86.338c29.095-7.053 61.625-21.392 82.33-44.399-1.663 0.173-3.92-0.338-4.829-1.243l-102.267-102.267c-98.737-98.73-259.387-98.73-358.121 0.003s-98.736 259.386 0 358.122l47.733 47.737c-12.989 4.348-23.679 8.159-33.473 11.937-12.14 4.681-21.298 18.133-21.298 31.296v332.313c0 13.072 9.099 26.54 21.164 31.321 93.34 36.988 191.578 55.737 291.983 55.737s198.644-18.754 291.986-55.742c12.060-4.781 21.153-18.243 21.153-31.315v-332.316c0.001-13.165-9.156-26.617-21.301-31.301zM548.564 737.965v114.028c0 19.060-15.424 34.483-34.485 34.483s-34.483-15.424-34.483-34.483v-114.028c-20.239-11.987-34.483-33.135-34.483-58.395 0-38.118 30.881-68.969 68.967-68.969s68.969 30.845 68.969 68.969c0 25.261-14.246 46.407-34.483 58.395z" - ], - "width": 1044, - "tags": [ - "lock39-open" - ], - "grid": 16 - }, - "properties": { - "order": 6, - "id": 66, - "prevSize": 32, - "code": 112, - "name": "lock39-open", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 1 - }, - { - "icon": { - "paths": [ - "M74.699 74.249v874.192h874.192v-874.192h-874.192zM342.098 810.335h-176.307v-91.091h321.76v91.091zM810.783 350.466h-644.99v-136.639h643.523v136.639zM809.313 597.296h-643.523v-136.639h643.523v136.639z" - ], - "tags": [ - "form" - ], - "grid": 16 - }, - "properties": { - "order": 1, - "id": 63, - "prevSize": 32, - "code": 36, - "name": "form", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 2 - }, - { - "icon": { - "paths": [ - "M478 512c0-38-14-70-40-96-26-28-58-40-96-40-38 0-70 12-98 40-26 26-40 58-40 96 0 38 14 70 40 96 28 28 60 40 98 40 38 0 70-12 96-40 26-26 40-58 40-96zM888 786c0-20-8-36-20-48-14-14-30-22-48-22-20 0-36 8-48 22-14 12-22 28-22 48 0 18 8 34 20 48 14 12 30 20 50 20 18 0 34-8 48-20 12-14 20-30 20-48zM888 238c0-18-8-34-20-48-14-12-30-20-48-20-20 0-36 8-48 20-14 14-22 30-22 48 0 20 8 36 20 50 14 12 30 20 50 20 18 0 34-8 48-20 12-14 20-30 20-50zM682 464v98c0 4 0 8-4 10-2 4-4 6-8 6l-82 12c-4 14-10 26-18 42 12 16 28 36 48 60 4 4 4 8 4 12 0 4 0 8-4 10-8 10-22 26-44 48-20 20-34 32-42 32-4 0-6-2-10-4l-62-48c-12 6-26 12-40 16-4 38-8 66-14 82-2 10-6 14-16 14h-98c-4 0-8-2-10-4-4-4-6-6-6-10l-12-82c-12-4-26-8-40-16l-64 48c-2 2-6 4-10 4s-8-2-12-6c-50-46-76-74-76-84 0-4 2-8 4-10 4-6 10-16 22-28 10-14 18-26 24-34-8-16-14-30-18-44l-82-12c-2 0-6-2-8-6-2-2-4-6-4-10v-98c0-4 2-8 4-10 2-4 6-6 8-6l82-12c4-14 10-26 18-42-12-16-28-36-48-60-2-4-4-8-4-12 0-4 2-8 4-10 8-10 22-26 44-48 22-20 36-32 42-32 4 0 8 2 12 4l60 48c12-6 26-12 42-16 4-38 8-66 12-82 2-10 8-14 16-14h98c4 0 8 2 12 4 2 4 4 6 4 10l14 82c12 4 24 8 40 16l62-48c2-2 6-4 10-4s8 2 12 6c52 46 76 74 76 84 0 4 0 8-2 10-6 6-12 16-24 30-10 12-18 24-24 32 8 16 14 32 18 44l82 12c4 0 6 2 8 6 4 2 4 6 4 10zM1024 748v74c0 6-26 12-80 16-4 10-10 20-16 28 18 40 28 66 28 74 0 2 0 2-2 4-44 26-66 38-66 38-4 0-12-8-26-26-12-16-22-28-26-36-8 2-14 2-16 2-4 0-10 0-16-2-6 8-16 20-28 36-14 18-22 26-26 26 0 0-22-12-66-38 0-2-2-2-2-4 0-8 10-34 28-74-6-8-12-18-16-28-54-4-80-10-80-16v-74c0-6 26-12 80-16 4-12 10-20 16-28-18-40-28-66-28-74 0-2 2-2 2-4 2 0 8-4 20-10 10-6 20-12 30-18 10-6 16-10 16-10 4 0 12 10 26 26 12 16 22 28 28 36 6-2 12-2 16-2 2 0 8 0 16 2 18-26 34-46 48-60l4-2c0 0 22 14 66 38 2 2 2 2 2 4 0 8-10 34-28 74 6 8 12 16 16 28 54 4 80 10 80 16zM1024 202v74c0 6-26 12-80 16-4 10-10 20-16 28 18 40 28 66 28 74 0 2 0 2-2 4-44 26-66 38-66 38-4 0-12-8-26-26-12-16-22-28-26-36-8 2-14 2-16 2-4 0-10 0-16-2-6 8-16 20-28 36-14 18-22 26-26 26 0 0-22-12-66-38 0-2-2-2-2-4 0-8 10-34 28-74-6-8-12-18-16-28-54-4-80-10-80-16v-74c0-6 26-12 80-16 4-12 10-20 16-28-18-40-28-66-28-74 0-2 2-2 2-4 2 0 8-4 20-10 10-8 20-14 30-18 10-6 16-10 16-10 4 0 12 8 26 26 12 16 22 28 28 36 6-2 12-2 16-2 2 0 8 0 16 2 18-26 34-46 48-60l4-2c0 0 22 14 66 38 2 2 2 2 2 4 0 8-10 34-28 74 6 8 12 16 16 28 54 4 80 10 80 16z" - ], - "defaultCode": 97, - "grid": 16 - }, - "properties": { - "id": 0, - "order": 2, - "prevSize": 32, - "code": 97, - "name": "uni61", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 3 - }, - { - "icon": { - "paths": [ - "M902.4 433.067v488.533c0 17.067-6.4 29.867-17.067 40.533-10.667 12.8-25.6 17.067-42.667 17.067h-661.333c-17.067 0-32-4.267-42.667-17.067-10.667-10.667-17.067-23.467-17.067-40.533v-819.2c0-17.067 6.4-29.867 17.067-40.533 10.667-12.8 25.6-17.067 42.667-17.067h330.667v330.667c0 17.067 6.4 29.867 17.067 40.533 10.667 12.8 25.6 17.067 40.533 17.067zM900.267 356.267h-309.333v-311.467c32 6.4 59.733 19.2 78.933 40.533l189.867 189.867c21.333 21.333 34.133 46.933 40.533 81.067z" - ], - "defaultCode": 98, - "grid": 16 - }, - "properties": { - "id": 1, - "order": 4, - "prevSize": 32, - "code": 98, - "name": "uni62", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 4 - }, - { - "icon": { - "paths": [ - "M200.533 902.4h622.933v-469.333h-253.867c-14.933 0-29.867-4.267-40.533-17.067-10.667-10.667-17.067-23.467-17.067-40.533v-253.867h-311.467zM590.933 356.267h228.267c-4.267-12.8-8.533-21.333-12.8-25.6l-192-189.867c-4.267-6.4-12.8-10.667-23.467-14.933zM902.4 375.467v546.133c0 17.067-6.4 29.867-17.067 40.533-10.667 12.8-25.6 17.067-42.667 17.067h-661.333c-17.067 0-32-4.267-42.667-17.067-10.667-10.667-17.067-23.467-17.067-40.533v-819.2c0-17.067 6.4-29.867 17.067-40.533 10.667-12.8 25.6-17.067 42.667-17.067h388.267c17.067 0 34.133 2.133 55.467 10.667 19.2 8.533 34.133 19.2 44.8 29.867l189.867 189.867c12.8 10.667 21.333 27.733 29.867 46.933s12.8 36.267 12.8 53.333z" - ], - "defaultCode": 99, - "grid": 16 - }, - "properties": { - "id": 2, - "order": 5, - "prevSize": 32, - "code": 99, - "name": "uni63", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 5 - }, - { - "icon": { - "paths": [ - "M312 878l52-52-134-134-52 52v60h74v74zM612 348c0-8-4-14-14-14-2 0-6 2-8 4l-310 310c-4 4-4 6-4 10 0 8 4 12 12 12 4 0 8 0 10-4l310-308c2-4 4-6 4-10zM580 238l238 238-476 474h-236v-236zM970 292c0 20-6 38-20 52l-96 94-236-236 94-96c14-14 30-20 52-20 20 0 36 6 52 20l134 134c14 16 20 32 20 52z" - ], - "defaultCode": 100, - "grid": 16 - }, - "properties": { - "id": 3, - "order": 7, - "prevSize": 32, - "code": 100, - "name": "uni64", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 6 - }, - { - "icon": { - "paths": [ - "M798 644c0 6-2 10-6 14l-30 28c-2 4-8 6-12 6-6 0-10-2-14-6l-224-224-224 224c-4 4-8 6-14 6-4 0-10-2-12-6l-30-28c-4-4-6-8-6-14 0-4 2-8 6-12l266-266c4-4 10-6 14-6s10 2 14 6l266 266c4 4 6 8 6 12z" - ], - "defaultCode": 101, - "grid": 16 - }, - "properties": { - "id": 4, - "order": 8, - "prevSize": 32, - "code": 101, - "name": "uni65", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 7 - }, - { - "icon": { - "paths": [ - "M682.625 446.25c0-67.5-22.5-123.75-69.375-170.625s-103.125-69.375-170.625-69.375c-65.625 0-121.875 22.5-168.75 69.375s-71.25 103.125-71.25 170.625c0 65.625 24.375 121.875 71.25 168.75s103.125 71.25 168.75 71.25c67.5 0 123.75-24.375 170.625-71.25s69.375-103.125 69.375-168.75zM958.25 890.625c0 18.75-7.5 35.625-20.625 48.75s-30 20.625-48.75 20.625c-18.75 0-35.625-7.5-48.75-20.625l-183.75-183.75c-63.75 45-135 67.5-213.75 67.5-50.625 0-99.375-9.375-146.25-30s-86.25-46.875-120-80.625c-33.75-33.75-60-73.125-80.625-120-18.75-46.875-30-95.625-30-146.25 0-52.5 11.25-101.25 30-146.25 20.625-46.875 46.875-88.125 80.625-121.875s73.125-60 120-80.625c46.875-18.75 95.625-28.125 146.25-28.125 52.5 0 101.25 9.375 148.125 28.125 45 20.625 86.25 46.875 120 80.625s60 75 80.625 121.875c18.75 45 30 93.75 30 146.25 0 78.75-22.5 150-67.5 213.75l183.75 183.75c13.125 13.125 20.625 28.125 20.625 46.875z" - ], - "defaultCode": 102, - "grid": 16 - }, - "properties": { - "id": 5, - "order": 9, - "prevSize": 32, - "code": 102, - "name": "uni66", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 8 - }, - { - "icon": { - "paths": [ - "M852 724c0 14-6 28-16 38l-78 78c-10 10-24 16-40 16-14 0-28-6-38-16l-168-168-168 168c-10 10-24 16-38 16-16 0-30-6-40-16l-78-78c-10-10-16-24-16-38 0-16 6-28 16-40l168-168-168-168c-10-10-16-24-16-38 0-16 6-28 16-40l78-76c10-12 24-16 40-16 14 0 28 4 38 16l168 168 168-168c10-12 24-16 38-16 16 0 30 4 40 16l78 76c10 12 16 24 16 40 0 14-6 28-16 38l-168 168 168 168c10 12 16 24 16 40z" - ], - "defaultCode": 103, - "grid": 16 - }, - "properties": { - "id": 6, - "order": 10, - "prevSize": 32, - "code": 103, - "name": "uni67", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 9 - }, - { - "icon": { - "paths": [ - "M896.961 559.82c0-10.547-8.789-15.82-24.609-15.82h-509.766c-12.305 0-26.367 3.516-40.43 10.547s-26.367 14.063-33.398 24.609l-138.867 170.508c-5.273 7.031-7.031 12.305-7.031 17.578 0 10.547 7.031 17.578 24.609 17.578h509.766c12.305 0 26.367-3.516 40.43-10.547s24.609-15.82 33.398-24.609l137.109-170.508c5.273-7.031 8.789-14.063 8.789-19.336zM362.586 484.234h358.594v-75.586c0-12.305-3.516-22.852-12.305-31.641s-19.336-12.305-31.641-12.305h-270.703c-12.305 0-22.852-5.273-31.641-14.063s-12.305-19.336-12.305-31.641v-29.883c0-12.305-5.273-22.852-14.063-31.641s-19.336-14.063-31.641-14.063h-149.414c-12.305 0-22.852 5.273-31.641 14.063s-14.063 19.336-14.063 31.641v399.023l119.531-147.656c14.063-15.82 33.398-29.883 54.492-40.43 22.852-10.547 45.703-15.82 66.797-15.82zM956.727 559.82c0 19.336-7.031 38.672-21.094 56.25l-138.867 170.508c-14.063 17.578-31.641 29.883-54.492 40.43-22.852 12.305-43.945 17.578-65.039 17.578h-509.766c-29.883 0-54.492-10.547-73.828-31.641-21.094-21.094-31.641-45.703-31.641-73.828v-450c0-28.125 10.547-52.734 31.641-73.828 19.336-21.094 43.945-31.641 73.828-31.641h149.414c28.125 0 52.734 10.547 73.828 31.641s31.641 45.703 31.641 73.828v14.063h254.883c28.125 0 52.734 10.547 73.828 31.641s31.641 45.703 31.641 73.828v75.586h89.648c15.82 0 31.641 3.516 45.703 10.547 14.063 8.789 24.609 19.336 31.641 33.398 5.273 10.547 7.031 21.094 7.031 31.641z" - ], - "defaultCode": 105, - "grid": 16 - }, - "properties": { - "id": 7, - "order": 11, - "prevSize": 32, - "code": 105, - "name": "uni69", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 10 - }, - { - "icon": { - "paths": [ - "M958.25 390.25v376.875c0 31.875-13.125 60-35.625 84.375-24.375 24.375-52.5 35.625-84.375 35.625h-652.5c-31.875 0-60-11.25-84.375-35.625-22.5-24.375-35.625-52.5-35.625-84.375v-513.75c0-33.75 13.125-61.875 35.625-86.25 24.375-22.5 52.5-33.75 84.375-33.75h172.5c31.875 0 60 11.25 84.375 33.75 22.5 24.375 35.625 52.5 35.625 86.25v16.875h360c31.875 0 60 11.25 84.375 35.625 22.5 22.5 35.625 50.625 35.625 84.375z" - ], - "defaultCode": 106, - "grid": 16 - }, - "properties": { - "id": 8, - "order": 12, - "prevSize": 32, - "code": 106, - "name": "uni6A", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 11 - }, - { - "icon": { - "paths": [ - "M962 386.836v399.023c0 21.094-7.031 40.43-22.852 56.25s-35.156 22.852-58.008 22.852h-738.281c-22.852 0-42.188-7.031-58.008-22.852s-22.852-35.156-22.852-56.25v-399.023c14.063 15.82 31.641 29.883 50.977 43.945 121.289 82.617 203.906 138.867 249.609 172.266 19.336 14.063 35.156 26.367 45.703 33.398 12.305 7.031 28.125 15.82 47.461 24.609 21.094 7.031 38.672 12.305 56.25 12.305v0c17.578 0 35.156-5.273 56.25-12.305 19.336-8.789 35.156-17.578 47.461-24.609 10.547-7.031 26.367-19.336 45.703-33.398 58.008-40.43 140.625-98.438 249.609-172.266 19.336-14.063 36.914-28.125 50.977-43.945zM962 239.18c0 26.367-8.789 50.977-24.609 75.586s-36.914 43.945-61.523 61.523c-124.805 87.891-203.906 142.383-235.547 163.477-1.758 1.758-10.547 7.031-21.094 15.82-10.547 7.031-19.336 14.063-26.367 19.336-7.031 3.516-15.82 8.789-26.367 15.82-10.547 5.273-19.336 10.547-28.125 14.063-10.547 1.758-17.578 3.516-26.367 3.516v0c-8.789 0-15.82-1.758-26.367-3.516-8.789-3.516-17.578-8.789-28.125-14.063-10.547-7.031-19.336-12.305-26.367-15.82-7.031-5.273-15.82-12.305-26.367-19.336-10.547-8.789-19.336-14.063-21.094-15.82-31.641-21.094-75.586-52.734-131.836-91.406-58.008-40.43-91.406-63.281-103.711-72.070-21.094-14.063-40.43-33.398-58.008-58.008-19.336-24.609-28.125-47.461-28.125-68.555 0-26.367 7.031-47.461 21.094-65.039s33.398-26.367 59.766-26.367h738.281c22.852 0 40.43 8.789 56.25 24.609s24.609 33.398 24.609 56.25z" - ], - "defaultCode": 107, - "grid": 16 - }, - "properties": { - "id": 9, - "order": 13, - "prevSize": 32, - "code": 107, - "name": "uni6B", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 12 - }, - { - "icon": { - "paths": [ - "M671.961 221.961c0 8.789-1.758 17.578-8.789 22.852-7.031 7.031-14.063 10.547-22.852 10.547h-63.281v513.281h63.281c8.789 0 15.82 3.516 22.852 10.547 7.031 5.273 8.789 14.063 8.789 22.852s-1.758 15.82-8.789 21.094l-128.32 130.078c-7.031 5.273-14.063 8.789-22.852 8.789s-15.82-3.516-22.852-8.789l-128.32-130.078c-7.031-5.273-8.789-12.305-8.789-21.094s1.758-17.578 8.789-22.852c7.031-7.031 14.063-10.547 22.852-10.547h63.281v-513.281h-63.281c-8.789 0-15.82-3.516-22.852-10.547-7.031-5.273-8.789-14.063-8.789-22.852s1.758-15.82 8.789-21.094l128.32-130.078c7.031-5.273 14.063-8.789 22.852-8.789s15.82 3.516 22.852 8.789l128.32 130.078c7.031 5.273 8.789 12.305 8.789 21.094z" - ], - "defaultCode": 108, - "grid": 16 - }, - "properties": { - "id": 10, - "order": 14, - "prevSize": 32, - "code": 108, - "name": "uni6C", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 13 - }, - { - "icon": { - "paths": [ - "M670 516c0 6-2 10-6 14l-266 266c-4 4-10 6-14 6s-10-2-14-6l-28-28c-4-4-6-8-6-14 0-4 2-10 6-12l224-226-224-224c-4-4-6-8-6-14 0-4 2-8 6-12l28-28c4-4 10-6 14-6s10 2 14 6l266 266c4 4 6 8 6 12z" - ], - "defaultCode": 110, - "grid": 16 - }, - "properties": { - "id": 12, - "order": 15, - "prevSize": 32, - "code": 110, - "name": "uni6E", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 14 - }, - { - "icon": { - "paths": [ - "M732 676v38c0 4-2 8-6 12s-8 6-12 6h-404c-4 0-8-2-12-6s-6-8-6-12v-38c0-4 2-10 6-12 4-4 8-6 12-6h404c4 0 8 2 12 6 4 2 6 8 6 12zM732 530v36c0 6-2 10-6 14s-8 6-12 6h-404c-4 0-8-2-12-6s-6-8-6-14v-36c0-6 2-10 6-12 4-4 8-6 12-6h404c4 0 8 2 12 6 4 2 6 6 6 12zM220 878h584v-440h-238c-14 0-28-4-38-16-10-10-16-22-16-38v-238h-292zM586 366h214c-4-12-8-20-12-24l-180-178c-4-6-12-10-22-14zM878 384v512c0 16-6 28-16 38-10 12-24 16-40 16h-620c-16 0-30-4-40-16-10-10-16-22-16-38v-768c0-16 6-28 16-38 10-12 24-16 40-16h364c16 0 32 2 52 10 18 8 32 18 42 28l178 178c12 10 20 26 28 44s12 34 12 50z" - ], - "defaultCode": 104, - "grid": 16 - }, - "properties": { - "id": 13, - "order": 16, - "prevSize": 32, - "code": 104, - "name": "uni68", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 15 - }, - { - "icon": { - "paths": [ - "M362.586 362.586c0 24.609-8.789 45.703-26.367 63.281s-38.672 26.367-65.039 26.367c-24.609 0-45.703-8.789-63.281-26.367s-26.367-38.672-26.367-63.281c0-26.367 8.789-47.461 26.367-65.039s38.672-26.367 63.281-26.367c26.367 0 47.461 8.789 65.039 26.367s26.367 38.672 26.367 65.039zM842.469 541.883v210.938h-660.938v-91.406l151.172-149.414 73.828 75.586 240.82-240.82zM886.414 211.414h-748.828c-5.273 0-8.789 1.758-10.547 5.273-3.516 3.516-5.273 7.031-5.273 10.547v569.531c0 3.516 1.758 7.031 5.273 10.547 1.758 3.516 5.273 5.273 10.547 5.273h748.828c5.273 0 8.789-1.758 10.547-5.273 3.516-3.516 5.273-7.031 5.273-10.547v-569.531c0-3.516-1.758-7.031-5.273-10.547-1.758-3.516-5.273-5.273-10.547-5.273zM962 227.234v569.531c0 21.094-7.031 38.672-22.852 52.734-14.063 15.82-31.641 22.852-52.734 22.852h-748.828c-21.094 0-38.672-7.031-52.734-22.852-15.82-14.063-22.852-31.641-22.852-52.734v-569.531c0-21.094 7.031-38.672 22.852-52.734 14.063-15.82 31.641-22.852 52.734-22.852h748.828c21.094 0 38.672 7.031 52.734 22.852 15.82 14.063 22.852 31.641 22.852 52.734z" - ], - "defaultCode": 111, - "grid": 16 - }, - "properties": { - "id": 14, - "order": 17, - "prevSize": 32, - "code": 111, - "name": "uni6F", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 16 - }, - { - "icon": { - "paths": [ - "M798 420c0 6-2 10-6 14l-266 266c-4 4-10 6-14 6s-10-2-14-6l-266-266c-4-4-6-8-6-14 0-4 2-8 6-12l30-30c2-2 8-4 12-4 6 0 10 2 14 4l224 226 224-226c4-2 8-4 14-4 4 0 10 2 12 4l30 30c4 4 6 8 6 12z" - ], - "defaultCode": 113, - "grid": 16 - }, - "properties": { - "id": 16, - "order": 18, - "prevSize": 32, - "code": 113, - "name": "uni71", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 17 - }, - { - "icon": { - "paths": [ - "M732 786v-36c0-6-2-10-6-14-4-2-8-4-12-4h-404c-4 0-8 2-12 4-4 4-6 8-6 14v36c0 6 2 10 6 14 4 2 8 4 12 4h404c4 0 8-2 12-4 4-4 6-8 6-14zM732 640v-36c0-6-2-10-6-14s-8-4-12-4h-404c-4 0-8 0-12 4s-6 8-6 14v36c0 6 2 10 6 14 4 2 8 4 12 4h404c4 0 8-2 12-4 4-4 6-8 6-14zM878 438v458c0 16-6 28-16 38-10 12-24 16-40 16h-620c-16 0-30-4-40-16-10-10-16-22-16-38v-768c0-16 6-28 16-38 10-12 24-16 40-16h310v310c0 16 6 28 16 38 10 12 24 16 38 16zM876 366h-290v-292c30 6 56 18 74 38l178 178c20 20 32 44 38 76z" - ], - "defaultCode": 114, - "grid": 16 - }, - "properties": { - "id": 17, - "order": 19, - "prevSize": 32, - "code": 114, - "name": "uni72", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 18 - }, - { - "icon": { - "paths": [ - "M888.875 767.125v-376.875c0-15-5.625-26.25-15-37.5-9.375-9.375-22.5-15-35.625-15h-376.875c-15 0-28.125-3.75-37.5-15-9.375-9.375-15-22.5-15-35.625v-33.75c0-15-5.625-28.125-15-37.5s-22.5-15-35.625-15h-172.5c-13.125 0-26.25 5.625-35.625 15s-15 22.5-15 37.5v513.75c0 13.125 5.625 26.25 15 35.625 9.375 11.25 22.5 15 35.625 15h652.5c13.125 0 26.25-3.75 35.625-15 9.375-9.375 15-22.5 15-35.625zM958.25 390.25v376.875c0 31.875-13.125 60-35.625 84.375-24.375 24.375-52.5 35.625-84.375 35.625h-652.5c-31.875 0-60-11.25-84.375-35.625-22.5-24.375-35.625-52.5-35.625-84.375v-513.75c0-33.75 13.125-61.875 35.625-86.25 24.375-22.5 52.5-33.75 84.375-33.75h172.5c31.875 0 60 11.25 84.375 33.75 22.5 24.375 35.625 52.5 35.625 86.25v16.875h360c31.875 0 60 11.25 84.375 35.625 22.5 22.5 35.625 50.625 35.625 84.375z" - ], - "defaultCode": 115, - "grid": 16 - }, - "properties": { - "id": 18, - "order": 20, - "prevSize": 32, - "code": 115, - "name": "uni73", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 19 - }, - { - "icon": { - "paths": [ - "M888.875 425.75v103.125c0 15-5.625 26.25-15 37.5-9.375 9.375-22.5 15-35.625 15h-223.125v221.25c0 15-5.625 28.125-15 37.5s-22.5 15-37.5 15h-101.25c-15 0-28.125-5.625-37.5-15s-15-22.5-15-37.5v-221.25h-223.125c-13.125 0-26.25-5.625-35.625-15-9.375-11.25-15-22.5-15-37.5v-103.125c0-13.125 5.625-26.25 15-35.625s22.5-15 35.625-15h223.125v-223.125c0-15 5.625-26.25 15-35.625 9.375-11.25 22.5-15 37.5-15h101.25c15 0 28.125 3.75 37.5 15 9.375 9.375 15 20.625 15 35.625v223.125h223.125c13.125 0 26.25 5.625 35.625 15s15 22.5 15 35.625z" - ], - "defaultCode": 116, - "grid": 16 - }, - "properties": { - "id": 19, - "order": 21, - "prevSize": 32, - "code": 116, - "name": "uni74", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 20 - }, - { - "icon": { - "paths": [ - "M330 256c0-20-8-38-22-52s-32-22-52-22c-20 0-38 8-52 22-14 14-22 32-22 52 0 20 8 38 22 52 14 14 32 22 52 22 20 0 38-8 52-22 14-14 22-32 22-52zM938 586c0 20-6 36-20 50l-280 282c-16 14-34 20-52 20-22 0-38-6-52-20l-408-410c-16-14-28-32-38-58-10-24-14-46-14-66v-238c0-20 6-36 20-52 16-14 32-20 52-20h238c20 0 42 4 66 14 26 10 44 22 60 38l408 408c14 14 20 32 20 52z" - ], - "defaultCode": 117, - "grid": 16 - }, - "properties": { - "id": 20, - "order": 22, - "prevSize": 32, - "code": 117, - "name": "uni75", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 21 - }, - { - "icon": { - "paths": [ - "M942.664 570.367c0 8.789-5.273 19.336-14.063 31.641l-158.203 184.57c-12.305 15.82-31.641 29.883-56.25 40.43-24.609 12.305-45.703 17.578-66.797 17.578h-509.766c-10.547 0-21.094-1.758-28.125-7.031-8.789-3.516-14.063-10.547-14.063-19.336 0-10.547 5.273-21.094 15.82-31.641l156.445-184.57c14.063-17.578 33.398-29.883 56.25-42.188 24.609-10.547 47.461-15.82 68.555-15.82h509.766c10.547 0 19.336 1.758 28.125 5.273 8.789 5.273 12.305 12.305 12.305 21.094zM782.703 408.648v75.586h-390.234c-29.883 0-59.766 7.031-93.164 22.852-31.641 14.063-58.008 33.398-77.344 54.492l-156.445 186.328-3.516 3.516c0-1.758 0-3.516 0-7.031 0-1.758 0-3.516 0-5.273v-450c0-28.125 10.547-52.734 31.641-73.828 19.336-21.094 43.945-31.641 73.828-31.641h149.414c28.125 0 52.734 10.547 73.828 31.641s31.641 45.703 31.641 73.828v14.063h254.883c28.125 0 52.734 10.547 73.828 31.641s31.641 45.703 31.641 73.828z" - ], - "defaultCode": 118, - "grid": 16 - }, - "properties": { - "id": 21, - "order": 23, - "prevSize": 32, - "code": 118, - "name": "uni76", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 22 - }, - { - "icon": { - "paths": [ - "M658 512c0-40-14-74-42-104-30-28-64-42-104-42-40 0-74 14-104 42-28 30-42 64-42 104 0 40 14 74 42 104 30 28 64 42 104 42 40 0 74-14 104-42 28-30 42-64 42-104zM950 450v126c0 6 0 10-4 14-2 4-6 6-12 8l-104 16c-8 20-16 38-24 52 14 18 34 44 62 78 4 4 6 10 6 14 0 6-2 10-6 14-10 14-28 34-56 62-28 26-46 40-54 40-4 0-10-2-14-6l-80-62c-16 10-34 16-52 22-6 52-12 88-16 106-2 12-10 16-20 16h-128c-4 0-10 0-14-4s-6-8-6-12l-16-106c-18-6-36-12-52-20l-80 60c-4 4-8 6-14 6s-10-2-14-6c-48-44-80-76-94-96-4-4-4-8-4-14 0-4 0-8 4-12 6-8 16-22 28-38 14-18 24-32 32-42-10-18-18-38-24-56l-104-16c-6 0-10-2-12-6-4-4-4-8-4-14v-126c0-6 0-10 4-14 2-4 6-6 10-8l106-16c6-16 14-34 24-52-16-22-36-48-62-78-4-6-6-10-6-14 0-4 2-8 6-14 10-14 28-34 56-60 28-28 46-42 54-42 4 0 10 2 14 6l80 62c16-10 34-16 52-22 6-52 12-88 16-106 2-12 10-16 20-16h128c4 0 10 0 14 4s6 8 6 12l16 106c18 6 36 12 52 20l80-60c4-4 8-6 14-6s10 2 14 6c50 46 82 78 94 98 4 2 4 6 4 12 0 4 0 8-4 12-6 8-16 22-28 38-14 18-24 32-32 42 10 18 18 36 24 56l104 16c6 0 10 2 12 6 4 4 4 8 4 14z" - ], - "defaultCode": 119, - "grid": 16 - }, - "properties": { - "id": 22, - "order": 24, - "prevSize": 32, - "code": 119, - "name": "uni77", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 23 - }, - { - "icon": { - "paths": [ - "M954 292c0 14-4 28-16 38l-490 492c-12 10-24 16-40 16-14 0-28-6-38-16l-284-284c-12-12-16-24-16-40 0-14 4-28 16-38l76-78c12-10 24-16 40-16 14 0 28 6 38 16l168 168 376-376c10-10 24-16 38-16 16 0 28 6 40 16l76 78c12 12 16 24 16 40z" - ], - "defaultCode": 120, - "grid": 16 - }, - "properties": { - "id": 23, - "order": 25, - "prevSize": 32, - "code": 120, - "name": "uni78", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 24 - }, - { - "icon": { - "paths": [ - "M688 278c0 6-2 10-6 14l-224 224 224 226c4 2 6 8 6 12 0 6-2 10-6 14l-28 28c-4 4-10 6-14 6s-10-2-14-6l-266-266c-4-4-6-8-6-14 0-4 2-8 6-12l266-266c4-4 10-6 14-6s10 2 14 6l28 28c4 4 6 8 6 12z" - ], - "defaultCode": 122, - "grid": 16 - }, - "properties": { - "id": 24, - "order": 26, - "prevSize": 32, - "code": 122, - "name": "uni7A", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 25 - }, - { - "icon": { - "paths": [ - "M464 742l352-350c6-8 10-16 10-26s-4-18-10-26l-58-58c-8-8-16-12-26-12s-20 4-26 12l-268 266-120-120c-6-8-16-10-26-10s-18 2-26 10l-58 58c-6 8-10 16-10 26s4 18 10 26l206 204c6 8 14 12 24 12s20-4 26-12zM950 238v548c0 46-16 84-48 116s-70 48-116 48h-548c-46 0-84-16-116-48s-48-70-48-116v-548c0-46 16-84 48-116s70-48 116-48h548c46 0 84 16 116 48s48 70 48 116z" - ], - "defaultCode": 65, - "grid": 16 - }, - "properties": { - "id": 25, - "order": 27, - "prevSize": 32, - "code": 65, - "name": "uni41", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 26 - }, - { - "icon": { - "paths": [ - "M768 548v-72c0-10-4-20-10-26-8-8-16-12-26-12h-146v-146c0-10-4-18-12-26-6-6-16-10-26-10h-72c-10 0-20 4-26 10-8 8-12 16-12 26v146h-146c-10 0-18 4-26 12-6 6-10 16-10 26v72c0 10 4 20 10 26 8 8 16 12 26 12h146v146c0 10 4 18 12 26 6 6 16 10 26 10h72c10 0 20-4 26-10 8-8 12-16 12-26v-146h146c10 0 18-4 26-12 6-6 10-16 10-26zM950 512c0 80-18 154-58 220-40 68-92 120-160 160-66 40-140 58-220 58-80 0-154-18-220-58-68-40-120-92-160-160-40-66-58-140-58-220 0-80 18-154 58-220 40-68 92-120 160-160 66-40 140-58 220-58 80 0 154 18 220 58 68 40 120 92 160 160 40 66 58 140 58 220z" - ], - "defaultCode": 66, - "grid": 16 - }, - "properties": { - "id": 26, - "order": 28, - "prevSize": 32, - "code": 66, - "name": "uni42", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 27 - }, - { - "icon": { - "paths": [ - "M374.935 845.58c-132.111-37.981-510.278-204.772-80.918-756.335 231.193 156.882 320.369 295.598 336.881 409.543-110.643 39.633-186.607 117.249-176.698 257.617-61.102-143.671-108.992-343.488-128.808-467.342-9.908 145.322 11.559 402.938 49.541 556.517zM521.908 880.259c-31.377-87.523-97.433-376.516 397.984-361.654 14.863 454.132-226.239 437.617-333.58 406.24 44.587-87.523 102.385-166.791 175.047-232.846-89.176 49.541-170.093 112.294-239.452 188.258z" - ], - "defaultCode": 68, - "grid": 16 - }, - "properties": { - "id": 27, - "order": 29, - "prevSize": 32, - "code": 68, - "name": "uni44", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 28 - }, - { - "icon": { - "paths": [ - "M431.375 847.625c28.125 11.25 52.5 16.875 75 16.875 46.875 0 86.25-7.5 116.25-22.5s52.5-35.625 65.625-60c13.125-26.25 20.625-58.125 20.625-97.5 0-41.25-7.5-73.125-22.5-95.625-20.625-33.75-45-56.25-75-67.5-28.125-13.125-73.125-18.75-133.125-18.75-26.25 0-43.125 1.875-54.375 5.625v170.625l1.875 144.375c0 5.625 1.875 13.125 5.625 24.375zM423.875 446.375c16.875 3.75 35.625 3.75 60 3.75 61.875 0 108.75-11.25 140.625-33.75 31.875-24.375 46.875-63.75 46.875-120 0-39.375-15-73.125-45-101.25-30-26.25-75-39.375-136.875-39.375-18.75 0-41.25 1.875-69.375 7.5 0 15 0 28.125 1.875 41.25 1.875 43.125 3.75 93.75 1.875 148.125v52.5c0 16.875 0 30 0 41.25zM135.125 922.625v-48.75c16.875-3.75 28.125-5.625 37.5-7.5 28.125-3.75 48.75-9.375 65.625-16.875 5.625-9.375 9.375-18.75 11.25-26.25 3.75-24.375 5.625-58.125 5.625-105l-1.875-266.25c-1.875-90-3.75-163.125-5.625-215.625 0-31.875-1.875-50.625-5.625-58.125 0-1.875-1.875-3.75-5.625-7.5-7.5-3.75-18.75-5.625-37.5-7.5-11.25 0-30-3.75-60-7.5l-3.75-43.125 140.625-3.75 202.5-7.5h24.375c1.875 0 3.75 0 7.5 0s5.625 0 7.5 0c0 0 3.75 0 11.25 0s15 0 22.5 0h39.375c31.875 0 65.625 3.75 103.125 15 15 3.75 31.875 11.25 50.625 20.625 20.625 9.375 39.375 22.5 54.375 39.375 16.875 16.875 28.125 35.625 35.625 56.25s11.25 43.125 11.25 65.625c0 24.375-5.625 48.75-16.875 69.375-13.125 20.625-30 39.375-52.5 56.25-9.375 5.625-35.625 20.625-78.75 41.25 61.875 13.125 110.625 39.375 142.5 76.875s48.75 80.625 48.75 127.5c0 26.25-5.625 56.25-15 86.25-7.5 22.5-20.625 43.125-37.5 61.875-24.375 26.25-48.75 45-75 58.125s-63.75 24.375-108.75 31.875c-30 5.625-65.625 7.5-106.875 5.625l-105-1.875c-30 0-84.375 1.875-159.375 5.625-13.125 1.875-61.875 3.75-146.25 5.625z" - ], - "defaultCode": 67, - "grid": 16 - }, - "properties": { - "id": 28, - "order": 30, - "prevSize": 32, - "code": 67, - "name": "uni43", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 29 - }, - { - "icon": { - "paths": [ - "M238.25 922.625l9.375-45c0-1.875 15-5.625 41.25-11.25 26.25-7.5 46.875-13.125 61.875-20.625 9.375-13.125 16.875-31.875 20.625-54.375l15-75 37.5-178.125c1.875-15 5.625-30 7.5-45 3.75-15 7.5-26.25 9.375-35.625s5.625-16.875 7.5-24.375c1.875-7.5 1.875-13.125 3.75-16.875s1.875-5.625 1.875-5.625l15-84.375 9.375-33.75 11.25-73.125 5.625-26.25v-20.625c-15-7.5-41.25-13.125-78.75-15-9.375 0-16.875-1.875-18.75-1.875l9.375-54.375 170.625 7.5c13.125 0 26.25 0 37.5 0 24.375 0 61.875-1.875 116.25-3.75 11.25-1.875 22.5-1.875 35.625-3.75 13.125 0 18.75 0 18.75 0 0 5.625-1.875 13.125-1.875 18.75-3.75 11.25-5.625 20.625-7.5 28.125-20.625 7.5-39.375 13.125-58.125 16.875-22.5 5.625-41.25 11.25-54.375 16.875-3.75 11.25-9.375 26.25-13.125 46.875-3.75 15-5.625 30-7.5 43.125-15 71.25-26.25 125.625-35.625 165l-31.875 166.875-20.625 84.375-22.5 125.625-7.5 24.375c0 1.875 0 7.5 1.875 13.125 22.5 5.625 43.125 9.375 63.75 11.25 13.125 1.875 24.375 3.75 35.625 5.625-1.875 11.25-1.875 20.625-3.75 31.875-3.75 11.25-5.625 18.75-5.625 22.5-5.625 0-11.25 0-13.125 0-7.5 0-15 0-22.5 0-1.875 0-7.5 0-15 0-5.625-1.875-31.875-5.625-76.875-9.375l-106.875-1.875c-13.125 0-45 1.875-91.875 5.625-26.25 3.75-45 3.75-52.5 5.625z" - ], - "defaultCode": 69, - "grid": 16 - }, - "properties": { - "id": 29, - "order": 31, - "prevSize": 32, - "code": 69, - "name": "uni45", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 30 - }, - { - "icon": { - "paths": [ - "M271.399 752.601c0 26.367-9.888 46.143-26.367 64.27-18.127 18.128-39.551 26.367-64.27 26.367s-46.143-8.24-64.27-26.367c-18.128-18.128-26.367-37.903-26.367-64.27 0-24.719 8.24-46.143 26.367-64.27 18.127-16.479 39.551-26.367 64.27-26.367s46.143 9.888 64.27 26.367c16.479 18.128 26.367 39.551 26.367 64.27zM271.399 512c0 24.719-9.888 46.143-26.367 64.27-18.127 18.128-39.551 26.367-64.27 26.367s-46.143-8.24-64.27-26.367c-18.128-18.128-26.367-39.551-26.367-64.27s8.24-46.143 26.367-64.27c18.127-18.127 39.551-26.367 64.27-26.367s46.143 8.24 64.27 26.367c16.479 18.127 26.367 39.551 26.367 64.27zM933.875 708.106v90.637c0 3.296-1.648 6.592-4.943 9.888s-6.592 4.943-9.888 4.943h-573.487c-3.296 0-6.592-1.648-9.888-4.943s-4.943-6.592-4.943-9.888v-90.638c0-4.943 1.648-8.24 4.943-11.536 3.296-1.648 6.592-3.296 9.888-3.296h573.487c3.296 0 6.592 1.648 9.888 3.296 3.296 3.296 4.943 6.592 4.943 11.536zM271.399 271.399c0 24.719-9.888 46.143-26.367 64.27-18.127 16.479-39.551 26.367-64.27 26.367s-46.143-9.888-64.27-26.367c-18.128-18.127-26.367-39.551-26.367-64.27 0-26.367 8.24-46.143 26.367-64.27s39.551-26.367 64.27-26.367c24.719 0 46.143 8.24 64.27 26.367 16.479 18.127 26.367 37.903 26.367 64.27zM933.875 467.505v88.989c0 4.943-1.648 8.24-4.943 11.536s-6.592 4.943-9.888 4.943h-573.487c-3.296 0-6.592-1.648-9.888-4.943s-4.943-6.592-4.943-11.536v-88.989c0-4.943 1.648-8.24 4.943-11.536s6.592-4.943 9.888-4.943h573.487c3.296 0 6.592 1.648 9.888 4.943s4.943 6.592 4.943 11.536zM933.875 225.257v90.638c0 4.943-1.648 8.24-4.943 11.536-3.296 1.648-6.592 3.296-9.888 3.296h-573.487c-3.296 0-6.592-1.648-9.888-3.296-3.296-3.296-4.943-6.592-4.943-11.536v-90.637c0-3.296 1.648-6.592 4.943-9.888s6.592-4.943 9.888-4.943h573.487c3.296 0 6.592 1.648 9.888 4.943s4.943 6.592 4.943 9.888z" - ], - "defaultCode": 70, - "grid": 16 - }, - "properties": { - "id": 30, - "order": 32, - "prevSize": 32, - "code": 70, - "name": "uni46", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 31 - }, - { - "icon": { - "paths": [ - "M284.893 831.805c0 23.174-7.725 41.714-24.719 55.618-15.449 13.904-35.534 20.085-58.708 20.085-32.444 0-57.163-9.27-77.248-29.354l26.264-38.623c13.904 13.904 29.354 20.085 46.348 20.085 9.27 0 15.449-3.090 21.629-6.18 7.725-4.634 10.815-10.815 10.815-18.54 0-20.085-15.449-27.809-46.348-24.719l-12.36-24.719c3.090-3.090 7.725-9.27 13.904-20.085 7.725-9.27 13.904-16.994 20.085-23.174 4.634-6.18 10.815-12.36 15.449-16.995v-1.545c-4.634 0-12.36 1.545-21.629 1.545s-16.994 0-21.629 0v23.174h-46.348v-66.433h146.77v38.623l-41.714 50.984c15.449 3.090 27.809 10.815 35.534 21.629 9.27 10.815 13.904 23.174 13.904 38.623zM284.893 555.259v69.523h-159.13c-1.545-10.815-3.090-18.54-3.090-23.174 0-15.449 4.634-29.354 10.815-41.714s15.449-21.629 24.719-29.354c9.27-7.725 20.085-15.449 29.354-21.629s18.54-12.36 24.719-18.54c7.725-6.18 10.815-13.904 10.815-20.085 0-7.725-3.090-13.904-6.18-16.994-4.634-4.634-10.815-6.18-18.54-6.18-12.36 0-24.719 9.27-35.534 26.264l-37.079-26.264c7.725-15.449 16.994-27.809 30.899-35.534s30.899-12.36 47.893-12.36c20.085 0 38.623 6.18 54.073 18.54 13.904 12.36 21.629 27.809 21.629 49.438 0 13.904-4.634 27.809-15.449 40.169-9.27 12.36-20.085 21.629-32.444 27.809-12.36 7.725-23.174 15.449-33.989 23.174-9.27 7.725-15.449 15.449-15.449 23.174h55.618v-26.264zM907.508 695.849v84.972c0 3.090-1.545 6.18-4.634 9.27s-6.18 4.634-9.27 4.634h-537.644c-3.090 0-6.18-1.545-9.27-4.634s-4.634-6.18-4.634-9.27v-84.973c0-4.634 1.545-7.725 4.634-10.815 3.090-1.545 6.18-3.090 9.27-3.090h537.644c3.090 0 6.18 1.545 9.27 3.090 3.090 3.090 4.634 6.18 4.634 10.815zM286.437 298.797v43.259h-148.315v-43.259h47.893c0-12.36 0-29.354 0-54.073 0-23.174 0-41.714 0-52.529v-6.18h-1.545c-1.545 4.634-9.27 13.904-21.629 24.719l-30.899-33.989 60.253-55.618h46.348v177.669zM907.508 470.286v83.427c0 4.634-1.545 7.725-4.634 10.815s-6.18 4.634-9.27 4.634h-537.644c-3.090 0-6.18-1.545-9.27-4.634s-4.634-6.18-4.634-10.815v-83.427c0-4.634 1.545-7.725 4.634-10.815s6.18-4.634 9.27-4.634h537.644c3.090 0 6.18 1.545 9.27 4.634s4.634 6.18 4.634 10.815zM907.508 243.178v84.973c0 4.634-1.545 7.725-4.634 10.815-3.090 1.545-6.18 3.090-9.27 3.090h-537.644c-3.090 0-6.18-1.545-9.27-3.090-3.090-3.090-4.634-6.18-4.634-10.815v-84.972c0-3.090 1.545-6.18 4.634-9.27s6.18-4.634 9.27-4.634h537.644c3.090 0 6.18 1.545 9.27 4.634s4.634 6.18 4.634 9.27z" - ], - "defaultCode": 71, - "grid": 16 - }, - "properties": { - "id": 31, - "order": 33, - "prevSize": 32, - "code": 71, - "name": "uni47", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 32 - }, - { - "icon": { - "paths": [ - "M922.625 512c0 56.25-9.375 108.75-31.875 159.375s-50.625 95.625-88.125 131.25c-35.625 37.5-80.625 65.625-131.25 88.125s-103.125 31.875-159.375 31.875c-61.875 0-120-11.25-174.375-37.5-56.25-26.25-103.125-63.75-142.5-110.625-1.875-3.75-3.75-7.5-3.75-11.25 0-5.625 1.875-7.5 5.625-11.25l73.125-73.125c3.75-3.75 7.5-5.625 13.125-5.625s9.375 3.75 13.125 5.625c24.375 35.625 58.125 61.875 95.625 78.75 37.5 18.75 76.875 28.125 120 28.125 37.5 0 73.125-7.5 106.875-20.625 33.75-15 61.875-33.75 86.25-60 26.25-24.375 45-52.5 60-86.25 13.125-33.75 20.625-69.375 20.625-106.875s-7.5-73.125-20.625-106.875c-15-33.75-33.75-61.875-60-86.25-24.375-26.25-52.5-45-86.25-60-33.75-13.125-69.375-20.625-106.875-20.625-35.625 0-69.375 5.625-101.25 18.75s-60 30-84.375 54.375l73.125 73.125c11.25 11.25 13.125 24.375 7.5 37.5-7.5 15-16.875 20.625-31.875 20.625h-240c-9.375 0-16.875-1.875-24.375-9.375s-9.375-15-9.375-24.375v-240c0-15 5.625-24.375 20.625-31.875 13.125-5.625 26.25-3.75 37.5 7.5l69.375 69.375c37.5-35.625 82.5-63.75 131.25-84.375 48.75-18.75 99.375-28.125 151.875-28.125 56.25 0 108.75 9.375 159.375 31.875s95.625 50.625 131.25 88.125c37.5 35.625 65.625 80.625 88.125 131.25s31.875 103.125 31.875 159.375z" - ], - "defaultCode": 72, - "grid": 16 - }, - "properties": { - "id": 32, - "order": 34, - "prevSize": 32, - "code": 72, - "name": "uni48", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 33 - }, - { - "icon": { - "paths": [ - "M922.625 168.875v240c0 9.375-1.875 16.875-9.375 24.375s-15 9.375-24.375 9.375h-240c-15 0-24.375-5.625-31.875-20.625-5.625-13.125-3.75-26.25 7.5-37.5l75-73.125c-52.5-48.75-116.25-73.125-187.5-73.125-37.5 0-73.125 7.5-106.875 20.625-33.75 15-61.875 33.75-86.25 60-26.25 24.375-45 52.5-60 86.25-13.125 33.75-20.625 69.375-20.625 106.875s7.5 73.125 20.625 106.875c15 33.75 33.75 61.875 60 86.25 24.375 26.25 52.5 45 86.25 60 33.75 13.125 69.375 20.625 106.875 20.625 43.125 0 82.5-9.375 120-28.125 37.5-16.875 71.25-43.125 95.625-78.75 3.75-1.875 7.5-5.625 13.125-5.625s9.375 1.875 13.125 5.625l73.125 73.125c3.75 3.75 5.625 5.625 5.625 11.25 0 3.75-1.875 7.5-3.75 11.25-39.375 46.875-86.25 84.375-142.5 110.625-54.375 26.25-112.5 37.5-174.375 37.5-56.25 0-108.75-9.375-159.375-31.875s-95.625-50.625-131.25-88.125c-37.5-35.625-65.625-80.625-88.125-131.25s-31.875-103.125-31.875-159.375c0-56.25 9.375-108.75 31.875-159.375s50.625-95.625 88.125-131.25c35.625-37.5 80.625-65.625 131.25-88.125s103.125-31.875 159.375-31.875c52.5 0 103.125 9.375 151.875 28.125 48.75 20.625 93.75 48.75 131.25 84.375l69.375-69.375c11.25-11.25 22.5-13.125 37.5-7.5 15 7.5 20.625 16.875 20.625 31.875z" - ], - "defaultCode": 73, - "grid": 16 - }, - "properties": { - "id": 33, - "order": 35, - "prevSize": 32, - "code": 73, - "name": "uni49", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 34 - }, - { - "icon": { - "paths": [ - "M824.891 703.961c0-12.305-3.516-24.609-14.063-33.398l-103.711-103.711c-8.789-10.547-21.094-14.063-35.156-14.063s-24.609 5.273-35.156 15.82c0 0 3.516 3.516 8.789 8.789s8.789 8.789 10.547 10.547c1.758 1.758 5.273 5.273 8.789 10.547 3.516 3.516 5.273 7.031 5.273 12.305 1.758 3.516 1.758 8.789 1.758 14.063 0 12.305-3.516 24.609-14.063 33.398-8.789 8.789-19.336 14.063-33.398 14.063-5.273 0-8.789 0-14.063-1.758-3.516-1.758-8.789-3.516-12.305-7.031-5.273-1.758-7.031-5.273-10.547-7.031-1.758-1.758-5.273-5.273-10.547-10.547s-7.031-8.789-8.789-8.789c-10.547 8.789-15.82 21.094-15.82 35.156s3.516 26.367 14.063 35.156l101.953 103.711c10.547 8.789 21.094 14.063 35.156 14.063 12.305 0 24.609-5.273 33.398-14.063l73.828-72.070c10.547-10.547 14.063-21.094 14.063-35.156zM471.57 350.641c0-14.063-3.516-24.609-14.063-33.398l-101.953-105.469c-10.547-8.789-21.094-14.063-35.156-14.063-12.305 0-24.609 5.273-33.398 14.063l-73.828 73.828c-10.547 8.789-14.063 21.094-14.063 33.398 0 14.063 3.516 24.609 14.063 33.398l103.711 105.469c8.789 8.789 21.094 14.063 35.156 14.063s24.609-5.273 35.156-15.82c0-1.758-3.516-5.273-8.789-10.547s-8.789-8.789-10.547-10.547c-1.758-1.758-5.273-5.273-8.789-8.789-3.516-5.273-5.273-8.789-5.273-12.305-1.758-5.273-1.758-8.789-1.758-14.063 0-14.063 3.516-24.609 14.063-35.156 8.789-8.789 19.336-14.063 33.398-14.063 5.273 0 8.789 1.758 14.063 1.758 3.516 1.758 8.789 3.516 12.305 7.031 5.273 3.516 7.031 5.273 10.547 7.031 1.758 1.758 5.273 5.273 10.547 10.547s7.031 8.789 8.789 10.547c10.547-10.547 15.82-22.852 15.82-36.914zM921.57 703.961c0 40.43-14.063 75.586-42.188 101.953l-73.828 73.828c-28.125 28.125-61.523 42.188-101.953 42.188s-75.586-14.063-101.953-42.188l-103.711-105.469c-28.125-26.367-42.188-61.523-42.188-101.953s14.063-75.586 43.945-103.711l-43.945-43.945c-28.125 28.125-63.281 43.945-103.711 43.945s-75.586-14.063-103.711-42.188l-103.711-105.469c-28.125-28.125-42.188-61.523-42.188-101.953s14.063-73.828 42.188-101.953l73.828-73.828c28.125-28.125 61.523-40.43 101.953-40.43s75.586 14.063 101.953 42.188l103.711 103.711c28.125 28.125 42.188 61.523 42.188 101.953s-14.063 75.586-43.945 105.469l43.945 43.945c28.125-29.883 63.281-43.945 103.711-43.945s75.586 14.063 103.711 42.188l103.711 103.711c28.125 28.125 42.188 63.281 42.188 101.953z" - ], - "defaultCode": 74, - "grid": 16 - }, - "properties": { - "id": 34, - "order": 36, - "prevSize": 32, - "code": 74, - "name": "uni4A", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 35 - }, - { - "icon": { - "paths": [ - "M950 512c0 80-18 154-58 220-40 68-92 120-160 160-66 40-140 58-220 58-80 0-154-18-220-58-68-40-120-92-160-160-40-66-58-140-58-220 0-80 18-154 58-220 40-68 92-120 160-160 66-40 140-58 220-58 80 0 154 18 220 58 68 40 120 92 160 160 40 66 58 140 58 220z" - ], - "defaultCode": 75, - "grid": 16 - }, - "properties": { - "id": 35, - "order": 37, - "prevSize": 32, - "code": 75, - "name": "uni4B", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 36 - }, - { - "icon": { - "paths": [ - "M512 202c-56 0-108 14-156 40-48 28-86 66-114 114-26 48-40 100-40 156 0 56 14 108 40 156 28 48 66 86 114 114 48 26 100 40 156 40 56 0 108-14 156-40 48-28 86-66 114-114 26-48 40-100 40-156 0-56-14-108-40-156-28-48-66-86-114-114-48-26-100-40-156-40zM950 512c0 80-18 154-58 220-40 68-92 120-160 160-66 40-140 58-220 58-80 0-154-18-220-58-68-40-120-92-160-160-40-66-58-140-58-220 0-80 18-154 58-220 40-68 92-120 160-160 66-40 140-58 220-58 80 0 154 18 220 58 68 40 120 92 160 160 40 66 58 140 58 220z" - ], - "defaultCode": 76, - "grid": 16 - }, - "properties": { - "id": 36, - "order": 38, - "prevSize": 32, - "code": 76, - "name": "uni4C", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 37 - }, - { - "icon": { - "paths": [ - "M958 694c0 22-8 38-22 52l-42 44c-16 14-32 20-52 20-22 0-38-6-52-20l-278-278-278 278c-14 14-30 20-52 20-20 0-36-6-50-20l-44-44c-14-14-22-30-22-52 0-20 8-36 22-52l372-372c14-14 32-20 52-20s38 6 52 20l372 372c14 16 22 32 22 52z" - ], - "defaultCode": 77, - "grid": 16 - }, - "properties": { - "id": 37, - "order": 39, - "prevSize": 32, - "code": 77, - "name": "uni4D", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 38 - }, - { - "icon": { - "paths": [ - "M958 402c0 20-8 38-22 52l-372 372c-14 14-32 22-52 22s-38-8-52-22l-372-372c-14-14-22-32-22-52s8-38 22-52l42-42c16-14 34-22 52-22 22 0 38 8 52 22l278 278 278-278c14-14 30-22 52-22 18 0 36 8 52 22l42 42c14 16 22 32 22 52z" - ], - "defaultCode": 78, - "grid": 16 - }, - "properties": { - "id": 38, - "order": 40, - "prevSize": 32, - "code": 78, - "name": "uni4E", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 39 - }, - { - "icon": { - "paths": [ - "M350.501 512c-47.791 1.648-85.693 19.776-117.005 56.031h-57.678c-24.719 0-44.495-4.943-60.974-18.128-16.479-11.536-24.719-28.015-24.719-51.086 0-103.821 18.127-154.907 54.382-154.907 1.648 0 8.24 1.648 19.776 8.24 9.888 6.592 24.719 13.184 42.847 19.776 16.479 4.943 34.607 8.24 51.086 8.24 19.776 0 39.551-3.296 59.326-9.888-1.648 11.536-1.648 21.424-1.648 29.663 0 39.551 11.536 77.453 34.607 112.060zM821.815 792.151c0 34.607-11.536 62.622-32.959 82.398-21.424 21.424-49.438 31.311-84.045 31.311h-385.62c-34.607 0-62.622-9.888-84.045-31.311-21.424-19.776-32.959-47.791-32.959-82.398 0-16.479 1.648-31.311 1.648-46.143 1.648-14.831 3.296-29.663 6.592-47.791 3.296-16.479 6.592-32.959 11.536-47.791s11.536-28.015 18.128-42.847c8.24-13.184 18.127-24.719 28.015-34.607s23.071-18.127 37.903-24.719c14.831-4.943 31.311-8.24 49.438-8.24 1.648 0 8.24 3.296 18.128 9.888s19.776 13.184 31.311 21.424c13.184 6.592 28.015 14.831 47.791 19.776 19.776 6.592 39.551 9.888 59.326 9.888s39.551-3.296 59.326-9.888c19.776-4.943 34.607-13.184 47.791-19.776 11.536-8.24 21.424-14.831 31.311-21.424s16.479-9.888 18.127-9.888c18.128 0 34.607 3.296 49.438 8.24 14.831 6.592 28.015 14.831 37.903 24.719s19.776 21.424 28.015 34.607c6.592 14.831 13.184 28.015 18.127 42.847s8.24 31.311 11.536 47.791c3.296 18.128 4.943 32.959 6.592 47.791 0 14.831 1.648 29.663 1.648 46.143zM371.924 230.201c0 31.311-11.536 57.678-32.959 80.75-23.071 21.424-49.438 32.959-80.75 32.959-29.663 0-57.678-11.536-79.102-32.959-21.424-23.071-32.959-49.438-32.959-80.75s11.536-57.678 32.959-79.102c21.424-21.424 49.438-32.959 79.102-32.959 31.311 0 57.678 11.536 80.75 32.959 21.424 21.424 32.959 47.791 32.959 79.102zM680.091 399.94c0 46.143-16.479 85.693-49.438 118.653s-72.51 49.438-118.653 49.438c-46.143 0-85.693-16.479-118.653-49.438s-49.438-72.51-49.438-118.653c0-47.791 16.479-87.341 49.438-120.3s72.51-49.438 118.653-49.438c46.143 0 85.693 16.479 118.653 49.438s49.438 72.51 49.438 120.3zM933.875 498.817c0 23.071-8.24 39.551-24.719 51.086-16.479 13.184-36.255 18.128-60.974 18.128h-57.678c-31.311-36.255-69.214-54.383-117.005-56.031 23.071-34.607 34.607-72.51 34.607-112.060 0-8.24 0-18.127-1.648-29.663 19.776 6.592 39.551 9.888 59.326 9.888 16.479 0 34.607-3.296 51.086-8.24 18.128-6.592 32.959-13.184 42.847-19.776 11.536-6.592 18.128-8.24 19.776-8.24 36.255 0 54.383 51.086 54.383 154.907zM877.844 230.201c0 31.311-11.536 57.678-32.959 80.75-21.424 21.424-49.438 32.959-79.102 32.959-31.311 0-57.678-11.536-80.75-32.959-21.424-23.071-32.959-49.438-32.959-80.75s11.536-57.678 32.959-79.102c23.071-21.424 49.438-32.959 80.75-32.959 29.663 0 57.678 11.536 79.102 32.959s32.959 47.791 32.959 79.102z" - ], - "defaultCode": 79, - "grid": 16 - }, - "properties": { - "id": 39, - "order": 41, - "prevSize": 32, - "code": 79, - "name": "uni4F", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 40 - }, - { - "icon": { - "paths": [ - "M750 512c0 14-6 24-18 32l-312 182c-6 4-12 6-18 6s-12-2-18-6-18-18-18-32v-364c0-14 6-26 18-32 12-8 24-8 36 0l312 182c12 8 18 18 18 32zM822 512c0-56-14-108-40-156-28-48-66-86-114-114-48-26-100-40-156-40-56 0-108 14-156 40-48 28-86 66-114 114-26 48-40 100-40 156 0 56 14 108 40 156 28 48 66 86 114 114 48 26 100 40 156 40 56 0 108-14 156-40 48-28 86-66 114-114 26-48 40-100 40-156zM950 512c0 80-18 154-58 220-40 68-92 120-160 160-66 40-140 58-220 58-80 0-154-18-220-58-68-40-120-92-160-160-40-66-58-140-58-220 0-80 18-154 58-220 40-68 92-120 160-160 66-40 140-58 220-58 80 0 154 18 220 58 68 40 120 92 160 160 40 66 58 140 58 220z" - ], - "defaultCode": 80, - "grid": 16 - }, - "properties": { - "id": 40, - "order": 42, - "prevSize": 32, - "code": 80, - "name": "uni50", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 41 - }, - { - "icon": { - "paths": [ - "M512.359 318.641c0-26.367-10.547-49.219-28.125-68.555-19.336-17.578-42.188-28.125-68.555-28.125s-49.219 10.547-68.555 28.125c-19.336 19.336-28.125 42.188-28.125 68.555 0 14.063 3.516 28.125 8.789 42.188-12.305-7.031-26.367-8.789-40.43-8.789-28.125 0-49.219 8.789-68.555 28.125-19.336 17.578-28.125 40.43-28.125 66.797 0 28.125 8.789 50.977 28.125 68.555 19.336 19.336 40.43 28.125 68.555 28.125 26.367 0 49.219-8.789 68.555-28.125 17.578-17.578 28.125-40.43 28.125-68.555 0-14.063-3.516-26.367-10.547-40.43 14.063 5.273 28.125 8.789 42.188 8.789 26.367 0 49.219-8.789 68.555-28.125 17.578-19.336 28.125-40.43 28.125-68.555zM939.508 671.961c0 7.031-8.789 17.578-24.609 33.398-15.82 17.578-28.125 24.609-33.398 24.609-3.516 0-7.031-1.758-14.063-7.031s-12.305-10.547-19.336-17.578c-5.273-5.273-10.547-12.305-19.336-19.336-7.031-8.789-10.547-12.305-12.305-14.063l-47.461 49.219 110.742 110.742c8.789 8.789 14.063 21.094 14.063 33.398 0 14.063-7.031 28.125-19.336 40.43-14.063 14.063-26.367 19.336-40.43 19.336s-26.367-3.516-35.156-14.063l-337.5-335.742c-58.008 43.945-119.531 65.039-182.813 65.039-54.492 0-98.438-17.578-133.594-50.977-33.398-35.156-50.977-79.102-50.977-133.594 0-52.734 15.82-105.469 47.461-156.445 31.641-52.734 73.828-93.164 124.805-124.805s103.711-47.461 156.445-47.461c54.492 0 100.195 15.82 133.594 50.977 35.156 33.398 52.734 79.102 52.734 133.594 0 63.281-22.852 123.047-66.797 182.813l179.297 177.539 47.461-47.461c-1.758-1.758-5.273-5.273-12.305-12.305-8.789-7.031-15.82-14.063-21.094-19.336s-10.547-12.305-15.82-17.578c-5.273-7.031-8.789-12.305-8.789-15.82 0-5.273 8.789-15.82 24.609-31.641 15.82-17.578 28.125-24.609 33.398-24.609 3.516 0 8.789 1.758 12.305 3.516 1.758 3.516 8.789 10.547 22.852 22.852 12.305 12.305 26.367 26.367 40.43 40.43s28.125 28.125 43.945 42.188c14.063 15.82 26.367 28.125 36.914 40.43 8.789 10.547 14.063 17.578 14.063 19.336z" - ], - "defaultCode": 81, - "grid": 16 - }, - "properties": { - "id": 41, - "order": 43, - "prevSize": 32, - "code": 81, - "name": "uni51", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 42 - }, - { - "icon": { - "paths": [ - "M751.063 712.391c123.047 42.188 184.57 79.102 184.57 108.984 0 0 0 94.922 0 94.922s-423.633 0-423.633 0c0 0-423.633 0-423.633 0s0-94.922 0-94.922c0-29.883 61.523-66.797 184.57-108.984 56.25-21.094 94.922-42.188 114.258-63.281 21.094-21.094 31.641-49.219 31.641-84.375 0-14.063-7.031-28.125-21.094-43.945-12.305-17.578-21.094-38.672-28.125-66.797-1.758-7.031-3.516-12.305-8.789-15.82-3.516-3.516-7.031-5.273-12.305-7.031-3.516-1.758-7.031-7.031-12.305-15.82-3.516-8.789-7.031-21.094-7.031-38.672 0-8.789 0-17.578 3.516-22.852 3.516-7.031 5.273-10.547 8.789-10.547 0 0 3.516-3.516 3.516-3.516-5.273-29.883-8.789-56.25-10.547-79.102-3.516-33.398 8.789-66.797 36.914-101.953 26.367-33.398 73.828-50.977 140.625-50.977s114.258 17.578 142.383 50.977c28.125 35.156 38.672 68.555 35.156 101.953 0 0-10.547 79.102-10.547 79.102 10.547 3.516 15.82 17.578 15.82 36.914 0 17.578-3.516 29.883-7.031 38.672-5.273 8.789-8.789 14.063-12.305 15.82-5.273 1.758-8.789 3.516-12.305 7.031-5.273 3.516-7.031 8.789-8.789 15.82-5.273 29.883-14.063 50.977-28.125 66.797s-21.094 29.883-21.094 43.945c0 35.156 10.547 63.281 31.641 84.375s59.766 42.188 114.258 63.281z" - ], - "defaultCode": 121, - "grid": 16 - }, - "properties": { - "id": 42, - "order": 44, - "prevSize": 32, - "code": 121, - "name": "uni79", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 43 - }, - { - "icon": { - "paths": [ - "M880 246h-376c-20-24-40-50-46-56-4-12-16-20-28-20h-150c-10 0-18 6-26 12l-50 64h-60c-32 0-56 26-56 56v496c0 30 24 56 56 56h736c32 0 56-26 56-56v-496c0-30-24-56-56-56z" - ], - "defaultCode": 82, - "grid": 16 - }, - "properties": { - "id": 43, - "order": 45, - "prevSize": 32, - "code": 82, - "name": "uni52", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 44 - }, - { - "icon": { - "paths": [ - "M766.918 695.849c0-18.54-6.18-35.534-18.54-50.984-13.904-15.449-29.354-23.174-46.348-23.174-15.449 0-27.809 4.634-37.079 15.449-7.725 10.815-12.36 24.719-12.36 41.714s4.634 30.899 15.449 41.714c10.815 12.36 26.264 16.995 46.348 16.995 13.904 0 26.264-3.090 37.079-10.815 10.815-9.27 15.449-18.54 15.449-30.899zM498.096 751.467c0 4.634-1.545 7.725-4.634 10.815l-140.59 140.59c-3.090 3.090-6.18 4.634-10.815 4.634-3.090 0-6.18-1.545-9.27-4.634l-142.136-140.59c-4.634-4.634-4.634-9.27-3.090-15.449 3.090-6.18 7.725-9.27 13.904-9.27h84.972v-607.166c0-4.634 1.545-7.725 3.090-9.27 3.090-3.090 6.18-4.634 10.815-4.634h84.973c3.090 0 7.725 1.545 9.27 4.634 3.090 1.545 4.634 4.634 4.634 9.27v607.166h84.973c3.090 0 7.725 1.545 9.27 4.634 3.090 3.090 4.634 6.18 4.634 9.27zM828.716 722.114c0 18.54-1.545 35.534-6.18 52.529-3.090 18.54-9.27 35.534-16.994 50.984-9.27 15.449-18.54 29.354-30.899 41.714-10.815 12.36-26.264 21.629-43.259 29.354s-35.534 10.815-55.618 10.815c-18.54 0-33.989-3.090-47.893-7.725-7.725-1.545-13.904-4.634-18.54-6.18l16.995-49.438c4.634 1.545 9.27 3.090 13.904 4.634 10.815 3.090 21.629 6.18 32.444 6.18 24.719 0 44.804-9.27 60.253-26.264 13.904-16.994 24.719-38.623 29.354-64.888h-1.545c-6.18 7.725-15.449 12.36-26.264 16.995-12.36 4.634-24.719 6.18-38.623 6.18-30.899 0-55.618-10.815-75.703-30.899-20.085-21.629-29.354-46.348-29.354-77.248s10.815-57.163 30.899-78.792c21.629-20.085 47.893-30.899 80.337-30.899 37.079 0 66.433 13.904 91.152 41.714 23.174 27.809 35.534 64.888 35.534 111.237zM816.356 405.399v49.438h-207.023v-49.438h72.612v-191.574c0-1.545 0-4.634 0-7.725 1.545-3.090 1.545-6.18 1.545-7.725v-6.18h-1.545l-3.090 4.634c-3.090 3.090-6.18 7.725-10.815 13.904l-27.809 24.719-37.079-37.079 84.973-81.882h54.073v288.907z" - ], - "defaultCode": 84, - "grid": 16 - }, - "properties": { - "id": 44, - "order": 46, - "prevSize": 32, - "code": 84, - "name": "uni54", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 45 - }, - { - "icon": { - "paths": [ - "M821.375 562.625v258.75c0 9.375-3.75 16.875-11.25 22.5-5.625 7.5-15 11.25-24.375 11.25h-204.375v-206.25h-138.75v206.25h-204.375c-9.375 0-18.75-3.75-24.375-11.25-7.5-5.625-11.25-13.125-11.25-22.5v-258.75c0 0 0 0 1.875 0 0-1.875 0-1.875 0-1.875l307.5-255 307.5 255c0 0 1.875 1.875 1.875 1.875zM939.5 527l-31.875 39.375c-3.75 3.75-7.5 5.625-11.25 5.625h-1.875c-5.625 0-9.375-1.875-11.25-3.75l-371.25-309.375-371.25 309.375c-3.75 3.75-7.5 3.75-13.125 3.75-3.75 0-7.5-1.875-11.25-5.625l-31.875-39.375c-3.75-3.75-3.75-7.5-3.75-13.125s1.875-9.375 5.625-11.25l384.375-320.625c11.25-9.375 26.25-15 41.25-15s30 5.625 41.25 15l129.375 108.75v-105c0-3.75 1.875-9.375 5.625-11.25 3.75-3.75 7.5-5.625 13.125-5.625h101.25c5.625 0 9.375 1.875 13.125 5.625 3.75 1.875 5.625 7.5 5.625 11.25v219.375l116.25 97.5c3.75 1.875 5.625 5.625 5.625 11.25s0 9.375-3.75 13.125z" - ], - "defaultCode": 87, - "grid": 16 - }, - "properties": { - "id": 45, - "order": 47, - "prevSize": 32, - "code": 87, - "name": "uni57", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 46 - }, - { - "icon": { - "paths": [ - "M703.602 714.148c1.758 7.031 1.758 12.305-3.516 17.578l-175.781 193.359c-1.758 3.516-7.031 5.273-10.547 5.273-5.273 0-8.789-1.758-12.305-5.273l-177.539-193.359c-5.273-5.273-5.273-10.547-3.516-17.578 3.516-5.273 8.789-8.789 14.063-8.789h112.5v-627.539c0-5.273 1.758-8.789 5.273-10.547 3.516-3.516 7.031-5.273 12.305-5.273h94.922c5.273 0 8.789 1.758 12.305 5.273 3.516 1.758 5.273 5.273 5.273 10.547v627.539h112.5c7.031 0 10.547 3.516 14.063 8.789z" - ], - "defaultCode": 88, - "grid": 16 - }, - "properties": { - "id": 46, - "order": 48, - "prevSize": 32, - "code": 88, - "name": "uni58", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 47 - }, - { - "icon": { - "paths": [ - "M703.602 309.852c-3.516 5.273-8.789 8.789-14.063 8.789h-112.5v627.539c0 5.273-1.758 8.789-5.273 10.547-3.516 3.516-7.031 5.273-12.305 5.273h-94.922c-5.273 0-8.789-1.758-12.305-5.273-3.516-1.758-5.273-5.273-5.273-10.547v-627.539h-112.5c-7.031 0-10.547-3.516-14.063-8.789-1.758-7.031-1.758-12.305 3.516-17.578l175.781-193.359c1.758-3.516 7.031-5.273 10.547-5.273 5.273 0 8.789 1.758 12.305 5.273l177.539 193.359c5.273 5.273 5.273 10.547 3.516 17.578z" - ], - "defaultCode": 89, - "grid": 16 - }, - "properties": { - "id": 47, - "order": 49, - "prevSize": 32, - "code": 89, - "name": "uni59", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 48 - }, - { - "icon": { - "paths": [ - "M402 420v330c0 6-2 10-4 12-4 4-8 6-14 6h-36c-6 0-10-2-14-6-4-2-4-6-4-12v-330c0-4 0-10 4-12 4-4 8-6 14-6h36c6 0 10 2 14 6 2 2 4 8 4 12zM548 420v330c0 6-2 10-4 12-4 4-8 6-14 6h-36c-6 0-10-2-14-6-2-2-4-6-4-12v-330c0-4 2-10 4-12 4-4 8-6 14-6h36c6 0 10 2 14 6 2 2 4 8 4 12zM694 420v330c0 6 0 10-4 12-4 4-8 6-14 6h-36c-6 0-10-2-14-6-2-2-4-6-4-12v-330c0-4 2-10 4-12 4-4 8-6 14-6h36c6 0 10 2 14 6 4 2 4 8 4 12zM768 834v-542h-512v542c0 8 2 16 4 24 2 6 6 12 8 14 4 4 6 6 6 6h476c0 0 2-2 6-6 2-2 6-8 8-14 2-8 4-16 4-24zM384 220h256l-28-68c-2-2-6-4-10-6h-180c-4 2-8 4-10 6zM914 238v36c0 6-2 10-4 14-4 2-8 4-14 4h-54v542c0 32-10 60-28 82-18 24-40 34-64 34h-476c-24 0-46-10-64-32s-28-50-28-82v-544h-54c-6 0-10-2-14-4-2-4-4-8-4-14v-36c0-6 2-10 4-14 4-2 8-4 14-4h176l40-96c6-14 16-26 32-36 14-10 30-14 44-14h184c14 0 30 4 44 14 16 10 26 22 32 36l40 96h176c6 0 10 2 14 4 2 4 4 8 4 14z" - ], - "defaultCode": 90, - "grid": 16 - }, - "properties": { - "id": 48, - "order": 50, - "prevSize": 32, - "code": 90, - "name": "uni5A", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 49 - }, - { - "icon": { - "paths": [ - "M788.707 162.475c0 9.709-7.282 19.419-19.419 19.419-9.709 0-19.419-9.709-19.419-19.419 0-12.137 9.709-19.419 19.419-19.419 12.137 0 19.419 7.282 19.419 19.419zM795.989 346.946c0 0-26.7-121.363-186.899-89.808-14.563-55.827-12.137-97.090 21.845-133.499 48.545-50.973 126.218-24.272 126.218-24.272v-41.264c-26.7-12.137-53.399-14.563-80.099-14.563-104.372 0-162.626 77.673-186.899 131.072l-288.844 531.57 82.527-14.563-150.491 288.844 104.372-19.419 80.099-225.735c225.735 0 517.006-82.527 478.171-388.362zM893.079 245.002l-63.109-63.109-50.973 63.109zM354.228 669.772c0 0 9.709-2.427 21.845-4.854 12.137-4.854 31.554-7.282 53.399-14.563 12.137-2.427 24.272-7.282 36.409-9.709 12.137-4.854 26.7-9.709 38.836-14.563 14.563-7.282 26.7-12.137 38.836-19.419 14.563-7.282 26.7-16.991 38.836-24.272 2.427-2.427 7.282-4.854 9.709-7.282l7.282-7.282c7.282-7.282 12.137-12.137 16.991-16.991s9.709-12.137 14.563-16.991c2.427-2.427 4.854-4.854 7.282-9.709l2.427-4.854 2.427-2.427c2.427-4.854 4.854-7.282 4.854-9.709 2.427-2.427 4.854-7.282 4.854-9.709 2.427-2.427 2.427-2.427 2.427-4.854 2.427 0 2.427-2.427 2.427-4.854 2.427-2.427 2.427-4.854 4.854-7.282 2.427-7.282 4.854-12.137 7.282-19.419 0-4.854 2.427-9.709 4.854-16.991 0-4.854 2.427-9.709 2.427-14.563s2.427-9.709 2.427-14.563c0-4.854 2.427-9.709 2.427-14.563 0-2.427 0-7.282 0-9.709 0-12.137 2.427-21.845 2.427-21.845l12.137 2.427c0 0-2.427 7.282-2.427 19.419 0 4.854-2.427 7.282-2.427 12.137s0 9.709-2.427 12.137c0 4.854 0 9.709-2.427 16.991 0 4.854-2.427 9.709-2.427 14.563-2.427 7.282-4.854 12.137-7.282 19.419-2.427 4.854-4.854 12.137-7.282 16.991 0 2.427-2.427 7.282-4.854 9.709 0 2.427 0 2.427-2.427 4.854 0 2.427 0 2.427-2.427 4.854 0 2.427-2.427 4.854-4.854 9.709-2.427 2.427-2.427 4.854-4.854 7.282s-2.427 4.854-2.427 4.854l-4.854 4.854c-2.427 2.427-4.854 7.282-7.282 9.709-4.854 4.854-9.709 12.137-14.563 16.991s-9.709 9.709-16.991 16.991l-7.282 7.282c-4.854 2.427-7.282 2.427-9.709 4.854-14.563 9.709-26.7 19.419-41.264 26.7-12.137 4.854-26.7 12.137-38.836 16.991-14.563 4.854-26.7 9.709-41.264 14.563-12.137 2.427-24.272 7.282-36.409 9.709-21.845 4.854-41.264 9.709-53.399 12.137s-21.845 4.854-21.845 4.854z" - ], - "defaultCode": 86, - "grid": 16 - }, - "properties": { - "id": 49, - "order": 51, - "prevSize": 32, - "code": 86, - "name": "uni56", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 50 - }, - { - "icon": { - "paths": [ - "M213.721 810.279c-79.102-79.102-123.596-186.218-123.596-298.279 0-232.361 189.514-421.875 421.875-421.875l52.734 52.734-52.734 52.734c-174.683 0-316.406 141.724-316.406 316.406 0 84.045 32.959 164.795 92.286 224.122l-64.27 8.24zM512 933.875l-52.734-52.734 52.734-52.734c174.683 0 316.406-141.724 316.406-316.406 0-84.045-32.959-164.795-92.286-224.122l64.27-8.24 9.888-65.918c79.102 79.102 123.596 186.218 123.596 298.279 0 232.361-189.514 421.875-421.875 421.875z" - ], - "defaultCode": 49, - "grid": 16 - }, - "properties": { - "id": 50, - "order": 52, - "prevSize": 32, - "code": 49, - "name": "uni31", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 51 - }, - { - "icon": { - "paths": [ - "M449.378 830.054c0 57.678-47.791 103.821-105.469 103.821s-105.469-46.143-105.469-103.821c0-59.326 47.791-105.469 105.469-105.469s105.469 46.143 105.469 105.469zM449.378 512c0 57.678-47.791 105.469-105.469 105.469s-105.469-47.791-105.469-105.469c0-57.678 47.791-105.469 105.469-105.469s105.469 47.791 105.469 105.469zM449.378 193.946c0 59.326-47.791 105.469-105.469 105.469s-105.469-46.143-105.469-105.469c0-57.678 47.791-103.821 105.469-103.821s105.469 46.143 105.469 103.821zM785.56 830.054c0 57.678-47.791 103.821-105.469 103.821s-105.469-46.143-105.469-103.821c0-59.326 47.791-105.469 105.469-105.469s105.469 46.143 105.469 105.469zM785.56 512c0 57.678-47.791 105.469-105.469 105.469s-105.469-47.791-105.469-105.469c0-57.678 47.791-105.469 105.469-105.469s105.469 47.791 105.469 105.469zM785.56 193.946c0 59.326-47.791 105.469-105.469 105.469s-105.469-46.143-105.469-105.469c0-57.678 47.791-103.821 105.469-103.821s105.469 46.143 105.469 103.821z" - ], - "defaultCode": 85, - "grid": 16 - }, - "properties": { - "id": 51, - "order": 53, - "prevSize": 32, - "code": 85, - "name": "uni55", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 52 - }, - { - "icon": { - "paths": [ - "M654.5 193.25v176.25h91.875v183.75h-360v-103.125l-285 191.25 285 189.375v-101.25h536.25v-536.25z" - ], - "defaultCode": 51, - "grid": 16 - }, - "properties": { - "id": 52, - "order": 54, - "prevSize": 32, - "code": 51, - "name": "uni33", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 53 - }, - { - "icon": { - "paths": [ - "M406.531 406.531h-316.406l245.544 179.627-88.989 294.983 252.136-176.331 276.856 176.331-113.708-294.983 271.912-179.627h-316.406l-118.653-303.223z" - ], - "defaultCode": 50, - "grid": 16 - }, - "properties": { - "id": 53, - "order": 55, - "prevSize": 32, - "code": 50, - "name": "uni32", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 54 - }, - { - "icon": { - "paths": [ - "M270 112h482v46h-482zM810 466l-254 248v-444h-90v440l-250-244-66 64 362 362 362-362z" - ], - "defaultCode": 53, - "grid": 16 - }, - "properties": { - "id": 54, - "order": 56, - "prevSize": 32, - "code": 53, - "name": "uni35", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 55 - }, - { - "icon": { - "paths": [ - "M272 112h482v46h-482zM216 716l252-248v444h90v-440l252 244 64-64-362-362-362 362z" - ], - "defaultCode": 54, - "grid": 16 - }, - "properties": { - "id": 55, - "order": 57, - "prevSize": 32, - "code": 54, - "name": "uni36", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 56 - }, - { - "icon": { - "paths": [ - "M680.75 390.125c0 3.75 0 7.5 0 11.25s-1.875 7.5-1.875 13.125c0 3.75-1.875 9.375-1.875 13.125-1.875 5.625-3.75 11.25-3.75 16.875-1.875 5.625-3.75 11.25-5.625 16.875s-3.75 11.25-5.625 18.75c-1.875 1.875-3.75 5.625-3.75 7.5-1.875 1.875-1.875 3.75-1.875 5.625-1.875 1.875-1.875 1.875-3.75 3.75-1.875 3.75-1.875 5.625-3.75 9.375s-3.75 5.625-5.625 9.375l-3.75 3.75-1.875 5.625c-1.875 1.875-3.75 5.625-7.5 7.5-3.75 5.625-7.5 13.125-13.125 16.875-5.625 5.625-11.25 11.25-16.875 16.875l-7.5 7.5c-3.75 1.875-5.625 3.75-9.375 7.5-11.25 9.375-24.375 16.875-37.5 24.375s-26.25 13.125-39.375 18.75c-13.125 5.625-26.25 11.25-39.375 15-11.25 3.75-22.5 7.5-33.75 11.25-22.5 5.625-41.25 9.375-54.375 13.125s-20.625 3.75-20.625 3.75c0 0 7.5 0 20.625-3.75 13.125-1.875 31.875-5.625 54.375-11.25 11.25-3.75 22.5-5.625 35.625-9.375s26.25-9.375 39.375-15c13.125-5.625 26.25-11.25 39.375-18.75 13.125-5.625 26.25-15 39.375-24.375 3.75-1.875 5.625-3.75 9.375-5.625l9.375-7.5c5.625-5.625 11.25-11.25 15-16.875 5.625-5.625 11.25-11.25 15-16.875 3.75-3.75 5.625-5.625 7.5-9.375l3.75-3.75c0-1.875 1.875-3.75 1.875-5.625 1.875-1.875 3.75-5.625 7.5-9.375 0-1.875 1.875-5.625 3.75-9.375 1.875 0 1.875-1.875 3.75-3.75 0-1.875 0-3.75 1.875-5.625s1.875-5.625 3.75-9.375c3.75-5.625 5.625-11.25 7.5-16.875 1.875-7.5 3.75-13.125 5.625-18.75s1.875-11.25 3.75-15c1.875-5.625 1.875-11.25 3.75-15 0-5.625 0-9.375 1.875-13.125 0-5.625 0-9.375 0-11.25 1.875-15 1.875-22.5 1.875-22.5h-11.25c0 0 0 7.5-1.875 20.625zM890.75 240.125l-63.75-61.875c-1.875-61.875-41.25-103.125-60-114.375-18.75-16.875-61.875-30-110.625-24.375-46.875 7.5-114.375 31.875-161.25 120-91.875 172.5-288.75 541.875-290.625 545.625-1.875 0-1.875 1.875 0 1.875 0 1.875 1.875 1.875 1.875 1.875l75-13.125-146.25 283.125c0 1.875 0 1.875 1.875 3.75 0 0 0 0 1.875 0 0 0 0 0 0 0l105-18.75c0 0 1.875 0 1.875-1.875l76.875-225c196.875-1.875 333.75-48.75 408.75-144.375 78.75-101.25 67.5-228.75 54.375-288.75l-9.375-58.125h112.5c0 0 1.875 0 1.875-1.875 1.875 0 0-1.875 0-3.75zM787.625 161.375c0 9.375-9.375 18.75-18.75 18.75-11.25 0-18.75-9.375-18.75-18.75 0-11.25 7.5-20.625 18.75-20.625 9.375 0 18.75 9.375 18.75 20.625zM725.75 588.875c-75 93.75-210 140.625-405 140.625-1.875 0-1.875 1.875-1.875 3.75l-78.75 225-95.625 16.875 146.25-283.125c0-1.875 0-1.875 0-3.75-1.875 0-1.875-1.875-3.75-1.875l-75 15c26.25-48.75 204.375-378.75 288.75-538.125 46.875-86.25 110.625-110.625 155.625-116.25 46.875-5.625 86.25 5.625 105 18.75v41.25c-3.75 0-30-9.375-54.375-9.375s-52.5 9.375-69.375 28.125c-30 33.75-37.5 67.5-22.5 123.75 101.25-18.75 146.25 24.375 163.125 50.625 13.125 56.25 28.125 185.625-52.5 288.75zM780.125 240.125l43.125-56.25 56.25 56.25z" - ], - "defaultCode": 48, - "grid": 16 - }, - "properties": { - "id": 56, - "order": 58, - "prevSize": 32, - "code": 48, - "name": "uni30", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 57 - }, - { - "icon": { - "paths": [ - "M506.375 69.5c121.875 0 225 41.25 313.125 125.625 86.25 84.375 131.25 187.5 135 309.375 0 121.875-41.25 226.875-127.5 313.125-84.375 88.125-187.5 133.125-309.375 136.875-121.875 0-226.875-41.25-313.125-127.5-88.125-84.375-133.125-187.5-135-309.375s39.375-226.875 125.625-313.125c86.25-88.125 189.375-133.125 311.25-135zM504.5 780.125c18.75 0 35.625-5.625 46.875-16.875 11.25-13.125 18.75-28.125 18.75-45 0-20.625-3.75-35.625-16.875-48.75-11.25-11.25-28.125-16.875-46.875-16.875 0 0-1.875 0-1.875 0-18.75 0-33.75 5.625-45 16.875-13.125 11.25-18.75 26.25-20.625 45 0 18.75 5.625 33.75 18.75 46.875 11.25 11.25 26.25 18.75 45 18.75 0 0 1.875 0 1.875 0zM663.875 465.125c16.875-20.625 24.375-45 24.375-75 0-48.75-16.875-86.25-50.625-110.625s-76.875-35.625-129.375-35.625c-41.25 0-75 7.5-99.375 24.375-45 26.25-67.5 73.125-69.375 140.625 0 0 0 3.75 0 3.75s105 0 105 0c0 0 0-3.75 0-3.75 0-16.875 5.625-33.75 15-52.5 11.25-15 28.125-22.5 52.5-22.5 26.25 0 43.125 5.625 50.625 18.75 9.375 13.125 15 26.25 15 43.125 0 11.25-5.625 24.375-15 37.5-5.625 7.5-13.125 15-20.625 18.75 0 0-5.625 3.75-5.625 3.75-3.75 3.75-7.5 7.5-15 11.25-5.625 3.75-13.125 9.375-18.75 15-7.5 3.75-13.125 9.375-20.625 15s-13.125 11.25-16.875 16.875c-7.5 13.125-13.125 37.5-16.875 75 0 0 0 7.5 0 7.5s105 0 105 0c0 0 0-3.75 0-3.75 0-7.5 0-16.875 3.75-26.25 3.75-13.125 11.25-24.375 26.25-35.625 0 0 26.25-16.875 26.25-16.875 30-22.5 46.875-37.5 54.375-48.75z" - ], - "defaultCode": 63, - "grid": 16 - }, - "properties": { - "id": 57, - "order": 59, - "prevSize": 32, - "code": 63, - "name": "uni3F", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 58 - }, - { - "icon": { - "paths": [ - "M939.148 847.742c7.031 10.547 7.031 21.094 0 31.641-5.273 8.789-14.063 14.063-26.367 14.063 0 0-803.32 0-803.32 0-10.547 0-19.336-5.273-24.609-14.063-7.031-10.547-7.031-21.094-1.758-31.641 0 0 400.781-703.125 400.781-703.125 5.273-10.547 14.063-15.82 28.125-15.82 12.305 0 21.094 5.273 26.367 15.82 0 0 400.781 703.125 400.781 703.125zM561.219 803.797c0 0 0-89.648 0-89.648s-98.438 0-98.438 0c0 0 0 89.648 0 89.648s98.438 0 98.438 0zM561.219 647.352c0 0 0-270.703 0-270.703s-98.438 0-98.438 0c0 0 0 270.703 0 270.703s98.438 0 98.438 0z" - ], - "defaultCode": 33, - "grid": 16 - }, - "properties": { - "id": 58, - "order": 60, - "prevSize": 32, - "code": 33, - "name": "uni21", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 59 - }, - { - "icon": { - "paths": [ - "M512 62c-247.852 0-450 202.148-450 450s202.148 450 450 450c247.852 0 450-202.148 450-450s-202.148-450-450-450zM441.688 719.422l-205.664-207.422 79.102-79.102 126.563 128.32 270.703-270.703 79.102 79.102z" - ], - "defaultCode": 57, - "grid": 16 - }, - "properties": { - "id": 59, - "order": 61, - "prevSize": 32, - "code": 57, - "name": "uni39", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 60 - }, - { - "icon": { - "paths": [ - "M806.983 627.357v192.81h-589.966v-192.81h-112.060v248.841c0 31.311 24.719 57.678 56.031 57.678h702.026c31.311 0 56.031-26.367 56.031-57.678v-248.841zM502.112 607.581l-163.147-194.458c0 0-24.719-24.719 3.296-24.719 26.367 0 90.637 0 90.637 0s0-14.831 0-39.551c0-67.566 0-194.458 0-245.544 0 0-3.296-13.184 18.128-13.184 19.776 0 112.060 0 128.54 0 14.831 0 13.184 11.536 13.184 11.536 0 49.438 0 179.627 0 245.544 0 21.424 0 36.255 0 36.255s52.734 0 85.693 0c31.311 0 8.24 24.719 8.24 24.719s-138.428 182.922-158.203 201.050c-13.184 14.831-26.367-1.648-26.367-1.648z" - ], - "defaultCode": 83, - "grid": 16 - }, - "properties": { - "id": 60, - "order": 62, - "prevSize": 32, - "code": 83, - "name": "uni53", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 61 - }, - { - "icon": { - "paths": [ - "M512 387.893c18.733 0 35.124 2.343 51.516 9.366s30.442 14.050 42.149 25.76c11.708 11.708 21.076 25.76 25.76 39.807 7.026 16.391 11.708 32.782 11.708 49.175 0 16.391-4.682 32.782-11.708 49.175-4.682 14.050-14.050 28.1-25.76 39.807s-25.76 18.733-42.149 25.76c-16.391 7.026-32.782 9.366-51.516 9.366s-35.124-2.343-51.516-9.366c-16.391-7.026-30.442-14.050-42.149-25.76-11.708-11.708-21.076-25.76-25.76-39.807-7.026-16.391-11.708-32.782-11.708-49.175 0-16.391 4.682-32.782 11.708-49.175 4.682-14.050 14.050-28.1 25.76-39.807s25.76-18.733 42.149-25.76c16.391-7.026 32.782-9.366 51.516-9.366zM512 706.357c28.1 0 53.857-4.682 79.616-14.050s46.832-23.417 65.566-42.149c18.733-16.391 32.782-37.466 44.491-60.882 9.366-25.76 14.050-49.175 14.050-77.274s-4.682-51.516-14.050-77.274c-11.708-23.417-25.76-44.491-44.491-60.882-18.733-18.733-39.807-32.782-65.566-42.149-25.76-9.366-51.516-14.050-79.616-14.050s-53.857 4.682-79.616 14.050c-25.76 9.366-46.832 23.417-65.566 42.149-18.733 16.391-32.782 37.466-44.491 60.882-9.366 25.76-14.050 49.175-14.050 77.274s4.682 51.516 14.050 77.274c11.708 23.417 25.76 44.491 44.491 60.882 18.733 18.733 39.807 32.782 65.566 42.149 25.76 9.366 51.516 14.050 79.616 14.050zM512 252.079c42.149 0 81.958 4.682 119.423 14.050s72.592 23.417 105.373 39.807c32.782 14.050 60.882 32.782 86.641 51.516 25.76 21.076 49.175 39.807 67.908 58.54 16.391 18.733 30.442 37.466 39.807 53.858 11.708 18.733 16.391 32.782 16.391 42.149 0 9.366-4.682 23.417-16.391 42.149-9.366 16.391-23.417 35.124-39.807 53.858-18.733 18.733-42.149 37.466-67.908 58.54-25.76 18.733-53.857 37.466-86.641 51.516-32.782 16.391-67.908 30.442-105.373 39.807s-77.274 14.050-119.423 14.050c-42.149 0-81.958-4.682-119.423-14.050-39.807-9.366-72.592-23.417-105.373-39.807-32.782-14.050-60.882-32.782-86.641-51.516-25.76-21.076-49.175-39.807-67.908-58.54-16.391-18.733-30.443-37.466-39.807-53.858-11.708-18.733-16.391-32.782-16.391-42.149 0-9.366 4.682-23.417 16.391-42.149 9.366-16.391 23.417-35.124 39.807-53.858 18.733-18.733 42.149-37.466 67.908-58.54 25.76-18.733 53.858-37.466 86.641-51.516 32.782-16.391 65.566-30.442 105.373-39.807 37.466-9.366 77.274-14.050 119.423-14.050z" - ], - "defaultCode": 52, - "grid": 16 - }, - "properties": { - "id": 61, - "order": 63, - "prevSize": 32, - "code": 52, - "name": "uni34", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 62 - }, - { - "icon": { - "paths": [ - "M775.672 933.875h-527.344c-87.341 0-158.203-70.862-158.203-158.203v-527.344c0-69.214 44.495-126.892 105.469-148.315v69.214c0 44.495 36.255 79.102 79.102 79.102s79.102-34.607 79.102-79.102v-79.102h316.406v79.102c0 44.495 36.255 79.102 79.102 79.102s79.102-34.607 79.102-79.102v-69.214c60.974 21.424 105.469 79.102 105.469 148.315v527.344c0 87.341-70.862 158.203-158.203 158.203zM828.406 353.797h-632.813v421.875c0 29.663 23.071 52.734 52.734 52.734h527.344c29.663 0 52.734-23.071 52.734-52.734zM617.469 617.469h105.469v105.469h-105.469zM617.469 459.266h105.469v105.469h-105.469zM459.266 617.469h105.469v105.469h-105.469zM459.266 459.266h105.469v105.469h-105.469zM301.063 617.469h105.469v105.469h-105.469zM301.063 459.266h105.469v105.469h-105.469zM749.305 195.594c-14.831 0-26.367-11.536-26.367-26.367v-79.102h52.734v79.102c0 14.831-11.536 26.367-26.367 26.367zM274.695 195.594c-14.831 0-26.367-11.536-26.367-26.367v-79.102h52.734v79.102c0 14.831-11.536 26.367-26.367 26.367z" - ], - "defaultCode": 55, - "grid": 16 - }, - "properties": { - "id": 62, - "order": 64, - "prevSize": 32, - "code": 55, - "name": "uni37", - "ligatures": "" - }, - "setIdx": 1, - "iconIdx": 63 + "selection": [ + { + "id": 72, + "order": 9, + "prevSize": 32, + "code": 56, + "name": "clock", + "ligatures": "", + "tempChar": "" + }, + { + "order": 3, + "id": 67, + "prevSize": 32, + "code": 109, + "name": "lock", + "ligatures": "", + "tempChar": "" + }, + { + "order": 6, + "id": 66, + "prevSize": 32, + "code": 112, + "name": "lock-open", + "ligatures": "", + "tempChar": "" + }, + { + "order": 1, + "id": 63, + "prevSize": 32, + "code": 36, + "name": "form", + "ligatures": "", + "tempChar": "" + }, + { + "id": 0, + "order": 2, + "prevSize": 32, + "code": 97, + "name": "uni61", + "ligatures": "", + "tempChar": "" + }, + { + "id": 1, + "order": 4, + "prevSize": 32, + "code": 98, + "name": "uni62", + "ligatures": "", + "tempChar": "" + }, + { + "id": 2, + "order": 5, + "prevSize": 32, + "code": 99, + "name": "uni63", + "ligatures": "", + "tempChar": "" + }, + { + "id": 3, + "order": 7, + "prevSize": 32, + "code": 100, + "name": "uni64", + "ligatures": "", + "tempChar": "" + }, + { + "id": 4, + "order": 8, + "prevSize": 32, + "code": 101, + "name": "uni65", + "ligatures": "", + "tempChar": "" + }, + { + "id": 5, + "order": 9, + "prevSize": 32, + "code": 102, + "name": "uni66", + "ligatures": "", + "tempChar": "" + }, + { + "id": 6, + "order": 10, + "prevSize": 32, + "code": 103, + "name": "uni67", + "ligatures": "", + "tempChar": "" + }, + { + "id": 7, + "order": 11, + "prevSize": 32, + "code": 105, + "name": "uni69", + "ligatures": "", + "tempChar": "" + }, + { + "id": 8, + "order": 12, + "prevSize": 32, + "code": 106, + "name": "uni6A", + "ligatures": "", + "tempChar": "" + }, + { + "id": 9, + "order": 13, + "prevSize": 32, + "code": 107, + "name": "uni6B", + "ligatures": "", + "tempChar": "" + }, + { + "id": 10, + "order": 14, + "prevSize": 32, + "code": 108, + "name": "uni6C", + "ligatures": "", + "tempChar": "" + }, + { + "id": 12, + "order": 15, + "prevSize": 32, + "code": 110, + "name": "uni6E", + "ligatures": "", + "tempChar": "" + }, + { + "id": 13, + "order": 16, + "prevSize": 32, + "code": 104, + "name": "uni68", + "ligatures": "", + "tempChar": "" + }, + { + "id": 14, + "order": 17, + "prevSize": 32, + "code": 111, + "name": "uni6F", + "ligatures": "", + "tempChar": "" + }, + { + "id": 16, + "order": 18, + "prevSize": 32, + "code": 113, + "name": "uni71", + "ligatures": "", + "tempChar": "" + }, + { + "id": 17, + "order": 19, + "prevSize": 32, + "code": 114, + "name": "uni72", + "ligatures": "", + "tempChar": "" + }, + { + "id": 18, + "order": 20, + "prevSize": 32, + "code": 115, + "name": "uni73", + "ligatures": "", + "tempChar": "" + }, + { + "id": 19, + "order": 21, + "prevSize": 32, + "code": 116, + "name": "uni74", + "ligatures": "", + "tempChar": "" + }, + { + "id": 20, + "order": 22, + "prevSize": 32, + "code": 117, + "name": "uni75", + "ligatures": "", + "tempChar": "" + }, + { + "id": 21, + "order": 23, + "prevSize": 32, + "code": 118, + "name": "uni76", + "ligatures": "", + "tempChar": "" + }, + { + "id": 22, + "order": 24, + "prevSize": 32, + "code": 119, + "name": "uni77", + "ligatures": "", + "tempChar": "" + }, + { + "id": 23, + "order": 25, + "prevSize": 32, + "code": 120, + "name": "uni78", + "ligatures": "", + "tempChar": "" + }, + { + "id": 24, + "order": 26, + "prevSize": 32, + "code": 122, + "name": "uni7A", + "ligatures": "", + "tempChar": "" + }, + { + "id": 25, + "order": 27, + "prevSize": 32, + "code": 65, + "name": "uni41", + "ligatures": "", + "tempChar": "" + }, + { + "id": 26, + "order": 28, + "prevSize": 32, + "code": 66, + "name": "uni42", + "ligatures": "", + "tempChar": "" + }, + { + "id": 27, + "order": 29, + "prevSize": 32, + "code": 68, + "name": "uni44", + "ligatures": "", + "tempChar": "" + }, + { + "id": 28, + "order": 30, + "prevSize": 32, + "code": 67, + "name": "uni43", + "ligatures": "", + "tempChar": "" + }, + { + "id": 29, + "order": 31, + "prevSize": 32, + "code": 69, + "name": "uni45", + "ligatures": "", + "tempChar": "" + }, + { + "id": 30, + "order": 32, + "prevSize": 32, + "code": 70, + "name": "uni46", + "ligatures": "", + "tempChar": "" + }, + { + "id": 31, + "order": 33, + "prevSize": 32, + "code": 71, + "name": "uni47", + "ligatures": "", + "tempChar": "" + }, + { + "id": 32, + "order": 34, + "prevSize": 32, + "code": 72, + "name": "uni48", + "ligatures": "", + "tempChar": "" + }, + { + "id": 33, + "order": 35, + "prevSize": 32, + "code": 73, + "name": "uni49", + "ligatures": "", + "tempChar": "" + }, + { + "id": 34, + "order": 36, + "prevSize": 32, + "code": 74, + "name": "uni4A", + "ligatures": "", + "tempChar": "" + }, + { + "id": 35, + "order": 37, + "prevSize": 32, + "code": 75, + "name": "uni4B", + "ligatures": "", + "tempChar": "" + }, + { + "id": 36, + "order": 38, + "prevSize": 32, + "code": 76, + "name": "uni4C", + "ligatures": "", + "tempChar": "" + }, + { + "id": 37, + "order": 39, + "prevSize": 32, + "code": 77, + "name": "uni4D", + "ligatures": "", + "tempChar": "" + }, + { + "id": 38, + "order": 40, + "prevSize": 32, + "code": 78, + "name": "uni4E", + "ligatures": "", + "tempChar": "" + }, + { + "id": 39, + "order": 41, + "prevSize": 32, + "code": 79, + "name": "uni4F", + "ligatures": "", + "tempChar": "" + }, + { + "id": 40, + "order": 42, + "prevSize": 32, + "code": 80, + "name": "uni50", + "ligatures": "", + "tempChar": "" + }, + { + "id": 41, + "order": 43, + "prevSize": 32, + "code": 81, + "name": "uni51", + "ligatures": "", + "tempChar": "" + }, + { + "id": 42, + "order": 0, + "prevSize": 32, + "code": 121, + "name": "uni79", + "ligatures": "", + "tempChar": "" + }, + { + "id": 43, + "order": 45, + "prevSize": 32, + "code": 82, + "name": "uni52", + "ligatures": "", + "tempChar": "" + }, + { + "id": 44, + "order": 46, + "prevSize": 32, + "code": 84, + "name": "uni54", + "ligatures": "", + "tempChar": "" + }, + { + "id": 45, + "order": 47, + "prevSize": 32, + "code": 87, + "name": "uni57", + "ligatures": "", + "tempChar": "" + }, + { + "id": 46, + "order": 48, + "prevSize": 32, + "code": 88, + "name": "uni58", + "ligatures": "", + "tempChar": "" + }, + { + "id": 47, + "order": 49, + "prevSize": 32, + "code": 89, + "name": "uni59", + "ligatures": "", + "tempChar": "" + }, + { + "id": 48, + "order": 50, + "prevSize": 32, + "code": 90, + "name": "uni5A", + "ligatures": "", + "tempChar": "" + }, + { + "id": 49, + "order": 51, + "prevSize": 32, + "code": 86, + "name": "uni56", + "ligatures": "", + "tempChar": "" + }, + { + "id": 50, + "order": 52, + "prevSize": 32, + "code": 49, + "name": "uni31", + "ligatures": "", + "tempChar": "" + }, + { + "id": 51, + "order": 53, + "prevSize": 32, + "code": 85, + "name": "uni55", + "ligatures": "", + "tempChar": "" + }, + { + "id": 52, + "order": 54, + "prevSize": 32, + "code": 51, + "name": "uni33", + "ligatures": "", + "tempChar": "" + }, + { + "id": 53, + "order": 55, + "prevSize": 32, + "code": 50, + "name": "uni32", + "ligatures": "", + "tempChar": "" + }, + { + "id": 54, + "order": 56, + "prevSize": 32, + "code": 53, + "name": "uni35", + "ligatures": "", + "tempChar": "" + }, + { + "id": 55, + "order": 57, + "prevSize": 32, + "code": 54, + "name": "uni36", + "ligatures": "", + "tempChar": "" + }, + { + "id": 56, + "order": 58, + "prevSize": 32, + "code": 48, + "name": "uni30", + "ligatures": "", + "tempChar": "" + }, + { + "id": 57, + "order": 59, + "prevSize": 32, + "code": 63, + "name": "uni3F", + "ligatures": "", + "tempChar": "" + }, + { + "id": 58, + "order": 60, + "prevSize": 32, + "code": 33, + "name": "uni21", + "ligatures": "", + "tempChar": "" + }, + { + "id": 59, + "order": 61, + "prevSize": 32, + "code": 57, + "name": "uni39", + "ligatures": "", + "tempChar": "" + }, + { + "id": 60, + "order": 62, + "prevSize": 32, + "code": 83, + "name": "uni53", + "ligatures": "", + "tempChar": "" + }, + { + "id": 61, + "order": 63, + "prevSize": 32, + "code": 52, + "name": "uni34", + "ligatures": "", + "tempChar": "" + }, + { + "id": 62, + "order": 64, + "prevSize": 32, + "code": 55, + "name": "uni37", + "ligatures": "", + "tempChar": "" + } + ], + "id": 0, + "metadata": { + "showGlyphs": true, + "showQuickUse": true, + "fontPref": { + "prefix": "icon-", + "metadata": { + "fontFamily": "wagtail", + "majorVersion": 1, + "minorVersion": 0 + }, + "metrics": { + "emSize": 512, + "baseline": 6.25, + "whitespace": 50 + }, + "resetPoint": 58880 + }, + "imagePref": { + "color": 0, + "height": 32, + "columns": 16, + "margin": 16 + }, + "historySize": 100, + "showCodes": true, + "search": "", + "gridSize": 16, + "showGrid": true, + "name": "Wagtail" + }, + "height": 1024, + "prevSize": 32, + "icons": [ + { + "id": 0, + "paths": [ + "M632.913 707.493l-173.647-173.649v-232.782h105.469v189.094l142.759 142.757zM512 90.125c-232.995 0-421.875 188.88-421.875 421.875s188.88 421.875 421.875 421.875 421.875-188.88 421.875-421.875-188.88-421.875-421.875-421.875zM512 828.406c-174.747 0-316.406-141.659-316.406-316.406s141.659-316.406 316.406-316.406c174.747 0 316.406 141.659 316.406 316.406s-141.659 316.406-316.406 316.406z" + ], + "tags": [ + "clock", + "time", + "schedule" + ], + "grid": 16, + "matchesSearch": false + }, + { + "id": 1, + "paths": [ + "M515.010 48.76c-152.629 0-276.799 124.169-276.799 276.8v158.089c0 1.794-2.218 4.822-3.961 5.403-14.966 4.995-27.124 9.317-38.252 13.61-13.268 5.117-23.279 19.822-23.279 34.207v363.246c0 14.289 9.946 29.011 23.133 34.234 102.029 40.432 209.41 60.925 319.162 60.925s217.133-20.498 319.164-60.928c13.181-5.225 23.122-19.942 23.122-34.231v-363.246c0-14.392-10.010-29.092-23.284-34.214-11.133-4.292-23.292-8.616-38.246-13.61-1.736-0.579-3.952-3.608-3.952-5.403v-158.089c-0.001-152.629-124.17-276.796-276.798-276.796zM439.618 647.508c0-41.667 33.757-75.388 75.388-75.388s75.388 33.715 75.388 75.388c0 27.609-15.572 50.727-37.691 63.83v124.642c0 20.833-16.86 37.691-37.696 37.691-20.834 0-37.691-16.86-37.691-37.691v-124.642c-22.122-13.104-37.691-36.218-37.691-63.83zM696.635 325.555v136.403c-59.559-12.813-120.663-19.305-181.595-19.313-60.902 0-122 6.493-181.65 19.297v-136.386c0-100.146 81.472-181.62 181.62-181.62s181.627 81.473 181.627 181.622z" + ], + "width": 1044, + "tags": [ + "lock39 copy" + ], + "grid": 16, + "matchesSearch": false + }, + { + "id": 2, + "paths": [ + "M805.921 547.056c-10.185-3.925-35.708-12.802-36.074-13.097-29.889-7.465-89.61-24.137-89.61-24.137-54.486-11.722-110.388-17.662-166.132-17.667-54.142 0-108.438 5.627-161.538 16.693l-83.034-83.036c-64.786-64.784-64.786-170.192 0-234.978s170.195-64.788 234.982-0.003l86.341 86.338c29.095-7.053 61.625-21.392 82.33-44.399-1.663 0.173-3.92-0.338-4.829-1.243l-102.267-102.267c-98.737-98.73-259.387-98.73-358.121 0.003s-98.736 259.386 0 358.122l47.733 47.737c-12.989 4.348-23.679 8.159-33.473 11.937-12.14 4.681-21.298 18.133-21.298 31.296v332.313c0 13.072 9.099 26.54 21.164 31.321 93.34 36.988 191.578 55.737 291.983 55.737s198.644-18.754 291.986-55.742c12.060-4.781 21.153-18.243 21.153-31.315v-332.316c0.001-13.165-9.156-26.617-21.301-31.301zM548.564 737.965v114.028c0 19.060-15.424 34.483-34.485 34.483s-34.483-15.424-34.483-34.483v-114.028c-20.239-11.987-34.483-33.135-34.483-58.395 0-38.118 30.881-68.969 68.967-68.969s68.969 30.845 68.969 68.969c0 25.261-14.246 46.407-34.483 58.395z" + ], + "width": 1044, + "tags": [ + "lock39-open" + ], + "grid": 16, + "matchesSearch": false + }, + { + "id": 3, + "paths": [ + "M74.699 74.249v874.192h874.192v-874.192h-874.192zM342.098 810.335h-176.307v-91.091h321.76v91.091zM810.783 350.466h-644.99v-136.639h643.523v136.639zM809.313 597.296h-643.523v-136.639h643.523v136.639z" + ], + "tags": [ + "form" + ], + "grid": 16, + "matchesSearch": false + }, + { + "id": 4, + "paths": [ + "M478 512c0-38-14-70-40-96-26-28-58-40-96-40-38 0-70 12-98 40-26 26-40 58-40 96 0 38 14 70 40 96 28 28 60 40 98 40 38 0 70-12 96-40 26-26 40-58 40-96zM888 786c0-20-8-36-20-48-14-14-30-22-48-22-20 0-36 8-48 22-14 12-22 28-22 48 0 18 8 34 20 48 14 12 30 20 50 20 18 0 34-8 48-20 12-14 20-30 20-48zM888 238c0-18-8-34-20-48-14-12-30-20-48-20-20 0-36 8-48 20-14 14-22 30-22 48 0 20 8 36 20 50 14 12 30 20 50 20 18 0 34-8 48-20 12-14 20-30 20-50zM682 464v98c0 4 0 8-4 10-2 4-4 6-8 6l-82 12c-4 14-10 26-18 42 12 16 28 36 48 60 4 4 4 8 4 12 0 4 0 8-4 10-8 10-22 26-44 48-20 20-34 32-42 32-4 0-6-2-10-4l-62-48c-12 6-26 12-40 16-4 38-8 66-14 82-2 10-6 14-16 14h-98c-4 0-8-2-10-4-4-4-6-6-6-10l-12-82c-12-4-26-8-40-16l-64 48c-2 2-6 4-10 4s-8-2-12-6c-50-46-76-74-76-84 0-4 2-8 4-10 4-6 10-16 22-28 10-14 18-26 24-34-8-16-14-30-18-44l-82-12c-2 0-6-2-8-6-2-2-4-6-4-10v-98c0-4 2-8 4-10 2-4 6-6 8-6l82-12c4-14 10-26 18-42-12-16-28-36-48-60-2-4-4-8-4-12 0-4 2-8 4-10 8-10 22-26 44-48 22-20 36-32 42-32 4 0 8 2 12 4l60 48c12-6 26-12 42-16 4-38 8-66 12-82 2-10 8-14 16-14h98c4 0 8 2 12 4 2 4 4 6 4 10l14 82c12 4 24 8 40 16l62-48c2-2 6-4 10-4s8 2 12 6c52 46 76 74 76 84 0 4 0 8-2 10-6 6-12 16-24 30-10 12-18 24-24 32 8 16 14 32 18 44l82 12c4 0 6 2 8 6 4 2 4 6 4 10zM1024 748v74c0 6-26 12-80 16-4 10-10 20-16 28 18 40 28 66 28 74 0 2 0 2-2 4-44 26-66 38-66 38-4 0-12-8-26-26-12-16-22-28-26-36-8 2-14 2-16 2-4 0-10 0-16-2-6 8-16 20-28 36-14 18-22 26-26 26 0 0-22-12-66-38 0-2-2-2-2-4 0-8 10-34 28-74-6-8-12-18-16-28-54-4-80-10-80-16v-74c0-6 26-12 80-16 4-12 10-20 16-28-18-40-28-66-28-74 0-2 2-2 2-4 2 0 8-4 20-10 10-6 20-12 30-18 10-6 16-10 16-10 4 0 12 10 26 26 12 16 22 28 28 36 6-2 12-2 16-2 2 0 8 0 16 2 18-26 34-46 48-60l4-2c0 0 22 14 66 38 2 2 2 2 2 4 0 8-10 34-28 74 6 8 12 16 16 28 54 4 80 10 80 16zM1024 202v74c0 6-26 12-80 16-4 10-10 20-16 28 18 40 28 66 28 74 0 2 0 2-2 4-44 26-66 38-66 38-4 0-12-8-26-26-12-16-22-28-26-36-8 2-14 2-16 2-4 0-10 0-16-2-6 8-16 20-28 36-14 18-22 26-26 26 0 0-22-12-66-38 0-2-2-2-2-4 0-8 10-34 28-74-6-8-12-18-16-28-54-4-80-10-80-16v-74c0-6 26-12 80-16 4-12 10-20 16-28-18-40-28-66-28-74 0-2 2-2 2-4 2 0 8-4 20-10 10-8 20-14 30-18 10-6 16-10 16-10 4 0 12 8 26 26 12 16 22 28 28 36 6-2 12-2 16-2 2 0 8 0 16 2 18-26 34-46 48-60l4-2c0 0 22 14 66 38 2 2 2 2 2 4 0 8-10 34-28 74 6 8 12 16 16 28 54 4 80 10 80 16z" + ], + "defaultCode": 97, + "grid": 16, + "matchesSearch": false + }, + { + "id": 5, + "paths": [ + "M902.4 433.067v488.533c0 17.067-6.4 29.867-17.067 40.533-10.667 12.8-25.6 17.067-42.667 17.067h-661.333c-17.067 0-32-4.267-42.667-17.067-10.667-10.667-17.067-23.467-17.067-40.533v-819.2c0-17.067 6.4-29.867 17.067-40.533 10.667-12.8 25.6-17.067 42.667-17.067h330.667v330.667c0 17.067 6.4 29.867 17.067 40.533 10.667 12.8 25.6 17.067 40.533 17.067zM900.267 356.267h-309.333v-311.467c32 6.4 59.733 19.2 78.933 40.533l189.867 189.867c21.333 21.333 34.133 46.933 40.533 81.067z" + ], + "defaultCode": 98, + "grid": 16, + "matchesSearch": false + }, + { + "id": 6, + "paths": [ + "M200.533 902.4h622.933v-469.333h-253.867c-14.933 0-29.867-4.267-40.533-17.067-10.667-10.667-17.067-23.467-17.067-40.533v-253.867h-311.467zM590.933 356.267h228.267c-4.267-12.8-8.533-21.333-12.8-25.6l-192-189.867c-4.267-6.4-12.8-10.667-23.467-14.933zM902.4 375.467v546.133c0 17.067-6.4 29.867-17.067 40.533-10.667 12.8-25.6 17.067-42.667 17.067h-661.333c-17.067 0-32-4.267-42.667-17.067-10.667-10.667-17.067-23.467-17.067-40.533v-819.2c0-17.067 6.4-29.867 17.067-40.533 10.667-12.8 25.6-17.067 42.667-17.067h388.267c17.067 0 34.133 2.133 55.467 10.667 19.2 8.533 34.133 19.2 44.8 29.867l189.867 189.867c12.8 10.667 21.333 27.733 29.867 46.933s12.8 36.267 12.8 53.333z" + ], + "defaultCode": 99, + "grid": 16, + "matchesSearch": false + }, + { + "id": 7, + "paths": [ + "M312 878l52-52-134-134-52 52v60h74v74zM612 348c0-8-4-14-14-14-2 0-6 2-8 4l-310 310c-4 4-4 6-4 10 0 8 4 12 12 12 4 0 8 0 10-4l310-308c2-4 4-6 4-10zM580 238l238 238-476 474h-236v-236zM970 292c0 20-6 38-20 52l-96 94-236-236 94-96c14-14 30-20 52-20 20 0 36 6 52 20l134 134c14 16 20 32 20 52z" + ], + "defaultCode": 100, + "grid": 16, + "matchesSearch": false + }, + { + "id": 8, + "paths": [ + "M798 644c0 6-2 10-6 14l-30 28c-2 4-8 6-12 6-6 0-10-2-14-6l-224-224-224 224c-4 4-8 6-14 6-4 0-10-2-12-6l-30-28c-4-4-6-8-6-14 0-4 2-8 6-12l266-266c4-4 10-6 14-6s10 2 14 6l266 266c4 4 6 8 6 12z" + ], + "defaultCode": 101, + "grid": 16, + "matchesSearch": false + }, + { + "id": 9, + "paths": [ + "M682.625 446.25c0-67.5-22.5-123.75-69.375-170.625s-103.125-69.375-170.625-69.375c-65.625 0-121.875 22.5-168.75 69.375s-71.25 103.125-71.25 170.625c0 65.625 24.375 121.875 71.25 168.75s103.125 71.25 168.75 71.25c67.5 0 123.75-24.375 170.625-71.25s69.375-103.125 69.375-168.75zM958.25 890.625c0 18.75-7.5 35.625-20.625 48.75s-30 20.625-48.75 20.625c-18.75 0-35.625-7.5-48.75-20.625l-183.75-183.75c-63.75 45-135 67.5-213.75 67.5-50.625 0-99.375-9.375-146.25-30s-86.25-46.875-120-80.625c-33.75-33.75-60-73.125-80.625-120-18.75-46.875-30-95.625-30-146.25 0-52.5 11.25-101.25 30-146.25 20.625-46.875 46.875-88.125 80.625-121.875s73.125-60 120-80.625c46.875-18.75 95.625-28.125 146.25-28.125 52.5 0 101.25 9.375 148.125 28.125 45 20.625 86.25 46.875 120 80.625s60 75 80.625 121.875c18.75 45 30 93.75 30 146.25 0 78.75-22.5 150-67.5 213.75l183.75 183.75c13.125 13.125 20.625 28.125 20.625 46.875z" + ], + "defaultCode": 102, + "grid": 16, + "matchesSearch": false + }, + { + "id": 10, + "paths": [ + "M852 724c0 14-6 28-16 38l-78 78c-10 10-24 16-40 16-14 0-28-6-38-16l-168-168-168 168c-10 10-24 16-38 16-16 0-30-6-40-16l-78-78c-10-10-16-24-16-38 0-16 6-28 16-40l168-168-168-168c-10-10-16-24-16-38 0-16 6-28 16-40l78-76c10-12 24-16 40-16 14 0 28 4 38 16l168 168 168-168c10-12 24-16 38-16 16 0 30 4 40 16l78 76c10 12 16 24 16 40 0 14-6 28-16 38l-168 168 168 168c10 12 16 24 16 40z" + ], + "defaultCode": 103, + "grid": 16, + "matchesSearch": false + }, + { + "id": 11, + "paths": [ + "M896.961 559.82c0-10.547-8.789-15.82-24.609-15.82h-509.766c-12.305 0-26.367 3.516-40.43 10.547s-26.367 14.063-33.398 24.609l-138.867 170.508c-5.273 7.031-7.031 12.305-7.031 17.578 0 10.547 7.031 17.578 24.609 17.578h509.766c12.305 0 26.367-3.516 40.43-10.547s24.609-15.82 33.398-24.609l137.109-170.508c5.273-7.031 8.789-14.063 8.789-19.336zM362.586 484.234h358.594v-75.586c0-12.305-3.516-22.852-12.305-31.641s-19.336-12.305-31.641-12.305h-270.703c-12.305 0-22.852-5.273-31.641-14.063s-12.305-19.336-12.305-31.641v-29.883c0-12.305-5.273-22.852-14.063-31.641s-19.336-14.063-31.641-14.063h-149.414c-12.305 0-22.852 5.273-31.641 14.063s-14.063 19.336-14.063 31.641v399.023l119.531-147.656c14.063-15.82 33.398-29.883 54.492-40.43 22.852-10.547 45.703-15.82 66.797-15.82zM956.727 559.82c0 19.336-7.031 38.672-21.094 56.25l-138.867 170.508c-14.063 17.578-31.641 29.883-54.492 40.43-22.852 12.305-43.945 17.578-65.039 17.578h-509.766c-29.883 0-54.492-10.547-73.828-31.641-21.094-21.094-31.641-45.703-31.641-73.828v-450c0-28.125 10.547-52.734 31.641-73.828 19.336-21.094 43.945-31.641 73.828-31.641h149.414c28.125 0 52.734 10.547 73.828 31.641s31.641 45.703 31.641 73.828v14.063h254.883c28.125 0 52.734 10.547 73.828 31.641s31.641 45.703 31.641 73.828v75.586h89.648c15.82 0 31.641 3.516 45.703 10.547 14.063 8.789 24.609 19.336 31.641 33.398 5.273 10.547 7.031 21.094 7.031 31.641z" + ], + "defaultCode": 105, + "grid": 16, + "matchesSearch": false + }, + { + "id": 12, + "paths": [ + "M958.25 390.25v376.875c0 31.875-13.125 60-35.625 84.375-24.375 24.375-52.5 35.625-84.375 35.625h-652.5c-31.875 0-60-11.25-84.375-35.625-22.5-24.375-35.625-52.5-35.625-84.375v-513.75c0-33.75 13.125-61.875 35.625-86.25 24.375-22.5 52.5-33.75 84.375-33.75h172.5c31.875 0 60 11.25 84.375 33.75 22.5 24.375 35.625 52.5 35.625 86.25v16.875h360c31.875 0 60 11.25 84.375 35.625 22.5 22.5 35.625 50.625 35.625 84.375z" + ], + "defaultCode": 106, + "grid": 16, + "matchesSearch": false + }, + { + "id": 13, + "paths": [ + "M962 386.836v399.023c0 21.094-7.031 40.43-22.852 56.25s-35.156 22.852-58.008 22.852h-738.281c-22.852 0-42.188-7.031-58.008-22.852s-22.852-35.156-22.852-56.25v-399.023c14.063 15.82 31.641 29.883 50.977 43.945 121.289 82.617 203.906 138.867 249.609 172.266 19.336 14.063 35.156 26.367 45.703 33.398 12.305 7.031 28.125 15.82 47.461 24.609 21.094 7.031 38.672 12.305 56.25 12.305v0c17.578 0 35.156-5.273 56.25-12.305 19.336-8.789 35.156-17.578 47.461-24.609 10.547-7.031 26.367-19.336 45.703-33.398 58.008-40.43 140.625-98.438 249.609-172.266 19.336-14.063 36.914-28.125 50.977-43.945zM962 239.18c0 26.367-8.789 50.977-24.609 75.586s-36.914 43.945-61.523 61.523c-124.805 87.891-203.906 142.383-235.547 163.477-1.758 1.758-10.547 7.031-21.094 15.82-10.547 7.031-19.336 14.063-26.367 19.336-7.031 3.516-15.82 8.789-26.367 15.82-10.547 5.273-19.336 10.547-28.125 14.063-10.547 1.758-17.578 3.516-26.367 3.516v0c-8.789 0-15.82-1.758-26.367-3.516-8.789-3.516-17.578-8.789-28.125-14.063-10.547-7.031-19.336-12.305-26.367-15.82-7.031-5.273-15.82-12.305-26.367-19.336-10.547-8.789-19.336-14.063-21.094-15.82-31.641-21.094-75.586-52.734-131.836-91.406-58.008-40.43-91.406-63.281-103.711-72.070-21.094-14.063-40.43-33.398-58.008-58.008-19.336-24.609-28.125-47.461-28.125-68.555 0-26.367 7.031-47.461 21.094-65.039s33.398-26.367 59.766-26.367h738.281c22.852 0 40.43 8.789 56.25 24.609s24.609 33.398 24.609 56.25z" + ], + "defaultCode": 107, + "grid": 16, + "matchesSearch": false + }, + { + "id": 14, + "paths": [ + "M671.961 221.961c0 8.789-1.758 17.578-8.789 22.852-7.031 7.031-14.063 10.547-22.852 10.547h-63.281v513.281h63.281c8.789 0 15.82 3.516 22.852 10.547 7.031 5.273 8.789 14.063 8.789 22.852s-1.758 15.82-8.789 21.094l-128.32 130.078c-7.031 5.273-14.063 8.789-22.852 8.789s-15.82-3.516-22.852-8.789l-128.32-130.078c-7.031-5.273-8.789-12.305-8.789-21.094s1.758-17.578 8.789-22.852c7.031-7.031 14.063-10.547 22.852-10.547h63.281v-513.281h-63.281c-8.789 0-15.82-3.516-22.852-10.547-7.031-5.273-8.789-14.063-8.789-22.852s1.758-15.82 8.789-21.094l128.32-130.078c7.031-5.273 14.063-8.789 22.852-8.789s15.82 3.516 22.852 8.789l128.32 130.078c7.031 5.273 8.789 12.305 8.789 21.094z" + ], + "defaultCode": 108, + "grid": 16, + "matchesSearch": false + }, + { + "id": 15, + "paths": [ + "M670 516c0 6-2 10-6 14l-266 266c-4 4-10 6-14 6s-10-2-14-6l-28-28c-4-4-6-8-6-14 0-4 2-10 6-12l224-226-224-224c-4-4-6-8-6-14 0-4 2-8 6-12l28-28c4-4 10-6 14-6s10 2 14 6l266 266c4 4 6 8 6 12z" + ], + "defaultCode": 110, + "grid": 16, + "matchesSearch": false + }, + { + "id": 16, + "paths": [ + "M732 676v38c0 4-2 8-6 12s-8 6-12 6h-404c-4 0-8-2-12-6s-6-8-6-12v-38c0-4 2-10 6-12 4-4 8-6 12-6h404c4 0 8 2 12 6 4 2 6 8 6 12zM732 530v36c0 6-2 10-6 14s-8 6-12 6h-404c-4 0-8-2-12-6s-6-8-6-14v-36c0-6 2-10 6-12 4-4 8-6 12-6h404c4 0 8 2 12 6 4 2 6 6 6 12zM220 878h584v-440h-238c-14 0-28-4-38-16-10-10-16-22-16-38v-238h-292zM586 366h214c-4-12-8-20-12-24l-180-178c-4-6-12-10-22-14zM878 384v512c0 16-6 28-16 38-10 12-24 16-40 16h-620c-16 0-30-4-40-16-10-10-16-22-16-38v-768c0-16 6-28 16-38 10-12 24-16 40-16h364c16 0 32 2 52 10 18 8 32 18 42 28l178 178c12 10 20 26 28 44s12 34 12 50z" + ], + "defaultCode": 104, + "grid": 16, + "matchesSearch": false + }, + { + "id": 17, + "paths": [ + "M362.586 362.586c0 24.609-8.789 45.703-26.367 63.281s-38.672 26.367-65.039 26.367c-24.609 0-45.703-8.789-63.281-26.367s-26.367-38.672-26.367-63.281c0-26.367 8.789-47.461 26.367-65.039s38.672-26.367 63.281-26.367c26.367 0 47.461 8.789 65.039 26.367s26.367 38.672 26.367 65.039zM842.469 541.883v210.938h-660.938v-91.406l151.172-149.414 73.828 75.586 240.82-240.82zM886.414 211.414h-748.828c-5.273 0-8.789 1.758-10.547 5.273-3.516 3.516-5.273 7.031-5.273 10.547v569.531c0 3.516 1.758 7.031 5.273 10.547 1.758 3.516 5.273 5.273 10.547 5.273h748.828c5.273 0 8.789-1.758 10.547-5.273 3.516-3.516 5.273-7.031 5.273-10.547v-569.531c0-3.516-1.758-7.031-5.273-10.547-1.758-3.516-5.273-5.273-10.547-5.273zM962 227.234v569.531c0 21.094-7.031 38.672-22.852 52.734-14.063 15.82-31.641 22.852-52.734 22.852h-748.828c-21.094 0-38.672-7.031-52.734-22.852-15.82-14.063-22.852-31.641-22.852-52.734v-569.531c0-21.094 7.031-38.672 22.852-52.734 14.063-15.82 31.641-22.852 52.734-22.852h748.828c21.094 0 38.672 7.031 52.734 22.852 15.82 14.063 22.852 31.641 22.852 52.734z" + ], + "defaultCode": 111, + "grid": 16, + "matchesSearch": false + }, + { + "id": 18, + "paths": [ + "M798 420c0 6-2 10-6 14l-266 266c-4 4-10 6-14 6s-10-2-14-6l-266-266c-4-4-6-8-6-14 0-4 2-8 6-12l30-30c2-2 8-4 12-4 6 0 10 2 14 4l224 226 224-226c4-2 8-4 14-4 4 0 10 2 12 4l30 30c4 4 6 8 6 12z" + ], + "defaultCode": 113, + "grid": 16, + "matchesSearch": false + }, + { + "id": 19, + "paths": [ + "M732 786v-36c0-6-2-10-6-14-4-2-8-4-12-4h-404c-4 0-8 2-12 4-4 4-6 8-6 14v36c0 6 2 10 6 14 4 2 8 4 12 4h404c4 0 8-2 12-4 4-4 6-8 6-14zM732 640v-36c0-6-2-10-6-14s-8-4-12-4h-404c-4 0-8 0-12 4s-6 8-6 14v36c0 6 2 10 6 14 4 2 8 4 12 4h404c4 0 8-2 12-4 4-4 6-8 6-14zM878 438v458c0 16-6 28-16 38-10 12-24 16-40 16h-620c-16 0-30-4-40-16-10-10-16-22-16-38v-768c0-16 6-28 16-38 10-12 24-16 40-16h310v310c0 16 6 28 16 38 10 12 24 16 38 16zM876 366h-290v-292c30 6 56 18 74 38l178 178c20 20 32 44 38 76z" + ], + "defaultCode": 114, + "grid": 16, + "matchesSearch": false + }, + { + "id": 20, + "paths": [ + "M888.875 767.125v-376.875c0-15-5.625-26.25-15-37.5-9.375-9.375-22.5-15-35.625-15h-376.875c-15 0-28.125-3.75-37.5-15-9.375-9.375-15-22.5-15-35.625v-33.75c0-15-5.625-28.125-15-37.5s-22.5-15-35.625-15h-172.5c-13.125 0-26.25 5.625-35.625 15s-15 22.5-15 37.5v513.75c0 13.125 5.625 26.25 15 35.625 9.375 11.25 22.5 15 35.625 15h652.5c13.125 0 26.25-3.75 35.625-15 9.375-9.375 15-22.5 15-35.625zM958.25 390.25v376.875c0 31.875-13.125 60-35.625 84.375-24.375 24.375-52.5 35.625-84.375 35.625h-652.5c-31.875 0-60-11.25-84.375-35.625-22.5-24.375-35.625-52.5-35.625-84.375v-513.75c0-33.75 13.125-61.875 35.625-86.25 24.375-22.5 52.5-33.75 84.375-33.75h172.5c31.875 0 60 11.25 84.375 33.75 22.5 24.375 35.625 52.5 35.625 86.25v16.875h360c31.875 0 60 11.25 84.375 35.625 22.5 22.5 35.625 50.625 35.625 84.375z" + ], + "defaultCode": 115, + "grid": 16, + "matchesSearch": false + }, + { + "id": 21, + "paths": [ + "M888.875 425.75v103.125c0 15-5.625 26.25-15 37.5-9.375 9.375-22.5 15-35.625 15h-223.125v221.25c0 15-5.625 28.125-15 37.5s-22.5 15-37.5 15h-101.25c-15 0-28.125-5.625-37.5-15s-15-22.5-15-37.5v-221.25h-223.125c-13.125 0-26.25-5.625-35.625-15-9.375-11.25-15-22.5-15-37.5v-103.125c0-13.125 5.625-26.25 15-35.625s22.5-15 35.625-15h223.125v-223.125c0-15 5.625-26.25 15-35.625 9.375-11.25 22.5-15 37.5-15h101.25c15 0 28.125 3.75 37.5 15 9.375 9.375 15 20.625 15 35.625v223.125h223.125c13.125 0 26.25 5.625 35.625 15s15 22.5 15 35.625z" + ], + "defaultCode": 116, + "grid": 16, + "matchesSearch": false + }, + { + "id": 22, + "paths": [ + "M330 256c0-20-8-38-22-52s-32-22-52-22c-20 0-38 8-52 22-14 14-22 32-22 52 0 20 8 38 22 52 14 14 32 22 52 22 20 0 38-8 52-22 14-14 22-32 22-52zM938 586c0 20-6 36-20 50l-280 282c-16 14-34 20-52 20-22 0-38-6-52-20l-408-410c-16-14-28-32-38-58-10-24-14-46-14-66v-238c0-20 6-36 20-52 16-14 32-20 52-20h238c20 0 42 4 66 14 26 10 44 22 60 38l408 408c14 14 20 32 20 52z" + ], + "defaultCode": 117, + "grid": 16, + "matchesSearch": false + }, + { + "id": 23, + "paths": [ + "M942.664 570.367c0 8.789-5.273 19.336-14.063 31.641l-158.203 184.57c-12.305 15.82-31.641 29.883-56.25 40.43-24.609 12.305-45.703 17.578-66.797 17.578h-509.766c-10.547 0-21.094-1.758-28.125-7.031-8.789-3.516-14.063-10.547-14.063-19.336 0-10.547 5.273-21.094 15.82-31.641l156.445-184.57c14.063-17.578 33.398-29.883 56.25-42.188 24.609-10.547 47.461-15.82 68.555-15.82h509.766c10.547 0 19.336 1.758 28.125 5.273 8.789 5.273 12.305 12.305 12.305 21.094zM782.703 408.648v75.586h-390.234c-29.883 0-59.766 7.031-93.164 22.852-31.641 14.063-58.008 33.398-77.344 54.492l-156.445 186.328-3.516 3.516c0-1.758 0-3.516 0-7.031 0-1.758 0-3.516 0-5.273v-450c0-28.125 10.547-52.734 31.641-73.828 19.336-21.094 43.945-31.641 73.828-31.641h149.414c28.125 0 52.734 10.547 73.828 31.641s31.641 45.703 31.641 73.828v14.063h254.883c28.125 0 52.734 10.547 73.828 31.641s31.641 45.703 31.641 73.828z" + ], + "defaultCode": 118, + "grid": 16, + "matchesSearch": false + }, + { + "id": 24, + "paths": [ + "M658 512c0-40-14-74-42-104-30-28-64-42-104-42-40 0-74 14-104 42-28 30-42 64-42 104 0 40 14 74 42 104 30 28 64 42 104 42 40 0 74-14 104-42 28-30 42-64 42-104zM950 450v126c0 6 0 10-4 14-2 4-6 6-12 8l-104 16c-8 20-16 38-24 52 14 18 34 44 62 78 4 4 6 10 6 14 0 6-2 10-6 14-10 14-28 34-56 62-28 26-46 40-54 40-4 0-10-2-14-6l-80-62c-16 10-34 16-52 22-6 52-12 88-16 106-2 12-10 16-20 16h-128c-4 0-10 0-14-4s-6-8-6-12l-16-106c-18-6-36-12-52-20l-80 60c-4 4-8 6-14 6s-10-2-14-6c-48-44-80-76-94-96-4-4-4-8-4-14 0-4 0-8 4-12 6-8 16-22 28-38 14-18 24-32 32-42-10-18-18-38-24-56l-104-16c-6 0-10-2-12-6-4-4-4-8-4-14v-126c0-6 0-10 4-14 2-4 6-6 10-8l106-16c6-16 14-34 24-52-16-22-36-48-62-78-4-6-6-10-6-14 0-4 2-8 6-14 10-14 28-34 56-60 28-28 46-42 54-42 4 0 10 2 14 6l80 62c16-10 34-16 52-22 6-52 12-88 16-106 2-12 10-16 20-16h128c4 0 10 0 14 4s6 8 6 12l16 106c18 6 36 12 52 20l80-60c4-4 8-6 14-6s10 2 14 6c50 46 82 78 94 98 4 2 4 6 4 12 0 4 0 8-4 12-6 8-16 22-28 38-14 18-24 32-32 42 10 18 18 36 24 56l104 16c6 0 10 2 12 6 4 4 4 8 4 14z" + ], + "defaultCode": 119, + "grid": 16, + "matchesSearch": false + }, + { + "id": 25, + "paths": [ + "M954 292c0 14-4 28-16 38l-490 492c-12 10-24 16-40 16-14 0-28-6-38-16l-284-284c-12-12-16-24-16-40 0-14 4-28 16-38l76-78c12-10 24-16 40-16 14 0 28 6 38 16l168 168 376-376c10-10 24-16 38-16 16 0 28 6 40 16l76 78c12 12 16 24 16 40z" + ], + "defaultCode": 120, + "grid": 16, + "matchesSearch": false + }, + { + "id": 26, + "paths": [ + "M688 278c0 6-2 10-6 14l-224 224 224 226c4 2 6 8 6 12 0 6-2 10-6 14l-28 28c-4 4-10 6-14 6s-10-2-14-6l-266-266c-4-4-6-8-6-14 0-4 2-8 6-12l266-266c4-4 10-6 14-6s10 2 14 6l28 28c4 4 6 8 6 12z" + ], + "defaultCode": 122, + "grid": 16, + "matchesSearch": false + }, + { + "id": 27, + "paths": [ + "M464 742l352-350c6-8 10-16 10-26s-4-18-10-26l-58-58c-8-8-16-12-26-12s-20 4-26 12l-268 266-120-120c-6-8-16-10-26-10s-18 2-26 10l-58 58c-6 8-10 16-10 26s4 18 10 26l206 204c6 8 14 12 24 12s20-4 26-12zM950 238v548c0 46-16 84-48 116s-70 48-116 48h-548c-46 0-84-16-116-48s-48-70-48-116v-548c0-46 16-84 48-116s70-48 116-48h548c46 0 84 16 116 48s48 70 48 116z" + ], + "defaultCode": 65, + "grid": 16, + "matchesSearch": false + }, + { + "id": 28, + "paths": [ + "M768 548v-72c0-10-4-20-10-26-8-8-16-12-26-12h-146v-146c0-10-4-18-12-26-6-6-16-10-26-10h-72c-10 0-20 4-26 10-8 8-12 16-12 26v146h-146c-10 0-18 4-26 12-6 6-10 16-10 26v72c0 10 4 20 10 26 8 8 16 12 26 12h146v146c0 10 4 18 12 26 6 6 16 10 26 10h72c10 0 20-4 26-10 8-8 12-16 12-26v-146h146c10 0 18-4 26-12 6-6 10-16 10-26zM950 512c0 80-18 154-58 220-40 68-92 120-160 160-66 40-140 58-220 58-80 0-154-18-220-58-68-40-120-92-160-160-40-66-58-140-58-220 0-80 18-154 58-220 40-68 92-120 160-160 66-40 140-58 220-58 80 0 154 18 220 58 68 40 120 92 160 160 40 66 58 140 58 220z" + ], + "defaultCode": 66, + "grid": 16, + "matchesSearch": false + }, + { + "id": 29, + "paths": [ + "M374.935 845.58c-132.111-37.981-510.278-204.772-80.918-756.335 231.193 156.882 320.369 295.598 336.881 409.543-110.643 39.633-186.607 117.249-176.698 257.617-61.102-143.671-108.992-343.488-128.808-467.342-9.908 145.322 11.559 402.938 49.541 556.517zM521.908 880.259c-31.377-87.523-97.433-376.516 397.984-361.654 14.863 454.132-226.239 437.617-333.58 406.24 44.587-87.523 102.385-166.791 175.047-232.846-89.176 49.541-170.093 112.294-239.452 188.258z" + ], + "defaultCode": 68, + "grid": 16, + "matchesSearch": false + }, + { + "id": 30, + "paths": [ + "M431.375 847.625c28.125 11.25 52.5 16.875 75 16.875 46.875 0 86.25-7.5 116.25-22.5s52.5-35.625 65.625-60c13.125-26.25 20.625-58.125 20.625-97.5 0-41.25-7.5-73.125-22.5-95.625-20.625-33.75-45-56.25-75-67.5-28.125-13.125-73.125-18.75-133.125-18.75-26.25 0-43.125 1.875-54.375 5.625v170.625l1.875 144.375c0 5.625 1.875 13.125 5.625 24.375zM423.875 446.375c16.875 3.75 35.625 3.75 60 3.75 61.875 0 108.75-11.25 140.625-33.75 31.875-24.375 46.875-63.75 46.875-120 0-39.375-15-73.125-45-101.25-30-26.25-75-39.375-136.875-39.375-18.75 0-41.25 1.875-69.375 7.5 0 15 0 28.125 1.875 41.25 1.875 43.125 3.75 93.75 1.875 148.125v52.5c0 16.875 0 30 0 41.25zM135.125 922.625v-48.75c16.875-3.75 28.125-5.625 37.5-7.5 28.125-3.75 48.75-9.375 65.625-16.875 5.625-9.375 9.375-18.75 11.25-26.25 3.75-24.375 5.625-58.125 5.625-105l-1.875-266.25c-1.875-90-3.75-163.125-5.625-215.625 0-31.875-1.875-50.625-5.625-58.125 0-1.875-1.875-3.75-5.625-7.5-7.5-3.75-18.75-5.625-37.5-7.5-11.25 0-30-3.75-60-7.5l-3.75-43.125 140.625-3.75 202.5-7.5h24.375c1.875 0 3.75 0 7.5 0s5.625 0 7.5 0c0 0 3.75 0 11.25 0s15 0 22.5 0h39.375c31.875 0 65.625 3.75 103.125 15 15 3.75 31.875 11.25 50.625 20.625 20.625 9.375 39.375 22.5 54.375 39.375 16.875 16.875 28.125 35.625 35.625 56.25s11.25 43.125 11.25 65.625c0 24.375-5.625 48.75-16.875 69.375-13.125 20.625-30 39.375-52.5 56.25-9.375 5.625-35.625 20.625-78.75 41.25 61.875 13.125 110.625 39.375 142.5 76.875s48.75 80.625 48.75 127.5c0 26.25-5.625 56.25-15 86.25-7.5 22.5-20.625 43.125-37.5 61.875-24.375 26.25-48.75 45-75 58.125s-63.75 24.375-108.75 31.875c-30 5.625-65.625 7.5-106.875 5.625l-105-1.875c-30 0-84.375 1.875-159.375 5.625-13.125 1.875-61.875 3.75-146.25 5.625z" + ], + "defaultCode": 67, + "grid": 16, + "matchesSearch": false + }, + { + "id": 31, + "paths": [ + "M238.25 922.625l9.375-45c0-1.875 15-5.625 41.25-11.25 26.25-7.5 46.875-13.125 61.875-20.625 9.375-13.125 16.875-31.875 20.625-54.375l15-75 37.5-178.125c1.875-15 5.625-30 7.5-45 3.75-15 7.5-26.25 9.375-35.625s5.625-16.875 7.5-24.375c1.875-7.5 1.875-13.125 3.75-16.875s1.875-5.625 1.875-5.625l15-84.375 9.375-33.75 11.25-73.125 5.625-26.25v-20.625c-15-7.5-41.25-13.125-78.75-15-9.375 0-16.875-1.875-18.75-1.875l9.375-54.375 170.625 7.5c13.125 0 26.25 0 37.5 0 24.375 0 61.875-1.875 116.25-3.75 11.25-1.875 22.5-1.875 35.625-3.75 13.125 0 18.75 0 18.75 0 0 5.625-1.875 13.125-1.875 18.75-3.75 11.25-5.625 20.625-7.5 28.125-20.625 7.5-39.375 13.125-58.125 16.875-22.5 5.625-41.25 11.25-54.375 16.875-3.75 11.25-9.375 26.25-13.125 46.875-3.75 15-5.625 30-7.5 43.125-15 71.25-26.25 125.625-35.625 165l-31.875 166.875-20.625 84.375-22.5 125.625-7.5 24.375c0 1.875 0 7.5 1.875 13.125 22.5 5.625 43.125 9.375 63.75 11.25 13.125 1.875 24.375 3.75 35.625 5.625-1.875 11.25-1.875 20.625-3.75 31.875-3.75 11.25-5.625 18.75-5.625 22.5-5.625 0-11.25 0-13.125 0-7.5 0-15 0-22.5 0-1.875 0-7.5 0-15 0-5.625-1.875-31.875-5.625-76.875-9.375l-106.875-1.875c-13.125 0-45 1.875-91.875 5.625-26.25 3.75-45 3.75-52.5 5.625z" + ], + "defaultCode": 69, + "grid": 16, + "matchesSearch": false + }, + { + "id": 32, + "paths": [ + "M271.399 752.601c0 26.367-9.888 46.143-26.367 64.27-18.127 18.128-39.551 26.367-64.27 26.367s-46.143-8.24-64.27-26.367c-18.128-18.128-26.367-37.903-26.367-64.27 0-24.719 8.24-46.143 26.367-64.27 18.127-16.479 39.551-26.367 64.27-26.367s46.143 9.888 64.27 26.367c16.479 18.128 26.367 39.551 26.367 64.27zM271.399 512c0 24.719-9.888 46.143-26.367 64.27-18.127 18.128-39.551 26.367-64.27 26.367s-46.143-8.24-64.27-26.367c-18.128-18.128-26.367-39.551-26.367-64.27s8.24-46.143 26.367-64.27c18.127-18.127 39.551-26.367 64.27-26.367s46.143 8.24 64.27 26.367c16.479 18.127 26.367 39.551 26.367 64.27zM933.875 708.106v90.637c0 3.296-1.648 6.592-4.943 9.888s-6.592 4.943-9.888 4.943h-573.487c-3.296 0-6.592-1.648-9.888-4.943s-4.943-6.592-4.943-9.888v-90.638c0-4.943 1.648-8.24 4.943-11.536 3.296-1.648 6.592-3.296 9.888-3.296h573.487c3.296 0 6.592 1.648 9.888 3.296 3.296 3.296 4.943 6.592 4.943 11.536zM271.399 271.399c0 24.719-9.888 46.143-26.367 64.27-18.127 16.479-39.551 26.367-64.27 26.367s-46.143-9.888-64.27-26.367c-18.128-18.127-26.367-39.551-26.367-64.27 0-26.367 8.24-46.143 26.367-64.27s39.551-26.367 64.27-26.367c24.719 0 46.143 8.24 64.27 26.367 16.479 18.127 26.367 37.903 26.367 64.27zM933.875 467.505v88.989c0 4.943-1.648 8.24-4.943 11.536s-6.592 4.943-9.888 4.943h-573.487c-3.296 0-6.592-1.648-9.888-4.943s-4.943-6.592-4.943-11.536v-88.989c0-4.943 1.648-8.24 4.943-11.536s6.592-4.943 9.888-4.943h573.487c3.296 0 6.592 1.648 9.888 4.943s4.943 6.592 4.943 11.536zM933.875 225.257v90.638c0 4.943-1.648 8.24-4.943 11.536-3.296 1.648-6.592 3.296-9.888 3.296h-573.487c-3.296 0-6.592-1.648-9.888-3.296-3.296-3.296-4.943-6.592-4.943-11.536v-90.637c0-3.296 1.648-6.592 4.943-9.888s6.592-4.943 9.888-4.943h573.487c3.296 0 6.592 1.648 9.888 4.943s4.943 6.592 4.943 9.888z" + ], + "defaultCode": 70, + "grid": 16, + "matchesSearch": false + }, + { + "id": 33, + "paths": [ + "M284.893 831.805c0 23.174-7.725 41.714-24.719 55.618-15.449 13.904-35.534 20.085-58.708 20.085-32.444 0-57.163-9.27-77.248-29.354l26.264-38.623c13.904 13.904 29.354 20.085 46.348 20.085 9.27 0 15.449-3.090 21.629-6.18 7.725-4.634 10.815-10.815 10.815-18.54 0-20.085-15.449-27.809-46.348-24.719l-12.36-24.719c3.090-3.090 7.725-9.27 13.904-20.085 7.725-9.27 13.904-16.994 20.085-23.174 4.634-6.18 10.815-12.36 15.449-16.995v-1.545c-4.634 0-12.36 1.545-21.629 1.545s-16.994 0-21.629 0v23.174h-46.348v-66.433h146.77v38.623l-41.714 50.984c15.449 3.090 27.809 10.815 35.534 21.629 9.27 10.815 13.904 23.174 13.904 38.623zM284.893 555.259v69.523h-159.13c-1.545-10.815-3.090-18.54-3.090-23.174 0-15.449 4.634-29.354 10.815-41.714s15.449-21.629 24.719-29.354c9.27-7.725 20.085-15.449 29.354-21.629s18.54-12.36 24.719-18.54c7.725-6.18 10.815-13.904 10.815-20.085 0-7.725-3.090-13.904-6.18-16.994-4.634-4.634-10.815-6.18-18.54-6.18-12.36 0-24.719 9.27-35.534 26.264l-37.079-26.264c7.725-15.449 16.994-27.809 30.899-35.534s30.899-12.36 47.893-12.36c20.085 0 38.623 6.18 54.073 18.54 13.904 12.36 21.629 27.809 21.629 49.438 0 13.904-4.634 27.809-15.449 40.169-9.27 12.36-20.085 21.629-32.444 27.809-12.36 7.725-23.174 15.449-33.989 23.174-9.27 7.725-15.449 15.449-15.449 23.174h55.618v-26.264zM907.508 695.849v84.972c0 3.090-1.545 6.18-4.634 9.27s-6.18 4.634-9.27 4.634h-537.644c-3.090 0-6.18-1.545-9.27-4.634s-4.634-6.18-4.634-9.27v-84.973c0-4.634 1.545-7.725 4.634-10.815 3.090-1.545 6.18-3.090 9.27-3.090h537.644c3.090 0 6.18 1.545 9.27 3.090 3.090 3.090 4.634 6.18 4.634 10.815zM286.437 298.797v43.259h-148.315v-43.259h47.893c0-12.36 0-29.354 0-54.073 0-23.174 0-41.714 0-52.529v-6.18h-1.545c-1.545 4.634-9.27 13.904-21.629 24.719l-30.899-33.989 60.253-55.618h46.348v177.669zM907.508 470.286v83.427c0 4.634-1.545 7.725-4.634 10.815s-6.18 4.634-9.27 4.634h-537.644c-3.090 0-6.18-1.545-9.27-4.634s-4.634-6.18-4.634-10.815v-83.427c0-4.634 1.545-7.725 4.634-10.815s6.18-4.634 9.27-4.634h537.644c3.090 0 6.18 1.545 9.27 4.634s4.634 6.18 4.634 10.815zM907.508 243.178v84.973c0 4.634-1.545 7.725-4.634 10.815-3.090 1.545-6.18 3.090-9.27 3.090h-537.644c-3.090 0-6.18-1.545-9.27-3.090-3.090-3.090-4.634-6.18-4.634-10.815v-84.972c0-3.090 1.545-6.18 4.634-9.27s6.18-4.634 9.27-4.634h537.644c3.090 0 6.18 1.545 9.27 4.634s4.634 6.18 4.634 9.27z" + ], + "defaultCode": 71, + "grid": 16, + "matchesSearch": false + }, + { + "id": 34, + "paths": [ + "M922.625 512c0 56.25-9.375 108.75-31.875 159.375s-50.625 95.625-88.125 131.25c-35.625 37.5-80.625 65.625-131.25 88.125s-103.125 31.875-159.375 31.875c-61.875 0-120-11.25-174.375-37.5-56.25-26.25-103.125-63.75-142.5-110.625-1.875-3.75-3.75-7.5-3.75-11.25 0-5.625 1.875-7.5 5.625-11.25l73.125-73.125c3.75-3.75 7.5-5.625 13.125-5.625s9.375 3.75 13.125 5.625c24.375 35.625 58.125 61.875 95.625 78.75 37.5 18.75 76.875 28.125 120 28.125 37.5 0 73.125-7.5 106.875-20.625 33.75-15 61.875-33.75 86.25-60 26.25-24.375 45-52.5 60-86.25 13.125-33.75 20.625-69.375 20.625-106.875s-7.5-73.125-20.625-106.875c-15-33.75-33.75-61.875-60-86.25-24.375-26.25-52.5-45-86.25-60-33.75-13.125-69.375-20.625-106.875-20.625-35.625 0-69.375 5.625-101.25 18.75s-60 30-84.375 54.375l73.125 73.125c11.25 11.25 13.125 24.375 7.5 37.5-7.5 15-16.875 20.625-31.875 20.625h-240c-9.375 0-16.875-1.875-24.375-9.375s-9.375-15-9.375-24.375v-240c0-15 5.625-24.375 20.625-31.875 13.125-5.625 26.25-3.75 37.5 7.5l69.375 69.375c37.5-35.625 82.5-63.75 131.25-84.375 48.75-18.75 99.375-28.125 151.875-28.125 56.25 0 108.75 9.375 159.375 31.875s95.625 50.625 131.25 88.125c37.5 35.625 65.625 80.625 88.125 131.25s31.875 103.125 31.875 159.375z" + ], + "defaultCode": 72, + "grid": 16, + "matchesSearch": false + }, + { + "id": 35, + "paths": [ + "M922.625 168.875v240c0 9.375-1.875 16.875-9.375 24.375s-15 9.375-24.375 9.375h-240c-15 0-24.375-5.625-31.875-20.625-5.625-13.125-3.75-26.25 7.5-37.5l75-73.125c-52.5-48.75-116.25-73.125-187.5-73.125-37.5 0-73.125 7.5-106.875 20.625-33.75 15-61.875 33.75-86.25 60-26.25 24.375-45 52.5-60 86.25-13.125 33.75-20.625 69.375-20.625 106.875s7.5 73.125 20.625 106.875c15 33.75 33.75 61.875 60 86.25 24.375 26.25 52.5 45 86.25 60 33.75 13.125 69.375 20.625 106.875 20.625 43.125 0 82.5-9.375 120-28.125 37.5-16.875 71.25-43.125 95.625-78.75 3.75-1.875 7.5-5.625 13.125-5.625s9.375 1.875 13.125 5.625l73.125 73.125c3.75 3.75 5.625 5.625 5.625 11.25 0 3.75-1.875 7.5-3.75 11.25-39.375 46.875-86.25 84.375-142.5 110.625-54.375 26.25-112.5 37.5-174.375 37.5-56.25 0-108.75-9.375-159.375-31.875s-95.625-50.625-131.25-88.125c-37.5-35.625-65.625-80.625-88.125-131.25s-31.875-103.125-31.875-159.375c0-56.25 9.375-108.75 31.875-159.375s50.625-95.625 88.125-131.25c35.625-37.5 80.625-65.625 131.25-88.125s103.125-31.875 159.375-31.875c52.5 0 103.125 9.375 151.875 28.125 48.75 20.625 93.75 48.75 131.25 84.375l69.375-69.375c11.25-11.25 22.5-13.125 37.5-7.5 15 7.5 20.625 16.875 20.625 31.875z" + ], + "defaultCode": 73, + "grid": 16, + "matchesSearch": false + }, + { + "id": 36, + "paths": [ + "M824.891 703.961c0-12.305-3.516-24.609-14.063-33.398l-103.711-103.711c-8.789-10.547-21.094-14.063-35.156-14.063s-24.609 5.273-35.156 15.82c0 0 3.516 3.516 8.789 8.789s8.789 8.789 10.547 10.547c1.758 1.758 5.273 5.273 8.789 10.547 3.516 3.516 5.273 7.031 5.273 12.305 1.758 3.516 1.758 8.789 1.758 14.063 0 12.305-3.516 24.609-14.063 33.398-8.789 8.789-19.336 14.063-33.398 14.063-5.273 0-8.789 0-14.063-1.758-3.516-1.758-8.789-3.516-12.305-7.031-5.273-1.758-7.031-5.273-10.547-7.031-1.758-1.758-5.273-5.273-10.547-10.547s-7.031-8.789-8.789-8.789c-10.547 8.789-15.82 21.094-15.82 35.156s3.516 26.367 14.063 35.156l101.953 103.711c10.547 8.789 21.094 14.063 35.156 14.063 12.305 0 24.609-5.273 33.398-14.063l73.828-72.070c10.547-10.547 14.063-21.094 14.063-35.156zM471.57 350.641c0-14.063-3.516-24.609-14.063-33.398l-101.953-105.469c-10.547-8.789-21.094-14.063-35.156-14.063-12.305 0-24.609 5.273-33.398 14.063l-73.828 73.828c-10.547 8.789-14.063 21.094-14.063 33.398 0 14.063 3.516 24.609 14.063 33.398l103.711 105.469c8.789 8.789 21.094 14.063 35.156 14.063s24.609-5.273 35.156-15.82c0-1.758-3.516-5.273-8.789-10.547s-8.789-8.789-10.547-10.547c-1.758-1.758-5.273-5.273-8.789-8.789-3.516-5.273-5.273-8.789-5.273-12.305-1.758-5.273-1.758-8.789-1.758-14.063 0-14.063 3.516-24.609 14.063-35.156 8.789-8.789 19.336-14.063 33.398-14.063 5.273 0 8.789 1.758 14.063 1.758 3.516 1.758 8.789 3.516 12.305 7.031 5.273 3.516 7.031 5.273 10.547 7.031 1.758 1.758 5.273 5.273 10.547 10.547s7.031 8.789 8.789 10.547c10.547-10.547 15.82-22.852 15.82-36.914zM921.57 703.961c0 40.43-14.063 75.586-42.188 101.953l-73.828 73.828c-28.125 28.125-61.523 42.188-101.953 42.188s-75.586-14.063-101.953-42.188l-103.711-105.469c-28.125-26.367-42.188-61.523-42.188-101.953s14.063-75.586 43.945-103.711l-43.945-43.945c-28.125 28.125-63.281 43.945-103.711 43.945s-75.586-14.063-103.711-42.188l-103.711-105.469c-28.125-28.125-42.188-61.523-42.188-101.953s14.063-73.828 42.188-101.953l73.828-73.828c28.125-28.125 61.523-40.43 101.953-40.43s75.586 14.063 101.953 42.188l103.711 103.711c28.125 28.125 42.188 61.523 42.188 101.953s-14.063 75.586-43.945 105.469l43.945 43.945c28.125-29.883 63.281-43.945 103.711-43.945s75.586 14.063 103.711 42.188l103.711 103.711c28.125 28.125 42.188 63.281 42.188 101.953z" + ], + "defaultCode": 74, + "grid": 16, + "matchesSearch": false + }, + { + "id": 37, + "paths": [ + "M950 512c0 80-18 154-58 220-40 68-92 120-160 160-66 40-140 58-220 58-80 0-154-18-220-58-68-40-120-92-160-160-40-66-58-140-58-220 0-80 18-154 58-220 40-68 92-120 160-160 66-40 140-58 220-58 80 0 154 18 220 58 68 40 120 92 160 160 40 66 58 140 58 220z" + ], + "defaultCode": 75, + "grid": 16, + "matchesSearch": false + }, + { + "id": 38, + "paths": [ + "M512 202c-56 0-108 14-156 40-48 28-86 66-114 114-26 48-40 100-40 156 0 56 14 108 40 156 28 48 66 86 114 114 48 26 100 40 156 40 56 0 108-14 156-40 48-28 86-66 114-114 26-48 40-100 40-156 0-56-14-108-40-156-28-48-66-86-114-114-48-26-100-40-156-40zM950 512c0 80-18 154-58 220-40 68-92 120-160 160-66 40-140 58-220 58-80 0-154-18-220-58-68-40-120-92-160-160-40-66-58-140-58-220 0-80 18-154 58-220 40-68 92-120 160-160 66-40 140-58 220-58 80 0 154 18 220 58 68 40 120 92 160 160 40 66 58 140 58 220z" + ], + "defaultCode": 76, + "grid": 16, + "matchesSearch": false + }, + { + "id": 39, + "paths": [ + "M958 694c0 22-8 38-22 52l-42 44c-16 14-32 20-52 20-22 0-38-6-52-20l-278-278-278 278c-14 14-30 20-52 20-20 0-36-6-50-20l-44-44c-14-14-22-30-22-52 0-20 8-36 22-52l372-372c14-14 32-20 52-20s38 6 52 20l372 372c14 16 22 32 22 52z" + ], + "defaultCode": 77, + "grid": 16, + "matchesSearch": false + }, + { + "id": 40, + "paths": [ + "M958 402c0 20-8 38-22 52l-372 372c-14 14-32 22-52 22s-38-8-52-22l-372-372c-14-14-22-32-22-52s8-38 22-52l42-42c16-14 34-22 52-22 22 0 38 8 52 22l278 278 278-278c14-14 30-22 52-22 18 0 36 8 52 22l42 42c14 16 22 32 22 52z" + ], + "defaultCode": 78, + "grid": 16, + "matchesSearch": false + }, + { + "id": 41, + "paths": [ + "M350.501 512c-47.791 1.648-85.693 19.776-117.005 56.031h-57.678c-24.719 0-44.495-4.943-60.974-18.128-16.479-11.536-24.719-28.015-24.719-51.086 0-103.821 18.127-154.907 54.382-154.907 1.648 0 8.24 1.648 19.776 8.24 9.888 6.592 24.719 13.184 42.847 19.776 16.479 4.943 34.607 8.24 51.086 8.24 19.776 0 39.551-3.296 59.326-9.888-1.648 11.536-1.648 21.424-1.648 29.663 0 39.551 11.536 77.453 34.607 112.060zM821.815 792.151c0 34.607-11.536 62.622-32.959 82.398-21.424 21.424-49.438 31.311-84.045 31.311h-385.62c-34.607 0-62.622-9.888-84.045-31.311-21.424-19.776-32.959-47.791-32.959-82.398 0-16.479 1.648-31.311 1.648-46.143 1.648-14.831 3.296-29.663 6.592-47.791 3.296-16.479 6.592-32.959 11.536-47.791s11.536-28.015 18.128-42.847c8.24-13.184 18.127-24.719 28.015-34.607s23.071-18.127 37.903-24.719c14.831-4.943 31.311-8.24 49.438-8.24 1.648 0 8.24 3.296 18.128 9.888s19.776 13.184 31.311 21.424c13.184 6.592 28.015 14.831 47.791 19.776 19.776 6.592 39.551 9.888 59.326 9.888s39.551-3.296 59.326-9.888c19.776-4.943 34.607-13.184 47.791-19.776 11.536-8.24 21.424-14.831 31.311-21.424s16.479-9.888 18.127-9.888c18.128 0 34.607 3.296 49.438 8.24 14.831 6.592 28.015 14.831 37.903 24.719s19.776 21.424 28.015 34.607c6.592 14.831 13.184 28.015 18.127 42.847s8.24 31.311 11.536 47.791c3.296 18.128 4.943 32.959 6.592 47.791 0 14.831 1.648 29.663 1.648 46.143zM371.924 230.201c0 31.311-11.536 57.678-32.959 80.75-23.071 21.424-49.438 32.959-80.75 32.959-29.663 0-57.678-11.536-79.102-32.959-21.424-23.071-32.959-49.438-32.959-80.75s11.536-57.678 32.959-79.102c21.424-21.424 49.438-32.959 79.102-32.959 31.311 0 57.678 11.536 80.75 32.959 21.424 21.424 32.959 47.791 32.959 79.102zM680.091 399.94c0 46.143-16.479 85.693-49.438 118.653s-72.51 49.438-118.653 49.438c-46.143 0-85.693-16.479-118.653-49.438s-49.438-72.51-49.438-118.653c0-47.791 16.479-87.341 49.438-120.3s72.51-49.438 118.653-49.438c46.143 0 85.693 16.479 118.653 49.438s49.438 72.51 49.438 120.3zM933.875 498.817c0 23.071-8.24 39.551-24.719 51.086-16.479 13.184-36.255 18.128-60.974 18.128h-57.678c-31.311-36.255-69.214-54.383-117.005-56.031 23.071-34.607 34.607-72.51 34.607-112.060 0-8.24 0-18.127-1.648-29.663 19.776 6.592 39.551 9.888 59.326 9.888 16.479 0 34.607-3.296 51.086-8.24 18.128-6.592 32.959-13.184 42.847-19.776 11.536-6.592 18.128-8.24 19.776-8.24 36.255 0 54.383 51.086 54.383 154.907zM877.844 230.201c0 31.311-11.536 57.678-32.959 80.75-21.424 21.424-49.438 32.959-79.102 32.959-31.311 0-57.678-11.536-80.75-32.959-21.424-23.071-32.959-49.438-32.959-80.75s11.536-57.678 32.959-79.102c23.071-21.424 49.438-32.959 80.75-32.959 29.663 0 57.678 11.536 79.102 32.959s32.959 47.791 32.959 79.102z" + ], + "defaultCode": 79, + "grid": 16, + "matchesSearch": false + }, + { + "id": 42, + "paths": [ + "M750 512c0 14-6 24-18 32l-312 182c-6 4-12 6-18 6s-12-2-18-6-18-18-18-32v-364c0-14 6-26 18-32 12-8 24-8 36 0l312 182c12 8 18 18 18 32zM822 512c0-56-14-108-40-156-28-48-66-86-114-114-48-26-100-40-156-40-56 0-108 14-156 40-48 28-86 66-114 114-26 48-40 100-40 156 0 56 14 108 40 156 28 48 66 86 114 114 48 26 100 40 156 40 56 0 108-14 156-40 48-28 86-66 114-114 26-48 40-100 40-156zM950 512c0 80-18 154-58 220-40 68-92 120-160 160-66 40-140 58-220 58-80 0-154-18-220-58-68-40-120-92-160-160-40-66-58-140-58-220 0-80 18-154 58-220 40-68 92-120 160-160 66-40 140-58 220-58 80 0 154 18 220 58 68 40 120 92 160 160 40 66 58 140 58 220z" + ], + "defaultCode": 80, + "grid": 16, + "matchesSearch": false + }, + { + "id": 43, + "paths": [ + "M512.359 318.641c0-26.367-10.547-49.219-28.125-68.555-19.336-17.578-42.188-28.125-68.555-28.125s-49.219 10.547-68.555 28.125c-19.336 19.336-28.125 42.188-28.125 68.555 0 14.063 3.516 28.125 8.789 42.188-12.305-7.031-26.367-8.789-40.43-8.789-28.125 0-49.219 8.789-68.555 28.125-19.336 17.578-28.125 40.43-28.125 66.797 0 28.125 8.789 50.977 28.125 68.555 19.336 19.336 40.43 28.125 68.555 28.125 26.367 0 49.219-8.789 68.555-28.125 17.578-17.578 28.125-40.43 28.125-68.555 0-14.063-3.516-26.367-10.547-40.43 14.063 5.273 28.125 8.789 42.188 8.789 26.367 0 49.219-8.789 68.555-28.125 17.578-19.336 28.125-40.43 28.125-68.555zM939.508 671.961c0 7.031-8.789 17.578-24.609 33.398-15.82 17.578-28.125 24.609-33.398 24.609-3.516 0-7.031-1.758-14.063-7.031s-12.305-10.547-19.336-17.578c-5.273-5.273-10.547-12.305-19.336-19.336-7.031-8.789-10.547-12.305-12.305-14.063l-47.461 49.219 110.742 110.742c8.789 8.789 14.063 21.094 14.063 33.398 0 14.063-7.031 28.125-19.336 40.43-14.063 14.063-26.367 19.336-40.43 19.336s-26.367-3.516-35.156-14.063l-337.5-335.742c-58.008 43.945-119.531 65.039-182.813 65.039-54.492 0-98.438-17.578-133.594-50.977-33.398-35.156-50.977-79.102-50.977-133.594 0-52.734 15.82-105.469 47.461-156.445 31.641-52.734 73.828-93.164 124.805-124.805s103.711-47.461 156.445-47.461c54.492 0 100.195 15.82 133.594 50.977 35.156 33.398 52.734 79.102 52.734 133.594 0 63.281-22.852 123.047-66.797 182.813l179.297 177.539 47.461-47.461c-1.758-1.758-5.273-5.273-12.305-12.305-8.789-7.031-15.82-14.063-21.094-19.336s-10.547-12.305-15.82-17.578c-5.273-7.031-8.789-12.305-8.789-15.82 0-5.273 8.789-15.82 24.609-31.641 15.82-17.578 28.125-24.609 33.398-24.609 3.516 0 8.789 1.758 12.305 3.516 1.758 3.516 8.789 10.547 22.852 22.852 12.305 12.305 26.367 26.367 40.43 40.43s28.125 28.125 43.945 42.188c14.063 15.82 26.367 28.125 36.914 40.43 8.789 10.547 14.063 17.578 14.063 19.336z" + ], + "defaultCode": 81, + "grid": 16, + "matchesSearch": false + }, + { + "id": 44, + "paths": [ + "M751.063 712.391c123.047 42.188 184.57 79.102 184.57 108.984 0 0 0 94.922 0 94.922s-423.633 0-423.633 0c0 0-423.633 0-423.633 0s0-94.922 0-94.922c0-29.883 61.523-66.797 184.57-108.984 56.25-21.094 94.922-42.188 114.258-63.281 21.094-21.094 31.641-49.219 31.641-84.375 0-14.063-7.031-28.125-21.094-43.945-12.305-17.578-21.094-38.672-28.125-66.797-1.758-7.031-3.516-12.305-8.789-15.82-3.516-3.516-7.031-5.273-12.305-7.031-3.516-1.758-7.031-7.031-12.305-15.82-3.516-8.789-7.031-21.094-7.031-38.672 0-8.789 0-17.578 3.516-22.852 3.516-7.031 5.273-10.547 8.789-10.547 0 0 3.516-3.516 3.516-3.516-5.273-29.883-8.789-56.25-10.547-79.102-3.516-33.398 8.789-66.797 36.914-101.953 26.367-33.398 73.828-50.977 140.625-50.977s114.258 17.578 142.383 50.977c28.125 35.156 38.672 68.555 35.156 101.953 0 0-10.547 79.102-10.547 79.102 10.547 3.516 15.82 17.578 15.82 36.914 0 17.578-3.516 29.883-7.031 38.672-5.273 8.789-8.789 14.063-12.305 15.82-5.273 1.758-8.789 3.516-12.305 7.031-5.273 3.516-7.031 8.789-8.789 15.82-5.273 29.883-14.063 50.977-28.125 66.797s-21.094 29.883-21.094 43.945c0 35.156 10.547 63.281 31.641 84.375s59.766 42.188 114.258 63.281z" + ], + "defaultCode": 121, + "grid": 16, + "matchesSearch": false + }, + { + "id": 45, + "paths": [ + "M880 246h-376c-20-24-40-50-46-56-4-12-16-20-28-20h-150c-10 0-18 6-26 12l-50 64h-60c-32 0-56 26-56 56v496c0 30 24 56 56 56h736c32 0 56-26 56-56v-496c0-30-24-56-56-56z" + ], + "defaultCode": 82, + "grid": 16, + "matchesSearch": false + }, + { + "id": 46, + "paths": [ + "M766.918 695.849c0-18.54-6.18-35.534-18.54-50.984-13.904-15.449-29.354-23.174-46.348-23.174-15.449 0-27.809 4.634-37.079 15.449-7.725 10.815-12.36 24.719-12.36 41.714s4.634 30.899 15.449 41.714c10.815 12.36 26.264 16.995 46.348 16.995 13.904 0 26.264-3.090 37.079-10.815 10.815-9.27 15.449-18.54 15.449-30.899zM498.096 751.467c0 4.634-1.545 7.725-4.634 10.815l-140.59 140.59c-3.090 3.090-6.18 4.634-10.815 4.634-3.090 0-6.18-1.545-9.27-4.634l-142.136-140.59c-4.634-4.634-4.634-9.27-3.090-15.449 3.090-6.18 7.725-9.27 13.904-9.27h84.972v-607.166c0-4.634 1.545-7.725 3.090-9.27 3.090-3.090 6.18-4.634 10.815-4.634h84.973c3.090 0 7.725 1.545 9.27 4.634 3.090 1.545 4.634 4.634 4.634 9.27v607.166h84.973c3.090 0 7.725 1.545 9.27 4.634 3.090 3.090 4.634 6.18 4.634 9.27zM828.716 722.114c0 18.54-1.545 35.534-6.18 52.529-3.090 18.54-9.27 35.534-16.994 50.984-9.27 15.449-18.54 29.354-30.899 41.714-10.815 12.36-26.264 21.629-43.259 29.354s-35.534 10.815-55.618 10.815c-18.54 0-33.989-3.090-47.893-7.725-7.725-1.545-13.904-4.634-18.54-6.18l16.995-49.438c4.634 1.545 9.27 3.090 13.904 4.634 10.815 3.090 21.629 6.18 32.444 6.18 24.719 0 44.804-9.27 60.253-26.264 13.904-16.994 24.719-38.623 29.354-64.888h-1.545c-6.18 7.725-15.449 12.36-26.264 16.995-12.36 4.634-24.719 6.18-38.623 6.18-30.899 0-55.618-10.815-75.703-30.899-20.085-21.629-29.354-46.348-29.354-77.248s10.815-57.163 30.899-78.792c21.629-20.085 47.893-30.899 80.337-30.899 37.079 0 66.433 13.904 91.152 41.714 23.174 27.809 35.534 64.888 35.534 111.237zM816.356 405.399v49.438h-207.023v-49.438h72.612v-191.574c0-1.545 0-4.634 0-7.725 1.545-3.090 1.545-6.18 1.545-7.725v-6.18h-1.545l-3.090 4.634c-3.090 3.090-6.18 7.725-10.815 13.904l-27.809 24.719-37.079-37.079 84.973-81.882h54.073v288.907z" + ], + "defaultCode": 84, + "grid": 16, + "matchesSearch": false + }, + { + "id": 47, + "paths": [ + "M821.375 562.625v258.75c0 9.375-3.75 16.875-11.25 22.5-5.625 7.5-15 11.25-24.375 11.25h-204.375v-206.25h-138.75v206.25h-204.375c-9.375 0-18.75-3.75-24.375-11.25-7.5-5.625-11.25-13.125-11.25-22.5v-258.75c0 0 0 0 1.875 0 0-1.875 0-1.875 0-1.875l307.5-255 307.5 255c0 0 1.875 1.875 1.875 1.875zM939.5 527l-31.875 39.375c-3.75 3.75-7.5 5.625-11.25 5.625h-1.875c-5.625 0-9.375-1.875-11.25-3.75l-371.25-309.375-371.25 309.375c-3.75 3.75-7.5 3.75-13.125 3.75-3.75 0-7.5-1.875-11.25-5.625l-31.875-39.375c-3.75-3.75-3.75-7.5-3.75-13.125s1.875-9.375 5.625-11.25l384.375-320.625c11.25-9.375 26.25-15 41.25-15s30 5.625 41.25 15l129.375 108.75v-105c0-3.75 1.875-9.375 5.625-11.25 3.75-3.75 7.5-5.625 13.125-5.625h101.25c5.625 0 9.375 1.875 13.125 5.625 3.75 1.875 5.625 7.5 5.625 11.25v219.375l116.25 97.5c3.75 1.875 5.625 5.625 5.625 11.25s0 9.375-3.75 13.125z" + ], + "defaultCode": 87, + "grid": 16, + "matchesSearch": false + }, + { + "id": 48, + "paths": [ + "M703.602 714.148c1.758 7.031 1.758 12.305-3.516 17.578l-175.781 193.359c-1.758 3.516-7.031 5.273-10.547 5.273-5.273 0-8.789-1.758-12.305-5.273l-177.539-193.359c-5.273-5.273-5.273-10.547-3.516-17.578 3.516-5.273 8.789-8.789 14.063-8.789h112.5v-627.539c0-5.273 1.758-8.789 5.273-10.547 3.516-3.516 7.031-5.273 12.305-5.273h94.922c5.273 0 8.789 1.758 12.305 5.273 3.516 1.758 5.273 5.273 5.273 10.547v627.539h112.5c7.031 0 10.547 3.516 14.063 8.789z" + ], + "defaultCode": 88, + "grid": 16, + "matchesSearch": false + }, + { + "id": 49, + "paths": [ + "M703.602 309.852c-3.516 5.273-8.789 8.789-14.063 8.789h-112.5v627.539c0 5.273-1.758 8.789-5.273 10.547-3.516 3.516-7.031 5.273-12.305 5.273h-94.922c-5.273 0-8.789-1.758-12.305-5.273-3.516-1.758-5.273-5.273-5.273-10.547v-627.539h-112.5c-7.031 0-10.547-3.516-14.063-8.789-1.758-7.031-1.758-12.305 3.516-17.578l175.781-193.359c1.758-3.516 7.031-5.273 10.547-5.273 5.273 0 8.789 1.758 12.305 5.273l177.539 193.359c5.273 5.273 5.273 10.547 3.516 17.578z" + ], + "defaultCode": 89, + "grid": 16, + "matchesSearch": false + }, + { + "id": 50, + "paths": [ + "M402 420v330c0 6-2 10-4 12-4 4-8 6-14 6h-36c-6 0-10-2-14-6-4-2-4-6-4-12v-330c0-4 0-10 4-12 4-4 8-6 14-6h36c6 0 10 2 14 6 2 2 4 8 4 12zM548 420v330c0 6-2 10-4 12-4 4-8 6-14 6h-36c-6 0-10-2-14-6-2-2-4-6-4-12v-330c0-4 2-10 4-12 4-4 8-6 14-6h36c6 0 10 2 14 6 2 2 4 8 4 12zM694 420v330c0 6 0 10-4 12-4 4-8 6-14 6h-36c-6 0-10-2-14-6-2-2-4-6-4-12v-330c0-4 2-10 4-12 4-4 8-6 14-6h36c6 0 10 2 14 6 4 2 4 8 4 12zM768 834v-542h-512v542c0 8 2 16 4 24 2 6 6 12 8 14 4 4 6 6 6 6h476c0 0 2-2 6-6 2-2 6-8 8-14 2-8 4-16 4-24zM384 220h256l-28-68c-2-2-6-4-10-6h-180c-4 2-8 4-10 6zM914 238v36c0 6-2 10-4 14-4 2-8 4-14 4h-54v542c0 32-10 60-28 82-18 24-40 34-64 34h-476c-24 0-46-10-64-32s-28-50-28-82v-544h-54c-6 0-10-2-14-4-2-4-4-8-4-14v-36c0-6 2-10 4-14 4-2 8-4 14-4h176l40-96c6-14 16-26 32-36 14-10 30-14 44-14h184c14 0 30 4 44 14 16 10 26 22 32 36l40 96h176c6 0 10 2 14 4 2 4 4 8 4 14z" + ], + "defaultCode": 90, + "grid": 16, + "matchesSearch": false + }, + { + "id": 51, + "paths": [ + "M788.707 162.475c0 9.709-7.282 19.419-19.419 19.419-9.709 0-19.419-9.709-19.419-19.419 0-12.137 9.709-19.419 19.419-19.419 12.137 0 19.419 7.282 19.419 19.419zM795.989 346.946c0 0-26.7-121.363-186.899-89.808-14.563-55.827-12.137-97.090 21.845-133.499 48.545-50.973 126.218-24.272 126.218-24.272v-41.264c-26.7-12.137-53.399-14.563-80.099-14.563-104.372 0-162.626 77.673-186.899 131.072l-288.844 531.57 82.527-14.563-150.491 288.844 104.372-19.419 80.099-225.735c225.735 0 517.006-82.527 478.171-388.362zM893.079 245.002l-63.109-63.109-50.973 63.109zM354.228 669.772c0 0 9.709-2.427 21.845-4.854 12.137-4.854 31.554-7.282 53.399-14.563 12.137-2.427 24.272-7.282 36.409-9.709 12.137-4.854 26.7-9.709 38.836-14.563 14.563-7.282 26.7-12.137 38.836-19.419 14.563-7.282 26.7-16.991 38.836-24.272 2.427-2.427 7.282-4.854 9.709-7.282l7.282-7.282c7.282-7.282 12.137-12.137 16.991-16.991s9.709-12.137 14.563-16.991c2.427-2.427 4.854-4.854 7.282-9.709l2.427-4.854 2.427-2.427c2.427-4.854 4.854-7.282 4.854-9.709 2.427-2.427 4.854-7.282 4.854-9.709 2.427-2.427 2.427-2.427 2.427-4.854 2.427 0 2.427-2.427 2.427-4.854 2.427-2.427 2.427-4.854 4.854-7.282 2.427-7.282 4.854-12.137 7.282-19.419 0-4.854 2.427-9.709 4.854-16.991 0-4.854 2.427-9.709 2.427-14.563s2.427-9.709 2.427-14.563c0-4.854 2.427-9.709 2.427-14.563 0-2.427 0-7.282 0-9.709 0-12.137 2.427-21.845 2.427-21.845l12.137 2.427c0 0-2.427 7.282-2.427 19.419 0 4.854-2.427 7.282-2.427 12.137s0 9.709-2.427 12.137c0 4.854 0 9.709-2.427 16.991 0 4.854-2.427 9.709-2.427 14.563-2.427 7.282-4.854 12.137-7.282 19.419-2.427 4.854-4.854 12.137-7.282 16.991 0 2.427-2.427 7.282-4.854 9.709 0 2.427 0 2.427-2.427 4.854 0 2.427 0 2.427-2.427 4.854 0 2.427-2.427 4.854-4.854 9.709-2.427 2.427-2.427 4.854-4.854 7.282s-2.427 4.854-2.427 4.854l-4.854 4.854c-2.427 2.427-4.854 7.282-7.282 9.709-4.854 4.854-9.709 12.137-14.563 16.991s-9.709 9.709-16.991 16.991l-7.282 7.282c-4.854 2.427-7.282 2.427-9.709 4.854-14.563 9.709-26.7 19.419-41.264 26.7-12.137 4.854-26.7 12.137-38.836 16.991-14.563 4.854-26.7 9.709-41.264 14.563-12.137 2.427-24.272 7.282-36.409 9.709-21.845 4.854-41.264 9.709-53.399 12.137s-21.845 4.854-21.845 4.854z" + ], + "defaultCode": 86, + "grid": 16, + "matchesSearch": false + }, + { + "id": 52, + "paths": [ + "M213.721 810.279c-79.102-79.102-123.596-186.218-123.596-298.279 0-232.361 189.514-421.875 421.875-421.875l52.734 52.734-52.734 52.734c-174.683 0-316.406 141.724-316.406 316.406 0 84.045 32.959 164.795 92.286 224.122l-64.27 8.24zM512 933.875l-52.734-52.734 52.734-52.734c174.683 0 316.406-141.724 316.406-316.406 0-84.045-32.959-164.795-92.286-224.122l64.27-8.24 9.888-65.918c79.102 79.102 123.596 186.218 123.596 298.279 0 232.361-189.514 421.875-421.875 421.875z" + ], + "defaultCode": 49, + "grid": 16, + "matchesSearch": false + }, + { + "id": 53, + "paths": [ + "M449.378 830.054c0 57.678-47.791 103.821-105.469 103.821s-105.469-46.143-105.469-103.821c0-59.326 47.791-105.469 105.469-105.469s105.469 46.143 105.469 105.469zM449.378 512c0 57.678-47.791 105.469-105.469 105.469s-105.469-47.791-105.469-105.469c0-57.678 47.791-105.469 105.469-105.469s105.469 47.791 105.469 105.469zM449.378 193.946c0 59.326-47.791 105.469-105.469 105.469s-105.469-46.143-105.469-105.469c0-57.678 47.791-103.821 105.469-103.821s105.469 46.143 105.469 103.821zM785.56 830.054c0 57.678-47.791 103.821-105.469 103.821s-105.469-46.143-105.469-103.821c0-59.326 47.791-105.469 105.469-105.469s105.469 46.143 105.469 105.469zM785.56 512c0 57.678-47.791 105.469-105.469 105.469s-105.469-47.791-105.469-105.469c0-57.678 47.791-105.469 105.469-105.469s105.469 47.791 105.469 105.469zM785.56 193.946c0 59.326-47.791 105.469-105.469 105.469s-105.469-46.143-105.469-105.469c0-57.678 47.791-103.821 105.469-103.821s105.469 46.143 105.469 103.821z" + ], + "defaultCode": 85, + "grid": 16, + "matchesSearch": false + }, + { + "id": 54, + "paths": [ + "M654.5 193.25v176.25h91.875v183.75h-360v-103.125l-285 191.25 285 189.375v-101.25h536.25v-536.25z" + ], + "defaultCode": 51, + "grid": 16, + "matchesSearch": false + }, + { + "id": 55, + "paths": [ + "M406.531 406.531h-316.406l245.544 179.627-88.989 294.983 252.136-176.331 276.856 176.331-113.708-294.983 271.912-179.627h-316.406l-118.653-303.223z" + ], + "defaultCode": 50, + "grid": 16, + "matchesSearch": false + }, + { + "id": 56, + "paths": [ + "M270 112h482v46h-482zM810 466l-254 248v-444h-90v440l-250-244-66 64 362 362 362-362z" + ], + "defaultCode": 53, + "grid": 16, + "matchesSearch": false + }, + { + "id": 57, + "paths": [ + "M272 112h482v46h-482zM216 716l252-248v444h90v-440l252 244 64-64-362-362-362 362z" + ], + "defaultCode": 54, + "grid": 16, + "matchesSearch": false + }, + { + "id": 58, + "paths": [ + "M680.75 390.125c0 3.75 0 7.5 0 11.25s-1.875 7.5-1.875 13.125c0 3.75-1.875 9.375-1.875 13.125-1.875 5.625-3.75 11.25-3.75 16.875-1.875 5.625-3.75 11.25-5.625 16.875s-3.75 11.25-5.625 18.75c-1.875 1.875-3.75 5.625-3.75 7.5-1.875 1.875-1.875 3.75-1.875 5.625-1.875 1.875-1.875 1.875-3.75 3.75-1.875 3.75-1.875 5.625-3.75 9.375s-3.75 5.625-5.625 9.375l-3.75 3.75-1.875 5.625c-1.875 1.875-3.75 5.625-7.5 7.5-3.75 5.625-7.5 13.125-13.125 16.875-5.625 5.625-11.25 11.25-16.875 16.875l-7.5 7.5c-3.75 1.875-5.625 3.75-9.375 7.5-11.25 9.375-24.375 16.875-37.5 24.375s-26.25 13.125-39.375 18.75c-13.125 5.625-26.25 11.25-39.375 15-11.25 3.75-22.5 7.5-33.75 11.25-22.5 5.625-41.25 9.375-54.375 13.125s-20.625 3.75-20.625 3.75c0 0 7.5 0 20.625-3.75 13.125-1.875 31.875-5.625 54.375-11.25 11.25-3.75 22.5-5.625 35.625-9.375s26.25-9.375 39.375-15c13.125-5.625 26.25-11.25 39.375-18.75 13.125-5.625 26.25-15 39.375-24.375 3.75-1.875 5.625-3.75 9.375-5.625l9.375-7.5c5.625-5.625 11.25-11.25 15-16.875 5.625-5.625 11.25-11.25 15-16.875 3.75-3.75 5.625-5.625 7.5-9.375l3.75-3.75c0-1.875 1.875-3.75 1.875-5.625 1.875-1.875 3.75-5.625 7.5-9.375 0-1.875 1.875-5.625 3.75-9.375 1.875 0 1.875-1.875 3.75-3.75 0-1.875 0-3.75 1.875-5.625s1.875-5.625 3.75-9.375c3.75-5.625 5.625-11.25 7.5-16.875 1.875-7.5 3.75-13.125 5.625-18.75s1.875-11.25 3.75-15c1.875-5.625 1.875-11.25 3.75-15 0-5.625 0-9.375 1.875-13.125 0-5.625 0-9.375 0-11.25 1.875-15 1.875-22.5 1.875-22.5h-11.25c0 0 0 7.5-1.875 20.625zM890.75 240.125l-63.75-61.875c-1.875-61.875-41.25-103.125-60-114.375-18.75-16.875-61.875-30-110.625-24.375-46.875 7.5-114.375 31.875-161.25 120-91.875 172.5-288.75 541.875-290.625 545.625-1.875 0-1.875 1.875 0 1.875 0 1.875 1.875 1.875 1.875 1.875l75-13.125-146.25 283.125c0 1.875 0 1.875 1.875 3.75 0 0 0 0 1.875 0 0 0 0 0 0 0l105-18.75c0 0 1.875 0 1.875-1.875l76.875-225c196.875-1.875 333.75-48.75 408.75-144.375 78.75-101.25 67.5-228.75 54.375-288.75l-9.375-58.125h112.5c0 0 1.875 0 1.875-1.875 1.875 0 0-1.875 0-3.75zM787.625 161.375c0 9.375-9.375 18.75-18.75 18.75-11.25 0-18.75-9.375-18.75-18.75 0-11.25 7.5-20.625 18.75-20.625 9.375 0 18.75 9.375 18.75 20.625zM725.75 588.875c-75 93.75-210 140.625-405 140.625-1.875 0-1.875 1.875-1.875 3.75l-78.75 225-95.625 16.875 146.25-283.125c0-1.875 0-1.875 0-3.75-1.875 0-1.875-1.875-3.75-1.875l-75 15c26.25-48.75 204.375-378.75 288.75-538.125 46.875-86.25 110.625-110.625 155.625-116.25 46.875-5.625 86.25 5.625 105 18.75v41.25c-3.75 0-30-9.375-54.375-9.375s-52.5 9.375-69.375 28.125c-30 33.75-37.5 67.5-22.5 123.75 101.25-18.75 146.25 24.375 163.125 50.625 13.125 56.25 28.125 185.625-52.5 288.75zM780.125 240.125l43.125-56.25 56.25 56.25z" + ], + "defaultCode": 48, + "grid": 16, + "matchesSearch": false + }, + { + "id": 59, + "paths": [ + "M506.375 69.5c121.875 0 225 41.25 313.125 125.625 86.25 84.375 131.25 187.5 135 309.375 0 121.875-41.25 226.875-127.5 313.125-84.375 88.125-187.5 133.125-309.375 136.875-121.875 0-226.875-41.25-313.125-127.5-88.125-84.375-133.125-187.5-135-309.375s39.375-226.875 125.625-313.125c86.25-88.125 189.375-133.125 311.25-135zM504.5 780.125c18.75 0 35.625-5.625 46.875-16.875 11.25-13.125 18.75-28.125 18.75-45 0-20.625-3.75-35.625-16.875-48.75-11.25-11.25-28.125-16.875-46.875-16.875 0 0-1.875 0-1.875 0-18.75 0-33.75 5.625-45 16.875-13.125 11.25-18.75 26.25-20.625 45 0 18.75 5.625 33.75 18.75 46.875 11.25 11.25 26.25 18.75 45 18.75 0 0 1.875 0 1.875 0zM663.875 465.125c16.875-20.625 24.375-45 24.375-75 0-48.75-16.875-86.25-50.625-110.625s-76.875-35.625-129.375-35.625c-41.25 0-75 7.5-99.375 24.375-45 26.25-67.5 73.125-69.375 140.625 0 0 0 3.75 0 3.75s105 0 105 0c0 0 0-3.75 0-3.75 0-16.875 5.625-33.75 15-52.5 11.25-15 28.125-22.5 52.5-22.5 26.25 0 43.125 5.625 50.625 18.75 9.375 13.125 15 26.25 15 43.125 0 11.25-5.625 24.375-15 37.5-5.625 7.5-13.125 15-20.625 18.75 0 0-5.625 3.75-5.625 3.75-3.75 3.75-7.5 7.5-15 11.25-5.625 3.75-13.125 9.375-18.75 15-7.5 3.75-13.125 9.375-20.625 15s-13.125 11.25-16.875 16.875c-7.5 13.125-13.125 37.5-16.875 75 0 0 0 7.5 0 7.5s105 0 105 0c0 0 0-3.75 0-3.75 0-7.5 0-16.875 3.75-26.25 3.75-13.125 11.25-24.375 26.25-35.625 0 0 26.25-16.875 26.25-16.875 30-22.5 46.875-37.5 54.375-48.75z" + ], + "defaultCode": 63, + "grid": 16, + "matchesSearch": false + }, + { + "id": 60, + "paths": [ + "M939.148 847.742c7.031 10.547 7.031 21.094 0 31.641-5.273 8.789-14.063 14.063-26.367 14.063 0 0-803.32 0-803.32 0-10.547 0-19.336-5.273-24.609-14.063-7.031-10.547-7.031-21.094-1.758-31.641 0 0 400.781-703.125 400.781-703.125 5.273-10.547 14.063-15.82 28.125-15.82 12.305 0 21.094 5.273 26.367 15.82 0 0 400.781 703.125 400.781 703.125zM561.219 803.797c0 0 0-89.648 0-89.648s-98.438 0-98.438 0c0 0 0 89.648 0 89.648s98.438 0 98.438 0zM561.219 647.352c0 0 0-270.703 0-270.703s-98.438 0-98.438 0c0 0 0 270.703 0 270.703s98.438 0 98.438 0z" + ], + "defaultCode": 33, + "grid": 16, + "matchesSearch": false + }, + { + "id": 61, + "paths": [ + "M512 62c-247.852 0-450 202.148-450 450s202.148 450 450 450c247.852 0 450-202.148 450-450s-202.148-450-450-450zM441.688 719.422l-205.664-207.422 79.102-79.102 126.563 128.32 270.703-270.703 79.102 79.102z" + ], + "defaultCode": 57, + "grid": 16, + "matchesSearch": false + }, + { + "id": 62, + "paths": [ + "M806.983 627.357v192.81h-589.966v-192.81h-112.060v248.841c0 31.311 24.719 57.678 56.031 57.678h702.026c31.311 0 56.031-26.367 56.031-57.678v-248.841zM502.112 607.581l-163.147-194.458c0 0-24.719-24.719 3.296-24.719 26.367 0 90.637 0 90.637 0s0-14.831 0-39.551c0-67.566 0-194.458 0-245.544 0 0-3.296-13.184 18.128-13.184 19.776 0 112.060 0 128.54 0 14.831 0 13.184 11.536 13.184 11.536 0 49.438 0 179.627 0 245.544 0 21.424 0 36.255 0 36.255s52.734 0 85.693 0c31.311 0 8.24 24.719 8.24 24.719s-138.428 182.922-158.203 201.050c-13.184 14.831-26.367-1.648-26.367-1.648z" + ], + "defaultCode": 83, + "grid": 16, + "matchesSearch": false + }, + { + "id": 63, + "paths": [ + "M512 387.893c18.733 0 35.124 2.343 51.516 9.366s30.442 14.050 42.149 25.76c11.708 11.708 21.076 25.76 25.76 39.807 7.026 16.391 11.708 32.782 11.708 49.175 0 16.391-4.682 32.782-11.708 49.175-4.682 14.050-14.050 28.1-25.76 39.807s-25.76 18.733-42.149 25.76c-16.391 7.026-32.782 9.366-51.516 9.366s-35.124-2.343-51.516-9.366c-16.391-7.026-30.442-14.050-42.149-25.76-11.708-11.708-21.076-25.76-25.76-39.807-7.026-16.391-11.708-32.782-11.708-49.175 0-16.391 4.682-32.782 11.708-49.175 4.682-14.050 14.050-28.1 25.76-39.807s25.76-18.733 42.149-25.76c16.391-7.026 32.782-9.366 51.516-9.366zM512 706.357c28.1 0 53.857-4.682 79.616-14.050s46.832-23.417 65.566-42.149c18.733-16.391 32.782-37.466 44.491-60.882 9.366-25.76 14.050-49.175 14.050-77.274s-4.682-51.516-14.050-77.274c-11.708-23.417-25.76-44.491-44.491-60.882-18.733-18.733-39.807-32.782-65.566-42.149-25.76-9.366-51.516-14.050-79.616-14.050s-53.857 4.682-79.616 14.050c-25.76 9.366-46.832 23.417-65.566 42.149-18.733 16.391-32.782 37.466-44.491 60.882-9.366 25.76-14.050 49.175-14.050 77.274s4.682 51.516 14.050 77.274c11.708 23.417 25.76 44.491 44.491 60.882 18.733 18.733 39.807 32.782 65.566 42.149 25.76 9.366 51.516 14.050 79.616 14.050zM512 252.079c42.149 0 81.958 4.682 119.423 14.050s72.592 23.417 105.373 39.807c32.782 14.050 60.882 32.782 86.641 51.516 25.76 21.076 49.175 39.807 67.908 58.54 16.391 18.733 30.442 37.466 39.807 53.858 11.708 18.733 16.391 32.782 16.391 42.149 0 9.366-4.682 23.417-16.391 42.149-9.366 16.391-23.417 35.124-39.807 53.858-18.733 18.733-42.149 37.466-67.908 58.54-25.76 18.733-53.857 37.466-86.641 51.516-32.782 16.391-67.908 30.442-105.373 39.807s-77.274 14.050-119.423 14.050c-42.149 0-81.958-4.682-119.423-14.050-39.807-9.366-72.592-23.417-105.373-39.807-32.782-14.050-60.882-32.782-86.641-51.516-25.76-21.076-49.175-39.807-67.908-58.54-16.391-18.733-30.443-37.466-39.807-53.858-11.708-18.733-16.391-32.782-16.391-42.149 0-9.366 4.682-23.417 16.391-42.149 9.366-16.391 23.417-35.124 39.807-53.858 18.733-18.733 42.149-37.466 67.908-58.54 25.76-18.733 53.858-37.466 86.641-51.516 32.782-16.391 65.566-30.442 105.373-39.807 37.466-9.366 77.274-14.050 119.423-14.050z" + ], + "defaultCode": 52, + "grid": 16, + "matchesSearch": false + }, + { + "id": 64, + "paths": [ + "M775.672 933.875h-527.344c-87.341 0-158.203-70.862-158.203-158.203v-527.344c0-69.214 44.495-126.892 105.469-148.315v69.214c0 44.495 36.255 79.102 79.102 79.102s79.102-34.607 79.102-79.102v-79.102h316.406v79.102c0 44.495 36.255 79.102 79.102 79.102s79.102-34.607 79.102-79.102v-69.214c60.974 21.424 105.469 79.102 105.469 148.315v527.344c0 87.341-70.862 158.203-158.203 158.203zM828.406 353.797h-632.813v421.875c0 29.663 23.071 52.734 52.734 52.734h527.344c29.663 0 52.734-23.071 52.734-52.734zM617.469 617.469h105.469v105.469h-105.469zM617.469 459.266h105.469v105.469h-105.469zM459.266 617.469h105.469v105.469h-105.469zM459.266 459.266h105.469v105.469h-105.469zM301.063 617.469h105.469v105.469h-105.469zM301.063 459.266h105.469v105.469h-105.469zM749.305 195.594c-14.831 0-26.367-11.536-26.367-26.367v-79.102h52.734v79.102c0 14.831-11.536 26.367-26.367 26.367zM274.695 195.594c-14.831 0-26.367-11.536-26.367-26.367v-79.102h52.734v79.102c0 14.831-11.536 26.367-26.367 26.367z" + ], + "defaultCode": 55, + "grid": 16, + "matchesSearch": false + } + ] } ], - "height": 1024, - "metadata": { - "name": "wagtail" - }, "preferences": { "showGlyphs": true, "showQuickUse": true, @@ -1268,18 +8557,14 @@ "baseline": 6.25, "whitespace": 50 }, - "resetPoint": 58880 - }, - "imagePref": { - "color": 0, - "height": 32, - "columns": 16, - "margin": 16 + "showMetrics": false, + "showMetadata": false, + "showVersion": false }, + "imagePref": {}, "historySize": 100, "showCodes": true, - "search": "", - "gridSize": 16, - "showGrid": true - } + "search": "" + }, + "externalSets": [] } \ No newline at end of file diff --git a/wagtail/wagtailadmin/static/wagtailadmin/scss/fonts/wagtail.eot b/wagtail/wagtailadmin/static/wagtailadmin/scss/fonts/wagtail.eot index 343d7c831ef39f15f44a94e09b379e52092ed427..2f3f24e18d8354154d7c6daca60f8cae33a6b4d7 100755 GIT binary patch delta 2607 zcmZ8jUx-vy7(eISe=~PyXLi@QchuZA?ELZ{@H`=qld+V>I%-6a2`F>KDcV%J*5|~LhwBt?mfJCWJ$nXh=qFh z5&6W{o!AawQYOVZF(&R5yTq~HpS>Qf#3&?nu}!qKME1V!UG06=yVCmz9`f88^?H9t z!^!jVyjZE0)W<@kjkJ}vlDOhme6Q@-jvZ9PT3BnQeiD1W=cm4-l}aUeirbyzXm9)4|tC>Wv zttKO34I9~Pf^iD;CL@q>-Lt)F&_FiK2Wwb!Kok=hg;_?>bl?yp-9{2eanx!uCqG5N zw9%|Jkt=9|S5i*n6eJ*zn+^DERe%6+jEQmq1D;_uYK1tZK;W|pO3kdCX)AzX*a~Yw ztHK@G*g@QB!Y-mut5U@ds%_Fn9%ZKyR-I~u%4b=DP9sE+pw0}UT3|Dt%HSRTF9!E*2yFAxn?bpAlooTP#{)xU{U}v z9TIXR!AQK$$k!?9NDkrsfEloR(nf^>+re$>R8dPHI=MpgKPYs79t@*s`-u8850IN36l#KR*a!*MdTC5cCd z?^Y6{qYNbrmXs!*QYtM}hH2)NGz^KOg3L6a(~ELUx^Ykktzqzkk+~{mn$k1@3o$mP z>I1sA)1fKCH&=CCQi zU&e|YRfY;Y#I{Uj>dZRK&bAzVAiin#xfa2hE^VmMg~*@?dTS_YS=4DOP<3)zt82g_ zXbRez2`U3&T*uXb+*?@x*c>xwlIxN1;&5_1J+f7mNJkfg}DFhi^mIw7$%HFu5bl32HJut1D_mZW#eBz zE2D2*n~)_x%i~t@__YSyvYv!!qjHXsw;T(7iSLI{=RPdG|3F9aWi3zRCEOI#%dg<< zS9tkVjNe%Orupa0-}CGhJudk}$rl}8+k9#BN4F`E6K*+|bKPQbNV)k!VTB%rLf%zF z#ggkfIdp-sQ%bKK+^Blq?scP^Cr2?RH;=B{Q7RP&2TH|azniyh+i`MO?VRIa&Aa`@ zVrgKoSSnS^7}ee_H$ZgDdtO_!`07^+kCmo=6MZ^8arwu2{A(oiv-{&9!F9^G_fe8+^EcxB@E z&2LZ6PJVm)fx3uJN8iNv$7fh_e5Tc9;gXji&F%+#XJw;1G4l}C<1=%8(_&E^5=;13 QYJc~;nNUu4`)7l{0fG4coXOpg^D+YM~uE;W(T(H%+tD z2Y%$D$Q^*R#S!zf`O$o9zBXT(&x|taUap~c)a96W^+MaRs zG={-PG$Lx8J0JuEw?Pew1nA)A1oiUzK!f_mBj3b25oeRN^ z(Ne~X0?NU;T#&o8Q95hxlU51{0%&?)+ zc$cj&h<#Gnmb0zM*X`?SPCKe6${sod$D)%udtH9lUr*dK;VG80^0^A7VzJ_1Ww&q1 z-|fFw?W>-uE(WgE$Tfdzzt-&whJ*J*snD(Z!}Z^HC&Lh4XoxhdG#=XXKGGQZ(Uii! q4d5Vs4*2t;Z7qm + @@ -70,6 +71,6 @@ - + \ No newline at end of file diff --git a/wagtail/wagtailadmin/static/wagtailadmin/scss/fonts/wagtail.ttf b/wagtail/wagtailadmin/static/wagtailadmin/scss/fonts/wagtail.ttf index ee751e5a601509283d42f5ed3356375793bb1e2b..16794d3699c9b38d9c419323ae725afba386c8bb 100755 GIT binary patch delta 2603 zcmZ8jTZkJ~7(VCBEt$*zMSLhyyfom0Nb$)cChnAIVKsn@A}KbCQSq?Y zFHZIT?Dc3Q%8=B>F45K!+55J4r}stgR_{}I$crcCd;J}aCa=gVVzpXUp9zsPl2+1+ zqmp0py`p0~cC`}Jf?6~2 z-Lt()wSjDy59XlefG93x6r>qJ(}6>TbQ^ILMq#VTocsg>-Oj=bK2Cbl0ZI!qp8@n2Hny?G$(<)W4 zf@+tvkw?*K1Qn+eqVj20pwkEtq*`YNVXbP1bzoGgc2%P`YeAeEV|Hv0$Kd(toemxf z#^dl%oB|{8a%vq+B-27xt)xyKRiAU(0x_};A_N6uNe3nc5Yr(cM-q(0;|zVBl8)pM z-mfwPc2CkMQD8ebO`R%g2}H;DI{GB4$ii7w^l(r-8YZMKtef21V-mR{<6>G55Y~Ym z90Aqv#%ZG}yu&qQw;_3u#(9^-@JJNzn2e+0k&)pjp4<^fBg2m6fnt+8E3sdz0U0drQgjHr%%i!OU z3`3b@j1<(gh^3Te5jhP*C5EzXWg@I2jTIu`$6!FG0XTEm6yTGxB1e^?0uQk*Q<*xm z4zsf@M{kI4ntiTCaHdNeYIGq|D1ts1N?I0m+6q*ijMnNJun3xhwq}CLKp59?H6S@d z({XhSvPM~0HN=K778;l(H0%tE${?7KrC!0A04fU;*y|`z^yg`$q>H>z1{+39URiSM znrl0@Fn#St5O|~hxN|9`&BCr+R1+utK+E)%l|k(g?5qDZlWwp!SkuYKpn!}C(v}Gd zhGR>aqmGwlvC7&2@gcQys0+^-2J9m&(Scl{0sg}Qu9U!+rliLH$e3B}%ZYNpv!2`_ z4zs|(2659ev5PFj0tXBIPdhyrS1FKB2T*cY5fA0NPYelw)QVVFUI$8{VM{yh4>v2V z2g75{_C(w2#?uz$)&XETaKFFg3aWpLSse{Sc$_Hr=`al4yzCid3rF1!IwD(`#-;*e zz<~klDnUyb$dW>wfBM7Y0YeNEMj}_Z0vZEt!IXhd4zjf6uV0kWH>OR7q%vrZTpDzpy<_m>N5u?(3;0B29 z(!qDvFTV55(SwD_-$b8IPu%=z9{-GlzIV4zCvvL0H2s(q-AmIqOxYEpd%C^30 z(08}L(!Y?OD!epU8FGhyF3uJ|^ya;5ey;T8>Pu^WTsyw@?79!uPY+)onIE~l!7Lvg zHAnZ4-rh91>1=Ix?W5rR&F44&y5;WHXSUuO+dHnt-yZ*c+trD~6W>3yP#593@Vn^o z=sZh~@07YJT=Ej6*-g{KZ_yha-T(jq delta 850 zcmX|9O-vI}5T5t;?N7J6TiWyop&?6www792C?yzDwF$u(Vu*Sm9+Zl-r50%d2mDDI zBQeIHLD!2Xi3dXr8loJ$dC{Q8D4NED9*mk84#s#fdJxyyLYSSmGv7Be-_B-ttxD!r z$-G{Hk7N~q_yM4l&rX#w)*-%(QOcLjG86Z20^|^`cOc{pgYk(8@4A4(!Cw7d*wZ#`m zpa|(LPfkq(hb0&-U4MM8e;6|t?!y5E0?p70y|4$4!dY{}G_5w!k&7d@53)6mm|xA$ z=6mz4xn{n^IRfygOzx|Xu6myytPqHTmsH6;SO92i;yiIbO~fNxr;jF*Y1)(K(7Tf{ z8j5kDU@}HR$zUMZQX^=xyN{;2)3mcIo=kNnuw!$itFwvvEJ2MXF!+f^M2+(Vgn;1D zs2g+iipO2+@{t)|z^7z}GUy7Xc9&*njAxW^97h@B2qAR)La=Sr%6L)WRhLIqJuZ#s zB}OP3S1WA~S;$gC!^ktHXwHiLyyVan!QphE3yS8Dm?Vje$+99+ffqPVlw_W4NufY( zmS==n6vZRRvW*uMRTTxBi0w8(R8>V#9SY%ap7FJp*j%MHFW4mPLv1Q5vMe(uN)iJw z^xTqvg?_Idcl7-NJFR`pH_sPtS&0>m^;{3>H}w2~aVr0eVMEkN7Qz*ASc=$+wiWrB z{heCW4mnbF51fK?*+pGP+`9X(H|d@BR_j^)VuRAK-0-h)(Em^$)bBL=n`fJ=fh#R? z%b(V7ZM%b!;N4IrbR&Eq{9|W20+FTmSo=zJ|E>?QXzXW4#`<%hpS}Y8d(k!*#JxWi YMo8G$JAN4NH^*~iz~GA^BUTLj2TN(1yZ`_I diff --git a/wagtail/wagtailadmin/static/wagtailadmin/scss/fonts/wagtail.woff b/wagtail/wagtailadmin/static/wagtailadmin/scss/fonts/wagtail.woff index 08166f5b26f7bc7634e6ca8a706b9b8af65dc501..3024e4313c6627597e23cf07b6f2790fb0556ea4 100755 GIT binary patch delta 3012 zcmXw5Ym8OZ72aniSB{tn)Q;E)3KgMA5k^E99u`3uTYm@%q)Gdub|MS|VVoh%OAXw) z>m+WVY)@0mL@F-5@0$fS@=!Nl}WQ~xwgYtopAkJuW~q-mo5Fvie0w&VA$b7$|n z&)JW)*ZS7C*52oSF!a07yL)(lXXpMyhxQw@cZFGOP@Z_#c-ih9ch}Z0F76sMX4l~P zQ%5HEAKbXfn8!~*;J0l4j~BH++uPNTxwkPs%;pumJx9AvVQzOj#(uLc?K#qg_1zs9 zZ_)PcvZs15i8;ucHEgY)wmjU^J1~N|abvuD*vgN*zO=QsYXm}ju0ZHEZJh_qb6veh zF!u(8_OU&&N^j>oPOKQK>bo!-yAe`bmIGp{}S zoA+w#UelTNwLExy>BzE`%l>=U(|1k&Fl?J!{`oyOe)PwCe|hipihV1lS1!8mU-!Sc z>g(0JSHJbZoe%u!!2@g8tSznm_$S%=J?nq}(BlvNWy87+A8zbvj~|}i)Us*rk@Du9 zo6kKuyk+B->ejK2eH|Zd>)*b5$DeoJzw`f(J#+oLmiHGGFFzY z%{H#db(t+)9lkO$-T%t*^T!(9@~j*#bq^mKIo{uYeAquW(p|!gbT^J+y?+{#S4*>U z&42rgHXEag6^SLXF`luA6KfsDaU@a=vq};=u3=n^VjrRwLkOV9T_J~-TcbD>)<6R6 zjeRSHII@8aT;QU_hOrB3FXa}YL>!dpXyFN2pXz8F7D9)<00d3xvnaHc#Ev4UMC>ng z)QvQ%RkE-O84;+U4ZJNJgp-6R;`4=_c>zx7%q#VxQY(;Q&V_JFd{x7xBIRNWA8nBH zrDOHOPoo03W1r6`0Y>f7FgXh@u|9pz?Q>c=ATWhSO#sZufoD|ML4Z*(hu~rg9qhND zKoTiBbOa3(3P@e@sZ?X3(GQsh`Thtx^hae8@*-3tzIu>GX`DhSb>gii7~BNlSZIN! zfd-h=nWAFTDURu|Hf)pBreFiT2=E-eP#5X4tt4?Z(cnmu^U7sHre1Xr$*NY7>k_$_ zT)^ys2-eYZ0xj|nu?0m=s*)7oP16RzqB@e3hne1}zBIAvf=haKh#0Kob|J)MQ6pp( z1!*sioB#lV=PVM2Vw{2h#L~p0;tPhvuOG|upZ-J`pDzB z5^AszD~3xoKr_K;<0eOiRa-~?)hsd=J2>lLMG+}Niu<-+2xAz8dRR)BMNkS})M?xy zumvE5gBi*pR0IV*&CG`$^r@FDEIj~37upIc;+yY>4%m-uQO|?kIAAM39N3JU)zd=)!w7{aa9#2W zp_90A2u%?ZPqPDDaa>S2Fc2YZI1vdhLA`cxSteyyaTO^uLDUNGA813)G%KUU{E_Cpyijac9F1PNhOpVl_W=`NkhUg z_}J=-u*frREyzDBNZ$gbLtN4f1{y8Utvt(_iKq;M*s*Xd7_0D{vr+=&F@I|=1$@w2 z&|4WU;u99*69!BS1p}r^V4u1;(3=cQ^}RSa^g_RX>*=}I+7v-_t$y{~^ksmA{{#hX z%mY{>=L!fm2?;dA#b)Dzx~%%KO^L_HCq{;HL`I4WotzvA065GyP&3`9MQ$RYEM$=Q zp`AAr*<%7gNCN{!bQ6h4{hVe``|RpgZqB{g2<9ji*ouz_zkz3Qe}t7v7~s+mn54Rk z$pfdazq5Ger^Pu>ZnQ~58n$7_?Sw;38mQxGqdHz4uhr}IS}m(KQdBpIbi_wI@N1QN zkX5ouqcRmt1(VT~pt{L)3cE7YdRjwEk<^ni5se3a1LF0wwQ{Xo9jlF{rDQBAxsn_G zjT?2NGG8OWE=|nH zj9ePMICNof;-vIS@94>)p~1nEqv*=XiJ^;w7e+71OtyDxZ;LV6?AGDO4&YDYQq)$w zJ+m5rPq&$0n-}K)H$RUVV^(3N-Rv@5I^)fMHh**ez4>?M|BfAAcA{g|it*^Ho6juS z`Hi^)I#K@dWzSO!@9c8NR`RG=1hdGXSecvn4y$-L`>>TJisUd3IpOqVEBu;HRko delta 790 zcmXw%OH30{6o$`G1EnAoT3#Xu%0nnf6)X@GtQF9(C&069Pf|mZ{w6XD)~bM(&D#cq$gn@82@-7uDGkQLiaOJ7L?0>msY9XQL9LpUQ$|bMjz$bL{!J zxcHj*2MMW1S`w3wE+<)%Hj_(_{XFq7Ei7#&JtKW6qd3E#`8_K*>qd56_BX|(;vnZk zt~2+?sja*@Wr=eAv^hT|-&9alu(a=v_M$%}e`OC+nac ztb?)Bgtarnw38WOUBpeC#AzRPIPG=^5fkEY5JHbLW9)rqVsz3sH8wHpu392XWOl&U z3v<%V~Vj*24eV%@= zdAfhz%pH^&Ipc*6jSl~RG)O@NK|nz&PP!P%;2L!E2Rx6@08)@Ck*Pr+U=;tA-{jx( z8~i%|2KNakQKq1PLVqOoz_9}8Ru-$TN1po)VL^c=Z~ZeqArV%tUR_9)b8dAd_gVci p0u4E+#{kuUBVW0Al{(3VYickyXl_xJ+=eFe5N;LWdlE&M`~fd94zK_K From 0f87becf13320f65346d9984d4be733be7d74833 Mon Sep 17 00:00:00 2001 From: Dave Cranwell Date: Thu, 17 Jul 2014 13:01:50 +0100 Subject: [PATCH 39/63] slight glyph metric improvement for users + sites --- .../scss/fonts/wagtail-icomoon.json | 395 +++++++++--------- .../wagtailadmin/scss/fonts/wagtail.eot | Bin 27380 -> 27384 bytes .../wagtailadmin/scss/fonts/wagtail.svg | 4 +- .../wagtailadmin/scss/fonts/wagtail.ttf | Bin 27216 -> 27220 bytes .../wagtailadmin/scss/fonts/wagtail.woff | Bin 17436 -> 17432 bytes 5 files changed, 201 insertions(+), 198 deletions(-) diff --git a/wagtail/wagtailadmin/static/wagtailadmin/scss/fonts/wagtail-icomoon.json b/wagtail/wagtailadmin/static/wagtailadmin/scss/fonts/wagtail-icomoon.json index 3fba64407..bee25a925 100644 --- a/wagtail/wagtailadmin/static/wagtailadmin/scss/fonts/wagtail-icomoon.json +++ b/wagtail/wagtailadmin/static/wagtailadmin/scss/fonts/wagtail-icomoon.json @@ -1,7 +1,7 @@ { "metadata": { "name": "Wagtail", - "lastOpened": 1405597428370, + "lastOpened": 1405598127608, "created": 1405597423787 }, "iconSets": [ @@ -38,7 +38,7 @@ { "id": 7, "order": 4, - "prevSize": 28, + "prevSize": 16, "code": 121, "name": "user", "tempChar": "", @@ -662,8 +662,8 @@ }, { "id": 162, - "order": 5, - "prevSize": 28, + "order": 7, + "prevSize": 16, "code": 64, "name": "globe", "tempChar": "", @@ -1784,7 +1784,7 @@ "licenseURL": "http://creativecommons.org/licenses/by/3.0/" }, "height": 1024, - "prevSize": 28, + "prevSize": 32, "icons": [ { "id": 0, @@ -1876,14 +1876,14 @@ { "id": 7, "paths": [ - "M0 802.857q0-30.286 2-59.143t8-62.286 15.143-62 24.571-55.714 35.429-46.286 48.857-30.571 63.714-11.429q5.143 0 24 12.286t42.571 27.429 61.714 27.429 76.286 12.286 76.286-12.286 61.714-27.429 42.571-27.429 24-12.286q34.857 0 63.714 11.429t48.857 30.571 35.429 46.286 24.571 55.714 15.143 62 8 62.286 2 59.143q0 68.571-41.714 108.286t-110.857 39.714h-499.429q-69.143 0-110.857-39.714t-41.714-108.286zM182.857 292.571q0-90.857 64.286-155.143t155.143-64.286 155.143 64.286 64.286 155.143-64.286 155.143-155.143 64.286-155.143-64.286-64.286-155.143z" + "M115.076 784.678q0-28.393 1.875-55.447t7.5-58.393 14.197-58.125 23.035-52.231 33.215-43.393 45.803-28.66 59.732-10.715q4.822 0 22.5 11.518t39.909 25.715 57.857 25.715 71.519 11.518 71.517-11.518 57.857-25.715 39.909-25.715 22.5-11.518q32.678 0 59.732 10.715t45.803 28.66 33.215 43.393 23.035 52.231 14.197 58.125 7.5 58.393 1.875 55.447q0 64.285-39.107 101.518t-103.929 37.232h-468.214q-64.822 0-103.929-37.232t-39.107-101.518zM286.506 306.285q0-85.178 60.268-145.447t145.447-60.268 145.447 60.268 60.268 145.447-60.268 145.447-145.447 60.268-145.447-60.268-60.268-145.447z" ], - "width": 805, + "width": 1029, "tags": [ "user" ], "defaultCode": 61447, - "grid": 14, + "grid": 16, "matchesSearch": true }, { @@ -3811,14 +3811,15 @@ { "id": 162, "paths": [ - "M0 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286zM129.143 318.286q4 4 6.857 4.571 2.286 0.571 2.857 5.143t1.429 6.286 6.571-1.714q5.143 4.571 1.714 10.857 0.571-0.571 25.143 15.429 10.857 9.714 12 12 1.714 6.286-5.714 10.286-0.571-1.143-5.143-5.143t-5.143-2.286q-1.714 2.857 0.286 10.571t6 7.143q-4 0-5.429 9.143t-1.429 20.286-0.571 13.429l1.143 0.571q-1.714 6.857 3.143 19.714t12.286 11.143q-7.429 1.714 11.429 24.571 3.429 4.571 4.571 5.143 1.714 1.143 6.857 4.286t8.571 5.714 5.714 6q2.286 2.857 5.714 12.857t8 13.429q-1.143 3.429 5.429 11.429t6 13.143q-0.571 0-1.429 0.571t-1.429 0.571q1.714 4 8.857 8t8.857 7.429q0.571 1.714 1.143 5.714t1.714 6.286 4.571 1.143q1.143-11.429-13.714-35.429-8.571-14.286-9.714-16.571-1.714-2.857-3.143-8.857t-2.571-8.286q1.143 0 3.429 0.857t4.857 2 4.286 2.286 1.143 1.714q-1.714 4 1.143 10t6.857 10.571 9.714 10.857 6.857 7.429q3.429 3.429 8 11.143t0 7.714q5.143 0 11.429 5.714t9.714 11.429q2.857 4.571 4.571 14.857t2.857 13.714q1.143 4 4.857 7.714t7.143 5.429l9.143 4.571t7.429 4q2.857 1.143 10.571 6t12.286 6.571q5.714 2.286 9.143 2.286t8.286-1.429 7.714-2q8.571-1.143 16.571 8.571t12 12q20.571 10.857 31.429 6.286-1.143 0.571 0.286 4.286t4.571 8.857 5.143 8.286 3.143 4.857q2.857 3.429 10.286 8.571t10.286 8.571q3.429-2.286 4-5.143-1.714 4.571 4 11.429t10.286 5.714q8-1.714 8-18.286-17.714 8.571-28-10.286 0-0.571-1.429-3.143t-2.286-4.857-1.429-4.857 0-4.286 2.857-1.714q5.143 0 5.714-2t-1.143-7.143-2.286-7.429q-0.571-4.571-6.286-11.429t-6.857-8.571q-2.857 5.143-9.143 4.571t-9.143-5.143q0 0.571-0.857 3.143t-0.857 3.714q-7.429 0-8.571-0.571 0.571-1.714 1.429-10t2-12.857q0.571-2.286 3.143-6.857t4.286-8.286 2.286-7.143-2.571-5.429-10-1.429q-10.857 0.571-14.857 11.429-0.571 1.714-1.714 6t-2.857 6.571-5.143 4q-4 1.714-13.714 1.143t-13.714-2.857q-7.429-4.571-12.857-16.571t-5.429-21.143q0-5.714 1.429-15.143t1.714-14.286-3.143-14q1.714-1.143 5.143-5.429t5.714-6q1.143-0.571 2.571-0.857t2.571 0 2.286-0.857 1.714-3.429q-0.571-0.571-2.286-1.714-1.714-1.714-2.286-1.714 4 1.714 16.286-0.857t15.714 0.857q8.571 6.286 12.571-1.143 0-0.571-1.429-5.429t-0.286-7.714q2.857 15.429 16.571 5.143 1.714 1.714 8.857 2.857t10 2.857q1.714 1.143 4 3.143t3.143 2.571 2.857-0.286 4.857-3.714q5.714 8 6.857 13.714 6.286 22.857 10.857 25.143 4 1.714 6.286 1.143t2.571-5.429 0-8-0.857-7.143l-0.571-4.571v-10.286l-0.571-4.571q-8.571-1.714-10.571-6.857t0.857-10.571 8.571-10.571q0.571-0.571 4.571-2t8.857-3.714 7.143-4.571q12-10.857 8.571-20 4 0 6.286-5.143-0.571 0-2.857-1.714t-4.286-2.857-2.571-1.143q5.143-2.857 1.143-9.143 2.857-1.714 4.286-6.286t4.286-5.714q5.143 6.857 12 1.143 4-4.571 0.571-9.143 2.857-4 11.714-6t10.571-5.429q4 1.143 4.571-1.143t0.571-6.857 1.714-6.857q2.286-2.857 8.571-5.143t7.429-2.857l9.714-6.286q1.714-2.286 0-2.286 10.286 1.143 17.714-6.286 5.714-6.286-3.429-11.429 1.714-3.429-1.714-5.429t-8.571-3.143q1.714-0.571 6.571-0.286t6-0.857q8.571-5.714-4-9.143-9.714-2.857-24.571 6.857-1.143 0.571-5.429 5.429t-7.714 5.429q1.143 0 2.571-2.857t2.857-6.286 2-4q3.429-4 12.571-8.571 8-3.429 29.714-6.857 19.429-4.571 29.143 6.286-1.143-1.143 5.429-7.429t8.286-6.857q1.714-1.143 8.571-2.571t8.571-4.286l1.143-12.571q-6.857 0.571-10-4t-3.714-12q0 1.143-3.429 4.571 0-4-2.571-4.571t-6.571 0.571-5.143 0.571q-5.714-1.714-8.571-4.286t-4.571-9.429-2.286-8.571q-1.143-2.857-5.429-6t-5.429-6q-0.571-1.143-1.429-3.143t-1.714-3.714-2.286-3.143-3.143-1.429-4 2.857-4.286 5.714-2.571 2.857q-1.714-1.143-3.429-0.857t-2.571 0.571-2.571 1.714-2.857 2q-1.714 1.143-4.857 1.714t-4.857 1.143q8.571-2.857-0.571-6.286-5.714-2.286-9.143-1.714 5.143-2.286 4.286-6.857t-4.857-8h2.857q-0.571-2.286-4.857-4.857t-10-4.857-7.429-3.429q-4.571-2.857-19.429-5.429t-18.857-0.286q-2.857 3.429-2.571 6t2.286 8 2 7.143q0.571 3.429-3.143 7.429t-3.714 6.857q0 4 8 8.857t5.714 12.286q-1.714 4.571-9.143 9.143t-9.143 6.857q-2.857 4.571-0.857 10.571t6 9.429q1.143 1.143 0.857 2.286t-2 2.571-3.143 2.286-3.714 2l-1.714 1.143q-6.286 2.857-11.714-3.429t-7.714-14.857q-4-14.286-9.143-17.143-13.143-4.571-16.571 0.571-2.857-7.429-23.429-14.857-14.286-5.143-33.143-2.286 3.429-0.571 0-8.571-4-8.571-10.857-6.857 1.714-3.429 2.286-10t0.571-7.714q1.714-7.429 6.857-13.143 0.571-0.571 4-4.857t5.429-7.714 0.286-3.429q20 2.286 28.571-6.286 2.857-2.857 6.571-9.714t6-9.714q5.143-3.429 8-3.143t8.286 3.143 8.286 2.857q8 0.571 8.857-6.286t-4.286-11.429q6.857 0.571 1.714-9.714-2.857-4-4.571-5.143-6.857-2.286-15.429 2.857-4.571 2.286 1.143 4.571-0.571-0.571-5.429 6t-9.429 10-9.143-2.857q-0.571-0.571-3.143-7.714t-5.429-7.714q-4.571 0-9.143 8.571 1.714-4.571-6.286-8.571t-13.714-4.571q10.857-6.857-4.571-15.429-4-2.286-11.714-2.857t-11.143 2.286q-2.857 4-3.143 6.571t2.857 4.571 6 3.143 6.571 2.286 4.857 1.714q8 5.714 4.571 8-1.143 0.571-4.857 2t-6.571 2.571-3.429 2.286q-1.714 2.286 0 8t-1.143 8q-2.857-2.857-5.143-10t-4-9.429q4 5.143-14.286 3.429l-5.714-0.571q-2.286 0-9.143 1.143t-11.714 0.571-7.714-4.571q-2.286-4.571 0-11.429 0.571-2.286 2.286-1.143-2.286-1.714-6.286-5.429t-5.714-4.857q-26.286 8.571-53.714 23.429 3.429 0.571 6.857-0.571 2.857-1.143 7.429-3.714t5.714-3.143q19.429-8 24-4l2.857-2.857q8 9.143 11.429 14.286-4-2.286-17.143-0.571-11.429 3.429-12.571 6.857 4 6.857 2.857 10.286-2.286-1.714-6.571-5.714t-8.286-6.286-8.571-2.857q-9.143 0-12.571 0.571-83.429 45.714-134.286 126.857zM501.143 862.857q0 3.429 1.143 9.143 117.714-20.571 200.571-108-1.714-1.714-7.143-2.571t-7.143-2q-10.286-4-13.714-4.571 0.571-4-1.429-7.429t-4.571-5.143-7.143-4.571-6.286-4q-1.143-1.143-4-3.429t-4-3.143-4.286-2.571-4.857-1.143-5.714 0.571l-1.714 0.571q-1.714 0.571-3.143 1.429t-3.143 1.714-2.286 1.714 0 1.429q-12-9.714-20.571-12.571-2.857-0.571-6.286-3.143t-6-4-5.714-0.857-6.571 4q-2.857 2.857-3.429 8.571t-1.143 7.429q-4-2.857 0-10t1.143-10.571q-1.714-3.429-6-2.571t-6.857 2.571-6.571 4.857-5.143 3.714-4.857 3.143-4.857 4.286q-1.714 2.286-3.429 6.857t-2.857 6.286q-1.143-2.286-6.571-3.714t-5.429-3.143q1.143 5.714 2.286 20t2.857 21.714q4 17.714-6.857 27.429-15.429 14.286-16.571 22.857-2.286 12.571 6.857 14.857 0 4-4.571 11.714t-4 12.286z" + "M64 512q0-119.429 58.857-220.286t159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286zM193.143 318.286q4 4 6.857 4.571 2.286 0.571 2.857 5.143t1.429 6.286 6.571-1.714q5.143 4.571 1.714 10.857 0.571-0.571 25.143 15.429 10.857 9.714 12 12 1.714 6.286-5.714 10.286-0.571-1.143-5.143-5.143t-5.143-2.286q-1.714 2.857 0.286 10.571t6 7.143q-4 0-5.429 9.143t-1.429 20.286-0.571 13.429l1.143 0.571q-1.714 6.857 3.143 19.714t12.286 11.143q-7.429 1.714 11.429 24.571 3.429 4.571 4.571 5.143 1.714 1.143 6.857 4.286t8.571 5.714 5.714 6q2.286 2.857 5.714 12.857t8 13.429q-1.143 3.429 5.429 11.429t6 13.143q-0.571 0-1.429 0.571t-1.429 0.571q1.714 4 8.857 8t8.857 7.429q0.571 1.714 1.143 5.714t1.714 6.286 4.571 1.143q1.143-11.429-13.714-35.429-8.571-14.286-9.714-16.571-1.714-2.857-3.143-8.857t-2.571-8.286q1.143 0 3.429 0.857t4.857 2 4.286 2.286 1.143 1.714q-1.714 4 1.143 10t6.857 10.571 9.714 10.857 6.857 7.429q3.429 3.429 8 11.143t0 7.714q5.143 0 11.429 5.714t9.714 11.429q2.857 4.571 4.571 14.857t2.857 13.714q1.143 4 4.857 7.714t7.143 5.429l9.143 4.571t7.429 4q2.857 1.143 10.571 6t12.286 6.571q5.714 2.286 9.143 2.286t8.286-1.429 7.714-2q8.571-1.143 16.571 8.571t12 12q20.571 10.857 31.429 6.286-1.143 0.571 0.286 4.286t4.571 8.857 5.143 8.286 3.143 4.857q2.857 3.429 10.286 8.571t10.286 8.571q3.429-2.286 4-5.143-1.714 4.571 4 11.429t10.286 5.714q8-1.714 8-18.286-17.714 8.571-28-10.286 0-0.571-1.429-3.143t-2.286-4.857-1.429-4.857 0-4.286 2.857-1.714q5.143 0 5.714-2t-1.143-7.143-2.286-7.429q-0.571-4.571-6.286-11.429t-6.857-8.571q-2.857 5.143-9.143 4.571t-9.143-5.143q0 0.571-0.857 3.143t-0.857 3.714q-7.429 0-8.571-0.571 0.571-1.714 1.429-10t2-12.857q0.571-2.286 3.143-6.857t4.286-8.286 2.286-7.143-2.571-5.429-10-1.429q-10.857 0.571-14.857 11.429-0.571 1.714-1.714 6t-2.857 6.571-5.143 4q-4 1.714-13.714 1.143t-13.714-2.857q-7.429-4.571-12.857-16.571t-5.429-21.143q0-5.714 1.429-15.143t1.714-14.286-3.143-14q1.714-1.143 5.143-5.429t5.714-6q1.143-0.571 2.571-0.857t2.571 0 2.286-0.857 1.714-3.429q-0.571-0.571-2.286-1.714-1.714-1.714-2.286-1.714 4 1.714 16.286-0.857t15.714 0.857q8.571 6.286 12.571-1.143 0-0.571-1.429-5.429t-0.286-7.714q2.857 15.429 16.571 5.143 1.714 1.714 8.857 2.857t10 2.857q1.714 1.143 4 3.143t3.143 2.571 2.857-0.286 4.857-3.714q5.714 8 6.857 13.714 6.286 22.857 10.857 25.143 4 1.714 6.286 1.143t2.571-5.429 0-8-0.857-7.143l-0.571-4.571v-10.286l-0.571-4.571q-8.571-1.714-10.571-6.857t0.857-10.571 8.571-10.571q0.571-0.571 4.571-2t8.857-3.714 7.143-4.571q12-10.857 8.571-20 4 0 6.286-5.143-0.571 0-2.857-1.714t-4.286-2.857-2.571-1.143q5.143-2.857 1.143-9.143 2.857-1.714 4.286-6.286t4.286-5.714q5.143 6.857 12 1.143 4-4.571 0.571-9.143 2.857-4 11.714-6t10.571-5.429q4 1.143 4.571-1.143t0.571-6.857 1.714-6.857q2.286-2.857 8.571-5.143t7.429-2.857l9.714-6.286q1.714-2.286 0-2.286 10.286 1.143 17.714-6.286 5.714-6.286-3.429-11.429 1.714-3.429-1.714-5.429t-8.571-3.143q1.714-0.571 6.571-0.286t6-0.857q8.571-5.714-4-9.143-9.714-2.857-24.571 6.857-1.143 0.571-5.429 5.429t-7.714 5.429q1.143 0 2.571-2.857t2.857-6.286 2-4q3.429-4 12.571-8.571 8-3.429 29.714-6.857 19.429-4.571 29.143 6.286-1.143-1.143 5.429-7.429t8.286-6.857q1.714-1.143 8.571-2.571t8.571-4.286l1.143-12.571q-6.857 0.571-10-4t-3.714-12q0 1.143-3.429 4.571 0-4-2.571-4.571t-6.571 0.571-5.143 0.571q-5.714-1.714-8.571-4.286t-4.571-9.429-2.286-8.571q-1.143-2.857-5.429-6t-5.429-6q-0.571-1.143-1.429-3.143t-1.714-3.714-2.286-3.143-3.143-1.429-4 2.857-4.286 5.714-2.571 2.857q-1.714-1.143-3.429-0.857t-2.571 0.571-2.571 1.714-2.857 2q-1.714 1.143-4.857 1.714t-4.857 1.143q8.571-2.857-0.571-6.286-5.714-2.286-9.143-1.714 5.143-2.286 4.286-6.857t-4.857-8h2.857q-0.571-2.286-4.857-4.857t-10-4.857-7.429-3.429q-4.571-2.857-19.429-5.429t-18.857-0.286q-2.857 3.429-2.571 6t2.286 8 2 7.143q0.571 3.429-3.143 7.429t-3.714 6.857q0 4 8 8.857t5.714 12.286q-1.714 4.571-9.143 9.143t-9.143 6.857q-2.857 4.571-0.857 10.571t6 9.429q1.143 1.143 0.857 2.286t-2 2.571-3.143 2.286-3.714 2l-1.714 1.143q-6.286 2.857-11.714-3.429t-7.714-14.857q-4-14.286-9.143-17.143-13.143-4.571-16.571 0.571-2.857-7.429-23.429-14.857-14.286-5.143-33.143-2.286 3.429-0.571 0-8.571-4-8.571-10.857-6.857 1.714-3.429 2.286-10t0.571-7.714q1.714-7.429 6.857-13.143 0.571-0.571 4-4.857t5.429-7.714 0.286-3.429q20 2.286 28.571-6.286 2.857-2.857 6.571-9.714t6-9.714q5.143-3.429 8-3.143t8.286 3.143 8.286 2.857q8 0.571 8.857-6.286t-4.286-11.429q6.857 0.571 1.714-9.714-2.857-4-4.571-5.143-6.857-2.286-15.429 2.857-4.571 2.286 1.143 4.571-0.571-0.571-5.429 6t-9.429 10-9.143-2.857q-0.571-0.571-3.143-7.714t-5.429-7.714q-4.571 0-9.143 8.571 1.714-4.571-6.286-8.571t-13.714-4.571q10.857-6.857-4.571-15.429-4-2.286-11.714-2.857t-11.143 2.286q-2.857 4-3.143 6.571t2.857 4.571 6 3.143 6.571 2.286 4.857 1.714q8 5.714 4.571 8-1.143 0.571-4.857 2t-6.571 2.571-3.429 2.286q-1.714 2.286 0 8t-1.143 8q-2.857-2.857-5.143-10t-4-9.429q4 5.143-14.286 3.429l-5.714-0.571q-2.286 0-9.143 1.143t-11.714 0.571-7.714-4.571q-2.286-4.571 0-11.429 0.571-2.286 2.286-1.143-2.286-1.714-6.286-5.429t-5.714-4.857q-26.286 8.571-53.714 23.429 3.429 0.571 6.857-0.571 2.857-1.143 7.429-3.714t5.714-3.143q19.429-8 24-4l2.857-2.857q8 9.143 11.429 14.286-4-2.286-17.143-0.571-11.429 3.429-12.571 6.857 4 6.857 2.857 10.286-2.286-1.714-6.571-5.714t-8.286-6.286-8.571-2.857q-9.143 0-12.571 0.571-83.429 45.714-134.286 126.857zM565.143 862.857q0 3.429 1.143 9.143 117.714-20.571 200.571-108-1.714-1.714-7.143-2.571t-7.143-2q-10.286-4-13.714-4.571 0.571-4-1.429-7.429t-4.571-5.143-7.143-4.571-6.286-4q-1.143-1.143-4-3.429t-4-3.143-4.286-2.571-4.857-1.143-5.714 0.571l-1.714 0.571q-1.714 0.571-3.143 1.429t-3.143 1.714-2.286 1.714 0 1.429q-12-9.714-20.571-12.571-2.857-0.571-6.286-3.143t-6-4-5.714-0.857-6.571 4q-2.857 2.857-3.429 8.571t-1.143 7.429q-4-2.857 0-10t1.143-10.571q-1.714-3.429-6-2.571t-6.857 2.571-6.571 4.857-5.143 3.714-4.857 3.143-4.857 4.286q-1.714 2.286-3.429 6.857t-2.857 6.286q-1.143-2.286-6.571-3.714t-5.429-3.143q1.143 5.714 2.286 20t2.857 21.714q4 17.714-6.857 27.429-15.429 14.286-16.571 22.857-2.286 12.571 6.857 14.857 0 4-4.571 11.714t-4 12.286z" ], "tags": [ "globe" ], "defaultCode": 61612, - "grid": 14, - "matchesSearch": false + "grid": 16, + "matchesSearch": false, + "width": 1024 }, { "id": 163, @@ -7324,8 +7325,8 @@ "selection": [ { "id": 72, - "order": 9, - "prevSize": 32, + "order": 12, + "prevSize": 16, "code": 56, "name": "clock", "ligatures": "", @@ -7334,16 +7335,16 @@ { "order": 3, "id": 67, - "prevSize": 32, + "prevSize": 16, "code": 109, "name": "lock", "ligatures": "", "tempChar": "" }, { - "order": 6, + "order": 8, "id": 66, - "prevSize": 32, + "prevSize": 16, "code": 112, "name": "lock-open", "ligatures": "", @@ -7352,7 +7353,7 @@ { "order": 1, "id": 63, - "prevSize": 32, + "prevSize": 16, "code": 36, "name": "form", "ligatures": "", @@ -7361,7 +7362,7 @@ { "id": 0, "order": 2, - "prevSize": 32, + "prevSize": 16, "code": 97, "name": "uni61", "ligatures": "", @@ -7369,8 +7370,8 @@ }, { "id": 1, - "order": 4, - "prevSize": 32, + "order": 5, + "prevSize": 16, "code": 98, "name": "uni62", "ligatures": "", @@ -7378,8 +7379,8 @@ }, { "id": 2, - "order": 5, - "prevSize": 32, + "order": 6, + "prevSize": 16, "code": 99, "name": "uni63", "ligatures": "", @@ -7387,8 +7388,8 @@ }, { "id": 3, - "order": 7, - "prevSize": 32, + "order": 9, + "prevSize": 16, "code": 100, "name": "uni64", "ligatures": "", @@ -7396,8 +7397,8 @@ }, { "id": 4, - "order": 8, - "prevSize": 32, + "order": 10, + "prevSize": 16, "code": 101, "name": "uni65", "ligatures": "", @@ -7405,8 +7406,8 @@ }, { "id": 5, - "order": 9, - "prevSize": 32, + "order": 11, + "prevSize": 16, "code": 102, "name": "uni66", "ligatures": "", @@ -7414,8 +7415,8 @@ }, { "id": 6, - "order": 10, - "prevSize": 32, + "order": 13, + "prevSize": 16, "code": 103, "name": "uni67", "ligatures": "", @@ -7423,8 +7424,8 @@ }, { "id": 7, - "order": 11, - "prevSize": 32, + "order": 14, + "prevSize": 16, "code": 105, "name": "uni69", "ligatures": "", @@ -7432,8 +7433,8 @@ }, { "id": 8, - "order": 12, - "prevSize": 32, + "order": 15, + "prevSize": 16, "code": 106, "name": "uni6A", "ligatures": "", @@ -7441,8 +7442,8 @@ }, { "id": 9, - "order": 13, - "prevSize": 32, + "order": 16, + "prevSize": 16, "code": 107, "name": "uni6B", "ligatures": "", @@ -7450,8 +7451,8 @@ }, { "id": 10, - "order": 14, - "prevSize": 32, + "order": 17, + "prevSize": 16, "code": 108, "name": "uni6C", "ligatures": "", @@ -7459,8 +7460,8 @@ }, { "id": 12, - "order": 15, - "prevSize": 32, + "order": 18, + "prevSize": 16, "code": 110, "name": "uni6E", "ligatures": "", @@ -7468,8 +7469,8 @@ }, { "id": 13, - "order": 16, - "prevSize": 32, + "order": 19, + "prevSize": 16, "code": 104, "name": "uni68", "ligatures": "", @@ -7477,8 +7478,8 @@ }, { "id": 14, - "order": 17, - "prevSize": 32, + "order": 20, + "prevSize": 16, "code": 111, "name": "uni6F", "ligatures": "", @@ -7486,8 +7487,8 @@ }, { "id": 16, - "order": 18, - "prevSize": 32, + "order": 21, + "prevSize": 16, "code": 113, "name": "uni71", "ligatures": "", @@ -7495,8 +7496,8 @@ }, { "id": 17, - "order": 19, - "prevSize": 32, + "order": 22, + "prevSize": 16, "code": 114, "name": "uni72", "ligatures": "", @@ -7504,8 +7505,8 @@ }, { "id": 18, - "order": 20, - "prevSize": 32, + "order": 23, + "prevSize": 16, "code": 115, "name": "uni73", "ligatures": "", @@ -7513,8 +7514,8 @@ }, { "id": 19, - "order": 21, - "prevSize": 32, + "order": 24, + "prevSize": 16, "code": 116, "name": "uni74", "ligatures": "", @@ -7522,8 +7523,8 @@ }, { "id": 20, - "order": 22, - "prevSize": 32, + "order": 25, + "prevSize": 16, "code": 117, "name": "uni75", "ligatures": "", @@ -7531,8 +7532,8 @@ }, { "id": 21, - "order": 23, - "prevSize": 32, + "order": 26, + "prevSize": 16, "code": 118, "name": "uni76", "ligatures": "", @@ -7540,8 +7541,8 @@ }, { "id": 22, - "order": 24, - "prevSize": 32, + "order": 27, + "prevSize": 16, "code": 119, "name": "uni77", "ligatures": "", @@ -7549,8 +7550,8 @@ }, { "id": 23, - "order": 25, - "prevSize": 32, + "order": 28, + "prevSize": 16, "code": 120, "name": "uni78", "ligatures": "", @@ -7558,8 +7559,8 @@ }, { "id": 24, - "order": 26, - "prevSize": 32, + "order": 29, + "prevSize": 16, "code": 122, "name": "uni7A", "ligatures": "", @@ -7567,8 +7568,8 @@ }, { "id": 25, - "order": 27, - "prevSize": 32, + "order": 30, + "prevSize": 16, "code": 65, "name": "uni41", "ligatures": "", @@ -7576,8 +7577,8 @@ }, { "id": 26, - "order": 28, - "prevSize": 32, + "order": 31, + "prevSize": 16, "code": 66, "name": "uni42", "ligatures": "", @@ -7585,8 +7586,8 @@ }, { "id": 27, - "order": 29, - "prevSize": 32, + "order": 32, + "prevSize": 16, "code": 68, "name": "uni44", "ligatures": "", @@ -7594,8 +7595,8 @@ }, { "id": 28, - "order": 30, - "prevSize": 32, + "order": 33, + "prevSize": 16, "code": 67, "name": "uni43", "ligatures": "", @@ -7603,8 +7604,8 @@ }, { "id": 29, - "order": 31, - "prevSize": 32, + "order": 34, + "prevSize": 16, "code": 69, "name": "uni45", "ligatures": "", @@ -7612,8 +7613,8 @@ }, { "id": 30, - "order": 32, - "prevSize": 32, + "order": 35, + "prevSize": 16, "code": 70, "name": "uni46", "ligatures": "", @@ -7621,8 +7622,8 @@ }, { "id": 31, - "order": 33, - "prevSize": 32, + "order": 36, + "prevSize": 16, "code": 71, "name": "uni47", "ligatures": "", @@ -7630,8 +7631,8 @@ }, { "id": 32, - "order": 34, - "prevSize": 32, + "order": 37, + "prevSize": 16, "code": 72, "name": "uni48", "ligatures": "", @@ -7639,8 +7640,8 @@ }, { "id": 33, - "order": 35, - "prevSize": 32, + "order": 38, + "prevSize": 16, "code": 73, "name": "uni49", "ligatures": "", @@ -7648,8 +7649,8 @@ }, { "id": 34, - "order": 36, - "prevSize": 32, + "order": 39, + "prevSize": 16, "code": 74, "name": "uni4A", "ligatures": "", @@ -7657,8 +7658,8 @@ }, { "id": 35, - "order": 37, - "prevSize": 32, + "order": 40, + "prevSize": 16, "code": 75, "name": "uni4B", "ligatures": "", @@ -7666,8 +7667,8 @@ }, { "id": 36, - "order": 38, - "prevSize": 32, + "order": 41, + "prevSize": 16, "code": 76, "name": "uni4C", "ligatures": "", @@ -7675,8 +7676,8 @@ }, { "id": 37, - "order": 39, - "prevSize": 32, + "order": 42, + "prevSize": 16, "code": 77, "name": "uni4D", "ligatures": "", @@ -7684,8 +7685,8 @@ }, { "id": 38, - "order": 40, - "prevSize": 32, + "order": 43, + "prevSize": 16, "code": 78, "name": "uni4E", "ligatures": "", @@ -7693,8 +7694,8 @@ }, { "id": 39, - "order": 41, - "prevSize": 32, + "order": 44, + "prevSize": 16, "code": 79, "name": "uni4F", "ligatures": "", @@ -7702,8 +7703,8 @@ }, { "id": 40, - "order": 42, - "prevSize": 32, + "order": 45, + "prevSize": 16, "code": 80, "name": "uni50", "ligatures": "", @@ -7711,8 +7712,8 @@ }, { "id": 41, - "order": 43, - "prevSize": 32, + "order": 46, + "prevSize": 16, "code": 81, "name": "uni51", "ligatures": "", @@ -7729,183 +7730,183 @@ }, { "id": 43, - "order": 45, - "prevSize": 32, + "order": 47, + "prevSize": 16, "code": 82, "name": "uni52", "ligatures": "", + "tempChar": "" + }, + { + "id": 44, + "order": 48, + "prevSize": 16, + "code": 84, + "name": "uni54", + "ligatures": "", "tempChar": "" }, { - "id": 44, - "order": 46, - "prevSize": 32, - "code": 84, - "name": "uni54", + "id": 45, + "order": 49, + "prevSize": 16, + "code": 87, + "name": "uni57", "ligatures": "", "tempChar": "" }, { - "id": 45, - "order": 47, - "prevSize": 32, - "code": 87, - "name": "uni57", + "id": 46, + "order": 50, + "prevSize": 16, + "code": 88, + "name": "uni58", "ligatures": "", "tempChar": "" }, { - "id": 46, - "order": 48, - "prevSize": 32, - "code": 88, - "name": "uni58", + "id": 47, + "order": 51, + "prevSize": 16, + "code": 89, + "name": "uni59", "ligatures": "", "tempChar": "" }, { - "id": 47, - "order": 49, - "prevSize": 32, - "code": 89, - "name": "uni59", + "id": 48, + "order": 52, + "prevSize": 16, + "code": 90, + "name": "uni5A", "ligatures": "", "tempChar": "" }, { - "id": 48, - "order": 50, - "prevSize": 32, - "code": 90, - "name": "uni5A", + "id": 49, + "order": 53, + "prevSize": 16, + "code": 86, + "name": "uni56", "ligatures": "", "tempChar": "" }, { - "id": 49, - "order": 51, - "prevSize": 32, - "code": 86, - "name": "uni56", + "id": 50, + "order": 54, + "prevSize": 16, + "code": 49, + "name": "uni31", "ligatures": "", "tempChar": "" }, { - "id": 50, - "order": 52, - "prevSize": 32, - "code": 49, - "name": "uni31", + "id": 51, + "order": 55, + "prevSize": 16, + "code": 85, + "name": "uni55", "ligatures": "", "tempChar": "" }, { - "id": 51, - "order": 53, - "prevSize": 32, - "code": 85, - "name": "uni55", + "id": 52, + "order": 56, + "prevSize": 16, + "code": 51, + "name": "uni33", "ligatures": "", "tempChar": "" }, { - "id": 52, - "order": 54, - "prevSize": 32, - "code": 51, - "name": "uni33", + "id": 53, + "order": 57, + "prevSize": 16, + "code": 50, + "name": "uni32", "ligatures": "", "tempChar": "" }, { - "id": 53, - "order": 55, - "prevSize": 32, - "code": 50, - "name": "uni32", + "id": 54, + "order": 58, + "prevSize": 16, + "code": 53, + "name": "uni35", "ligatures": "", "tempChar": "" }, { - "id": 54, - "order": 56, - "prevSize": 32, - "code": 53, - "name": "uni35", + "id": 55, + "order": 59, + "prevSize": 16, + "code": 54, + "name": "uni36", "ligatures": "", "tempChar": "" }, { - "id": 55, - "order": 57, - "prevSize": 32, - "code": 54, - "name": "uni36", + "id": 56, + "order": 60, + "prevSize": 16, + "code": 48, + "name": "uni30", "ligatures": "", "tempChar": "" }, { - "id": 56, - "order": 58, - "prevSize": 32, - "code": 48, - "name": "uni30", + "id": 57, + "order": 61, + "prevSize": 16, + "code": 63, + "name": "uni3F", "ligatures": "", "tempChar": "" }, { - "id": 57, - "order": 59, - "prevSize": 32, - "code": 63, - "name": "uni3F", + "id": 58, + "order": 62, + "prevSize": 16, + "code": 33, + "name": "uni21", "ligatures": "", "tempChar": "" }, { - "id": 58, - "order": 60, - "prevSize": 32, - "code": 33, - "name": "uni21", + "id": 59, + "order": 63, + "prevSize": 16, + "code": 57, + "name": "uni39", "ligatures": "", "tempChar": "" }, { - "id": 59, - "order": 61, - "prevSize": 32, - "code": 57, - "name": "uni39", + "id": 60, + "order": 64, + "prevSize": 16, + "code": 83, + "name": "uni53", "ligatures": "", "tempChar": "" }, { - "id": 60, - "order": 62, - "prevSize": 32, - "code": 83, - "name": "uni53", + "id": 61, + "order": 65, + "prevSize": 16, + "code": 52, + "name": "uni34", "ligatures": "", "tempChar": "" }, - { - "id": 61, - "order": 63, - "prevSize": 32, - "code": 52, - "name": "uni34", - "ligatures": "", - "tempChar": "" - }, { "id": 62, - "order": 64, - "prevSize": 32, + "order": 66, + "prevSize": 16, "code": 55, "name": "uni37", "ligatures": "", - "tempChar": "" + "tempChar": "" } ], "id": 0, @@ -8564,7 +8565,9 @@ "imagePref": {}, "historySize": 100, "showCodes": true, - "search": "" + "search": "", + "gridSize": 16, + "showGrid": true }, "externalSets": [] } \ No newline at end of file diff --git a/wagtail/wagtailadmin/static/wagtailadmin/scss/fonts/wagtail.eot b/wagtail/wagtailadmin/static/wagtailadmin/scss/fonts/wagtail.eot index 2f3f24e18d8354154d7c6daca60f8cae33a6b4d7..a4a7d26b335824a700157f63e943542422d56a69 100755 GIT binary patch delta 1741 zcmYLJTWB0r7(Qn%=j>!}$!2G!);3vZwlirG<6L%TB}7}W7SU1>6a*C;W70J?Nx>k+ zmr+pgp#;kMx*m4chz70 z5&Cb4zx(vYGn-5&s8!TpEv9ROC4QnNTg>F&@(=qL>+Qm^Azer2uH!ng69%?$oz#;} zyD3v#yV!0-P9@N6FK+szHA%Wi34<&M6PKhJQ#>Tb_LJcqan2-5AmR6+Pb7}+BB{7#o7r!x$E5QPXye&PWS;&b?;G`Ev1$s#|9 zfeY*?3o^6{mf)7ck9$GaB~7={84!h7i&#MsiC;Y}3v>3*yT+?-4GPyC-48t%@!3`lfFTT2Y=lt|4D)OfK=gjzKuOw=SMgTk<=f`)315YQ6H zV;XSLU=d4PP?^Bh8h(kiL1QBaKyVr*&_KMY7^nl@`?x#x?^R77nMI5e`rcUdvc#9* zXn0uaR1c_2X;`K-@Dw1z*dTJhI6gYh8hpUtVi`Ni82)7Ya^*-dPu-bPS|ioks9v(l zm9Yk`a@n%9(OPxHk|q3-piFc8mS0=V@rNcRr)MUxW~L`69B1uy9E&9|E_nic(L3lU#YgM>$Q98XUE!&O5)PP{)UTBq8g{b>7}19u+S3XTMyhVM+BpSpJN%Jhlpe`b!&8nbWC p?%evp+{)Z9x2;E7{7U?Day&T?5*+)ec8QG;A*T2Zo_}hS{|5}8-fjQ@ delta 1719 zcmX|BU1%It6u$S)%$?oMW@k5@pIV#kb|#%^e%+bboe>%l{HYL%Kj4!EZAg=DLedoM zL-A#)_@Jd|+Z7)~ioUe?rbMiW2ui`?gCbZE^uY!ZA5>JTND%cqchcND_s+TJ=R4my zcbLC#^4mALaeIZa$1fVWe(U#_ULBlWwl6+;q5s;|qi-_CUu0}?wzoKcoNYDc7+bo| z7|VK4XqzI&`5&CedTXc8yl}OyF?OPbnBA-E3-iytvhW6Dy?bGQd2Rm8DfWc;3g;U* zw@%KlEk0uDrT*u8_Gx1!{ zHQP}bOV7=H({^k#B@rvN$*3kyjvu!JI@vVSP83FAH;j_hO$iR=lhe#-k3thfF{LRZU-5ti z{z;ytoivG)IO|eLZjOX`ryF)rDp-P7YUfGrdVS)NbUO&TPXGeI31*gO06}Qv$616^ z4hVX8L8(jWvoy~FI7V3%2AM|^v5`U2g)zoLP9G91_j8FdY_k*jrXQnSMNy#BaU&!N z+EhUt1~P5~!w=-(Y-7SjrybO7Q8Z1HRyO#g;q|Eiu#OT0hogbKwn7$g9>h*AM9@}_p&E{y5&K^pW=ICfM zNe|5nO>i!RRx-FIFm#<8x|CcqCFfPL(KHMWi*kT7=dx;Yp=lfgFO5W@=_DBjp^y{# zagIpRXrfP8Ku`g^q?c7NZKMZ0mWn_gNHkzUUX=wtQW}~84#ph~%#>FMa4!Zxs*ngy z2xFTV_=6PhZ|gZAsOG{?DalbO5N8zqp!AS+s7*9R-{yv3)ez+ki5?mxk!9zgs1;=p zy5L&BXcu{Cnt}F#EOMdW)V-p&!cYm|t)ooB0|RO-2Q8tYOr?an$V3-H9?*j#?HtG$ zIt0>kA}+W${_k&(2yJLm`4CN7cg9ZlR6CIx2DK=ZDK-^%c?c%R;@N%DN89$vxHriOcQ&#GF+=!^+wIId>h06Zzl{8jI(#yV}mc2 zuIycZ`}>t=tl2-=kN`)!a$Lz~0?@M`U_ zb*|x$R7QTam+X(7p7Wtw^}gBt-d#WMnc8#y?vM5!8@=A_HQ(Q-w^qjVv8TqqJ}`UW zeE2~4Y4py)%Lo4$-<)`QVrz14N=#ju`fK`wnd37*-m}_f@um2O - + @@ -71,6 +71,6 @@ - + \ No newline at end of file diff --git a/wagtail/wagtailadmin/static/wagtailadmin/scss/fonts/wagtail.ttf b/wagtail/wagtailadmin/static/wagtailadmin/scss/fonts/wagtail.ttf index 16794d3699c9b38d9c419323ae725afba386c8bb..51decf8add8f0ddec617d27d314d1ecff6c39468 100755 GIT binary patch delta 1715 zcmYLJOK2Tc7(Qnn=iJH7y*H0})Y>H1ncJB(iE$oxW+X&gu$H2w;zAHqY>Y`Su}KPM zQQXW%!9@web>*rnaV6AS`71}Nx9{~f8RIWAwsNGmvh*zb)9W&}dWA7o^kC4x*Am7~LuH-b`qsIZypgA% zcaXF1%;xga3zwI#G1gmze|vrD+*$Uhb{+cX(AyhJ>njhmUi%LEPl$i;?B?@ZOed%{ z)L?CjV!xR%&nOim@x96zxG z(rl6vDN&e*QR>wT75$8_vWT0eeS!Bvl`kveWtktZ_A{S8{bxHCR0l>@& zR|H`cJ0kIeZb?$m8HEApL4+hfRfh-h1^jVVIBA~daS$eMS%80>hdCMqH!#ZJ$DM9z z-bK!RS{PL!62XcjO3N4p!lWR$3=s4M0D{S%l|`V8s0*f95rv9Jno}4yY630+;9>5A zS}ePPABY_HK~uSpvfaoJVoF47el5W@5P{$SW@N@q(JyIIPzK;>r~QdhuOiwmvQuRj zotD<5}ThDAb7SP@F=MxVd=0UMI{)V*9>cr4Fjy2Zg8A1Q6U}i6fTs7U^F324cG{yAQ+u&Xm#`YBWdmnpGbj9ivsRTb4G`Yz$el zhF=ntvB&TFv2Bk(HaRsjJBc+rGd1~m6IrchqcLn*!W5>gnRxS>#8p_j$#MCoVnRTKt{W!4>Q3&(9s+`}S|HR=nNsoxXx$vxR=Q zcc^-?K32cc=rlH($6Mz|J7dFRx9pz%k+bGpa+}^)``)?Zm;Lkmx9|Mmz%vt{Os-A7 zJ0;p@I->Jr=Zk~)AKVU)h95_7O<$P)?a+;xQ!{_fo|rS{-kAI2?)T|@$hHbjJ&;b)Z&{ZVnjqi3f8A8bXEbqgh?TG~Ezj2=EZ){z9{YFD$ zY_*M?!|R*pmtKAQ{CkY`Pr?7z#?qyW?0NAm&bM)Hzr3`u{G|Qvk2wE=_@^&!zOu!T z&DdIp{7e%!zc^=^(D@GE8AkTRAay<0D?BsxJ>N4sag<2kD+1GT9Wx^pJ9EgX1SdC0 zIw74LlB^p?any_AH1jgg?@&64iybOZ73m%0N$JSaEYEV%i@^7WU)$Co%X>2JmeR|! zv;bz0aAg?89ap+R*eytMdd86ndJt*KI8fE$L3~=|SvO0QG|79^h*zLY(d|V&Gze~B zlQ~6Npfv1huZx^VMGy}n0H=_=$N_@XI7spsrvec4?txN|%I8^;hX{=GI0|#0G-4ye zv8cpl>tZ8&B(4$L6Ikjkb&ryHY2*r5iJD3q0?1B@V)!yg(`9_H(!Z=147 zOxpRd)$|9{0BFZ4vLjRa3W2atK@ox-WL#VqT}I+5YSP7(5K8QYLz zXAA|1CW^xhlu(+792fJZ35NiOETRs2AcLId;2g@tDH|)NfKLXaBsbD=YiN(&$W7>5 z@u*=R_vW+hf0}2+;QRS3ZHOi9f59+Eah>_CJ3~(^+Ti~X;LV$a@08)oWa6%Xd#K0e<_~5|K0YN>Namq-6%78qh zoClSMuET6%F!}*EB&&g_XlV4KMH+b?92B*(4MG=O8n1iFuHCn*l#w2vD(;g&WiK7+jl?p>i&0!KYHli zk(ncxAO7sKJmiD?uq#mm!l`5FXInSUOV~6;J~pL#2r>6LQL`7zT4m8{{shQ+cf|H diff --git a/wagtail/wagtailadmin/static/wagtailadmin/scss/fonts/wagtail.woff b/wagtail/wagtailadmin/static/wagtailadmin/scss/fonts/wagtail.woff index 3024e4313c6627597e23cf07b6f2790fb0556ea4..816c235b75d0bc55f206f08dd50dc1bebb541f2a 100755 GIT binary patch delta 2742 zcmYjTO>9*~6uyu8WFiYlOo0UpW86uC65_&WpcGkJ6ImHSn?fyMq1cw!G^Wq@Xz#l- zXXgIAA4&}JH2l>_lZI~Hnsi~Ji3>L_{MoqBjfufXNc_HYTjWmX|I9hxcg~r4y`EIA zC6(Q^k>kflPMjEtqGNlbXCi#V-$#{B<=F0G|Bm`h6dj&9b$Z`lBX1u#7)3`Wu>U@* zd4Bs#W0Rv(Slht-G;5_=Ir_oqG}eapV{SI}6frb8y$m$#Rs_J8{|y){7+0)vYxU_O?9coZ~5L$8Z@cRZ00g3^&o*lHtN0#4Dr@!H3*e-A@Yxh z4b0^dstLHLjo?{)2o$EPvCIYZ8BwLGnyxJo(^Vz%K!s0wRS*;jTmg6kmGlmDF$CmK z-o!#HG*nu~lF2jVANOf5#Th{|V-8!$8D+Y85Mn7(wB-%%ri*d0^|QzVo>#p}f&?%C zhLHN)w~>EEK*qLkqW}$`?jxy7)&N{o6PQAQ0f5x-Z-M~%G9^Ues1)Sj%`!~9a$F<^ z#)hueR#`C-!Ji3b%A`Vz?I$bE=}NhSwk(DLK(vTV>A|^h4KguEm1ek8-fad3H(z2O z^Nwrk(gsAVuag0?5gpRI)D6rjZV@)aPZgUmStUf#l zduns&@_byN9Z$q!8i!aGft6|DQocWeOx5^nY#IJC?J&}hP8TU$&K%J6FbETb%Y1~x znQ?6C1inXzlZ61Lc$olQ@25-f^5M!5H)!$W`w#Fog?_5wZPSQaJln`tI5_ZG%%B%H zPTk1&o9D|=Fc~$#`UrEPv8F8DqHf!2=_M|aGBynkhPncWDGxMDNMHQGK!kCE5JWNK zomalh8Y09qM?=y~nyqHc*I#p+?tl}pQKT8TgF-b;@UU7i!Bd5wFo5DO0L()HmDJ0Q zmNYlST>NPi)I>1UhG&q&vJ&azG4z!5 z5p9PI1p+!l>g+jShp(l8AxxUoT#k4MF5{<=(9#MXTBHj6qeZu=5@!OBYMQ$J#a2@V}ck8uhzkIQte)HR)bXk1Y z_rlfC3%#_PcC$|2%{zI!DB49k?`GW;o5;q@<}Fhs?YQ0Q#NF01i(M9!u$(PtJlD?J zd65Jrcvy1Z!^@WA`rCBi#7o<8X z^Toooh2^E|@`d^N!IeR|+q>ESyx+goyDKYlv(c~hFZZV9qFiW9*YHg@E@1LeuZE4r zOcc@-@uJhB-##7q{qF2{f Ij?Ps611O4Ea{vGU delta 2746 zcmXw4&2Lmy6n{euHCbBRt#0ID>VPqOQZPCD+8K&>+ z-22|V`DiCbpf$AGq)i&?(m%iji5rM+abaBO!i6CbV*LHio4I%H%>6hYzw}iyq7$*(~rDTw{+%k{^kL{=6NS-_pV=Fo&4zNanCz>73ZIE znAi3nyI7g3V(%f=mpDr0(y7mNd(EDPlav6I+KMGSwSSv25;&7#vTI;{d3_FROZ#Hbk_`IJj6Vzgnwm##Gqlf`9l$2q^_6c}|z z$K+HTU|2~lPNITS(+S&2=75C36i}31LQuSFhL9|p_||~XAxH;PHkI~r6u2md<)I3! zsVaBG8pdAu=eBY{UruMC!z71X-LV8H~~mKYngQ#8nq)Qu z8<@p_=NN^C$dGN2Chb&{BWb}aj|rJ}H9!=rdPS{E>~6b|)dLZnV-y5h)E{ySik!41 zEhCzt4}e8?B&SF-qfvWVYO_&DdUuEztQ3AB#9~n=WEBl%FOHl50Fvh{3Wj3bLHxur z#G~RPM`GG(87F8dYm63X3bORaqGlv;Mj@OhxR?fYoCJ|33%O#t)B-FMj1DR}8f@DR z>MysbSZHw9!HXhNgcLWnQ;rfign4*MSw%1kUNmUDA@Bttgo7Q*AyotgJHyI{9n5K$ zEEV58g(BjoJzRN0=3HfHl2f$NOi!?)NFs(crSB9Lqz&f4Lu_%iL0aJ$7fUYy(M2{u zM}7-^*nt1o`g$Mq#Q|Hz<$yA3R&NgpjAAsRz;nqbghArPAv8ruJi`faB}rN3z(9<& z;YOr*1ohd$W0|&G-~wr}K-3H0A6P@p3_GdSjN%d2DGC-Wsf3cFlH`aqX-b#|16Ak4Bk#DiAb(jQ#MU}G>(U}CX&8QhR1Kx9XN`O4pZ|*X{2d!m&l@TKT!V>(20TWZfgsBnur!6k@ zB?D8}zN#&JSv5~Tcy@nW5yTHVJ9jp}2S~(EP_V{2fH!ikfZ&smKr=!d4jyR8Y9DG! zJpOzVR47+u#2-xxawG)cs8FC~hEI=FBB5+#koaMpFBI8h0YFF-149fGg-H9{=1k|D zsw$O>XpVw8N`*Es_~L)yGTx6U2%->=e#jzKEfx=g-dlWS>ka=|Ngj_&U;4Ihdv?X4 zr+xHZ)^GRPy}Z-uyqPu9X4-HKSO3)2U0s^CA?)+58#iy=y0z4r7xOHY^1R&W z+#K8-wC>2a=J%)FaoJkgSYKaT+gRC>E!n8AFRay8=Azn@$<`0hX60qmgt{MXF6(Qo(T3BTlZf1UX0g;Lk^_U@mW GFZ~Z93|eUb From d9b1ac935011f628fa49236e4498376fa3b63d44 Mon Sep 17 00:00:00 2001 From: Matt Westcott Date: Thu, 17 Jul 2014 13:14:06 +0100 Subject: [PATCH 40/63] Update test_image_embed_is_rewritten to work on valid HTML input, to make it a more meaningful / representative test --- wagtail/wagtailcore/tests/test_dbwhitelister.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wagtail/wagtailcore/tests/test_dbwhitelister.py b/wagtail/wagtailcore/tests/test_dbwhitelister.py index d3dee8c34..35e5b34b5 100644 --- a/wagtail/wagtailcore/tests/test_dbwhitelister.py +++ b/wagtail/wagtailcore/tests/test_dbwhitelister.py @@ -25,9 +25,9 @@ class TestDbWhitelister(TestCase): self.assertHtmlEqual(expected, output_html) def test_image_embed_is_rewritten(self): - input_html = '

    OMG look at this picture of a kitten:

    A cute kitten
    A kitten, yesterday.

    ' + input_html = '

    OMG look at this picture of a kitten:

    A cute kitten
    A kitten, yesterday.
    ' output_html = DbWhitelister.clean(input_html) - expected = '

    OMG look at this picture of a kitten:

    ' + expected = '

    OMG look at this picture of a kitten:

    ' self.assertHtmlEqual(expected, output_html) def test_media_embed_is_rewritten(self): From b700d6503ca8a9118868148f8cb51c1b97737490 Mon Sep 17 00:00:00 2001 From: Matt Westcott Date: Thu, 17 Jul 2014 13:26:07 +0100 Subject: [PATCH 41/63] add html5lib item to changelog + release notes --- CHANGELOG.txt | 1 + docs/releases/0.5.rst | 6 ++++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 39740ef55..df2064b61 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -4,6 +4,7 @@ Changelog 0.5 (xx.xx.20xx) ~~~~~~~~~~~~~~~~ * Added decorator syntax for hooks + * Replaced lxml dependency with html5lib, to simplify installation 0.4.1 (14.07.2014) ~~~~~~~~~~~~~~~~~~ diff --git a/docs/releases/0.5.rst b/docs/releases/0.5.rst index d17816cec..f0cd01f40 100644 --- a/docs/releases/0.5.rst +++ b/docs/releases/0.5.rst @@ -7,8 +7,8 @@ Wagtail 0.5 release notes - IN DEVELOPMENT :depth: 1 -Whats new -========= +What's new +========== Minor features @@ -27,6 +27,8 @@ Core MenuItem('Kittens!', '/kittens/', classnames='icon icon-folder-inverse', order=1000) ) + * The lxml library (used for whitelisting and rewriting of rich text fields) has been replaced with the pure-python html5lib library, to simplify installation. + Bug fixes ~~~~~~~~~ From 4131039ece67b65aa289a321d79cbb40f0b60556 Mon Sep 17 00:00:00 2001 From: Matt Westcott Date: Thu, 17 Jul 2014 13:43:14 +0100 Subject: [PATCH 42/63] remove libxml / libxslt from install scripts - not required now we've switched to html5lib --- scripts/install/debian.sh | 2 +- scripts/install/ubuntu.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install/debian.sh b/scripts/install/debian.sh index 63830dc15..14a10ce4d 100644 --- a/scripts/install/debian.sh +++ b/scripts/install/debian.sh @@ -36,7 +36,7 @@ SERVER_IP=`ifconfig eth0 |grep "inet addr" | cut -d: -f2 | cut -d" " -f1` aptitude update aptitude -y install git python-pip nginx postgresql redis-server -aptitude -y install postgresql-server-dev-all python-dev libxml2-dev libxslt-dev libjpeg62-dev +aptitude -y install postgresql-server-dev-all python-dev libjpeg62-dev perl -pi -e "s/^(local\s+all\s+postgres\s+)peer$/\1trust/" /etc/postgresql/9.1/main/pg_hba.conf service postgresql reload diff --git a/scripts/install/ubuntu.sh b/scripts/install/ubuntu.sh index 303fe0355..45adaa5f2 100644 --- a/scripts/install/ubuntu.sh +++ b/scripts/install/ubuntu.sh @@ -34,7 +34,7 @@ SERVER_IP=`ifconfig eth0 |grep "inet addr" | cut -d: -f2 | cut -d" " -f1` aptitude update aptitude -y install git python-pip nginx postgresql redis-server -aptitude -y install postgresql-server-dev-all python-dev libxml2-dev libxslt-dev libjpeg62-dev +aptitude -y install postgresql-server-dev-all python-dev libjpeg62-dev perl -pi -e "s/^(local\s+all\s+postgres\s+)peer$/\1trust/" /etc/postgresql/9.1/main/pg_hba.conf service postgresql reload From b67bc82c1d84f9575c17ad4c8e08cb4150d0fd79 Mon Sep 17 00:00:00 2001 From: Dave Cranwell Date: Thu, 17 Jul 2014 15:39:22 +0100 Subject: [PATCH 43/63] moved styleguide css to styleguide folder. added new help text styles --- .../wagtailstyleguide/scss}/styleguide.scss | 9 +- .../templates/wagtailstyleguide/base.html | 23 +++- .../scss/components/formatters.scss | 7 ++ .../scss/components/messages.scss | 7 ++ .../scss/components/typography.scss | 102 ++++++++++++++++++ .../static/wagtailadmin/scss/core.scss | 62 +---------- .../static/wagtailadmin/scss/variables.scss | 1 + 7 files changed, 146 insertions(+), 65 deletions(-) rename wagtail/{wagtailadmin/static/wagtailadmin/scss/layouts => contrib/wagtailstyleguide/static/wagtailstyleguide/scss}/styleguide.scss (86%) create mode 100644 wagtail/wagtailadmin/static/wagtailadmin/scss/components/typography.scss diff --git a/wagtail/wagtailadmin/static/wagtailadmin/scss/layouts/styleguide.scss b/wagtail/contrib/wagtailstyleguide/static/wagtailstyleguide/scss/styleguide.scss similarity index 86% rename from wagtail/wagtailadmin/static/wagtailadmin/scss/layouts/styleguide.scss rename to wagtail/contrib/wagtailstyleguide/static/wagtailstyleguide/scss/styleguide.scss index 09cb627ed..259fea495 100644 --- a/wagtail/wagtailadmin/static/wagtailadmin/scss/layouts/styleguide.scss +++ b/wagtail/contrib/wagtailstyleguide/static/wagtailstyleguide/scss/styleguide.scss @@ -1,6 +1,6 @@ -@import "../variables.scss"; -@import "../mixins.scss"; -@import "../grid.scss"; +@import "../../../wagtailadmin/static/wagtailadmin/scss/variables.scss"; +@import "../../../wagtailadmin/static/wagtailadmin/scss/mixins.scss"; +@import "../../../wagtailadmin/static/wagtailadmin/scss/grid.scss"; section{ border-top:1px solid $color-grey-3; @@ -50,6 +50,9 @@ section{ .color-green{ background-color:$color-green; } + .color-blue{ + background-color:$color-blue; + } .color-grey-1{ background-color:$color-grey-1; } diff --git a/wagtail/contrib/wagtailstyleguide/templates/wagtailstyleguide/base.html b/wagtail/contrib/wagtailstyleguide/templates/wagtailstyleguide/base.html index bc3036d65..adf3c9dfe 100644 --- a/wagtail/contrib/wagtailstyleguide/templates/wagtailstyleguide/base.html +++ b/wagtail/contrib/wagtailstyleguide/templates/wagtailstyleguide/base.html @@ -5,7 +5,7 @@ {% block extra_css %} {% compress css %} - + {% endcompress %} {% endblock %} @@ -22,6 +22,7 @@ @@ -88,6 +90,25 @@ +
    +

    Help text

    + +

    Help text is not to be confused with the messages that appear in a banner drop down from the top of the screen. Help text are permanent instructions, visible on every page view, that explain or warn about something. + +

    + This is help text that might be just for information, explaining what happens next, or drawing the user's attention to something they're about to do +
    + +
    + A warning message might be output in cases where a user's action could have serious consequences +
    + +
    + A critical message would probably be rare, in cases where a particularly brittle or dangerously destructive action could be performed and needs to be warned about. +
    + +
    +

    Listings

    diff --git a/wagtail/wagtailadmin/static/wagtailadmin/scss/components/formatters.scss b/wagtail/wagtailadmin/static/wagtailadmin/scss/components/formatters.scss index b6f5ca03c..349289bce 100644 --- a/wagtail/wagtailadmin/static/wagtailadmin/scss/components/formatters.scss +++ b/wagtail/wagtailadmin/static/wagtailadmin/scss/components/formatters.scss @@ -194,6 +194,13 @@ a.tag:hover{ } } +/* general image style */ +img{ + max-width:100%; + height:auto; + border: 3px solid $color-grey-4; +} + /* make a block-level element inline */ .inline{ diff --git a/wagtail/wagtailadmin/static/wagtailadmin/scss/components/messages.scss b/wagtail/wagtailadmin/static/wagtailadmin/scss/components/messages.scss index f5c32d8c5..7a05d31f8 100644 --- a/wagtail/wagtailadmin/static/wagtailadmin/scss/components/messages.scss +++ b/wagtail/wagtailadmin/static/wagtailadmin/scss/components/messages.scss @@ -1,3 +1,10 @@ +/* + Messages are specific to Django's "Messaging" system which adds messages into the session, + for display on the next page visited. These appear as an animated banner at the top of the page. + + For inline help text, see typography.scss +*/ + .messages{ position:relative; z-index:5; diff --git a/wagtail/wagtailadmin/static/wagtailadmin/scss/components/typography.scss b/wagtail/wagtailadmin/static/wagtailadmin/scss/components/typography.scss new file mode 100644 index 000000000..c907d5b93 --- /dev/null +++ b/wagtail/wagtailadmin/static/wagtailadmin/scss/components/typography.scss @@ -0,0 +1,102 @@ +h1,h2,h3,h4,h5,h6{ + font-weight:normal; +} + +h1{ + line-height:1.3em; + font-size:1.5em; + text-transform:uppercase; + color:$color-grey-1; + font-weight:600; + + span{ + text-transform:none; + font-weight:300; + } + + .homepage &{ + text-transform:none; + } +} +h2{ + text-transform:uppercase; + font-size:1.3em; + font-family:Open Sans; + font-weight:600; + color:$color-grey-2; + + .page-explorer &{ + text-transform:none; + } +} +a{ + outline:none; + color:$color-link; + text-decoration:none; + + &:hover{ + color:$color-link-hover; + } +} + +code{ + @include box-shadow(inset 0px 0px 4px 0px rgba(0, 0, 0, 0.2)); + background-color:$color-fieldset-hover; + padding:2px 5px; +} + +kbd{ + @include border-radius(3px); + font-family:Open Sans, Arial, sans-serif; + border:1px solid $color-grey-2; + border-color:rgba(0,0,0,0.2); + padding:0.3em 0.5em; +} + +/* Help text formatters */ + +.help-block{ + padding:1em; + margin:1em 0; +} + .help-info, .help-warning, .help-critical{ + @include border-radius(3px); + border:1px solid $color-grey-4; + padding-left:3.5em; + position:relative; + + &:before{ + font-family:wagtail; + position:absolute; + left:1em; + top:0.7em; + content:"?"; + font-size:1.4em; + } + } + .help-info{ + border-color:$color-blue; + + &:before{ + color:$color-blue; + } + } + + .help-warning{ + border-color:$color-orange; + + &:before{ + color:$color-orange; + content:"!"; + } + } + + .help-critical{ + border-color:$color-red; + + &:before{ + color:$color-red; + content:"!"; + } + } + diff --git a/wagtail/wagtailadmin/static/wagtailadmin/scss/core.scss b/wagtail/wagtailadmin/static/wagtailadmin/scss/core.scss index 55e27b067..e6bda12fb 100644 --- a/wagtail/wagtailadmin/static/wagtailadmin/scss/core.scss +++ b/wagtail/wagtailadmin/static/wagtailadmin/scss/core.scss @@ -4,6 +4,7 @@ @import "components/explorer.scss"; @import "components/icons.scss"; +@import "components/typography.scss"; @import "components/tabs.scss"; @import "components/dropdowns.scss"; @import "components/modals.scss"; @@ -35,67 +36,6 @@ body{ } } -h1,h2,h3,h4,h5,h6{ - font-weight:normal; -} - -h1{ - line-height:1.3em; - font-size:1.5em; - text-transform:uppercase; - color:$color-grey-1; - font-weight:600; - - span{ - text-transform:none; - font-weight:300; - } - - .homepage &{ - text-transform:none; - } -} -h2{ - text-transform:uppercase; - font-size:1.3em; - font-family:Open Sans; - font-weight:600; - color:$color-grey-2; - - .page-explorer &{ - text-transform:none; - } -} -a{ - outline:none; - color:$color-link; - text-decoration:none; - - &:hover{ - color:$color-link-hover; - } -} - -code{ - @include box-shadow(inset 0px 0px 4px 0px rgba(0, 0, 0, 0.2)); - background-color:$color-fieldset-hover; - padding:2px 5px; -} - -kbd{ - @include border-radius(3px); - font-family:Open Sans, Arial, sans-serif; - border:1px solid $color-grey-2; - border-color:rgba(0,0,0,0.2); - padding:0.3em 0.5em; -} - -img{ - max-width:100%; - height:auto; - border: 3px solid $color-grey-4; -} - .browsermessage{ background-color:$color-red; color:white; diff --git a/wagtail/wagtailadmin/static/wagtailadmin/scss/variables.scss b/wagtail/wagtailadmin/static/wagtailadmin/scss/variables.scss index e27817175..908b533f2 100644 --- a/wagtail/wagtailadmin/static/wagtailadmin/scss/variables.scss +++ b/wagtail/wagtailadmin/static/wagtailadmin/scss/variables.scss @@ -27,6 +27,7 @@ $breakpoint-desktop-larger: 100em; /* 1600px */ $color-teal: #43b1b0; $color-teal-darker: darken($color-teal, 10%); $color-teal-dark: #246060; +$color-blue: #71b2d4; $color-red: #cd3238; $color-orange:#e9b04d; $color-green: #189370; From 5d434130fb058eeabdf078d8014f7b9fa444cbdd Mon Sep 17 00:00:00 2001 From: Dave Cranwell Date: Thu, 17 Jul 2014 15:52:55 +0100 Subject: [PATCH 44/63] using best way of importing other sass --- .../static/wagtailstyleguide/scss/styleguide.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wagtail/contrib/wagtailstyleguide/static/wagtailstyleguide/scss/styleguide.scss b/wagtail/contrib/wagtailstyleguide/static/wagtailstyleguide/scss/styleguide.scss index 259fea495..8eedb1d44 100644 --- a/wagtail/contrib/wagtailstyleguide/static/wagtailstyleguide/scss/styleguide.scss +++ b/wagtail/contrib/wagtailstyleguide/static/wagtailstyleguide/scss/styleguide.scss @@ -1,6 +1,6 @@ -@import "../../../wagtailadmin/static/wagtailadmin/scss/variables.scss"; -@import "../../../wagtailadmin/static/wagtailadmin/scss/mixins.scss"; -@import "../../../wagtailadmin/static/wagtailadmin/scss/grid.scss"; +@import "wagtailadmin/scss/variables.scss"; +@import "wagtailadmin/scss/mixins.scss"; +@import "wagtailadmin/scss/grid.scss"; section{ border-top:1px solid $color-grey-3; From 9215572b960df3c75adb0b546b713f0447c1e940 Mon Sep 17 00:00:00 2001 From: Matt Westcott Date: Thu, 17 Jul 2014 16:32:17 +0100 Subject: [PATCH 45/63] rewrite documentation on binding pages to snippets (the linking model should be an inline child of the page, not a snippet itself) --- docs/snippets.rst | 53 ++++++++++++++++++++++++++++++++++------------- 1 file changed, 39 insertions(+), 14 deletions(-) diff --git a/docs/snippets.rst b/docs/snippets.rst index a40b57d94..8b2a2d557 100644 --- a/docs/snippets.rst +++ b/docs/snippets.rst @@ -92,26 +92,49 @@ Then in your own page templates, you can include your snippet template tag with: {% endblock %} + Binding Pages to Snippets ------------------------- -An alternate strategy for including snippets might involve explicitly binding a specific page object to a specific snippet object. Lets add another snippet class to see how that might work: +In the above example, the list of adverts is a fixed list, displayed as part of the template independently of the page content. This might be what you want for a common panel in a sidebar, say - but in other scenarios you may wish to refer to a snippet within page content. This can be done by defining a foreign key to the snippet model within your page model, and adding a ``SnippetChooserPanel`` to the page's ``content_panels`` definitions. For example, if you wanted to be able to specify an advert to appear on ``BookPage``: + +.. code-block:: python + + from wagtail.wagtailsnippets.edit_handlers import SnippetChooserPanel + # ... + class BookPage(Page): + advert = models.ForeignKey( + 'demo.Advert', + null=True, + blank=True, + on_delete=models.SET_NULL, + related_name='+' + ) + + BookPage.content_panels = [ + SnippetChooserPanel('advert', Advert), + # ... + ] + + +The snippet could then be accessed within your template as ``self.advert``. + +To attach multiple adverts to a page, the ``SnippetChooserPanel`` can be placed on an inline child object of ``BookPage``, rather than on ``BookPage`` itself. Here this child model is named ``BookPageAdvertPlacement`` (so called because there is one such object for each time that an advert is placed on a BookPage): + .. code-block:: python from django.db import models from wagtail.wagtailcore.models import Page - from wagtail.wagtailadmin.edit_handlers import PageChooserPanel - from wagtail.wagtailsnippets.models import register_snippet from wagtail.wagtailsnippets.edit_handlers import SnippetChooserPanel from modelcluster.fields import ParentalKey ... - class AdvertPlacement(models.Model): - page = ParentalKey('wagtailcore.Page', related_name='advert_placements') + class BookPageAdvertPlacement(Orderable, models.Model): + page = ParentalKey('demo.BookPage', related_name='advert_placements') advert = models.ForeignKey('demo.Advert', related_name='+') class Meta: @@ -119,25 +142,27 @@ An alternate strategy for including snippets might involve explicitly binding a verbose_name_plural = "Advert Placements" panels = [ - PageChooserPanel('page'), SnippetChooserPanel('advert', Advert), ] def __unicode__(self): return self.page.title + " -> " + self.advert.text - register_snippet(AdvertPlacement) + class BookPage(Page): + ... -The class ``AdvertPlacement`` has two properties, ``page`` and ``advert``, which point to other models. Wagtail provides a ``PageChooserPanel`` and ``SnippetChooserPanel`` to let us make painless selection of those properties in the Wagtail admin. Note also the ``Meta`` class, which you can stock with the ``verbose_name`` and ``verbose_name_plural`` properties to override the snippet labels in the Wagtail admin. The text representation of the class has also gotten fancy, using both properties to construct a compound label showing the relationship it forms between a page and an Advert. + BookPage.content_panels = [ + InlinePanel(BookPage, 'advert_placements', label="Adverts"), + # ... + ] -With this snippet in place, we can use the reverse ``related_name`` lookup label ``advert_placements`` to iterate over any placements within our template files. In the template for a ``Page``-derived model, we could include the following: + +These child objects are now accessible through the page's ``advert_placements`` property, and from there we can access the linked Advert snippet as ``advert``. In the template for ``BookPage``, we could include the following: .. code-block:: django - {% if self.advert_placements %} - {% for advert_placement in self.advert_placements.all %} -

    {{ advert_placement.advert.text }}

    - {% endfor %} - {% endif %} + {% for advert_placement in self.advert_placements.all %} +

    {{ advert_placement.advert.text }}

    + {% endfor %} From f4dd085f0f9efab3070d1b8b3d1eb981571280fc Mon Sep 17 00:00:00 2001 From: Dave Cranwell Date: Fri, 18 Jul 2014 10:27:54 +0100 Subject: [PATCH 46/63] tweaks to help-block contents --- .../templates/wagtailstyleguide/base.html | 7 ++++--- .../static/wagtailadmin/scss/components/typography.scss | 8 ++++++++ 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/wagtail/contrib/wagtailstyleguide/templates/wagtailstyleguide/base.html b/wagtail/contrib/wagtailstyleguide/templates/wagtailstyleguide/base.html index adf3c9dfe..5877bb7ed 100644 --- a/wagtail/contrib/wagtailstyleguide/templates/wagtailstyleguide/base.html +++ b/wagtail/contrib/wagtailstyleguide/templates/wagtailstyleguide/base.html @@ -96,12 +96,13 @@

    Help text is not to be confused with the messages that appear in a banner drop down from the top of the screen. Help text are permanent instructions, visible on every page view, that explain or warn about something.

    - This is help text that might be just for information, explaining what happens next, or drawing the user's attention to something they're about to do +

    This is help text that might be just for information, explaining what happens next, or drawing the user's attention to something they're about to do

    +

    It could be multiple lines

    -
    +

    A warning message might be output in cases where a user's action could have serious consequences -

    +

    A critical message would probably be rare, in cases where a particularly brittle or dangerously destructive action could be performed and needs to be warned about. diff --git a/wagtail/wagtailadmin/static/wagtailadmin/scss/components/typography.scss b/wagtail/wagtailadmin/static/wagtailadmin/scss/components/typography.scss index c907d5b93..77d7df619 100644 --- a/wagtail/wagtailadmin/static/wagtailadmin/scss/components/typography.scss +++ b/wagtail/wagtailadmin/static/wagtailadmin/scss/components/typography.scss @@ -58,6 +58,14 @@ kbd{ .help-block{ padding:1em; margin:1em 0; + + p{ + margin-top:0; + + &:last-child{ + margin-bottom:0; + } + } } .help-info, .help-warning, .help-critical{ @include border-radius(3px); From ba60115d289371f20ea4ea72718c6347dc716a34 Mon Sep 17 00:00:00 2001 From: Matt Westcott Date: Fri, 18 Jul 2014 12:32:15 +0100 Subject: [PATCH 47/63] More detailed comment about what DbWhitelister does --- wagtail/wagtailcore/rich_text.py | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/wagtail/wagtailcore/rich_text.py b/wagtail/wagtailcore/rich_text.py index bd218d01d..16d64be51 100644 --- a/wagtail/wagtailcore/rich_text.py +++ b/wagtail/wagtailcore/rich_text.py @@ -157,9 +157,21 @@ LINK_HANDLERS = { } -# Prepare a whitelisting engine with custom behaviour: -# rewrite any elements with a data-embedtype or data-linktype attribute class DbWhitelister(Whitelister): + """ + A custom whitelisting engine to convert the HTML as returned by the rich text editor + into the pseudo-HTML format stored in the database (in which images, documents and other + linked objects are identified by ID rather than URL): + + * implements a 'construct_whitelister_element_rules' hook so that other apps can modify + the whitelist ruleset (e.g. to permit additional HTML elements beyond those in the base + Whitelister module); + * replaces any element with a 'data-embedtype' attribute with an element, with + attributes supplied by the handler for that type as defined in EMBED_HANDLERS; + * rewrites the attributes of any element with a 'data-linktype' attribute, as + determined by the handler for that type defined in LINK_HANDLERS, while keeping the + element content intact. + """ has_loaded_custom_whitelist_rules = False @classmethod From 5b99f3892732ca84f22ce45001b540f6ba6f353f Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Fri, 18 Jul 2014 15:14:36 +0100 Subject: [PATCH 48/63] Added changelog and release notes for #429 --- CHANGELOG.txt | 1 + docs/releases/0.5.rst | 8 ++++++++ 2 files changed, 9 insertions(+) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index df2064b61..600dc4997 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -3,6 +3,7 @@ Changelog 0.5 (xx.xx.20xx) ~~~~~~~~~~~~~~~~ + * Explorer nav now rendered separately and fetched with AJAX when needed * Added decorator syntax for hooks * Replaced lxml dependency with html5lib, to simplify installation diff --git a/docs/releases/0.5.rst b/docs/releases/0.5.rst index f0cd01f40..fa7012c2e 100644 --- a/docs/releases/0.5.rst +++ b/docs/releases/0.5.rst @@ -30,6 +30,14 @@ Core * The lxml library (used for whitelisting and rewriting of rich text fields) has been replaced with the pure-python html5lib library, to simplify installation. +Admin +----- + + * Explorer nav now rendered separately and fetched with AJAX when needed. + + This improves the general performance of the amdin interface for large sites. + + Bug fixes ~~~~~~~~~ From adb8141a5089d96082fa36090b73940398a9e8d6 Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Fri, 18 Jul 2014 16:55:33 +0100 Subject: [PATCH 49/63] Added test for #429 --- wagtail/wagtailadmin/tests/tests.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/wagtail/wagtailadmin/tests/tests.py b/wagtail/wagtailadmin/tests/tests.py index 4d5491f1d..bc8362b46 100644 --- a/wagtail/wagtailadmin/tests/tests.py +++ b/wagtail/wagtailadmin/tests/tests.py @@ -43,3 +43,17 @@ class TestSendEmailTask(TestCase): self.assertEqual(mail.outbox[0].subject, "Test subject") self.assertEqual(mail.outbox[0].body, "Test content") self.assertEqual(mail.outbox[0].to, ["nobody@email.com"]) + + +class TestExplorerNavView(TestCase, WagtailTestUtils): + def setUp(self): + self.homepage = Page.objects.get(id=2).specific + self.login() + + def test_explorer_nav_view(self): + response = self.client.get(reverse('wagtailadmin_explorer_nav')) + + # Check response + self.assertEqual(response.status_code, 200) + self.assertTemplateUsed('wagtailadmin/shared/explorer_nav.html') + self.assertEqual(response.context['nodes'][0][0], self.homepage) From 133e0c8547ef120c0523aad33c41e119f692eed6 Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Fri, 18 Jul 2014 16:58:38 +0100 Subject: [PATCH 50/63] Fixed typo --- docs/releases/0.5.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/releases/0.5.rst b/docs/releases/0.5.rst index fa7012c2e..f5dcd726b 100644 --- a/docs/releases/0.5.rst +++ b/docs/releases/0.5.rst @@ -35,7 +35,7 @@ Admin * Explorer nav now rendered separately and fetched with AJAX when needed. - This improves the general performance of the amdin interface for large sites. + This improves the general performance of the admin interface for large sites. Bug fixes From 060219ee48daddf8d487cd2edb8f201ccb11197b Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Fri, 18 Jul 2014 17:32:41 +0100 Subject: [PATCH 51/63] Revert "Allow RouteResult to return a view" This reverts commit bbbc83c56e9e627160af46061ce0183c23a7e072. --- wagtail/wagtailcore/url_routing.py | 5 ++--- wagtail/wagtailcore/views.py | 4 ++-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/wagtail/wagtailcore/url_routing.py b/wagtail/wagtailcore/url_routing.py index 60566120b..0d7a5e1c4 100644 --- a/wagtail/wagtailcore/url_routing.py +++ b/wagtail/wagtailcore/url_routing.py @@ -6,11 +6,10 @@ class RouteResult(object): a Page instance that we will call serve(*args, **kwargs) on, rather than a view function. """ - def __init__(self, page, view=None, args=None, kwargs=None): + def __init__(self, page, args=None, kwargs=None): self.page = page self.args = args or [] self.kwargs = kwargs or {} - self.view = view or page.serve def __getitem__(self, index): - return (self.page, self.view, self.args, self.kwargs)[index] + return (self.page, self.args, self.kwargs)[index] diff --git a/wagtail/wagtailcore/views.py b/wagtail/wagtailcore/views.py index 28a38249b..b955efa54 100644 --- a/wagtail/wagtailcore/views.py +++ b/wagtail/wagtailcore/views.py @@ -25,13 +25,13 @@ def serve(request, path): ) return route_result - (page, view, args, kwargs) = route_result + (page, args, kwargs) = route_result for fn in hooks.get_hooks('before_serve_page'): result = fn(page, request, args, kwargs) if isinstance(result, HttpResponse): return result - return view(request, *args, **kwargs) + return page.serve(request, *args, **kwargs) def authenticate_with_password(request, page_view_restriction_id, page_id): From 152d02d6f25320cea276c84829fa193a10dcbff4 Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Fri, 18 Jul 2014 17:32:50 +0100 Subject: [PATCH 52/63] Revert "Fixed broken test" This reverts commit 911ba9ec0684bc6f68ea80d9b7fe5db267e34fd7. --- wagtail/wagtailcore/tests/test_page_model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wagtail/wagtailcore/tests/test_page_model.py b/wagtail/wagtailcore/tests/test_page_model.py index 1875a6841..af12fa705 100644 --- a/wagtail/wagtailcore/tests/test_page_model.py +++ b/wagtail/wagtailcore/tests/test_page_model.py @@ -138,7 +138,7 @@ class TestRouting(TestCase): request = HttpRequest() request.path = '/events/christmas/' - (found_page, view, args, kwargs) = homepage.route(request, ['events', 'christmas']) + (found_page, args, kwargs) = homepage.route(request, ['events', 'christmas']) self.assertEqual(found_page, christmas_page) def test_request_serving(self): From 48845bad8e4d70e036c925b9a573939ded1e1beb Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Fri, 18 Jul 2014 17:40:04 +0100 Subject: [PATCH 53/63] Rewrote superpage to no longer need core changes --- wagtail/contrib/wagtailroutablepage/models.py | 9 ++++++++- wagtail/contrib/wagtailroutablepage/tests.py | 10 +++++----- wagtail/tests/models.py | 6 +++--- 3 files changed, 16 insertions(+), 9 deletions(-) diff --git a/wagtail/contrib/wagtailroutablepage/models.py b/wagtail/contrib/wagtailroutablepage/models.py index f853208af..926e5f48a 100644 --- a/wagtail/contrib/wagtailroutablepage/models.py +++ b/wagtail/contrib/wagtailroutablepage/models.py @@ -55,12 +55,19 @@ class RoutablePage(Page): path += '/'.join(path_components) + '/' view, args, kwargs = self.resolve_subpage(path) - return RouteResult(self, view=view, args=args, kwargs=kwargs) + return RouteResult(self, args=(view, args, kwargs)) except Http404: pass return super(RoutablePage, self).route(request, path_components) + def serve(self, request, view, args, kwargs): + return view(request, *args, **kwargs) + + def serve_preview(self, request, mode_name): + view, args, kwargs = self.resolve_subpage('/') + return view(*args, **kwargs) + is_abstract = True class Meta: diff --git a/wagtail/contrib/wagtailroutablepage/tests.py b/wagtail/contrib/wagtailroutablepage/tests.py index 10eac4d70..505df45b3 100644 --- a/wagtail/contrib/wagtailroutablepage/tests.py +++ b/wagtail/contrib/wagtailroutablepage/tests.py @@ -13,10 +13,10 @@ class TestRoutablePage(TestCase): live=True, )) - def test_resolve_serve_view(self): + def test_resolve_main_view(self): view, args, kwargs = self.routable_page.resolve_subpage('/') - self.assertEqual(view, self.routable_page.serve) + self.assertEqual(view, self.routable_page.main) self.assertEqual(args, ()) self.assertEqual(kwargs, {}) @@ -41,7 +41,7 @@ class TestRoutablePage(TestCase): self.assertEqual(args, ('joe-bloggs', )) self.assertEqual(kwargs, {}) - def test_reverse_serve_view(self): + def test_reverse_main_view(self): url = self.routable_page.reverse_subpage('main') self.assertEqual(url, '') @@ -61,10 +61,10 @@ class TestRoutablePage(TestCase): self.assertEqual(url, 'external/joe-bloggs/') - def test_get_serve_view(self): + def test_get_main_view(self): response = self.client.get(self.routable_page.url) - self.assertContains(response, "SERVE VIEW") + self.assertContains(response, "MAIN VIEW") def test_get_archive_by_year_view(self): response = self.client.get(self.routable_page.url + 'archive/year/2014/') diff --git a/wagtail/tests/models.py b/wagtail/tests/models.py index f3a68e1cb..15dd57eaa 100644 --- a/wagtail/tests/models.py +++ b/wagtail/tests/models.py @@ -400,7 +400,7 @@ def routable_page_external_view(request, arg): class RoutablePageTest(RoutablePage): subpage_urls = ( - url(r'^$', 'serve', name='main'), + url(r'^$', 'main', name='main'), url(r'^archive/year/(\d+)/$', 'archive_by_year', name='archive_by_year'), url(r'^archive/author/(?P.+)/$', 'archive_by_author', name='archive_by_author'), url(r'^external/(.+)/$', routable_page_external_view, name='external_view') @@ -412,5 +412,5 @@ class RoutablePageTest(RoutablePage): def archive_by_author(self, request, author_slug): return HttpResponse("ARCHIVE BY AUTHOR: " + author_slug) - def serve(self, request): - return HttpResponse("SERVE VIEW") + def main(self, request): + return HttpResponse("MAIN VIEW") From f273331d38c2c1aee500d6f611f4787cdd004eb5 Mon Sep 17 00:00:00 2001 From: Matt Westcott Date: Mon, 21 Jul 2014 15:52:19 +0100 Subject: [PATCH 54/63] Copyediting of routable_page docs, and longer explanation of what you would use it for --- docs/routable_page.rst | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/routable_page.rst b/docs/routable_page.rst index 5f82cd962..fffcb4983 100644 --- a/docs/routable_page.rst +++ b/docs/routable_page.rst @@ -4,15 +4,17 @@ Embedding URL configuration in Pages .. versionadded:: 0.5 -This document describes how to use Wagtails ``RoutablePage`` class. This class is designed for embedding URL configuration into pages. +The ``RoutablePage`` class provides a convenient way for a page to respond on multiple sub-URLs with different views. For example, a blog section on a site might provide several different types of index page at URLs like ``/blog/2013/06/``, ``/blog/authors/bob/``, ``/blog/tagged/python/``, all served by the same ``BlogIndex`` page. + +A ``RoutablePage`` exists within the page tree like any other page, but URL paths underneath it are checked against a list of patterns, using Django's urlconf scheme. If none of the patterns match, control is passed to subpages as usual (or failing that, a 404 error is thrown). The basics ========== -To use ``RoutablePage``. You need to make your class inherit from :class:`wagtail.contrib.wagtailroutablepage.models.RoutablePage` and configure the ``subpage_urls`` attribute with your URL configuration. +To use ``RoutablePage``, you need to make your class inherit from :class:`wagtail.contrib.wagtailroutablepage.models.RoutablePage` and configure the ``subpage_urls`` attribute with your URL configuration. -Heres a quick example of en ``EventPage`` with three views: +Here's an example of an ``EventPage`` with three views: .. code-block:: python From 00046639c7032826e80bb081121b6abc63d942a2 Mon Sep 17 00:00:00 2001 From: Matt Westcott Date: Mon, 21 Jul 2014 16:03:28 +0100 Subject: [PATCH 55/63] Added routable page to release notes and changelog --- CHANGELOG.txt | 1 + docs/releases/0.5.rst | 7 +++++++ docs/routable_page.rst | 2 ++ 3 files changed, 10 insertions(+) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 600dc4997..379c70e4e 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -3,6 +3,7 @@ Changelog 0.5 (xx.xx.20xx) ~~~~~~~~~~~~~~~~ + * Added RoutablePage model to allow embedding Django-style URL routing within a page * Explorer nav now rendered separately and fetched with AJAX when needed * Added decorator syntax for hooks * Replaced lxml dependency with html5lib, to simplify installation diff --git a/docs/releases/0.5.rst b/docs/releases/0.5.rst index f5dcd726b..faceac4ae 100644 --- a/docs/releases/0.5.rst +++ b/docs/releases/0.5.rst @@ -10,6 +10,13 @@ Wagtail 0.5 release notes - IN DEVELOPMENT What's new ========== +RoutablePage +~~~~~~~~~~~~ + +A ``RoutablePage`` model has been added to allow embedding Django-style URL routing within a page. + +:ref:`routable_page` + Minor features ~~~~~~~~~~~~~~ diff --git a/docs/routable_page.rst b/docs/routable_page.rst index fffcb4983..438c9625e 100644 --- a/docs/routable_page.rst +++ b/docs/routable_page.rst @@ -1,3 +1,5 @@ +.. _routable_page: + ==================================== Embedding URL configuration in Pages ==================================== From 9fc905c5a156b4cbe08cd8b5201603bcb19aa0a8 Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Tue, 22 Jul 2014 09:47:21 +0100 Subject: [PATCH 56/63] Don't fire page_unpublished signal when deleting non-live pages --- .../wagtailadmin/tests/test_pages_views.py | 27 +++++++++++++++++++ wagtail/wagtailadmin/views/pages.py | 5 +++- 2 files changed, 31 insertions(+), 1 deletion(-) diff --git a/wagtail/wagtailadmin/tests/test_pages_views.py b/wagtail/wagtailadmin/tests/test_pages_views.py index 266e693ab..20e88de5d 100644 --- a/wagtail/wagtailadmin/tests/test_pages_views.py +++ b/wagtail/wagtailadmin/tests/test_pages_views.py @@ -819,6 +819,33 @@ class TestPageDelete(TestCase, WagtailTestUtils): self.assertEqual(signal_page[0], self.child_page) self.assertEqual(signal_page[0], signal_page[0].specific) + def test_page_delete_notlive_post(self): + # Same as above, but this makes sure the page_unpublished signal is not fired + # when if the page is not live when it is deleted + + # Unpublish the page + self.child_page.live = False + self.child_page.save() + + # Connect a mock signal handler to page_unpublished signal + signal_fired = [False] + def page_unpublished_handler(sender, instance, **kwargs): + signal_fired[0] = True + page_unpublished.connect(page_unpublished_handler) + + # Post + post_data = {'hello': 'world'} # For some reason, this test doesn't work without a bit of POST data + response = self.client.post(reverse('wagtailadmin_pages_delete', args=(self.child_page.id, )), post_data) + + # Should be redirected to explorer page + self.assertRedirects(response, reverse('wagtailadmin_explore', args=(self.root_page.id, ))) + + # Check that the page is gone + self.assertEqual(Page.objects.filter(path__startswith=self.root_page.path, slug='hello-world').count(), 0) + + # Check that the page_unpublished signal was not fired + self.assertFalse(signal_fired[0]) + class TestPageSearch(TestCase, WagtailTestUtils): def setUp(self): diff --git a/wagtail/wagtailadmin/views/pages.py b/wagtail/wagtailadmin/views/pages.py index 18746669e..8f710b397 100644 --- a/wagtail/wagtailadmin/views/pages.py +++ b/wagtail/wagtailadmin/views/pages.py @@ -376,7 +376,10 @@ def delete(request, page_id): raise PermissionDenied if request.POST: - page_unpublished.send(sender=page.specific_class, instance=page.specific) + # If the page is live, send the unpublished signal + if page.live: + page_unpublished.send(sender=page.specific_class, instance=page.specific) + parent_id = page.get_parent().id page.delete() messages.success(request, _("Page '{0}' deleted.").format(page.title)) From b693ed7b39d576f989774134a18d4b36e24777a3 Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Tue, 22 Jul 2014 10:59:01 +0100 Subject: [PATCH 57/63] Fire unpublished_signal after unpublishing the page --- wagtail/wagtailadmin/views/pages.py | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/wagtail/wagtailadmin/views/pages.py b/wagtail/wagtailadmin/views/pages.py index 956e484ac..3567aeb95 100644 --- a/wagtail/wagtailadmin/views/pages.py +++ b/wagtail/wagtailadmin/views/pages.py @@ -383,12 +383,13 @@ def delete(request, page_id): raise PermissionDenied if request.POST: - # If the page is live, send the unpublished signal - if page.live: - page_unpublished.send(sender=page.specific_class, instance=page.specific) - parent_id = page.get_parent().id page.delete() + + # If the page is live, send the unpublished signal + if page.live: + page_unpublished.send(sender=page.specific_class, instance=page.specific) + messages.success(request, _("Page '{0}' deleted.").format(page.title)) for fn in hooks.get_hooks('after_delete_page'): @@ -546,13 +547,17 @@ def unpublish(request, page_id): raise PermissionDenied if request.POST: - page_unpublished.send(sender=page.specific_class, instance=page.specific) parent_id = page.get_parent().id page.live = False page.save() + # Since page is unpublished clear the approved_go_live_at of all revisions page.revisions.update(approved_go_live_at=None) + + page_unpublished.send(sender=page.specific_class, instance=page.specific) + messages.success(request, _("Page '{0}' unpublished.").format(page.title)) + return redirect('wagtailadmin_explore', parent_id) return render(request, 'wagtailadmin/pages/confirm_unpublish.html', { From 633dd8243f645d15015376904218170536c2b43e Mon Sep 17 00:00:00 2001 From: Matt Westcott Date: Tue, 22 Jul 2014 11:08:46 +0100 Subject: [PATCH 58/63] Fix test failure (fetch specific_class and specific_page before deleting page) --- wagtail/wagtailadmin/views/pages.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/wagtail/wagtailadmin/views/pages.py b/wagtail/wagtailadmin/views/pages.py index 3567aeb95..73b340854 100644 --- a/wagtail/wagtailadmin/views/pages.py +++ b/wagtail/wagtailadmin/views/pages.py @@ -383,12 +383,18 @@ def delete(request, page_id): raise PermissionDenied if request.POST: + if page.live: + # fetch params to pass to the page_unpublished_signal, before the + # deletion happens + specific_class = page.specific_class + specific_page = page.specific + parent_id = page.get_parent().id page.delete() # If the page is live, send the unpublished signal if page.live: - page_unpublished.send(sender=page.specific_class, instance=page.specific) + page_unpublished.send(sender=specific_class, instance=specific_page) messages.success(request, _("Page '{0}' deleted.").format(page.title)) From 6a01b640f86acb64e045bb2e8329914d8277fb8c Mon Sep 17 00:00:00 2001 From: Matt Westcott Date: Tue, 22 Jul 2014 11:09:02 +0100 Subject: [PATCH 59/63] add changelog/release notes for page_published signal --- CHANGELOG.txt | 1 + docs/releases/0.5.rst | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 379c70e4e..d7f66ec93 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -7,6 +7,7 @@ Changelog * Explorer nav now rendered separately and fetched with AJAX when needed * Added decorator syntax for hooks * Replaced lxml dependency with html5lib, to simplify installation + * Added page_unpublished signal 0.4.1 (14.07.2014) ~~~~~~~~~~~~~~~~~~ diff --git a/docs/releases/0.5.rst b/docs/releases/0.5.rst index faceac4ae..a0b52313e 100644 --- a/docs/releases/0.5.rst +++ b/docs/releases/0.5.rst @@ -35,6 +35,7 @@ Core ) * The lxml library (used for whitelisting and rewriting of rich text fields) has been replaced with the pure-python html5lib library, to simplify installation. + * A ``page_unpublished`` signal has been added. Admin From 3b28b85f589cb10ffc58280f4c345341e18f4c53 Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Tue, 15 Jul 2014 12:55:04 +0100 Subject: [PATCH 60/63] Fire page_published and page_unpublished signals from scheduled publishing --- .../management/commands/publish_scheduled_pages.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/wagtail/wagtailcore/management/commands/publish_scheduled_pages.py b/wagtail/wagtailcore/management/commands/publish_scheduled_pages.py index 9a69f5f2e..a1493b321 100644 --- a/wagtail/wagtailcore/management/commands/publish_scheduled_pages.py +++ b/wagtail/wagtailcore/management/commands/publish_scheduled_pages.py @@ -5,7 +5,9 @@ from optparse import make_option from django.core.management.base import BaseCommand from django.utils import dateparse, timezone + from wagtail.wagtailcore.models import Page, PageRevision +from wagtail.wagtailcore.signals import page_published, page_unpublished def revision_date_expired(r): @@ -56,6 +58,10 @@ class Command(BaseCommand): else: expired_pages.update(expired=True, live=False) + # Fire page_unpublished signal for all expired pages + for page in expired_pages: + page_unpublished.send(sender=page.specific_class, instance=page.specific) + # 2. get all page revisions for moderation that have been expired expired_revs = [ r for r in PageRevision.objects.filter( @@ -108,3 +114,6 @@ class Command(BaseCommand): # just run publish for the revision -- since the approved go # live datetime is before now it will make the page live rp.publish() + + # Fire page_published signal + page_unpublished.send(sender=rp.page.specific_class, instance=rp.page.specific) From dbc958a086550a3fe2b5f438ce688cb51c97396f Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Tue, 15 Jul 2014 15:21:32 +0100 Subject: [PATCH 61/63] Fixed a couple of typos --- .../management/commands/publish_scheduled_pages.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wagtail/wagtailcore/management/commands/publish_scheduled_pages.py b/wagtail/wagtailcore/management/commands/publish_scheduled_pages.py index a1493b321..7f4086733 100644 --- a/wagtail/wagtailcore/management/commands/publish_scheduled_pages.py +++ b/wagtail/wagtailcore/management/commands/publish_scheduled_pages.py @@ -56,12 +56,12 @@ class Command(BaseCommand): else: print("No expired pages to be deactivated found.") else: - expired_pages.update(expired=True, live=False) - # Fire page_unpublished signal for all expired pages for page in expired_pages: page_unpublished.send(sender=page.specific_class, instance=page.specific) + expired_pages.update(expired=True, live=False) + # 2. get all page revisions for moderation that have been expired expired_revs = [ r for r in PageRevision.objects.filter( @@ -116,4 +116,4 @@ class Command(BaseCommand): rp.publish() # Fire page_published signal - page_unpublished.send(sender=rp.page.specific_class, instance=rp.page.specific) + page_published.send(sender=rp.page.specific_class, instance=rp.page.specific) From 16fae26882f7103481c599ff9119e870ec04b705 Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Tue, 15 Jul 2014 15:22:01 +0100 Subject: [PATCH 62/63] Added tests for signal firing from publish_scheduled_pages --- .../tests/test_management_commands.py | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/wagtail/wagtailcore/tests/test_management_commands.py b/wagtail/wagtailcore/tests/test_management_commands.py index ad1aa33aa..d521497dd 100644 --- a/wagtail/wagtailcore/tests/test_management_commands.py +++ b/wagtail/wagtailcore/tests/test_management_commands.py @@ -7,6 +7,7 @@ from django.core import management from django.utils import timezone from wagtail.wagtailcore.models import Page, PageRevision +from wagtail.wagtailcore.signals import page_published, page_unpublished from wagtail.tests.models import SimplePage @@ -96,6 +97,15 @@ class TestPublishScheduledPagesCommand(TestCase): self.root_page = Page.objects.get(id=2) def test_go_live_page_will_be_published(self): + # Connect a mock signal handler to page_published signal + signal_fired = [False] + signal_page = [None] + def page_published_handler(sender, instance, **kwargs): + signal_fired[0] = True + signal_page[0] = instance + page_published.connect(page_published_handler) + + page = SimplePage( title="Hello world!", slug="hello-world", @@ -116,6 +126,11 @@ class TestPublishScheduledPagesCommand(TestCase): self.assertTrue(p.live) self.assertFalse(PageRevision.objects.filter(page=p).exclude(approved_go_live_at__isnull=True).exists()) + # Check that the page_published signal was fired + self.assertTrue(signal_fired[0]) + self.assertEqual(signal_page[0], page) + self.assertEqual(signal_page[0], signal_page[0].specific) + def test_future_go_live_page_will_not_be_published(self): page = SimplePage( title="Hello world!", @@ -138,6 +153,15 @@ class TestPublishScheduledPagesCommand(TestCase): self.assertTrue(PageRevision.objects.filter(page=p).exclude(approved_go_live_at__isnull=True).exists()) def test_expired_page_will_be_unpublished(self): + # Connect a mock signal handler to page_unpublished signal + signal_fired = [False] + signal_page = [None] + def page_unpublished_handler(sender, instance, **kwargs): + signal_fired[0] = True + signal_page[0] = instance + page_unpublished.connect(page_unpublished_handler) + + page = SimplePage( title="Hello world!", slug="hello-world", @@ -155,6 +179,11 @@ class TestPublishScheduledPagesCommand(TestCase): self.assertFalse(p.live) self.assertTrue(p.expired) + # Check that the page_published signal was fired + self.assertTrue(signal_fired[0]) + self.assertEqual(signal_page[0], page) + self.assertEqual(signal_page[0], signal_page[0].specific) + def test_future_expired_page_will_not_be_unpublished(self): page = SimplePage( title="Hello world!", From 938758b7d2bd199ed620f01ccf6fce43dd771aad Mon Sep 17 00:00:00 2001 From: Matt Westcott Date: Tue, 22 Jul 2014 11:28:03 +0100 Subject: [PATCH 63/63] fire page_unpublished signals after page expiry has happened in the db --- .../management/commands/publish_scheduled_pages.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/wagtail/wagtailcore/management/commands/publish_scheduled_pages.py b/wagtail/wagtailcore/management/commands/publish_scheduled_pages.py index 7f4086733..d1ec5eecb 100644 --- a/wagtail/wagtailcore/management/commands/publish_scheduled_pages.py +++ b/wagtail/wagtailcore/management/commands/publish_scheduled_pages.py @@ -56,12 +56,16 @@ class Command(BaseCommand): else: print("No expired pages to be deactivated found.") else: - # Fire page_unpublished signal for all expired pages - for page in expired_pages: - page_unpublished.send(sender=page.specific_class, instance=page.specific) + # need to get the list of expired pages before the update, + # so that we can fire the page_unpublished signal on them afterwards + expired_pages_list = list(expired_pages) expired_pages.update(expired=True, live=False) + # Fire page_unpublished signal for all expired pages + for page in expired_pages_list: + page_unpublished.send(sender=page.specific_class, instance=page.specific) + # 2. get all page revisions for moderation that have been expired expired_revs = [ r for r in PageRevision.objects.filter(