James Moger
2013-05-25 325310ddb0970fc26833045efd624cde7b5c44ad
Added Iconic font and replaced push log gravatars with Iconic symbols
15 files added
6 files modified
2040 ■■■■■ changed files
NOTICE 7 ●●●●● patch | view | raw | blame | history
releases.moxie 1 ●●●● patch | view | raw | blame | history
src/main/java/com/gitblit/wicket/panels/PushesPanel.html 2 ●●● patch | view | raw | blame | history
src/main/java/com/gitblit/wicket/panels/PushesPanel.java 8 ●●●● patch | view | raw | blame | history
src/main/resources/bootstrap/css/iconic.css 569 ●●●●● patch | view | raw | blame | history
src/main/resources/bootstrap/font/iconic_fill.afm 170 ●●●●● patch | view | raw | blame | history
src/main/resources/bootstrap/font/iconic_fill.css 1 ●●●● patch | view | raw | blame | history
src/main/resources/bootstrap/font/iconic_fill.eot patch | view | raw | blame | history
src/main/resources/bootstrap/font/iconic_fill.otf patch | view | raw | blame | history
src/main/resources/bootstrap/font/iconic_fill.svg 539 ●●●●● patch | view | raw | blame | history
src/main/resources/bootstrap/font/iconic_fill.ttf patch | view | raw | blame | history
src/main/resources/bootstrap/font/iconic_fill.woff patch | view | raw | blame | history
src/main/resources/bootstrap/font/iconic_stroke.afm 170 ●●●●● patch | view | raw | blame | history
src/main/resources/bootstrap/font/iconic_stroke.css 1 ●●●● patch | view | raw | blame | history
src/main/resources/bootstrap/font/iconic_stroke.eot patch | view | raw | blame | history
src/main/resources/bootstrap/font/iconic_stroke.otf patch | view | raw | blame | history
src/main/resources/bootstrap/font/iconic_stroke.svg 553 ●●●●● patch | view | raw | blame | history
src/main/resources/bootstrap/font/iconic_stroke.ttf patch | view | raw | blame | history
src/main/resources/bootstrap/font/iconic_stroke.woff patch | view | raw | blame | history
src/main/resources/gitblit.css 2 ●●● patch | view | raw | blame | history
src/site/design.mkd 17 ●●●● patch | view | raw | blame | history
NOTICE
@@ -255,3 +255,10 @@
   http://tukaani.org/xz/java.html
---------------------------------------------------------------------------
Iconic
---------------------------------------------------------------------------
   Iconic, release under the
   Creative Commons Share Alike 3.0 License.
   http://somerandomdude.com/work/iconic
releases.moxie
@@ -86,6 +86,7 @@
    
    dependencyChanges:
    - JGit 3.0.0-SNAPSHOT
    - Iconic font
    
    settings:
    - { name: 'git.daemonBindInterface', defaultValue: 'localhost' }
src/main/java/com/gitblit/wicket/panels/PushesPanel.html
@@ -9,7 +9,7 @@
<div wicket:id="push" style="border-bottom: 1px solid #ddd;margin-bottom: 15px;">
    <table style="padding: 3px 0px;">
    <tr>
        <td class="hidden-phone" style="vertical-align: top;"><span wicket:id="whoAvatar"></span></td>
        <td class="hidden-phone" style="vertical-align: top;padding-top:10px"><i style="font-size:3.25em;color:#bbb;" wicket:id="pushIcon"></i></td>
        <td style="padding-left: 7px;">
            <div>
                <span wicket:id="whenPushed"></span> <span wicket:id="refRewind" class="alert alert-error" style="padding: 1px 5px;font-size: 10px;font-weight: bold;margin-left: 10px;">[rewind]</span>
src/main/java/com/gitblit/wicket/panels/PushesPanel.java
@@ -90,7 +90,13 @@
                }
                
                pushItem.add(WicketUtils.createDateLabel("whenPushed", push.date, getTimeZone(), getTimeUtils()));
                pushItem.add(new GravatarImage("whoAvatar", push.getCommitterIdent(), 40));
                Label pushIcon = new Label("pushIcon");
                if (isTag) {
                    WicketUtils.setCssClass(pushIcon, "iconic-tag");
                } else {
                    WicketUtils.setCssClass(pushIcon, "iconic-loop");
                }
                pushItem.add(pushIcon);
                if (push.user.username.equals(push.user.emailAddress) && push.user.emailAddress.indexOf('@') > -1) {
                    // username is an email address - 1.2.1 push log bug
                    pushItem.add(new Label("whoPushed", push.user.getDisplayName()));
src/main/resources/bootstrap/css/iconic.css
New file
@@ -0,0 +1,569 @@
/*
 * Iconic CSS by Jansy
 * http://jasny.github.io/bootstrap
 *
 */
@font-face {
  font-family: IconicStroke;
  font-weight: normal;
  src: url(../font/iconic_stroke.eot);
  src: local('IconicStroke'), url(../font/iconic_stroke.eot?#iefix) format('embedded-opentype'), url(../font/iconic_stroke.woff) format('woff'), url(../font/iconic_stroke.ttf) format('truetype'), url(../font/iconic_stroke.svg#iconic) format('svg'), url(../font/iconic_stroke.otf) format('opentype');
}
@font-face {
  font-family: IconicFill;
  font-weight: normal;
  src: url(../font/iconic_fill.eot);
  src: local('IconicFill'), url(../font/iconic_fill.eot?#iefix) format('embedded-opentype'), url(../font/iconic_fill.woff) format('woff'), url(../font/iconic_fill.ttf) format('truetype'), url(../font/iconic_fill.svg#iconic) format('svg'), url(../font/iconic_fill.otf) format('opentype');
}
@media screen, print {
  [class*="iconic-"] {
    font-style: inherit;
    font-weight: normal;
    vertical-align: bottom;
  }
  [class*="iconic-"]:before {
    display: inline-block;
    width: 1em;
    font-family: IconicFill;
    font-size: 0.9em;
    text-align: center;
    vertical-align: middle;
    content: "";
  }
  .iconic-stroke:before {
    font-family: IconicStroke;
  }
  .iconic-hash:before {
    content: '\23';
  }
  .iconic-question-mark:before {
    content: '\3f';
  }
  .iconic-at:before {
    content: '\40';
  }
  .iconic-pilcrow:before {
    content: '\b6';
  }
  .iconic-info:before {
    content: '\2139';
  }
  .iconic-arrow-left:before {
    content: '\2190';
  }
  .iconic-arrow-up:before {
    content: '\2191';
  }
  .iconic-arrow-right:before {
    content: '\2192';
  }
  .iconic-arrow-down:before {
    content: '\2193';
  }
  .iconic-home:before {
    content: '\2302';
  }
  .iconic-sun:before {
    content: '\2600';
  }
  .iconic-cloud:before {
    content: '\2601';
  }
  .iconic-umbrella:before {
    content: '\2602';
  }
  .iconic-star:before {
    content: '\2605';
  }
  .iconic-moon:before {
    content: '\263e';
  }
  .iconic-heart:before {
    content: '\2764';
  }
  .iconic-cog:before {
    content: '\2699';
  }
  .iconic-bolt:before {
    content: '\26a1';
  }
  .iconic-key:before {
    content: '\26bf';
  }
  .iconic-rain:before {
    content: '\26c6';
  }
  .iconic-denied:before {
    content: '\26d4';
  }
  .iconic-mail:before {
    content: '\2709';
  }
  .iconic-pen:before {
    content: '\270e';
  }
  .iconic-x:before {
    content: '\2717';
  }
  .iconic-o-x:before {
    content: '\2718';
  }
  .iconic-check:before {
    content: '\2713';
  }
  .iconic-o-check:before {
    content: '\2714';
  }
  .iconic-left-quote:before {
    content: '\275d';
  }
  .iconic-right-quote:before {
    content: '\275e';
  }
  .iconic-plus:before {
    content: '\2795';
  }
  .iconic-minus:before {
    content: '\2796';
  }
  .iconic-curved-arrow:before {
    content: '\2935';
  }
  .iconic-document-alt:before {
    content: '\e000';
  }
  .iconic-calendar:before {
    content: '\e001';
  }
  .iconic-map-pin-alt:before {
    content: '\e002';
  }
  .iconic-comment-alt1:before {
    content: '\e003';
  }
  .iconic-comment-alt2:before {
    content: '\e004';
  }
  .iconic-pen-alt:before {
    content: '\e005';
  }
  .iconic-pen-alt2:before {
    content: '\e006';
  }
  .iconic-chat-alt:before {
    content: '\e007';
  }
  .iconic-o-plus:before {
    content: '\e008';
  }
  .iconic-o-minus:before {
    content: '\e009';
  }
  .iconic-bars-alt:before {
    content: '\e00a';
  }
  .iconic-book-alt:before {
    content: '\e00b';
  }
  .iconic-aperture-alt:before {
    content: '\e00c';
  }
  .iconic-beaker-alt:before {
    content: '\e010';
  }
  .iconic-left-quote-alt:before {
    content: '\e011';
  }
  .iconic-right-quote-alt:before {
    content: '\e012';
  }
  .iconic-o-arrow-left:before {
    content: '\e013';
  }
  .iconic-o-arrow-up:before {
    content: '\e014';
  }
  .iconic-o-arrow-right:before {
    content: '\e015';
  }
  .iconic-o-arrow-down:before {
    content: '\e016';
  }
  .iconic-o-arrow-left-alt:before {
    content: '\e017';
  }
  .iconic-o-arrow-up-alt:before {
    content: '\e018';
  }
  .iconic-o-arrow-right-alt:before {
    content: '\e019';
  }
  .iconic-o-arrow-down-alt:before {
    content: '\e01a';
  }
  .iconic-brush:before {
    content: '\e01b';
  }
  .iconic-brush-alt:before {
    content: '\e01c';
  }
  .iconic-eyedropper:before {
    content: '\e01e';
  }
  .iconic-layers:before {
    content: '\e01f';
  }
  .iconic-layers-alt:before {
    content: '\e020';
  }
  .iconic-compass:before {
    content: '\e021';
  }
  .iconic-award:before {
    content: '\e022';
  }
  .iconic-beaker:before {
    content: '\e023';
  }
  .iconic-steering-wheel:before {
    content: '\e024';
  }
  .iconic-eye:before {
    content: '\e025';
  }
  .iconic-aperture:before {
    content: '\e026';
  }
  .iconic-image:before {
    content: '\e027';
  }
  .iconic-chart:before {
    content: '\e028';
  }
  .iconic-chart-alt:before {
    content: '\e029';
  }
  .iconic-target:before {
    content: '\e02a';
  }
  .iconic-tag:before {
    content: '\e02b';
  }
  .iconic-rss:before {
    content: '\e02c';
  }
  .iconic-rss-alt:before {
    content: '\e02d';
  }
  .iconic-share:before {
    content: '\e02e';
  }
  .iconic-undo:before {
    content: '\e02f';
  }
  .iconic-reload:before {
    content: '\e030';
  }
  .iconic-reload-alt:before {
    content: '\e031';
  }
  .iconic-loop:before {
    content: '\e032';
  }
  .iconic-loop-alt:before {
    content: '\e033';
  }
  .iconic-back-forth:before {
    content: '\e034';
  }
  .iconic-back-forth-alt:before {
    content: '\e035';
  }
  .iconic-spin:before {
    content: '\e036';
  }
  .iconic-spin-alt:before {
    content: '\e037';
  }
  .iconic-move-horizontal:before {
    content: '\e038';
  }
  .iconic-move-horizontal-alt:before {
    content: '\e039';
  }
  .iconic-o-move-horizontal:before {
    content: '\e03a';
  }
  .iconic-move-vertical:before {
    content: '\e03b';
  }
  .iconic-move-vertical-alt:before {
    content: '\e03c';
  }
  .iconic-o-move-vertical:before {
    content: '\e03d';
  }
  .iconic-move:before {
    content: '\e03e';
  }
  .iconic-move-alt:before {
    content: '\e03f';
  }
  .iconic-o-move:before {
    content: '\e040';
  }
  .iconic-transfer:before {
    content: '\e041';
  }
  .iconic-download:before {
    content: '\e042';
  }
  .iconic-upload:before {
    content: '\e043';
  }
  .iconic-cloud-download:before {
    content: '\e044';
  }
  .iconic-cloud-upload:before {
    content: '\e045';
  }
  .iconic-fork:before {
    content: '\e046';
  }
  .iconic-play:before {
    content: '\e047';
  }
  .iconic-o-play:before {
    content: '\e048';
  }
  .iconic-pause:before {
    content: '\e049';
  }
  .iconic-stop:before {
    content: '\e04a';
  }
  .iconic-eject:before {
    content: '\e04b';
  }
  .iconic-first:before {
    content: '\e04c';
  }
  .iconic-last:before {
    content: '\e04d';
  }
  .iconic-fullscreen:before {
    content: '\e04e';
  }
  .iconic-fullscreen-alt:before {
    content: '\e04f';
  }
  .iconic-fullscreen-exit:before {
    content: '\e050';
  }
  .iconic-fullscreen-exit-alt:before {
    content: '\e051';
  }
  .iconic-equalizer:before {
    content: '\e052';
  }
  .iconic-article:before {
    content: '\e053';
  }
  .iconic-read-more:before {
    content: '\e054';
  }
  .iconic-list:before {
    content: '\e055';
  }
  .iconic-list-nested:before {
    content: '\e056';
  }
  .iconic-cursor:before {
    content: '\e057';
  }
  .iconic-dial:before {
    content: '\e058';
  }
  .iconic-new-window:before {
    content: '\e059';
  }
  .iconic-trash:before {
    content: '\e05a';
  }
  .iconic-battery-half:before {
    content: '\e05b';
  }
  .iconic-battery-empty:before {
    content: '\e05c';
  }
  .iconic-battery-charging:before {
    content: '\e05d';
  }
  .iconic-chat:before {
    content: '\e05e';
  }
  .iconic-mic:before {
    content: '\e05f';
  }
  .iconic-movie:before {
    content: '\e060';
  }
  .iconic-headphones:before {
    content: '\e061';
  }
  .iconic-user:before {
    content: '\e062';
  }
  .iconic-lightbulb:before {
    content: '\e063';
  }
  .iconic-cd:before {
    content: '\e064';
  }
  .iconic-folder:before {
    content: '\e065';
  }
  .iconic-document:before {
    content: '\e066';
  }
  .iconic-pin:before {
    content: '\e067';
  }
  .iconic-map-pin:before {
    content: '\e068';
  }
  .iconic-book:before {
    content: '\e069';
  }
  .iconic-book-alt2:before {
    content: '\e06a';
  }
  .iconic-box:before {
    content: '\e06b';
  }
  .iconic-calendar-alt:before {
    content: '\e06c';
  }
  .iconic-comment:before {
    content: '\e06d';
  }
  .iconic-iphone:before {
    content: '\e06e';
  }
  .iconic-bars:before {
    content: '\e06f';
  }
  .iconic-camera:before {
    content: '\e070';
  }
  .iconic-volume-mute:before {
    content: '\e071';
  }
  .iconic-volume:before {
    content: '\e072';
  }
  .iconic-battery-full:before {
    content: '\e073';
  }
  .iconic-magnifying-glass:before {
    content: '\e074';
  }
  .iconic-lock:before {
    content: '\e075';
  }
  .iconic-unlock:before {
    content: '\e076';
  }
  .iconic-link:before {
    content: '\e077';
  }
  .iconic-wrench:before {
    content: '\e078';
  }
  .iconic-clock:before {
    content: '\e079';
  }
  .iconic-sun-stroke:before {
    font-family: IconicStroke;
    content: '\2600';
  }
  .iconic-moon-stroke:before {
    font-family: IconicStroke;
    content: '\263e';
  }
  .iconic-star-stroke:before {
    font-family: IconicStroke;
    content: '\2605';
  }
  .iconic-heart-stroke:before {
    font-family: IconicStroke;
    content: '\2764';
  }
  .iconic-key-stroke:before {
    font-family: IconicStroke;
    content: '\26bf';
  }
  .iconic-document-alt-stroke:before {
    font-family: IconicStroke;
    content: '\e000';
  }
  .iconic-comment-alt1-stroke:before {
    font-family: IconicStroke;
    content: '\e003';
  }
  .iconic-comment-alt2-stroke:before {
    font-family: IconicStroke;
    content: '\e004';
  }
  .iconic-pen-alt-stroke:before {
    font-family: IconicStroke;
    content: '\e005';
  }
  .iconic-chat-alt-stroke:before {
    font-family: IconicStroke;
    content: '\e007';
  }
  .iconic-award-stroke:before {
    font-family: IconicStroke;
    content: '\e022';
  }
  .iconic-tag-stroke:before {
    font-family: IconicStroke;
    content: '\e02b';
  }
  .iconic-trash-stroke:before {
    font-family: IconicStroke;
    content: '\e05a';
  }
  .iconic-folder-stroke:before {
    font-family: IconicStroke;
    content: '\e065';
  }
  .iconic-document-stroke:before {
    font-family: IconicStroke;
    content: '\e066';
  }
  .iconic-map-pin-stroke:before {
    font-family: IconicStroke;
    content: '\e068';
  }
  .iconic-calendar-alt-stroke:before {
    font-family: IconicStroke;
    content: '\e06c';
  }
  .iconic-comment-stroke:before {
    font-family: IconicStroke;
    content: '\e06d';
  }
  .iconic-lock-stroke:before {
    font-family: IconicStroke;
    content: '\e075';
  }
  .iconic-unlock-stroke:before {
    font-family: IconicStroke;
    content: '\e076';
  }
}
src/main/resources/bootstrap/font/iconic_fill.afm
New file
@@ -0,0 +1,170 @@
StartFontMetrics 2.0
Comment Generated by FontForge 20110222
Comment Creation Date: Sun Apr  1 19:42:26 2012
FontName IconicFill
FullName Iconic Fill
FamilyName Iconic
Weight Medium
Notice (Icons by PJ Onori, font creation script by Yann)
ItalicAngle 0
IsFixedPitch false
UnderlinePosition -100
UnderlineThickness 50
Version 001.000
EncodingScheme ISOLatin1Encoding
FontBBox 14 -14 760 731
Descender -2147483648
StartCharMetrics 151
C 35 ; WX 681 ; N numbersign ; B 15 -14 667 731 ;
C 63 ; WX 402 ; N question ; B 15 -14 388 731 ;
C 64 ; WX 774 ; N at ; B 15 -14 760 731 ;
C 182 ; WX 588 ; N paragraph ; B 15 -14 574 731 ;
C -1 ; WX 495 ; N glyph0 ; B 15 -14 481 731 ;
C -1 ; WX 774 ; N glyph1 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph2 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph3 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph4 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph5 ; B 15 32 760 684 ;
C -1 ; WX 774 ; N glyph6 ; B 15 32 760 684 ;
C -1 ; WX 774 ; N glyph7 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph8 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph9 ; B 15 -14 760 731 ;
C -1 ; WX 728 ; N glyph10 ; B 14 -14 713 731 ;
C -1 ; WX 774 ; N glyph11 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph12 ; B 15 -14 760 731 ;
C -1 ; WX 681 ; N glyph13 ; B 15 -14 667 730 ;
C -1 ; WX 774 ; N glyph14 ; B 15 32 760 684 ;
C -1 ; WX 774 ; N glyph15 ; B 15 79 760 638 ;
C -1 ; WX 774 ; N glyph16 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph17 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph18 ; B 15 172 760 545 ;
C -1 ; WX 588 ; N glyph19 ; B 15 -14 574 731 ;
C -1 ; WX 774 ; N glyph20 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph21 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph22 ; B 15 218 760 498 ;
C -1 ; WX 774 ; N glyph23 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph24 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph25 ; B 15 172 760 545 ;
C -1 ; WX 774 ; N glyph26 ; B 15 32 760 684 ;
C -1 ; WX 402 ; N glyph27 ; B 15 -14 388 731 ;
C -1 ; WX 774 ; N glyph29 ; B 15 32 760 684 ;
C -1 ; WX 588 ; N glyph30 ; B 15 -14 574 731 ;
C -1 ; WX 588 ; N glyph31 ; B 15 32 574 684 ;
C -1 ; WX 774 ; N glyph32 ; B 15 79 760 638 ;
C -1 ; WX 774 ; N glyph33 ; B 15 79 760 638 ;
C -1 ; WX 774 ; N glyph34 ; B 15 32 760 684 ;
C -1 ; WX 774 ; N glyph35 ; B 15 79 760 638 ;
C -1 ; WX 774 ; N glyph36 ; B 15 79 760 638 ;
C -1 ; WX 681 ; N glyph37 ; B 15 32 667 684 ;
C -1 ; WX 774 ; N glyph38 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph39 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph40 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph41 ; B 15 -14 760 731 ;
C -1 ; WX 588 ; N glyph42 ; B 15 -14 574 731 ;
C -1 ; WX 774 ; N glyph43 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph44 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph45 ; B 15 79 760 638 ;
C -1 ; WX 588 ; N glyph46 ; B 15 -14 574 731 ;
C -1 ; WX 774 ; N glyph47 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph48 ; B 15 -12 760 729 ;
C -1 ; WX 774 ; N glyph49 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph50 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph51 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph52 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph53 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph54 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph55 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph56 ; B 15 79 760 638 ;
C -1 ; WX 774 ; N glyph57 ; B 15 79 760 638 ;
C -1 ; WX 774 ; N glyph58 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph59 ; B 15 32 760 684 ;
C -1 ; WX 774 ; N glyph60 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph61 ; B 15 -14 760 731 ;
C -1 ; WX 588 ; N glyph62 ; B 15 -14 574 731 ;
C -1 ; WX 774 ; N glyph63 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph64 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph65 ; B 15 -14 760 731 ;
C -1 ; WX 402 ; N glyph66 ; B 15 -14 388 731 ;
C -1 ; WX 402 ; N glyph67 ; B 15 -14 388 731 ;
C -1 ; WX 774 ; N glyph68 ; B 15 172 760 545 ;
C -1 ; WX 774 ; N glyph69 ; B 15 -14 760 731 ;
C -1 ; WX 588 ; N glyph70 ; B 15 -14 574 731 ;
C -1 ; WX 774 ; N glyph71 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph72 ; B 15 -14 760 731 ;
C -1 ; WX 402 ; N glyph73 ; B 15 -14 388 731 ;
C -1 ; WX 774 ; N glyph74 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph75 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph76 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph77 ; B 14 79 760 638 ;
C -1 ; WX 774 ; N glyph78 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph79 ; B 15 79 760 638 ;
C -1 ; WX 774 ; N glyph80 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph81 ; B 15 125 760 591 ;
C -1 ; WX 774 ; N glyph82 ; B 15 79 760 638 ;
C -1 ; WX 774 ; N glyph83 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph84 ; B 15 79 760 638 ;
C -1 ; WX 774 ; N glyph85 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph86 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph87 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph88 ; B 15 79 760 638 ;
C -1 ; WX 774 ; N glyph89 ; B 15 218 760 498 ;
C -1 ; WX 774 ; N glyph90 ; B 15 -14 760 731 ;
C -1 ; WX 588 ; N glyph91 ; B 15 32 574 684 ;
C -1 ; WX 774 ; N glyph92 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph93 ; B 15 -14 760 731 ;
C -1 ; WX 681 ; N glyph94 ; B 15 -14 667 731 ;
C -1 ; WX 774 ; N glyph95 ; B 15 -14 760 731 ;
C -1 ; WX 495 ; N glyph96 ; B 15 -14 481 731 ;
C -1 ; WX 681 ; N glyph97 ; B 15 -14 667 731 ;
C -1 ; WX 774 ; N glyph98 ; B 15 79 760 638 ;
C -1 ; WX 774 ; N glyph99 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph100 ; B 14 -14 760 731 ;
C -1 ; WX 309 ; N glyph101 ; B 15 -14 295 731 ;
C -1 ; WX 774 ; N glyph102 ; B 15 -14 759 731 ;
C -1 ; WX 681 ; N glyph103 ; B 15 -14 667 731 ;
C -1 ; WX 774 ; N glyph104 ; B 15 -14 760 731 ;
C -1 ; WX 402 ; N glyph105 ; B 15 -14 388 731 ;
C -1 ; WX 774 ; N glyph106 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph107 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph108 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph109 ; B 15 265 760 452 ;
C -1 ; WX 774 ; N glyph110 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph111 ; B 15 32 760 684 ;
C -1 ; WX 774 ; N glyph113 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph114 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph115 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph116 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph117 ; B 15 -14 760 731 ;
C -1 ; WX 681 ; N glyph118 ; B 15 -14 667 731 ;
C -1 ; WX 774 ; N glyph119 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph121 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph122 ; B 15 -14 760 731 ;
C -1 ; WX 309 ; N glyph123 ; B 15 -14 295 731 ;
C -1 ; WX 774 ; N glyph124 ; B 15 58 760 658 ;
C -1 ; WX 588 ; N glyph125 ; B 15 -14 574 731 ;
C -1 ; WX 681 ; N glyph126 ; B 15 -14 667 731 ;
C -1 ; WX 774 ; N glyph127 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph128 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph129 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph130 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph131 ; B 15 -14 760 731 ;
C -1 ; WX 588 ; N glyph132 ; B 15 -14 574 731 ;
C -1 ; WX 774 ; N glyph133 ; B 15 -14 760 731 ;
C -1 ; WX 588 ; N glyph134 ; B 15 -14 574 731 ;
C -1 ; WX 774 ; N glyph135 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph136 ; B 15 32 760 684 ;
C -1 ; WX 774 ; N glyph137 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph138 ; B 15 -14 760 731 ;
C -1 ; WX 588 ; N glyph139 ; B 15 -14 574 731 ;
C -1 ; WX 774 ; N glyph140 ; B 15 172 760 545 ;
C -1 ; WX 774 ; N glyph141 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph142 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph143 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph145 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph146 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph147 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph148 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph149 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph150 ; B 15 -14 760 731 ;
EndCharMetrics
EndFontMetrics
src/main/resources/bootstrap/font/iconic_fill.css
New file
@@ -0,0 +1 @@
@font-face { font-family: 'IconicFill'; src: url('iconic_fill.eot'); src: url('iconic_fill.eot?#iefix') format('embedded-opentype'), url('iconic_fill.ttf') format('truetype'), url('iconic_fill.svg#iconic') format('svg'); font-weight: normal; font-style: normal; }.iconic { display:inline-block; font-family: 'IconicFill'; }.lightbulb:before {content:'\e063';}.equalizer:before {content:'\e052';}.brush_alt:before {content:'\e01c';}.move:before {content:'\e03e';}.tag_fill:before {content:'\e02b';}.book_alt2:before {content:'\e06a';}.layers:before {content:'\e01f';}.chat_alt_fill:before {content:'\e007';}.layers_alt:before {content:'\e020';}.cloud_upload:before {content:'\e045';}.chart_alt:before {content:'\e029';}.fullscreen_exit_alt:before {content:'\e051';}.cloud_download:before {content:'\e044';}.paperclip:before {content:'\e08a';}.heart_fill:before {content:'\2764';}.mail:before {content:'\2709';}.pen_alt_fill:before {content:'\e005';}.check_alt:before {content:'\2718';}.battery_charging:before {content:'\e05d';}.lock_fill:before {content:'\e075';}.stop:before {content:'\e04a';}.arrow_up:before {content:'\2191';}.move_horizontal:before {content:'\e038';}.compass:before {content:'\e021';}.minus_alt:before {content:'\e009';}.battery_empty:before {content:'\e05c';}.comment_fill:before {content:'\e06d';}.map_pin_alt:before {content:'\e002';}.question_mark:before {content:'\003f';}.list:before {content:'\e055';}.upload:before {content:'\e043';}.reload:before {content:'\e030';}.loop_alt4:before {content:'\e035';}.loop_alt3:before {content:'\e034';}.loop_alt2:before {content:'\e033';}.loop_alt1:before {content:'\e032';}.left_quote:before {content:'\275d';}.x:before {content:'\2713';}.last:before {content:'\e04d';}.bars:before {content:'\e06f';}.arrow_left:before {content:'\2190';}.arrow_down:before {content:'\2193';}.download:before {content:'\e042';}.home:before {content:'\2302';}.calendar:before {content:'\e001';}.right_quote_alt:before {content:'\e012';}.unlock_fill:before {content:'\e076';}.fullscreen:before {content:'\e04e';}.dial:before {content:'\e058';}.plus_alt:before {content:'\e008';}.clock:before {content:'\e079';}.movie:before {content:'\e060';}.steering_wheel:before {content:'\e024';}.pen:before {content:'\270e';}.pin:before {content:'\e067';}.denied:before {content:'\26d4';}.left_quote_alt:before {content:'\e011';}.volume_mute:before {content:'\e071';}.umbrella:before {content:'\2602';}.list_nested:before {content:'\e056';}.arrow_up_alt1:before {content:'\e014';}.undo:before {content:'\e02f';}.pause:before {content:'\e049';}.bolt:before {content:'\26a1';}.article:before {content:'\e053';}.read_more:before {content:'\e054';}.beaker:before {content:'\e023';}.beaker_alt:before {content:'\e010';}.battery_full:before {content:'\e073';}.arrow_right:before {content:'\2192';}.iphone:before {content:'\e06e';}.arrow_up_alt2:before {content:'\e018';}.cog:before {content:'\2699';}.award_fill:before {content:'\e022';}.first:before {content:'\e04c';}.trash_fill:before {content:'\e05a';}.image:before {content:'\e027';}.comment_alt1_fill:before {content:'\e003';}.cd:before {content:'\e064';}.right_quote:before {content:'\275e';}.brush:before {content:'\e01b';}.cloud:before {content:'\2601';}.eye:before {content:'\e025';}.play_alt:before {content:'\e048';}.transfer:before {content:'\e041';}.pen_alt2:before {content:'\e006';}.camera:before {content:'\e070';}.move_horizontal_alt2:before {content:'\e03a';}.curved_arrow:before {content:'\2935';}.move_horizontal_alt1:before {content:'\e039';}.aperture:before {content:'\e026';}.reload_alt:before {content:'\e031';}.magnifying_glass:before {content:'\e074';}.calendar_alt_fill:before {content:'\e06c';}.fork:before {content:'\e046';}.box:before {content:'\e06b';}.map_pin_fill:before {content:'\e068';}.bars_alt:before {content:'\e00a';}.volume:before {content:'\e072';}.x_alt:before {content:'\2714';}.link:before {content:'\e077';}.move_vertical:before {content:'\e03b';}.eyedropper:before {content:'\e01e';}.spin:before {content:'\e036';}.rss:before {content:'\e02c';}.info:before {content:'\2139';}.target:before {content:'\e02a';}.cursor:before {content:'\e057';}.key_fill:before {content:'\26bf';}.minus:before {content:'\2796';}.book_alt:before {content:'\e00b';}.headphones:before {content:'\e061';}.hash:before {content:'\0023';}.arrow_left_alt1:before {content:'\e013';}.arrow_left_alt2:before {content:'\e017';}.fullscreen_exit:before {content:'\e050';}.share:before {content:'\e02e';}.fullscreen_alt:before {content:'\e04f';}.comment_alt2_fill:before {content:'\e004';}.moon_fill:before {content:'\263e';}.at:before {content:'\0040';}.chat:before {content:'\e05e';}.move_vertical_alt2:before {content:'\e03d';}.move_vertical_alt1:before {content:'\e03c';}.check:before {content:'\2717';}.mic:before {content:'\e05f';}.book:before {content:'\e069';}.move_alt1:before {content:'\e03f';}.move_alt2:before {content:'\e040';}.document_fill:before {content:'\e066';}.plus:before {content:'\2795';}.wrench:before {content:'\e078';}.play:before {content:'\e047';}.star:before {content:'\2605';}.document_alt_fill:before {content:'\e000';}.chart:before {content:'\e028';}.rain:before {content:'\26c6';}.folder_fill:before {content:'\e065';}.new_window:before {content:'\e059';}.user:before {content:'\e062';}.battery_half:before {content:'\e05b';}.aperture_alt:before {content:'\e00c';}.eject:before {content:'\e04b';}.arrow_down_alt1:before {content:'\e016';}.pilcrow:before {content:'\00b6';}.arrow_down_alt2:before {content:'\e01a';}.arrow_right_alt1:before {content:'\e015';}.arrow_right_alt2:before {content:'\e019';}.rss_alt:before {content:'\e02d';}.spin_alt:before {content:'\e037';}.sun_fill:before {content:'\2600';}
src/main/resources/bootstrap/font/iconic_fill.eot
Binary files differ
src/main/resources/bootstrap/font/iconic_fill.otf
Binary files differ
src/main/resources/bootstrap/font/iconic_fill.svg
New file
@@ -0,0 +1,539 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg>
<metadata>
Created by FontForge 20110222 at Sun Apr  1 19:42:26 2012
 By PJ Onori,,,
Icons by PJ Onori, font creation script by Yann
</metadata>
<defs>
<font id="IconicFill" horiz-adv-x="774" >
  <font-face
    font-family="Iconic"
    font-weight="500"
    font-stretch="normal"
    units-per-em="1000"
    panose-1="2 0 6 3 0 0 0 0 0 0"
    ascent="800"
    descent="-200"
    bbox="14.9996 -13.9766 759.209 730.262"
    underline-thickness="50"
    underline-position="-100"
    unicode-range="U+0023-E08A"
  />
    <missing-glyph />
    <glyph glyph-name="glyph0" unicode="&#xe063;" horiz-adv-x="495"
d="M247.559 637.023c-77 0 -139.582 -62.7676 -139.582 -139.907c0 -44.0469 20.1631 -84.5576 55.2324 -111c52.4883 -39.6973 73.7676 -83.5811 81.0234 -120.465h6.65137c7.30176 36.8838 28.5117 80.7676 81.0234 120.465c35.1162 26.4189 55.1855 66.9307 55.1855 111
c0 77.1396 -62.5342 139.907 -139.534 139.907zM247.559 730.232c128.441 0 232.558 -104.372 232.558 -233.093c0 -76.3252 -35.8838 -143 -92.3018 -185.512c-25.8838 -19.6279 -47.2793 -44.8838 -47.2793 -79.7676v-59.4189h-185.907v59.4189
c0 34.8838 -21.3955 60.1396 -47.3252 79.7676c-56.3721 42.5117 -92.3027 109.187 -92.3027 185.512c0 128.721 104.116 233.093 232.559 233.093zM154.628 -13.9531v93.209h185.907v-93.209h-185.907z" />
    <glyph glyph-name="glyph1" unicode="&#xe052;"
d="M480.116 265.116v-93.0234h-46.5117v-139.534c0 -25.6982 -20.7207 -46.5117 -46.5117 -46.5117c-25.6279 0 -46.5117 20.8135 -46.5117 46.5117v139.534h-46.5117v93.0234h46.5117v418.604c0 25.6982 20.8838 46.5117 46.5117 46.5117
c25.791 0 46.5117 -20.8135 46.5117 -46.5117v-418.604h46.5117zM759.186 544.186v-93.0225h-46.5107v-418.604c0 -25.6982 -20.7217 -46.5117 -46.5117 -46.5117c-25.6279 0 -46.5117 20.8135 -46.5117 46.5117v418.604h-46.5117v93.0225h46.5117v139.535
c0 25.6982 20.8838 46.5117 46.5117 46.5117c25.79 0 46.5117 -20.8135 46.5117 -46.5117v-139.535h46.5107zM201.047 451.163v-93.0234h-46.5117v-325.581c0 -25.6982 -20.7217 -46.5117 -46.5117 -46.5117c-25.6279 0 -46.5117 20.8135 -46.5117 46.5117v325.581h-46.5117
v93.0234h46.5117v232.558c0 25.6982 20.8838 46.5117 46.5117 46.5117c25.79 0 46.5117 -20.8135 46.5117 -46.5117v-232.558h46.5117z" />
    <glyph glyph-name="glyph2" unicode="&#xe01c;"
d="M294.069 172.093c0 -102.744 -83.3018 -186.046 -186.046 -186.046c-33.791 0 -65.3955 9 -92.6514 24.6973l-0.37207 0.279297c55.6045 32.1631 93.0234 92.1162 93.0234 160.884v0.185547c0 51.4189 41.6045 93.0234 93.0234 93.0234
c51.3252 0 93.0225 -41.6045 93.0225 -93.0234zM731.93 702.977c36.3496 -36.3252 36.3496 -95.209 0 -131.535l-351.744 -351.837c-17.0693 64.2324 -67.3945 114.465 -131.534 131.628l351.744 351.744c36.3252 36.3262 95.209 36.3262 131.534 0z" />
    <glyph glyph-name="glyph3" unicode="&#xe03e;"
d="M433.604 265.116v-139.535h93.0234l-139.535 -139.534l-139.534 139.534h93.0225v139.535h93.0234zM340.581 451.163v139.534h-93.0225l139.534 139.535l139.535 -139.535h-93.0234v-139.534h-93.0234zM294.069 311.628h-139.534v-93.0234l-139.535 139.535
l139.535 139.535v-93.0234h139.534v-93.0234zM480.116 404.651h139.535v93.0234l139.534 -139.535l-139.534 -139.535v93.0234h-139.535v93.0234z" />
    <glyph glyph-name="glyph4" unicode="&#xe02b;"
d="M323.768 730.232l435.418 -435.418h-308.86v-308.768l-435.325 435.418v308.768h308.768zM185.047 471.604c48.8838 0 88.4883 39.6045 88.4883 88.4883s-39.6045 88.4883 -88.4883 88.4883s-88.4883 -39.6045 -88.4883 -88.4883s39.6045 -88.4883 88.4883 -88.4883z" />
    <glyph glyph-name="glyph5" unicode="&#xe06a;"
d="M387.093 590.697c0 0 93.0234 93.0234 372.093 93.0234v-558.14c-281.977 0 -372.093 -93.0225 -372.093 -93.0225s-90.1162 93.0225 -372.093 93.0225v558.14c279.069 0 372.093 -93.0234 372.093 -93.0234zM108.023 590.697v-374.627
c118.232 -10.001 190.768 -37.3496 232.558 -59.4189v374.628c-41.79 22.1621 -114.325 49.5117 -232.558 59.418zM666.163 216.07v374.627c-118.279 -9.90625 -190.814 -37.2559 -232.559 -59.418v-374.628c41.7441 22.0928 114.279 49.418 232.559 59.4189z" />
    <glyph glyph-name="glyph6" unicode="&#xe01f;"
d="M15 218.604l372.093 -93.0234l372.093 93.0234v-93.0234l-372.093 -93.0225l-372.093 93.0225v93.0234zM15 404.651l372.093 -93.0234l372.093 93.0234v-93.0234l-372.093 -93.0234l-372.093 93.0234v93.0234zM15 590.697l372.093 93.0234l372.093 -93.0234v-93.0225
l-372.093 -93.0234l-372.093 93.0234v93.0225z" />
    <glyph glyph-name="glyph7" unicode="&#xe007;"
d="M573.047 451.163c0 -102.744 -83.21 -186.047 -185.954 -186.047c0 51.3252 -41.6973 93.0234 -93.0234 93.0234h-93.1162c-92.9297 0 -185.953 52.3252 -185.953 186.046c0 136.629 93.0234 186.047 185.953 186.047h186.14
c93.0234 0 185.954 -57.6514 185.954 -186.047v-93.0225zM294.069 451.163zM294.069 451.163zM619.186 446.209c75.2334 -14.5811 140 -67.3018 140 -181.093c0 -133.721 -93.0225 -186.047 -186.139 -186.047h-92.9307c-51.3252 0 -93.0234 -41.6045 -93.0234 -93.0225
c-102.744 0 -186.14 83.3018 -186.14 186.046v93.0234c0 16.7207 1.81445 32.1162 4.72168 46.5117h88.3945c25.6279 0 46.5117 -20.8369 46.5117 -46.5117v-46.5117h46.5117c126.466 0 229.372 101.744 232.093 227.604z" />
    <glyph glyph-name="glyph8" unicode="&#xe020;"
d="M15 172.093l372.093 -93.0234l372.093 93.0234v-93.0234l-372.093 -93.0225l-372.093 93.0225v93.0234zM15 358.14l372.093 -93.0234l372.093 93.0234v-93.0234l-372.093 -93.0234l-372.093 93.0234v93.0234zM15 544.186l372.093 -93.0225l372.093 93.0225v-93.0225
l-372.093 -93.0234l-372.093 93.0234v93.0225zM15 730.232l372.093 -93.0234l372.093 93.0234v-93.0234l-372.093 -93.0234l-372.093 93.0234v93.0234z" />
    <glyph glyph-name="glyph9" unicode="&#xe045;"
d="M573.14 637.209c102.651 0 186.046 -83.3945 186.046 -186.046s-83.3945 -186.047 -186.046 -186.047h-372.093c-102.605 0 -186.047 83.3955 -186.047 186.047s83.4414 186.046 186.047 186.046c8.30176 0 16.4414 -1.27832 24.6279 -2.37207
c31.9297 56.6982 91.9297 95.3955 161.418 95.3955c68.0469 0 128 -38.3252 160.419 -95.5576c8.46484 1.09277 16.9072 2.53418 25.6279 2.53418zM573.14 358.14c51.2324 0 93.0234 41.791 93.0234 93.0234s-41.791 93.0225 -93.0234 93.0225
s-93.0234 -41.79 -93.0234 -93.0225h-93.0234c0 60.5811 29.5352 113.906 74.4424 147.884c-17.1631 23.2559 -44.3262 38.1621 -74.4424 38.1621c-51.2783 0 -93.0234 -41.79 -93.0234 -93.0234c0 -11.2549 1.9541 -22.1621 5.81445 -32.5342l-87.1162 -32.5117
c-7.62793 20.3486 -11.4424 41.791 -11.6279 63.7676c-47.9307 -1.44238 -93.1162 -40.6982 -93.1162 -91.7441c0 -51.2324 41.7441 -93.0234 93.0234 -93.0234h372.093zM433.651 125.581v-139.534h-93.0234v139.534h-93.0234l139.581 139.535l139.442 -139.535h-92.9766z
" />
    <glyph glyph-name="glyph10" unicode="&#xe029;" horiz-adv-x="728"
d="M353.006 278.559l-246 -246c-122.675 141.534 -122.675 350.465 0 492zM389.797 311.628l-301.86 299.953c83.0225 67.9541 185.86 111.559 301.86 118.651v-418.604zM435.587 636.837c157.466 -24.1621 277.116 -157.512 277.116 -322.116
c0 -181.512 -145.256 -328.674 -327.069 -328.674c-74.0469 0 -139.279 25.0693 -193.419 64.8604l243.372 241.465v344.465z" />
    <glyph glyph-name="glyph11" unicode="&#xe051;"
d="M540.256 139.209l-60.1396 -60.1396v186.047h186.047l-60.1396 -60.1396l153.162 -153.162l-65.7666 -65.7676zM167.256 512.303l-152.256 152.162l65.7676 65.7676l152.256 -152.163l61.0459 59.1396l-0.90625 -185.046l-185.14 -1zM15 51.8145l153.163 153.162
l-60.1396 60.1396h186.046v-186.047l-60.1387 60.1396l-153.163 -153.162zM666.884 451.163h-186.768v186.721l60.4189 -60.3486l152.697 152.697l65.9531 -66l-152.604 -152.697z" />
    <glyph glyph-name="glyph12" unicode="&#xe044;"
d="M573.14 637.209c102.651 0 186.046 -83.4883 186.046 -186.046c0 -102.559 -83.3945 -186.047 -186.046 -186.047h-139.535v-139.535h93.0234l-139.581 -139.534l-139.488 139.534h93.0225v139.535h-139.534c-102.605 0 -186.047 83.4883 -186.047 186.047
c0 102.558 83.4414 186.046 186.047 186.046c8.30176 0 16.4414 -1.18555 24.6279 -2.27832c31.9297 56.5107 91.9297 95.3018 161.418 95.3018c68.0469 0 128 -38.2559 160.419 -95.6514c8.46484 1.25586 16.9072 2.62793 25.6279 2.62793zM573.14 358.14
c51.2324 0 93.0234 41.6973 93.0234 93.0234c0 51.3252 -41.791 93.0225 -93.0234 93.0225s-93.0234 -41.6973 -93.0234 -93.0225h-93.0234c0 60.5811 29.5352 114 74.4424 147.977c-17.1631 23.1631 -44.3262 38.0693 -74.4424 38.0693
c-51.2783 0 -93.0234 -41.6973 -93.0234 -93.0234c0 -11.1621 1.9541 -22.1621 5.81445 -32.4414l-87.1162 -32.6973c-7.62793 20.3486 -11.4424 41.9766 -11.6279 63.8604c-47.9307 -1.34863 -93.1162 -40.791 -93.1162 -91.7441
c0 -51.3262 41.7441 -93.0234 93.0234 -93.0234h372.093z" />
    <glyph glyph-name="glyph13" unicode="&#xe08a;" horiz-adv-x="681"
d="M270.813 -13.0469c-68.3486 0 -132.581 26.6982 -180.86 75.0469c-48.3252 48.3252 -74.9531 112.465 -74.9531 180.86c0.046875 68.3252 26.6279 132.535 74.9531 180.814l258.978 253.372c69.6279 69.6279 192.488 69.9062 262.721 -0.37207
c72.4883 -72.582 72.4883 -190.582 0 -263.07l-233.023 -227.325c-44.8838 -44.8838 -118.651 -44.9766 -163.977 0.37207c-45.3262 45.418 -45.3262 119.14 0 164.465l90.209 90.209l65.7676 -65.7666l-90.209 -90.21
c-5.9541 -5.95312 -6.81445 -12.8604 -6.81445 -16.4414c0 -3.58203 0.860352 -10.4883 6.81445 -16.4883c11.9062 -11.8145 20.9766 -11.8145 32.8838 0l232.93 227.372c35.8838 35.8369 35.8838 94.8369 -0.37207 131.14c-35.1631 35.1621 -96.3955 35.1621 -131.535 0
l-258.977 -253.372c-30.3721 -30.3955 -47.3252 -71.2334 -47.3252 -114.698c0 -43.5117 16.9531 -84.3955 47.6973 -115.093c61.5117 -61.582 168.698 -61.582 230.187 0l116.279 116.279l65.7666 -65.7676l-116.278 -116.279
c-48.3262 -48.3252 -112.535 -75.0469 -180.861 -75.0469z" />
    <glyph glyph-name="glyph14" unicode="&#x2764;"
d="M387.093 594.325c37.5117 52.6982 96.0234 89.3955 165.419 89.3955c114.023 0 206.674 -92.8369 206.674 -206.768v-17.0693l-371.906 -427.325l-372.279 427.325v17.0693c0 113.931 92.6514 206.768 206.675 206.768c69.3945 0 127.906 -36.6973 165.418 -89.3955z" />
    <glyph glyph-name="glyph15" unicode="&#x2709;"
d="M388.907 370.768l-373.907 175.604v90.8369h744.186v-91.1162zM389.093 267.931l370.093 175.232v-364.094h-744.186v364.651z" />
    <glyph glyph-name="glyph16" unicode="&#xe005;"
d="M704.675 675.721c72.6738 -72.6738 72.6738 -190.396 0 -263.069l-426.605 -426.604h-263.069l0.720703 263.813l425.884 425.86c72.5811 72.6748 190.488 72.6748 263.07 0zM238.559 79.0693c36.3486 36.3262 36.3252 95.9541 0 132.279
c-36.3262 36.3262 -95.21 36.3262 -131.535 0v-132.279h131.535zM637.186 478.419c36.3262 36.3252 36.3262 95.209 0 131.534c-36.3252 36.3262 -95.209 36.3262 -131.534 0z" />
    <glyph glyph-name="glyph17" unicode="&#x2718;"
d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM329.419 186.441l289.395 289.419l-65.7666 65.7676l-223.651 -223.651l-105.419 105.465
l-65.7676 -65.7666z" />
    <glyph glyph-name="glyph18" unicode="&#xe05d;"
d="M666.163 451.163h93.0225v-186.047h-93.0225v-46.5117c0 -25.6279 -20.8838 -46.5117 -46.5117 -46.5117h-558.14c-25.6279 0 -46.5117 20.8838 -46.5117 46.5117v92.0234h148.535c19.1621 -54.0469 70.3252 -93.0234 131 -93.0234v47.5117h94.5576v46.5117h-94.5576
v93.0234h92.6504v46.5117h-92.6504v45.5117c-60.6982 0 -111.838 -38.9775 -131 -93.0234h-148.535v94.0234c0 25.5811 20.8838 46.5107 46.5117 46.5107h558.14c25.6279 0 46.5117 -20.9297 46.5117 -46.5107v-46.5117z" />
    <glyph glyph-name="glyph19" unicode="&#xe075;" horiz-adv-x="588"
d="M340.581 730.232c128.187 0 232.559 -104.279 232.559 -232.558v-372.094c0 -76.9531 -62.5811 -139.534 -139.535 -139.534h-279.069c-76.9541 0 -139.535 62.5811 -139.535 139.534v325.582h93.1162v46.5117c0 128.278 104.372 232.558 232.465 232.558z
M293.977 172.093c25.7207 0 46.5117 20.8145 46.5117 46.5117c0 25.6982 -20.8135 46.5117 -46.5117 46.5117c-25.6045 0 -46.418 -20.8135 -46.418 -46.5117c0 -25.6973 20.8135 -46.5117 46.418 -46.5117zM480.116 451.163v46.5117
c0 76.9531 -62.5811 139.534 -139.535 139.534c-76.8604 0 -139.441 -62.5811 -139.441 -139.534v-46.5117h278.977z" />
    <glyph glyph-name="glyph20" unicode="&#xe04a;"
d="M15 -13.9531v744.186h744.186v-744.186h-744.186z" />
    <glyph glyph-name="glyph21" unicode="&#x2191;"
d="M15 358.512l372.14 371.721l372.046 -371.721l-131.93 -131.907l-146.977 146.977v-387.534h-186.535v387.534c-72.8369 -72.8369 -146.837 -146.79 -146.837 -146.79z" />
    <glyph glyph-name="glyph22" unicode="&#xe038;"
d="M294.069 311.628h-139.534v-93.0234l-139.535 139.535l139.535 139.535v-93.0234h139.534v-93.0234zM480.116 404.651h139.535v93.0234l139.534 -139.535l-139.534 -139.535v93.0234h-139.535v93.0234z" />
    <glyph glyph-name="glyph23" unicode="&#xe021;"
d="M387.093 637.209c-153.884 0 -279.069 -125.186 -279.069 -279.069s125.186 -279.07 279.069 -279.07s279.07 125.187 279.07 279.07s-125.187 279.069 -279.07 279.069zM387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093
s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM436.512 407.465c-17.9072 17.9072 -42.8838 22.8604 -65.7676 17.21l202.396 119.511l-119.907 -205.162c6.7207 23.5576 1.81445 49.8604 -16.7207 68.4414z
M337.86 308.814c18.6279 -18.6289 44.9531 -23.5352 68.5811 -16.7217l-205.395 -120l119.558 202.675c-5.62793 -22.9307 -0.720703 -48.0234 17.2559 -65.9531z" />
    <glyph glyph-name="glyph24" unicode="&#xe009;"
d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM573.14 311.628v93.0234h-372.093v-93.0234h372.093z" />
    <glyph glyph-name="glyph25" unicode="&#xe05c;"
d="M759.186 451.163v-186.047h-93.0225v-46.5117c0 -25.5352 -20.8838 -46.5117 -46.5117 -46.5117h-558.14c-25.6279 0 -46.5117 20.9766 -46.5117 46.5117v279.07c0 25.5342 20.8838 46.5107 46.5117 46.5107h558.14c25.6279 0 46.5117 -20.9766 46.5117 -46.5107
v-46.5117h93.0225zM573.14 265.116v186.047h-465.116v-186.047h465.116z" />
    <glyph glyph-name="glyph26" unicode="&#xe06d;"
d="M15 218.604v232.559c0 128.441 104.116 232.558 232.559 232.558h232.558c154.163 0 279.069 -125 279.069 -279.069c0 -154.07 -124.906 -279.07 -279.069 -279.07h-186.047c-51.3252 0 -93.0225 -41.6045 -93.0225 -93.0225
c-102.651 0 -186.047 83.3018 -186.047 186.046z" />
    <glyph glyph-name="glyph27" unicode="&#xe002;" horiz-adv-x="402"
d="M201.047 730.232c102.744 0 186.046 -83.3018 186.046 -186.047c0 -102.744 -186.046 -558.139 -186.046 -558.139s-186.047 455.395 -186.047 558.139c0 102.745 83.3027 186.047 186.047 186.047zM201.047 451.163c51.3721 0 93.0225 41.6514 93.0225 93.0225
c0 51.373 -41.6504 93.0234 -93.0225 93.0234s-93.0234 -41.6504 -93.0234 -93.0234c0 -51.3711 41.6514 -93.0225 93.0234 -93.0225z" />
    <glyph glyph-name="question" unicode="?" horiz-adv-x="402"
d="M238.256 32.5586c0 -25.6279 -20.8145 -46.5117 -46.5117 -46.5117s-46.5117 20.8838 -46.5117 46.5117c0 25.79 20.8145 46.5107 46.5117 46.5107s46.5117 -20.7207 46.5117 -46.5107zM193.512 126.116c-31.0703 0 -60.2324 12.1631 -82.209 34.1631
c-21.9775 25.6973 -34.0703 54.8604 -34.0703 85.9297c0 31.0703 12.0928 60.2324 34.0703 78.3955l155.534 155.535c17.5586 17.6279 27.2324 40.9766 27.2324 65.7676c0 24.8838 -9.67383 48.2324 -27.2559 65.7676c-36.2549 36.2559 -95.2549 36.3252 -131.488 0
c-17.6279 -17.5352 -27.3018 -40.8604 -27.3018 -65.7676h-93.0234c0 49.6973 19.3955 96.4648 54.6045 131.628c70.2324 70.3018 192.675 70.2324 263 -0.09375c35.1396 -35.0459 54.4883 -81.7441 54.4883 -131.534c0 -49.6982 -19.3486 -96.3955 -54.5117 -131.535
l-155.534 -151.697c-9.04688 -9.09375 -9.04688 -23.791 0 -32.8838c9.09277 -9.09375 23.79 -9.09375 32.8838 0c5.90625 6 6.81348 12.9062 6.81348 16.5342h93.0234c0 -31.0693 -12.0928 -60.3252 -34.0703 -86.0225c-21.9531 -22 -51.1162 -34.1865 -82.1855 -34.1865z
" />
    <glyph glyph-name="glyph29" unicode="&#xe055;"
d="M15 637.209c0 31.0078 15.5039 46.5117 46.5117 46.5117s46.5117 -15.5039 46.5117 -46.5117s-15.5039 -46.5117 -46.5117 -46.5117s-46.5117 15.5039 -46.5117 46.5117zM15 451.163c0 31.0078 15.5039 46.5117 46.5117 46.5117s46.5117 -15.5039 46.5117 -46.5117
s-15.5039 -46.5117 -46.5117 -46.5117s-46.5117 15.5039 -46.5117 46.5117zM15 265.116c0 31.0078 15.5039 46.5117 46.5117 46.5117s46.5117 -15.5039 46.5117 -46.5117s-15.5039 -46.5117 -46.5117 -46.5117s-46.5117 15.5039 -46.5117 46.5117zM15 79.0693
c0 31.0078 15.5039 46.5117 46.5117 46.5117s46.5117 -15.5039 46.5117 -46.5117c0 -31.0068 -15.5039 -46.5107 -46.5117 -46.5107s-46.5117 15.5039 -46.5117 46.5107zM201.047 590.697v93.0234h558.139v-93.0234h-558.139zM201.047 404.651v93.0234h558.139v-93.0234
h-558.139zM201.047 218.604v93.0234h558.139v-93.0234h-558.139zM201.047 32.5586v93.0225h558.139v-93.0225h-558.139z" />
    <glyph glyph-name="glyph30" unicode="&#xe043;" horiz-adv-x="588"
d="M15 623.907v106.325h558.14v-106.325h-558.14zM201.047 411.279h-93.0234l185.768 212.628l186.325 -212.628h-93.0234v-425.232h-186.046v425.232z" />
    <glyph glyph-name="glyph31" unicode="&#xe030;" horiz-adv-x="588"
d="M480.116 311.628h93.0234c0 -154.163 -125 -279.069 -279.07 -279.069c-154.069 0 -279.069 124.906 -279.069 279.069s125 279.069 279.069 279.069h55.2334l-27.4424 27.2559l65.7676 65.7676l139.813 -139.535l-139.813 -139.977l-65.7676 65.7676l27.0703 27.0703
l-54.8613 0.62793c-102.65 0 -186.046 -83.4893 -186.046 -186.047c0 -102.559 83.3955 -186.047 186.046 -186.047c102.651 0 186.047 83.4883 186.047 186.047z" />
    <glyph glyph-name="glyph32" unicode="&#xe035;"
d="M666.163 311.628h93.0225c0 -76.8604 -62.5811 -139.535 -139.534 -139.535h-418.791v-93.0234l-185.86 139.535l185.86 139.535v-93.0234h418.791c25.6279 0 46.5117 20.8838 46.5117 46.5117zM154.535 451.163c-25.6279 0 -46.5117 -20.8838 -46.5117 -46.5117
h-93.0234c0 77.0234 62.5811 139.534 139.535 139.534h418.604v93.0234l186.046 -139.534l-186.046 -139.535v93.0234h-418.604z" />
    <glyph glyph-name="glyph33" unicode="&#xe034;"
d="M666.163 358.14h93.0225v-46.5117c0 -76.8604 -62.5811 -139.535 -139.534 -139.535h-325.675l0.0927734 -93.0234l-186.046 139.535l186.046 139.535l-0.0927734 -93.0234h325.675c25.6279 0 46.5117 20.8838 46.5117 46.5117v46.5117zM108.023 404.651v-46.5117
h-93.0234v46.5117c0 77.0234 62.5811 139.534 139.535 139.534h325.581v93.0234l185.86 -139.534l-185.86 -139.535v93.0234h-325.581c-25.6279 0 -46.5117 -20.8145 -46.5117 -46.5117z" />
    <glyph glyph-name="glyph34" unicode="&#xe033;"
d="M478.837 218.604l139.722 186.047l140.627 -186.047h-93.0225v-46.5117c0 -76.9531 -62.582 -139.534 -139.535 -139.534h-279.069c-76.9541 0 -139.535 62.5811 -139.535 139.534v46.5117h93.0234v-46.5117c0 -25.6279 20.8838 -46.5117 46.5117 -46.5117h279.069
c25.6279 0 46.5117 20.8838 46.5117 46.5117v46.5117h-94.3027zM295.349 497.675l-139.721 -186.047l-140.628 186.047h93.0234v46.5107c0 76.9541 62.5811 139.535 139.535 139.535h279.069c76.9531 0 139.535 -62.5811 139.535 -139.535v-46.5107h-93.0234v46.5107
c0 25.6289 -20.8838 46.5117 -46.5117 46.5117h-279.069c-25.6279 0 -46.5117 -20.8828 -46.5117 -46.5117v-46.5107h94.3018z" />
    <glyph glyph-name="glyph35" unicode="&#xe032;"
d="M619.651 358.14l139.534 -139.535h-93.0225c0 -76.9531 -62.582 -139.535 -139.535 -139.535h-279.069c-76.9541 0 -139.535 62.582 -139.535 139.535v46.5117h93.0234v-46.5117c0 -25.6279 20.8838 -46.5117 46.5117 -46.5117h279.069
c25.6279 0 46.5117 20.8838 46.5117 46.5117h-93.0234zM526.628 637.209c76.9531 0 139.535 -62.5811 139.535 -139.534v-46.5117h-93.0234v46.5117c0 25.6279 -20.8838 46.5107 -46.5117 46.5107h-279.069c-25.6279 0 -46.5117 -20.8828 -46.5117 -46.5107v-1.44238
h93.0225l-139.534 -138.093l-139.535 138.093h93.0234v1.44238c0 76.9531 62.5811 139.534 139.535 139.534h279.069z" />
    <glyph glyph-name="glyph36" unicode="&#x275d;"
d="M759.186 79.0693h-279.069v279.07c0 153.884 125.187 279.069 279.069 279.069v-93.0234c-102.65 0 -186.046 -83.4883 -186.046 -186.046h186.046v-279.07zM294.069 79.0693h-279.069v279.07c0 153.884 125.187 279.069 279.069 279.069v-93.0234
c-102.65 0 -186.046 -83.4883 -186.046 -186.046h186.046v-279.07z" />
    <glyph glyph-name="glyph37" unicode="&#x2713;" horiz-adv-x="681"
d="M666.163 162.837l-130.279 -130.278l-195.303 195.395l-195.395 -195.395l-130.187 130.278l195.303 195.303l-195.303 195.302l130.187 130.279l195.395 -195.396l195.303 195.396l130.279 -130.279l-195.488 -195.302z" />
    <glyph glyph-name="glyph38" unicode="&#xe04d;"
d="M15 730.232l558.14 -372.093l-558.14 -372.093v744.186zM573.14 79.0693v558.14h186.046v-558.14h-186.046z" />
    <glyph glyph-name="glyph39" unicode="&#xe06f;"
d="M573.14 -13.9531v744.186h186.046v-744.186h-186.046zM294.069 -13.9531v558.139h186.047v-558.139h-186.047zM15 -13.9531v372.093h186.047v-372.093h-186.047z" />
    <glyph glyph-name="glyph40" unicode="&#x2190;"
d="M386.721 -13.9531l-371.721 372.093l371.721 372.093l131.907 -131.93l-146.791 -146.978h387.349v-186.581h-387.349c72.8379 -72.8369 146.791 -146.791 146.791 -146.791z" />
    <glyph glyph-name="glyph41" unicode="&#x2193;"
d="M759.186 357.768l-372.093 -371.721l-372.093 371.721l131.931 131.907l146.977 -146.978v387.535h186.581v-387.535c72.8369 72.8379 146.791 146.791 146.791 146.791z" />
    <glyph glyph-name="glyph42" unicode="&#xe042;" horiz-adv-x="588"
d="M15 -13.9531v106.278h558.14v-106.278h-558.14zM387.093 305h93.0234l-185.768 -212.675l-186.325 212.675h93.0234v425.232h186.046v-425.232z" />
    <glyph glyph-name="glyph43" unicode="&#x2302;"
d="M387.093 730.232l372.093 -372.093h-93.0225v-372.093h-558.14v372.093h-93.0234zM573.14 79.0693v333.582l-186.047 131.534l-186.046 -131.534v-333.582h139.534v139.535h93.0234v-139.535h139.535z" />
    <glyph glyph-name="glyph44" unicode="&#xe001;"
d="M571.232 637.209h187.953v-93.0234h-187.953h-93.0234h-186.046h-93.0234h-184.14v93.0234h184.14v93.0234h93.0234v-93.0234h186.046v93.0234h93.0234v-93.0234zM108.023 172.093v93.0234h558.14v-93.0234h-558.14zM108.023 358.14v93.0234h558.14v-93.0234h-558.14z
M573.14 -13.9531h-465.116v93.0225h558.14z" />
    <glyph glyph-name="glyph45" unicode="&#xe012;"
d="M15 637.209h279.069v-279.069l-279.069 -279.07v558.14zM480.116 637.209h279.069v-279.069l-279.069 -279.07v558.14z" />
    <glyph glyph-name="glyph46" unicode="&#xe076;" horiz-adv-x="588"
d="M340.675 730.232c128.093 0 232.465 -104.279 232.465 -232.558v-372.094c0 -76.9531 -62.6748 -139.534 -139.535 -139.534h-279.069c-76.8604 0 -139.535 62.5811 -139.535 139.534v325.582h465.116v46.5117c0 76.9531 -62.5811 139.534 -139.441 139.534
c-77.0234 0 -139.535 -62.5811 -139.535 -139.534h-92.9307c0 128.278 104.187 232.558 232.466 232.558zM293.977 172.093c25.791 0 46.5117 20.8145 46.5117 46.5117c0 25.6982 -20.7207 46.5117 -46.5117 46.5117c-25.6279 0 -46.5117 -20.8135 -46.5117 -46.5117
c0 -25.6973 20.8838 -46.5117 46.5117 -46.5117z" />
    <glyph glyph-name="glyph47" unicode="&#xe04e;"
d="M652.535 158.465l106.65 106.651v-279.069h-279.069l106.651 106.65l-106.651 106.651l65.7676 65.7676zM294.069 730.232l-106.65 -106.651l105.65 -105.558l-65.7666 -65.7676l-105.651 105.559l-106.651 -106.651v279.069h279.069zM294.069 199.349l-106.65 -106.651
l106.65 -106.65h-279.069v279.069l106.651 -106.651l106.651 106.651zM759.186 730.232v-279.069l-106.65 106.651l-105.651 -105.559l-65.7676 65.7676l105.651 105.558l-106.651 106.651h279.069z" />
    <glyph glyph-name="glyph48" unicode="&#xe058;"
d="M294.069 360.14c0 62.0156 31.0078 93.0234 93.0234 93.0234s93.0234 -31.0078 93.0234 -93.0234s-31.0078 -93.0234 -93.0234 -93.0234s-93.0234 31.0078 -93.0234 93.0234zM679.069 587.604c53.4111 -67.583 80.1162 -143.404 80.1162 -227.465
c0 -67.3809 -16.5986 -129.644 -49.7949 -186.787c-33.1973 -57.1436 -78.3672 -102.313 -135.511 -135.511c-57.1436 -33.1963 -119.406 -49.7949 -186.787 -49.7949s-129.644 16.5986 -186.787 49.7949c-57.1436 33.1973 -102.313 78.3672 -135.511 135.511
c-33.1963 57.1436 -49.7949 119.406 -49.7949 186.787c0 82.9883 26.248 158.446 78.7441 226.372c8.68848 -6.54297 17.8047 -9.81445 27.3486 -9.81445c12.8955 0 23.8711 4.52832 32.9277 13.584c9.05566 9.05664 13.584 20.0322 13.584 32.9277
c0 9.53809 -3.35645 18.7471 -10.0693 27.6279c53.9434 42.7354 115.261 68.5342 183.953 77.3955c1.05371 -11.9824 5.91895 -22.0635 14.5957 -30.2432c8.67578 -8.17871 19.0127 -12.2686 31.0088 -12.2686c11.958 0 22.249 4.03418 30.8721 12.1016
c8.62207 8.06836 13.5332 18.0264 14.7324 29.875c67.4736 -8.38184 128.218 -33.3975 182.232 -75.0459c-7.50293 -9.13965 -11.2549 -18.9541 -11.2549 -29.4424c0 -12.8809 4.54395 -23.8516 13.6309 -32.9131c9.08789 -9.06543 20.0479 -13.5986 32.8799 -13.5986
c10.3545 0 19.9824 3.63574 28.8838 10.9072zM387.093 174.093c51.3828 0 95.2363 18.1562 131.561 54.4678s54.4863 80.1709 54.4863 131.579c0 51.4746 -18.2324 95.3818 -54.6982 131.721l-131.349 131.349l-131.534 -131.534
c-36.3408 -36.3408 -54.5117 -80.1865 -54.5117 -131.535c0 -51.3721 18.165 -95.2227 54.4941 -131.553c36.3291 -36.3291 80.1797 -54.4941 131.552 -54.4941z" />
    <glyph glyph-name="glyph49" unicode="&#xe008;"
d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM573.14 311.628v93.0234h-139.535v139.534h-93.0234v-139.534h-139.534v-93.0234h139.534
v-139.535h93.0234v139.535h139.535z" />
    <glyph glyph-name="glyph50" unicode="&#xe079;"
d="M387.093 637.209c-153.884 0 -279.069 -125.186 -279.069 -279.069s125.186 -279.07 279.069 -279.07s279.07 125.187 279.07 279.07s-125.187 279.069 -279.07 279.069zM387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093
s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM513.187 298.187l-65.7676 -65.7676l-91.21 91.209c-9.7207 8.62793 -16.1621 20.6973 -16.1621 34.6973v185.86h93.5576v-166.325z" />
    <glyph glyph-name="glyph51" unicode="&#xe060;"
d="M665.628 544.186l93.5576 93.0234l-91.209 93.0234h91.209v-744.186h-744.186v744.186h93.3955l93.3721 -93.3955l-94.4648 -92.6514h93.209l95 93.3955l-92.6514 92.6514h131.535l93.3018 -93.3955l-94.3945 -92.6514h109.837l95.0234 93.3955l-92.7441 92.6514h129.441
l91.3027 -93.3955l-92.3721 -92.6514h91.8369zM666.163 80.0693v93.0234h-558.14v-93.0234h558.14zM666.163 265.116v93.0234h-558.14v-93.0234h558.14z" />
    <glyph glyph-name="glyph52" unicode="&#xe024;"
d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM387.093 637.209c-121.093 0 -223.372 -78 -262 -186.046h524
c-38.6279 108.046 -140.906 186.046 -262 186.046zM387.093 311.628c25.6982 0 46.5117 20.8135 46.5117 46.5117c0 25.6973 -20.8135 46.5117 -46.5117 46.5117c-25.6973 0 -46.5117 -20.8145 -46.5117 -46.5117c0 -25.6982 20.8145 -46.5117 46.5117 -46.5117z
M108.023 358.14c0 -137.814 100.651 -251.814 232.186 -274.349c-2.16211 151.884 -105.093 274.349 -232.186 274.349zM433.977 83.791c131.535 22.5342 232.187 136.534 232.187 274.349c-127.094 0 -230.023 -122.465 -232.187 -274.349z" />
    <glyph glyph-name="glyph53" unicode="&#x270e;"
d="M704.675 675.721c72.6738 -72.6738 72.6738 -190.396 0 -263.069l-426.605 -426.604h-263.069l0.720703 263.813l425.884 425.86c36.3262 36.3486 83.9307 54.5117 131.535 54.5117c47.6973 0 95.3018 -18.1631 131.535 -54.5117zM239.559 79.0693l399.349 399.35
l-131.535 131.534l-398.721 -398.79l-0.0927734 -39.0703h92.4883v-93.0234h38.5117z" />
    <glyph glyph-name="glyph54" unicode="&#xe067;"
d="M759.186 544.186c0 -69.9062 -39.0693 -130.093 -96.1162 -161.883c0.745117 -7.86133 2.37207 -15.3955 2.37207 -23.4424c0 -154.163 -124.906 -279.069 -279.069 -279.069c-57.5117 0 -110.931 17.4414 -155.349 47.2324l-216.023 -140.977l141.604 214.744
c-30.9766 44.8838 -49.3252 99.3018 -49.3252 158.069c0 154.163 124.907 279.07 279.069 279.07c8.7207 0 17 -1.76758 25.5352 -2.58203c0 -0.0458984 -0.0927734 -0.0927734 -0.0927734 -0.139648c32 56.4658 91.9531 95.0234 161.349 95.0234
c102.651 0 186.046 -83.3486 186.046 -186.047zM386.372 172.814c102.372 0 185.581 83.0459 185.953 185.418c-16.6279 0.0927734 -32.5342 3 -47.8838 7.18652l-73.0459 -73.0469c-36.3262 -36.3252 -95.209 -36.3252 -131.535 0
c-36.3252 36.3252 -36.3252 95.209 0 131.535l73.7676 73.8135c-3.81348 14.9541 -6.53516 30.3027 -6.53516 46.4648c0 0.373047 0.0927734 0.72168 0.0927734 1.09375c0 -0.139648 -0.0927734 -0.279297 -0.0927734 -0.464844
c-0.185547 0 -0.441406 0.0927734 -0.720703 0.0927734c-102.651 0 -186.047 -83.4424 -186.047 -186.047c0 -102.651 83.3955 -186.046 186.047 -186.046zM573.14 451.163c51.2324 0 93.0234 41.7441 93.0234 93.0225c0 51.2793 -41.791 93.0234 -93.0234 93.0234
s-93.0234 -41.7441 -93.0234 -93.0234c0 -51.2783 41.791 -93.0225 93.0234 -93.0225z" />
    <glyph glyph-name="glyph55" unicode="&#x26d4;"
d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM387.093 637.209c-153.884 0 -279.069 -125.186 -279.069 -279.069
c0 -60.1396 19.5352 -115.559 52.0459 -161.163l388.279 388.093c-45.6045 32.5117 -101.023 52.1396 -161.256 52.1396zM387.093 79.0693c153.884 0 279.07 125.187 279.07 279.07c0 60.1396 -19.5352 115.558 -52.0469 161.163l-388.279 -388.094
c45.6045 -32.5117 101.023 -52.1396 161.256 -52.1396z" />
    <glyph glyph-name="glyph56" unicode="&#xe011;"
d="M759.186 79.0693h-279.069v279.07l279.069 279.069v-558.14zM294.069 79.0693h-279.069v279.07l279.069 279.069v-558.14z" />
    <glyph glyph-name="glyph57" unicode="&#xe071;"
d="M201.047 172.093c-102.744 0 -186.047 83.3027 -186.047 186.047s83.3027 186.046 186.047 186.046v-372.093zM294.069 544.186l186.047 93.0234v-558.14l-186.047 93.0234v372.093zM759.186 311.628h-186.046v93.0234h186.046v-93.0234z" />
    <glyph glyph-name="glyph58" unicode="&#x2602;"
d="M387.093 730.232c205.21 0 372.093 -166.93 372.093 -372.093h-93.0225c0 19.209 -15.6279 34.8838 -34.8838 34.8838c-19.1631 0 -34.8838 -15.6748 -34.8838 -34.8838h-93.0234c0 19.209 -15.6279 34.8838 -34.8838 34.8838
c-19.1631 0 -34.8838 -15.6748 -34.8838 -34.8838v-232.559c0 -76.9531 -62.5117 -139.534 -139.535 -139.534c-76.8604 0 -139.534 62.5811 -139.534 139.534h93.0234c0 -25.6279 20.8828 -46.5117 46.5107 -46.5117c25.6982 0 46.5117 20.8838 46.5117 46.5117v232.559
c0 19.209 -15.6279 34.8838 -34.8838 34.8838c-19.1621 0 -34.8838 -15.6748 -34.8838 -34.8838h-93.0225c0 19.209 -15.6279 34.8838 -34.8838 34.8838c-19.1631 0 -34.8838 -15.6748 -34.8838 -34.8838h-93.0234c0 205.163 166.977 372.093 372.093 372.093z" />
    <glyph glyph-name="glyph59" unicode="&#xe056;"
d="M15 637.209c0 31.0078 15.5039 46.5117 46.5117 46.5117s46.5117 -15.5039 46.5117 -46.5117s-15.5039 -46.5117 -46.5117 -46.5117s-46.5117 15.5039 -46.5117 46.5117zM201.047 590.697v93.0234h558.139v-93.0234h-558.139zM201.047 451.163
c0 31.0078 15.5039 46.5117 46.5117 46.5117c31.0068 0 46.5107 -15.5039 46.5107 -46.5117s-15.5039 -46.5117 -46.5107 -46.5117c-31.0078 0 -46.5117 15.5039 -46.5117 46.5117zM387.093 404.651v93.0234h372.093v-93.0234h-372.093zM201.047 79.0693
c0 31.0078 15.5039 46.5117 46.5117 46.5117c31.0068 0 46.5107 -15.5039 46.5107 -46.5117c0 -31.0068 -15.5039 -46.5107 -46.5107 -46.5107c-31.0078 0 -46.5117 15.5039 -46.5117 46.5107zM387.093 32.5586v93.0225h372.093v-93.0225h-372.093zM387.093 265.116
c0 31.0078 15.5039 46.5117 46.5117 46.5117s46.5117 -15.5039 46.5117 -46.5117s-15.5039 -46.5117 -46.5117 -46.5117s-46.5117 15.5039 -46.5117 46.5117zM573.14 218.604v93.0234h186.046v-93.0234h-186.046z" />
    <glyph glyph-name="glyph60" unicode="&#xe014;"
d="M15 358.14c0 205.535 166.604 372.093 372.186 372.093c205.396 0 372 -166.558 372 -372.093c0 -205.488 -166.604 -372.093 -372 -372.093c-205.581 0 -372.186 166.604 -372.186 372.093zM573.14 358.86l-185.954 185.372l-185.418 -185.372h138.813v-186.768h93.0234
v186.768h139.535z" />
    <glyph glyph-name="glyph61" unicode="&#xe02f;"
d="M669.791 643.768c57.6045 -57.6748 89.3945 -134.349 89.3945 -217.884c0 -79.6279 -31.79 -156.303 -89.3945 -214.116l-70.1396 -69.9531l-65.7676 65.7666l70.1396 70.0938c40.0693 40.1621 62.1396 93.3945 62.1396 148.209
c0 58.6514 -22.0703 111.884 -62.1396 151.931c-80.1162 80.3018 -219.838 80.3018 -299.954 0.0927734l-126.813 -128.768h116.813v-91.1631h-279.069v279.232h93.0234v-123.697l130.163 130.256c115.209 115.372 316.325 115.279 431.604 0zM444.047 -13.9766
l-65.7676 65.9531l65.7676 65.7676l65.7676 -65.7676z" />
    <glyph glyph-name="glyph62" unicode="&#xe049;" horiz-adv-x="588"
d="M15 -13.9531v744.186h186.047v-744.186h-186.047zM387.093 -13.9531v744.186h186.047v-744.186h-186.047z" />
    <glyph glyph-name="glyph63" unicode="&#x26a1;"
d="M759.186 730.232l-325.581 -372.093l139.535 -93.0234l-558.14 -279.069l325.581 279.069l-139.534 93.0234z" />
    <glyph glyph-name="glyph64" unicode="&#xe053;"
d="M759.186 637.209h-744.186v93.0234h744.186v-93.0234zM480.116 451.163h-465.116v93.0225h465.116v-93.0225zM759.186 172.093h-744.186v93.0234h744.186v-93.0234zM573.14 -13.9531h-558.14v93.0225h558.14v-93.0225zM759.186 32.5586
c0 -25.6982 -20.8828 -46.5117 -46.5107 -46.5117c-25.791 0 -46.6055 20.8135 -46.6055 46.5117c0 25.6973 20.8145 46.5107 46.6055 46.5107c25.6279 0 46.5107 -20.8135 46.5107 -46.5107z" />
    <glyph glyph-name="glyph65" unicode="&#xe054;"
d="M759.186 637.209h-744.186v93.0234h744.186v-93.0234zM480.116 451.163h-465.116v93.0225h465.116v-93.0225zM759.186 263.116h-744.186v93.0234h744.186v-93.0234zM15 32.5586c0 31.0068 15.5039 46.5107 46.5117 46.5107s46.5117 -15.5039 46.5117 -46.5107
c0 -31.0078 -15.5039 -46.5117 -46.5117 -46.5117s-46.5117 15.5039 -46.5117 46.5117zM294.069 32.5586c0 -12.8408 -4.5459 -23.8027 -13.6396 -32.8867c-9.0918 -9.08301 -20.0498 -13.625 -32.8711 -13.625c-12.8906 0 -23.8809 4.53809 -32.9707 13.6152
s-13.6348 20.043 -13.6348 32.8965s4.54492 23.8184 13.6348 32.8955s20.0801 13.6152 32.9707 13.6152c12.8223 0 23.7793 -4.54199 32.8711 -13.625c9.09375 -9.08301 13.6396 -20.0449 13.6396 -32.8857zM387.093 32.5586c0 31.0068 15.5039 46.5107 46.5117 46.5107
s46.5117 -15.5039 46.5117 -46.5107c0 -31.0078 -15.5039 -46.5117 -46.5117 -46.5117s-46.5117 15.5039 -46.5117 46.5117z" />
    <glyph glyph-name="glyph66" unicode="&#xe023;" horiz-adv-x="402"
d="M340.581 730.232c25.6982 0 46.5117 -20.8135 46.5117 -46.5117v-511.628c0 -102.744 -83.3018 -186.046 -186.046 -186.046s-186.047 83.3018 -186.047 186.046v511.628c0 25.6982 20.8135 46.5117 46.5117 46.5117h279.069zM247.559 172.093
c25.6973 0 46.5107 20.8145 46.5107 46.5117c0 25.6982 -20.8135 46.5117 -46.5107 46.5117c-25.6982 0 -46.5117 -20.8135 -46.5117 -46.5117c0 -25.6973 20.8135 -46.5117 46.5117 -46.5117zM294.069 358.14v279.069h-186.046v-279.069h46.7207
c0.348633 25.6973 21.2559 46.5117 47.0469 46.5117c25.79 0 46.6738 -20.8145 47.0459 -46.5117h45.2324z" />
    <glyph glyph-name="glyph67" unicode="&#xe010;" horiz-adv-x="402"
d="M201.768 520.931c0 15.0225 7.51172 22.5342 22.5352 22.5342c15.0225 0 22.5342 -7.51172 22.5342 -22.5342c0 -15.0234 -7.51172 -22.5352 -22.5342 -22.5352c-15.0234 0 -22.5352 7.51172 -22.5352 22.5352zM340.581 730.232
c12.8486 0 23.8135 -4.54004 32.8926 -13.6191s13.6191 -20.043 13.6191 -32.8926v-511.628c0 -51.3721 -18.165 -95.2227 -54.4941 -131.552s-80.1797 -54.4941 -131.552 -54.4941s-95.2227 18.165 -131.553 54.4941c-36.3291 36.3291 -54.4941 80.1797 -54.4941 131.552
v511.628c0 12.8496 4.54004 23.8135 13.6191 32.8926s20.043 13.6191 32.8926 13.6191h279.069zM132 265.116c6.2207 0 11.5322 2.2002 15.9336 6.60156s6.60156 9.71289 6.60156 15.9336s-2.2002 11.5312 -6.60156 15.9326s-9.71289 6.60156 -15.9336 6.60156
s-11.5322 -2.2002 -15.9336 -6.60156s-6.60156 -9.71191 -6.60156 -15.9326s2.2002 -11.5322 6.60156 -15.9336s9.71289 -6.60156 15.9336 -6.60156zM247.559 172.093c12.8486 0 23.8125 4.54004 32.8916 13.6191c9.0791 9.08008 13.6191 20.0439 13.6191 32.8926
s-4.54004 23.8135 -13.6191 32.8926s-20.043 13.6191 -32.8916 13.6191c-12.8496 0 -23.8135 -4.54004 -32.8926 -13.6191s-13.6191 -20.0439 -13.6191 -32.8926s4.54004 -23.8125 13.6191 -32.8926c9.0791 -9.0791 20.0439 -13.6191 32.8926 -13.6191zM294.069 358.14
v279.069h-186.046v-279.069h46.7207c0.174805 12.8652 4.83984 23.834 13.9951 32.9053c9.15625 9.07129 20.1729 13.6064 33.0518 13.6064c12.875 0 23.8887 -4.53516 33.04 -13.6045c9.15039 -9.07031 13.8193 -20.0391 14.0059 -32.9072h45.2324z" />
    <glyph glyph-name="glyph68" unicode="&#xe073;"
d="M759.186 451.163v-186.047h-93.0225v-46.5117c0 -25.6279 -20.8838 -46.5117 -46.5117 -46.5117h-558.14c-25.6279 0 -46.5117 20.8838 -46.5117 46.5117v279.07c0 25.5342 20.8838 46.5107 46.5117 46.5107h558.14c25.6279 0 46.5117 -20.9766 46.5117 -46.5107
v-46.5117h93.0225z" />
    <glyph glyph-name="glyph69" unicode="&#x2192;"
d="M387.465 730.232l371.721 -372.093l-371.721 -372.093l-131.906 131.93l146.883 146.884h-387.441v186.675h387.441l-146.79 146.79z" />
    <glyph glyph-name="glyph70" unicode="&#xe06e;" horiz-adv-x="588"
d="M387.093 730.232c102.744 0 186.047 -83.3018 186.047 -186.047v-372.093c0 -102.744 -83.3027 -186.046 -186.047 -186.046h-186.046c-102.744 0 -186.047 83.3018 -186.047 186.046v372.093c0 102.745 83.3027 186.047 186.047 186.047h186.046zM294.069 31.1162
c26.4893 0 47.9541 21.4424 47.9541 47.9531c0 26.5117 -21.4883 47.9541 -47.9541 47.9541c-26.4648 0 -47.9531 -21.4424 -47.9531 -47.9541c0 -26.5107 21.4648 -47.9531 47.9531 -47.9531zM480.116 172.093v372.093c0 51.2334 -41.791 93.0234 -93.0234 93.0234
h-186.046c-51.2793 0 -93.0234 -41.79 -93.0234 -93.0234v-372.093h372.093z" />
    <glyph glyph-name="glyph71" unicode="&#xe018;"
d="M759.186 358.14c0 -205.488 -166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093s372.093 -166.604 372.093 -372.093zM294.069 218.604l93.0234 -93.0234l93.0234 93.0234h-46.5117v372.093h-93.0234v-372.093
h-46.5117z" />
    <glyph glyph-name="glyph72" unicode="&#x2699;"
d="M759.186 312.349l-111.209 -47.418c-3.09277 -8.62793 -6.2793 -17.0938 -10.1855 -25.4424l45.79 -111l-65.7666 -65.7676l-111.559 44.6982c-8.34863 -4 -17.0703 -7.44238 -25.8838 -10.7217l-46.0469 -110.65h-93.0225l-47.0469 110.093
c-9.25586 3.18555 -18.2559 6.53516 -27.0703 10.7207l-109.837 -45.2324l-65.7676 65.7676l44.2324 110.279c-4.34863 9 -7.97656 18.1855 -11.3486 27.6279l-109.465 45.6045v93.0234l109.372 46.7666c3.37207 9.46582 6.90723 18.6279 11.2793 27.6279l-45.0703 109.559
l65.7676 65.7676l110.559 -44.4189c8.81348 4.18652 17.7207 7.62793 26.9766 10.9072l45.9766 110.093h93.0234l47.1396 -110.465c8.90723 -3.18652 17.5352 -6.62793 25.9766 -10.7207l110.744 45.6045l65.791 -65.7676l-44.8838 -111.744
c4 -8.2793 7.25586 -16.7207 10.3486 -25.4424l111.186 -46.3252v-93.0234zM386.372 218.604c77.0234 0 139.535 62.5117 139.535 139.535s-62.5117 139.535 -139.535 139.535s-139.535 -62.5117 -139.535 -139.535s62.5117 -139.535 139.535 -139.535z" />
    <glyph glyph-name="glyph73" unicode="&#xe022;" horiz-adv-x="402"
d="M201.047 265.116c32.79 0 63.7666 6.7207 93.0225 17.1162v-296.186l-93.0225 93.0225l-93.0234 -93.0225v296.186c29.2559 -10.3955 60.2324 -17.1162 93.0234 -17.1162zM15 544.186c0 124.031 62.0156 186.047 186.047 186.047
c124.03 0 186.046 -62.0156 186.046 -186.047c0 -124.03 -62.0156 -186.046 -186.046 -186.046c-124.031 0 -186.047 62.0156 -186.047 186.046z" />
    <glyph glyph-name="glyph74" unicode="&#xe04c;"
d="M759.186 -13.9531l-558.139 372.093l558.139 372.093v-744.186zM15 79.0693v558.14h186.047v-558.14h-186.047z" />
    <glyph glyph-name="glyph75" unicode="&#xe05a;"
d="M666.163 637.209h93.0225v-93.0234h-93.0225v-418.604c0 -77.0225 -62.5117 -139.534 -139.535 -139.534h-279.069c-77.0234 0 -139.535 62.5117 -139.535 139.534v418.604h-93.0234v93.0234h93.0234h93.0234c0 51.4189 41.6045 93.0234 93.0225 93.0234h186.047
c51.4189 0 93.0234 -41.6045 93.0234 -93.0234h93.0234zM294.069 172.093c25.6982 0 46.5117 20.8145 46.5117 46.5117c0 25.6982 -20.8135 46.5117 -46.5117 46.5117c-25.6973 0 -46.5107 -20.8135 -46.5107 -46.5117c0 -25.6973 20.8135 -46.5117 46.5107 -46.5117z
M294.069 358.14c25.6982 0 46.5117 20.8135 46.5117 46.5117c0 25.6973 -20.8135 46.5117 -46.5117 46.5117c-25.6973 0 -46.5107 -20.8145 -46.5107 -46.5117c0 -25.6982 20.8135 -46.5117 46.5107 -46.5117zM480.116 172.093c25.6973 0 46.5117 20.8145 46.5117 46.5117
c0 25.6982 -20.8145 46.5117 -46.5117 46.5117s-46.5117 -20.8135 -46.5117 -46.5117c0 -25.6973 20.8145 -46.5117 46.5117 -46.5117zM480.116 358.14c25.6973 0 46.5117 20.8135 46.5117 46.5117c0 25.6973 -20.8145 46.5117 -46.5117 46.5117
s-46.5117 -20.8145 -46.5117 -46.5117c0 -25.6982 20.8145 -46.5117 46.5117 -46.5117z" />
    <glyph glyph-name="glyph76" unicode="&#xe027;"
d="M201.047 172.093v186.047l93.0225 93.0234l93.0234 -93.0234l186.047 186.046l186.046 -186.046v-186.047h-558.139zM108.023 79.0693h651.162l-93.0225 -93.0225h-558.14h-93.0234v93.0225v558.14l93.0234 93.0234v-651.163z" />
    <glyph glyph-name="glyph77" unicode="&#xe003;"
d="M711.256 172.093h-370.581c-139.442 0 -139.442 0 -232.466 -93.0234c-92.9531 93.0234 -241.302 558.14 278.907 558.14c186.047 0 372.093 -46.5117 372.093 -279.069c0 -93.0234 -47.9531 -186.047 -47.9531 -186.047z" />
    <glyph glyph-name="glyph78" unicode="&#xe064;"
d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM387.814 266.651c51.0693 0 92.3018 41.2559 92.3018 92.209
c0 51.0703 -41.2324 92.3027 -92.3018 92.3027c-50.8838 0 -92.21 -41.2559 -92.21 -92.3027c0 -50.9766 41.3262 -92.209 92.21 -92.209z" />
    <glyph glyph-name="glyph79" unicode="&#x275e;"
d="M15 637.209h279.069v-279.069c0 -153.884 -125.186 -279.07 -279.069 -279.07v93.0234c102.651 0 186.047 83.4883 186.047 186.047h-186.047v279.069zM480.116 637.209h279.069v-279.069c0 -153.884 -125.186 -279.07 -279.069 -279.07v93.0234
c102.651 0 186.047 83.4883 186.047 186.047h-186.047v279.069z" />
    <glyph glyph-name="glyph80" unicode="&#xe01b;"
d="M387 234.14h0.0927734c0 -137 -111.093 -248.093 -248.093 -248.093c-45.0469 0 -87.209 12 -123.628 32.8828l-0.37207 0.46582c74.0469 42.8604 123.907 122.907 124 214.651l-0.0927734 0.0927734c0 68.4883 55.5117 124 124 124s124.093 -55.5117 124.093 -124z
M731.93 702.977c36.3496 -36.3252 36.3496 -95.209 0 -131.535l-265.162 -265.162c-21.791 61.3955 -70.1162 109.744 -131.535 131.628l265.163 265.069c36.3252 36.3262 95.209 36.3262 131.534 0z" />
    <glyph glyph-name="glyph81" unicode="&#x2601;"
d="M573.14 497.675c102.558 0 186.046 -83.4424 186.046 -186.047c0 -102.651 -83.4883 -186.047 -186.046 -186.047h-372.093c-102.559 0 -186.047 83.3955 -186.047 186.047c0 102.604 83.4883 186.047 186.047 186.047c8.25586 0 16.4414 -1.2334 24.6279 -2.32617
c31.9766 56.6045 91.9297 95.3486 161.418 95.3486c68.0469 0 128 -38.2783 160.419 -95.6045c8.46484 1.16309 16.8135 2.58203 25.6279 2.58203zM573.14 218.604c51.3252 0 93.0234 41.7441 93.0234 93.0234s-41.6982 93.0234 -93.0234 93.0234
c-51.3262 0 -93.0234 -41.7441 -93.0234 -93.0234h-93.0234c0 60.5811 29.5352 113.953 74.3955 147.931c-17.0693 23.209 -44.3252 38.1162 -74.3955 38.1162c-51.3252 0 -93.0234 -41.7441 -93.0234 -93.0234c0 -11.21 1.90723 -22.1631 5.81445 -32.4883
l-87.1162 -32.6045c-7.62793 20.3486 -11.4424 41.8828 -11.6279 63.8135c-47.9766 -1.39551 -93.1162 -40.7441 -93.1162 -91.7441c0 -51.2793 41.6973 -93.0234 93.0234 -93.0234h372.093z" />
    <glyph glyph-name="glyph82" unicode="&#xe025;"
d="M387.093 637.209c205.488 0 372.093 -275.441 372.093 -275.441s-166.604 -282.698 -372.093 -282.698s-372.093 282.698 -372.093 282.698s166.604 275.441 372.093 275.441zM387.093 172.093c102.744 0 186.047 83.3027 186.047 186.047
s-83.3027 186.046 -186.047 186.046s-186.046 -83.3018 -186.046 -186.046s83.3018 -186.047 186.046 -186.047zM294.069 357.768c0 62.0156 31.0078 93.0234 93.0234 93.0234s93.0234 -31.0078 93.0234 -93.0234s-31.0078 -93.0234 -93.0234 -93.0234
s-93.0234 31.0078 -93.0234 93.0234z" />
    <glyph glyph-name="glyph83" unicode="&#xe048;"
d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM247.559 172.093l372.278 186.047l-372.278 186.046v-372.093z" />
    <glyph glyph-name="glyph84" unicode="&#xe041;"
d="M759.186 172.093h-558.325v-93.0234l-185.86 139.535l185.86 139.535v-93.0234h558.325v-93.0234zM15 451.163v93.0225h558.14v93.0234l186.046 -139.534l-186.046 -139.535v93.0234h-558.14z" />
    <glyph glyph-name="glyph85" unicode="&#xe006;"
d="M731.93 702.977c36.3496 -36.3252 36.3496 -95.209 0 -131.535l-351.744 -351.837c-8.16211 30.6982 -23.4414 59.9541 -47.418 83.9307c-23.6045 23.6279 -52.6748 39.418 -84.1162 47.6045l351.744 351.837c36.3252 36.3262 95.209 36.3262 131.534 0zM267 106.232
l-252 -120.186l120.465 251.721c36.3262 36.3252 95.21 36.3252 131.535 0c36.3252 -36.3262 36.3252 -95.209 0 -131.535z" />
    <glyph glyph-name="glyph86" unicode="&#xe070;"
d="M387.093 265.116c0 62.0156 31.0078 93.0234 93.0234 93.0234s93.0234 -31.0078 93.0234 -93.0234s-31.0078 -93.0234 -93.0234 -93.0234s-93.0234 31.0078 -93.0234 93.0234zM666.163 544.186c25.7041 0 47.6338 -9.08105 65.7891 -27.2432
c18.1553 -18.1611 27.2334 -40.0879 27.2334 -65.7793v-465.116h-744.186v465.116c0 25.6855 9.08203 47.6113 27.2471 65.7754c18.165 18.165 40.0898 27.2471 65.7764 27.2471h186.14l79.3486 153.838c3.04004 9.46191 8.61621 17.1953 16.7285 23.2012
c8.1123 6.00488 17.2959 9.00781 27.5508 9.00781h127.721c10.1338 0 19.2324 -2.93359 27.2939 -8.80078c8.0625 -5.86719 13.6855 -13.4531 16.8691 -22.7568zM154.535 358.14c12.8486 0 23.8125 4.54004 32.8926 13.6191c9.0791 9.0791 13.6191 20.0439 13.6191 32.8926
s-4.54004 23.8125 -13.6191 32.8926c-9.08008 9.0791 -20.0439 13.6191 -32.8926 13.6191s-23.8135 -4.54004 -32.8926 -13.6191c-9.0791 -9.08008 -13.6191 -20.0439 -13.6191 -32.8926s4.54004 -23.8135 13.6191 -32.8926s20.043 -13.6191 32.8926 -13.6191z
M480.116 79.0693c51.3721 0 95.2227 18.165 131.553 54.4941c36.3291 36.3301 54.4941 80.1807 54.4941 131.553s-18.165 95.2227 -54.4941 131.553c-36.3301 36.3291 -80.1807 54.4941 -131.553 54.4941s-95.2227 -18.165 -131.553 -54.4941
c-36.3291 -36.3301 -54.4941 -80.1807 -54.4941 -131.553s18.165 -95.2227 54.4941 -131.553c36.3301 -36.3291 80.1807 -54.4941 131.553 -54.4941z" />
    <glyph glyph-name="glyph87" unicode="&#xe03a;"
d="M759.186 358.14c0 -205.488 -166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093s372.093 -166.604 372.093 -372.093zM247.559 311.628h279.069v-46.5117l93.0234 93.0234l-93.0234 93.0234v-46.5117h-279.069
v46.5117l-93.0234 -93.0234l93.0234 -93.0234v46.5117z" />
    <glyph glyph-name="glyph88" unicode="&#x2935;"
d="M666.163 311.628v-46.5117h93.0225l-186.046 -186.047l-186.047 186.047h93.0234v46.5117c0 128.441 -104.116 232.558 -232.558 232.558c-128.442 0 -232.559 -104.116 -232.559 -232.558c0 179.768 145.814 325.581 325.581 325.581
c179.768 0 325.582 -145.813 325.582 -325.581z" />
    <glyph glyph-name="glyph89" unicode="&#xe039;"
d="M247.559 358.14l46.5107 -46.5117h-139.534v-93.0234l-139.535 139.535l139.535 139.535v-93.0234h139.534zM525.186 358.14l-45.0693 46.5117h139.535v93.0234l139.534 -139.535l-139.534 -139.535v93.0234h-139.535z" />
    <glyph glyph-name="glyph90" unicode="&#xe026;"
d="M507.372 405.116l-188 318.303c22.0234 4.0459 44.5117 6.81348 67.7207 6.81348c97.9307 0 186.232 -38.5576 252.628 -100.372zM478.977 265.116l193.628 328.953c53.3262 -64.3721 86.5811 -145.86 86.5811 -235.93c0 -32.3486 -5.44141 -63.1396 -13.1855 -93.0234
h-267.023zM398.721 497.675h-356.093c41.0469 101.256 125.675 178.906 230.325 212.837zM378.559 218.604h353.022c-40.6973 -100.372 -124.186 -177.512 -227.65 -212.023zM296.512 451.163l-194.163 -329.954c-53.7441 64.6055 -87.3486 146.442 -87.3486 236.931
c0 32.3486 5.39551 63.1396 13.1631 93.0234h268.349zM268.907 312.535l188.907 -319.396c-22.9307 -4.37207 -46.5117 -7.09277 -70.7217 -7.09277c-97.4648 0 -185.418 38.3252 -251.768 99.5576z" />
    <glyph glyph-name="glyph91" unicode="&#xe031;" horiz-adv-x="588"
d="M480.116 311.628h93.0234c0 -154.069 -125 -279.069 -279.07 -279.069c-154.069 0 -279.069 125 -279.069 279.069s125 279.069 279.069 279.069h93.5586v93.0234l139.813 -139.535l-139.813 -140v92.4893l-93.5586 1c-102.65 0 -186.046 -83.3955 -186.046 -186.047
s83.3955 -186.047 186.046 -186.047c102.651 0 186.047 83.3955 186.047 186.047z" />
    <glyph glyph-name="glyph92" unicode="&#xe074;"
d="M278.628 271.209c6.81348 -7.62793 13.9072 -14.7207 21.3486 -21.4414c-43.0693 -43.0703 -102.651 -102.675 -132.186 -132.279c-10.0938 10.1865 -11.4424 11.4424 -21.4424 21.4424c29.6279 29.5342 89.1396 89.209 132.279 132.278zM483.209 730.232
c152.163 0 275.977 -123.721 275.954 -275.907c0 -152.069 -123.814 -275.79 -275.978 -275.79c-36.3252 0 -70.8604 7.44141 -102.65 20.3486l-212.744 -212.837l-152.791 152.884l212.651 212.674c-12.8145 31.791 -20.2559 66.3262 -20.2559 102.744
c0 152.163 123.744 275.884 275.813 275.884zM483.209 271.465c100.931 0 183.047 82.1396 183.047 182.86c0 100.838 -82.1162 182.954 -183.047 182.954c-100.744 0 -182.86 -82.1162 -182.86 -182.954c0 -100.744 82.1162 -182.86 182.86 -182.86z" />
    <glyph glyph-name="glyph93" unicode="&#xe06c;"
d="M619.651 637.209h139.534v-651.162h-744.186v651.162h139.535v-47.6045c0 -51.4189 41.6045 -93.0234 93.0234 -93.0234c51.418 0 93.0225 41.6045 93.0225 93.0234v47.6045h93.0234v-47.6045c0 -51.4189 41.6045 -93.0234 93.0234 -93.0234
s93.0234 41.6045 93.0234 93.0234v47.6045zM247.559 79.0693v93.0234h-93.0234v-93.0234h93.0234zM247.559 265.116v93.0234h-93.0234v-93.0234h93.0234zM433.604 79.0693v93.0234h-93.0234v-93.0234h93.0234zM433.604 264.931v93.0225h-93.0234v-93.0225h93.0234z
M526.628 79.0693l93.0234 93.0234h-93.0234v-93.0234zM619.651 265.116v93.0234h-93.0234v-93.0234h93.0234zM201.047 590.697v93.0234c0 25.6982 20.8135 46.5117 46.5117 46.5117c25.6973 0 46.5107 -20.8135 46.5107 -46.5117v-93.0234
c0 -25.6973 -20.8135 -46.5117 -46.5107 -46.5117c-25.6982 0 -46.5117 20.8145 -46.5117 46.5117zM480.116 590.697v93.0234c0 25.6982 20.8145 46.5117 46.5117 46.5117s46.5117 -20.8135 46.5117 -46.5117v-93.0234c0 -25.6973 -20.8145 -46.5117 -46.5117 -46.5117
s-46.5117 20.8145 -46.5117 46.5117z" />
    <glyph glyph-name="glyph94" unicode="&#xe046;" horiz-adv-x="681"
d="M480.116 730.232h93.0234v-90.1162c0 -62.1396 -24.1631 -120.465 -68.1396 -164.419l-263.163 -261.628c-23.8838 -24 -37.3486 -55.0459 -39.79 -88.4883h92.0225l-139.534 -139.534l-139.535 139.534h94.1162c2.53516 58.2334 25.4424 112.744 67.0469 154.256
l263.162 261.722c26.2559 26.2559 40.791 61.3018 40.791 98.5576v90.1162zM572.047 125.581h94.1162l-139.535 -139.534l-139.535 139.534h92.0234c-2.46484 33.4424 -15.9072 64.6045 -39.8838 88.4883l-52.1396 51.8613l65.9541 65.6045l51.8604 -51.5117
c41.6045 -41.6982 64.6045 -96.209 67.1396 -154.442z" />
    <glyph glyph-name="glyph95" unicode="&#xe06b;"
d="M15 -13.9531v465.116h744.186v-465.116h-744.186zM433.604 544.186v186.047h232.559l93.0225 -186.047h-325.581zM340.581 730.232v-186.047h-325.581l93.0234 186.047h232.558z" />
    <glyph glyph-name="glyph96" unicode="&#xe068;" horiz-adv-x="495"
d="M411.988 662.093c90.8604 -90.79 90.8604 -238.093 -0.0234375 -328.86c0 0 -164.512 -161.163 -164.512 -347.209c0 186.046 -164.325 347.209 -164.325 347.209c-90.8369 90.7676 -90.8369 238.07 0 328.86c90.8604 90.8379 238.023 90.8379 328.86 0zM247.477 404.512
c51.5117 0 93.1162 41.6045 93.1162 93.0234c0 51.418 -41.6045 93.0234 -93.1162 93.0234c-51.3252 0 -92.9297 -41.6055 -92.9297 -93.0234c0 -51.4189 41.6045 -93.0234 92.9297 -93.0234z" />
    <glyph glyph-name="glyph97" unicode="&#xe00a;" horiz-adv-x="681"
d="M573.14 -13.9531v744.186h93.0234v-744.186h-93.0234zM387.093 -13.9531v558.139h93.0234v-558.139h-93.0234zM201.047 -13.9531v372.093h93.0225v-372.093h-93.0225zM15 -13.9531v186.046h93.0234v-186.046h-93.0234z" />
    <glyph glyph-name="glyph98" unicode="&#xe072;"
d="M201.047 172.093c-102.744 0 -186.047 83.3027 -186.047 186.047s83.3027 186.046 186.047 186.046v-372.093zM294.069 544.186l186.047 93.0234v-558.14l-186.047 93.0234v372.093zM573.232 172.186v93.0234c7.7207 0 15.5352 1 23.3486 2.90723
c40.791 10.3486 69.582 47.4189 69.582 90.0234s-28.791 79.5811 -70.0469 90.0234c-7.34863 1.81348 -15.1631 2.81348 -22.8838 2.81348v93.0234c15.2559 0 30.5117 -1.90723 45.5117 -5.53516c82.7676 -21.0693 140.441 -95.1162 140.441 -180.325
c0 -85.3027 -57.6738 -159.419 -140.162 -180.325c-15.4424 -3.72168 -30.7207 -5.62891 -45.791 -5.62891z" />
    <glyph glyph-name="glyph99" unicode="&#x2714;"
d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM571.14 239.86l-118.279 118.279l118.279 118.279l-65.7676 65.7666l-118.279 -118.278
l-118.279 118.278l-65.7666 -65.7666l118.278 -118.279l-118.278 -118.279l65.7666 -65.7676l118.279 118.279l118.279 -118.279z" />
    <glyph glyph-name="glyph100" unicode="&#xe077;"
d="M745.529 716.604c18.1621 -18.1631 18.1621 -47.6045 -0.0234375 -65.7676l-94.9307 -94.7441c59.791 -90.209 49.9766 -213.116 -29.6045 -292.604l-139.256 -139.535c-45.4189 -45.418 -106.86 -68.1387 -164.419 -68.1387
c-44.6973 0 -89.4883 12.8135 -128.278 38.6045l-94.6514 -94.7441c-9.09277 -9.09375 -20.9766 -13.6279 -32.8838 -13.6279s-23.791 4.53418 -32.8604 13.6279c-18.1631 18.1621 -18.1631 47.6045 0 65.7666l94.6514 94.7441
c-59.791 90.21 -49.9775 213.117 29.6045 292.605l139.534 139.534c43.4658 45.4189 104.907 68.1396 164.419 68.1396c44.6982 0 89.209 -12.8135 128 -38.6045l94.6514 94.7441c18.1631 18.1631 47.8838 18.1631 66.0469 0zM596.087 427.907
c0 21.1621 -5.06934 41.3252 -14 59.7676l-70.6748 -70.8604c-9.06934 -9.09375 -20.9766 -13.6279 -32.79 -13.6279c-11.9072 0 -23.791 4.53418 -32.8838 13.6279c-18.1631 18.1621 -18.1631 47.6045 0 65.7666l70.7676 70.8604c-18.5117 8.81445 -38.6045 14 -59.6748 14
c-37.2559 0 -74.2559 -14.5342 -100.604 -40.8828l-137.581 -139.535c-26.3496 -26.3486 -40.8838 -61.3955 -40.8838 -98.6514c0 -21.1631 5.09277 -41.3252 14 -59.7676l69.3945 69.3955c18.1631 18.1631 47.6055 18.1631 63.8145 0
c18.1631 -18.1631 18.1631 -47.6045 0 -65.7676l-67.4414 -69.3955c18.5342 -8.81348 38.6973 -14 59.7666 -14c35.3027 0 72.21 14.5352 98.6514 40.8838l139.256 139.535c26.3486 26.3486 40.8838 61.3955 40.8838 98.6514z" />
    <glyph glyph-name="glyph101" unicode="&#xe03b;" horiz-adv-x="309"
d="M201.047 265.116v-139.535h93.0225l-139.534 -139.534l-139.535 139.534h93.0234v139.535h93.0234zM108.023 451.163v139.534h-93.0234l139.535 139.535l139.534 -139.535h-93.0225v-139.534h-93.0234z" />
    <glyph glyph-name="glyph102" unicode="&#xe01e;"
d="M704.488 412l-13.6045 -13.7207l67.0459 -66.9072l-65.7666 -65.5811l-66.9541 66.9062l-346.396 -346.65h-172.418l-91.3955 92.8369v168.604l347.721 347.931l-69.1855 69.1855l65.5342 65.6279l69.1162 -69.2324l13.8145 13.7207
c36.1396 36.2559 83.6973 54.4189 131.303 54.4189c47.3486 0 94.9297 -18.1631 131.186 -54.4189c72.6748 -72.4883 72.6748 -190.186 0 -262.721zM255 93.791l304.512 304.697l-131.14 131.14l-300.372 -300.559c32.3486 -1.09277 64.4883 -13.1855 89.1162 -37.8838
c26.791 -26.8135 38.9766 -62.1387 37.8838 -97.3945z" />
    <glyph glyph-name="glyph103" unicode="&#xe036;" horiz-adv-x="681"
d="M570.419 588.697c61.7666 -61.5811 95.7441 -143.441 95.7441 -230.558c0 -179.512 -146.07 -325.581 -325.582 -325.581v-46.5117l-93.0225 93.0225l93.0225 93.0234v-46.5117c128.279 0 232.559 104.279 232.559 232.559c0 62.2324 -24.3486 120.721 -68.3027 164.697z
M433.604 637.209l-93.0234 -93.0234v46.5117c-128.278 0 -232.558 -104.278 -232.558 -232.558c0 -62.2324 24.3486 -120.721 68.3018 -164.698l-65.5811 -65.8604c-61.7676 61.582 -95.7441 143.442 -95.7441 230.559c0 179.512 146.069 325.581 325.581 325.581v46.5117z
" />
    <glyph glyph-name="glyph104" unicode="&#xe02c;"
d="M15 79.0693c0 62.0312 31.0156 93.0469 93.0469 93.0469c62.0303 0 93.0459 -31.0156 93.0459 -93.0469c0 -62.0303 -31.0156 -93.0459 -93.0459 -93.0459c-62.0312 0 -93.0469 31.0156 -93.0469 93.0459zM155.069 265.023v93.1162
c64.1133 0 118.909 -22.7549 164.388 -68.2646s68.2178 -100.336 68.2178 -164.479h-93.0703c0 38.5186 -13.6357 71.4189 -40.9062 98.7031c-27.2705 27.2832 -60.1475 40.9248 -98.6289 40.9248zM154.441 451.163v93.0225c75.7012 0 145.709 -18.7051 210.023 -56.1143
c64.3154 -37.4102 115.173 -88.2793 152.574 -152.608c37.4004 -64.3291 56.1006 -134.352 56.1006 -210.067h-93.0703c0 58.8857 -14.5469 113.351 -43.6416 163.393c-29.0938 50.042 -68.6504 89.6152 -118.671 118.719
c-50.0195 29.1045 -104.458 43.6562 -163.315 43.6562zM154.441 637.209v93.0234c81.8926 0 160.163 -15.9893 234.812 -47.9668c74.6484 -31.9775 138.979 -74.9736 192.988 -128.988s97.0029 -118.354 128.979 -193.017
c31.9766 -74.6641 47.9648 -152.952 47.9648 -234.865h-93.0225c0 69.3096 -13.5303 135.554 -40.5908 198.733c-27.0605 63.1807 -63.4434 117.625 -109.146 163.333c-45.7041 45.708 -100.14 82.0928 -163.305 109.155c-63.165 27.0605 -129.393 40.5918 -198.681 40.5918
z" />
    <glyph glyph-name="glyph105" unicode="&#x2139;" horiz-adv-x="402"
d="M61.5117 358.14h-46.5117v93.0234h279.069l0.186523 -325.582c0 -25.6973 20.8838 -46.5117 46.5117 -46.5117h46.3252v-93.0225h-372.093v93.0225h46.5117c25.6973 0 46.5117 20.8145 46.5117 46.5117v186.047c0 25.6973 -20.8145 46.5117 -46.5117 46.5117z
M108.023 637.209c0 62.0156 31.0078 93.0234 93.0234 93.0234c62.0146 0 93.0225 -31.0078 93.0225 -93.0234s-31.0078 -93.0234 -93.0225 -93.0234c-62.0156 0 -93.0234 31.0078 -93.0234 93.0234z" />
    <glyph glyph-name="glyph106" unicode="&#xe02a;"
d="M434.14 405.232v134.628c65.9531 -17.0234 117.558 -68.6738 134.628 -134.628h-134.628zM434.14 311.047h134.628c-17.0703 -65.9072 -68.6748 -117.605 -134.628 -134.582v134.582zM339.953 405.232h-134.628c16.9775 65.9531 68.6748 117.604 134.628 134.628
v-134.628zM339.953 311.047v-134.582c-65.9531 16.9766 -117.65 68.6748 -134.628 134.582h134.628zM434.14 635.977v94.2559c170.069 -21.4883 303.512 -154.977 325.046 -325h-94.3018c-20 118 -112.744 210.768 -230.744 230.744zM109.209 405.232h-94.209
c21.4414 170.023 154.977 303.512 324.953 325v-94.2559c-118.022 -19.9766 -210.767 -112.721 -230.744 -230.744zM339.953 80.3486v-94.3018c-169.977 21.4414 -303.512 154.977 -324.953 325h94.209c20 -118.047 112.744 -210.722 230.744 -230.698zM664.884 311.047
h94.3018c-21.5342 -170.023 -154.977 -303.559 -325.046 -325v94.3018c118 19.9766 210.768 112.651 230.744 230.698z" />
    <glyph glyph-name="glyph107" unicode="&#xe057;"
d="M759.186 79.0693l-93.0225 -93.0225l-325.582 325.674l-139.534 -139.535l-186.047 558.047l558.14 -186.047l-139.535 -139.534z" />
    <glyph glyph-name="glyph108" unicode="&#x26bf;"
d="M526.628 730.232c128.441 0 232.558 -104.116 232.558 -232.558c0 -128.442 -104.116 -232.559 -232.558 -232.559c-14.5352 0 -28.5352 1.7207 -42.2324 4.2793l-4.2793 -4.2793v-93.0234h-93.0234v-93.0234h-93.0234v-93.0225h-279.069v186.046l283.349 283.349
c-2.55762 13.6982 -4.2793 27.6982 -4.2793 42.2334c0 128.441 104.116 232.558 232.559 232.558zM526.813 451.163c25.6982 0 46.5117 20.8135 46.5117 46.5117c0 25.6973 -20.8135 46.5107 -46.5117 46.5107c-25.6973 0 -46.5107 -20.8135 -46.5107 -46.5107
c0 -25.6982 20.8135 -46.5117 46.5107 -46.5117z" />
    <glyph glyph-name="glyph109" unicode="&#x2796;"
d="M15 265.116v186.047h744.186v-186.047h-744.186z" />
    <glyph glyph-name="glyph110" unicode="&#xe00b;"
d="M293.791 450.441v93.7441h185.86v-93.7441h-185.86zM665.535 543.093l92.9297 -93.0234h-92.9297v-464.022h-557.604c-51.3262 0 -92.9307 41.6045 -92.9307 93.0225v558.14c0 51.4189 41.6045 93.0234 92.9307 93.0234h557.604v-93.3955h93.6504zM572.604 79.0693
h-0.0234375v558.14h-371.721v-558.14h371.744z" />
    <glyph glyph-name="glyph111" unicode="&#xe061;"
d="M712.675 311.628c25.6973 0 46.5107 -20.8135 46.5107 -46.5117v-186.047c0 -25.6973 -20.8135 -46.5107 -46.5107 -46.5107h-139.535v279.069v93.0234c0 102.651 -83.3955 186.046 -186.047 186.046s-186.046 -83.3945 -186.046 -186.046v-93.0234v-279.069h-139.535
c-25.6982 0 -46.5117 20.8135 -46.5117 46.5107v186.047c0 25.6982 20.8135 46.5117 46.5117 46.5117h46.5117v93.0234c0 154.069 125 279.069 279.069 279.069c154.07 0 279.07 -125 279.07 -279.069v-93.0234h46.5117z" />
    <glyph glyph-name="numbersign" unicode="#" horiz-adv-x="681"
d="M666.163 451.163h-128l-23.1631 -186.047h151.163v-93.0234h-162.791l-23.3027 -186.046h-93.0225l23.2559 186.046h-186l-23.2559 -186.046h-93.0234l23.2559 186.046h-116.279v93.0234h127.907l23.209 186.047h-151.116v93.0225h162.744l23.2559 186.047h93.0234
l-23.2559 -186.047h186l23.2559 186.047h93.0234l-23.2559 -186.047h116.372v-93.0225zM421.931 265.116l23.209 186.047h-186l-23.209 -186.047h186z" />
    <glyph glyph-name="glyph113" unicode="&#xe013;"
d="M387.093 -13.9531c-205.488 0 -372.093 166.604 -372.093 372.046c0 205.535 166.604 372.14 372.093 372.14s372.093 -166.604 372.093 -372.14c0 -205.441 -166.604 -372.046 -372.093 -372.046zM386.372 544.186l-185.325 -186.093l185.325 -185.278v138.813h186.768
v92.9766h-186.768v139.581z" />
    <glyph glyph-name="glyph114" unicode="&#xe017;"
d="M387.093 -13.9531c-205.488 0 -372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093s372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093zM247.559 451.163l-93.0234 -93.0234l93.0234 -93.0234v46.5117h372.093v93.0234h-372.093
v46.5117z" />
    <glyph glyph-name="glyph115" unicode="&#xe050;"
d="M586.768 92.6973l-106.651 -106.65v279.069h279.069l-106.65 -106.651l106.65 -106.65l-65.7666 -65.7676zM15 451.163l106.651 106.651l-105.559 105.65l65.7676 65.7676l105.559 -105.651l106.65 106.651v-279.069h-279.069zM15 51.8145l106.651 106.65
l-106.651 106.651h279.069v-279.069l-106.65 106.65l-106.651 -106.65zM480.116 451.163v279.069l106.651 -106.651l105.744 105.651l65.7676 -65.7676l-105.744 -105.65l106.65 -106.651h-279.069z" />
    <glyph glyph-name="glyph116" unicode="&#xe02e;"
d="M666.163 172.093c51.418 0 93.0225 -41.6973 93.0225 -93.0234c0 -51.3252 -41.6045 -93.0225 -93.0225 -93.0225c-51.4189 0 -93.0234 41.6973 -93.0234 93.0225c0 11.7217 2.7207 22.7217 6.7207 33.0703l-140.907 100.558
c-25.2324 -25.0693 -60.0459 -40.6045 -98.3721 -40.6045c-77.0225 0 -139.534 62.5117 -139.534 139.535c0 7.25586 1.09277 14.2559 2.18555 21.2559l-111.372 37.1631c-8.18555 -7.18652 -18.6279 -11.9072 -30.3486 -11.9072
c-25.6982 0 -46.5117 20.8135 -46.5117 46.5117c0 25.6973 20.8135 46.5117 46.5117 46.5117c22.2559 0 39.9766 -15.9072 44.5117 -36.791l112 -37.4189c23.5352 43.9541 69.3252 74.21 122.558 74.21c30.1631 0 57.7676 -9.72168 80.6748 -26.0703l165.884 165.977
c-8.09277 13.791 -14 28.9775 -14 46.1396c0 51.4189 41.6045 93.0234 93.0234 93.0234c51.418 0 93.0225 -41.6045 93.0225 -93.0234c0 -51.418 -41.6045 -93.0234 -93.0225 -93.0234c-17.1631 0 -32.3496 5.90723 -46.1396 14l-165.884 -165.977
c16.1631 -22.7207 25.9766 -50.5117 25.9766 -80.5811c0 -21.8838 -5.44141 -42.2324 -14.4414 -60.7676l141.813 -101.209c16.0703 13.3486 36.0469 22.4414 58.6748 22.4414z" />
    <glyph glyph-name="glyph117" unicode="&#xe04f;"
d="M699.047 111.953l60.1387 60.1396v-186.046h-186.046l60.1396 60.1387l-153.163 153.163l65.7676 65.7676zM75.1396 604.325l-60.1396 -60.1396v186.047h186.047l-60.1396 -60.1396l153.162 -153.162l-65.7666 -65.7676zM633.279 670.093l-60.1396 60.1396h186.046
v-186.047l-60.1387 60.1396l-153.163 -153.162l-65.7676 65.7676zM294.069 199.349l-153.162 -153.163l60.1396 -60.1387h-186.047v186.046l60.1396 -60.1396l153.163 153.163z" />
    <glyph glyph-name="glyph118" unicode="&#xe004;" horiz-adv-x="681"
d="M340.581 730.232c179.768 0 325.582 -145.813 325.582 -325.581s-145.814 -325.582 -325.582 -325.582c-26.5342 0 -51.9531 4.00098 -76.6738 10.0938l-155.884 -103.116l1 190.046c-58.0469 58.8604 -94.0234 139.442 -94.0234 228.559
c0 179.768 145.813 325.581 325.581 325.581z" />
    <glyph glyph-name="glyph119" unicode="&#x263e;"
d="M587.86 214.325c62.6748 0 120.628 18 171.325 47.1631c-45.7666 -158.628 -190.488 -275.441 -363.906 -275.441c-210.047 0 -380.279 170.325 -380.279 380.349c0 173.419 116.744 318.046 275.441 363.813c-29.2559 -50.5811 -47.2324 -108.558 -47.2324 -171.232
c0 -190.302 154.232 -344.651 344.651 -344.651z" />
    <glyph glyph-name="at" unicode="@"
d="M709.047 172.093h-135.907c-30.3486 0 -56.1396 15.6279 -73.0469 38.1631c-31.418 -24.1631 -70.3018 -39.1631 -113 -39.1631c-102.744 0 -186.046 83.3027 -186.046 186.047s83.3018 186.046 186.046 186.046h186.047v-278.069h75.3018l0.744141 -1.09277
c10.6279 29.4414 16.9775 61.0459 16.9775 94.1162c0 153.884 -125.187 279.069 -279.07 279.069s-279.069 -125.186 -279.069 -279.069s125.186 -279.07 279.069 -279.07c76.9541 0 146.722 31.2559 197.21 81.8613l65.8604 -65.8613
c-67.3027 -67.418 -160.326 -109.022 -263.07 -109.022c-205.488 0 -372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093s372.093 -166.604 372.093 -372.093c0 -67.9541 -18.2549 -131.279 -50.1387 -186.047zM480.116 404.465v45.6982h-93.0234
c-51.2324 0 -93.0234 -41.6982 -93.0234 -93.0234s41.791 -93.0234 93.0234 -93.0234s93.0234 41.6982 93.0234 93.0234v47.3252z" />
    <glyph glyph-name="glyph121" unicode="&#xe05e;"
d="M573.047 451.163c93.1162 0 186.139 -49.4189 186.139 -186.047c0 -133.721 -93.0225 -186.047 -186.139 -186.047h-92.9307c-51.3252 0 -93.0234 -41.6045 -93.0234 -93.0225c-102.744 0 -186.14 83.3018 -186.14 186.046v93.0234
c0 37.0703 8.46582 67.4424 21.6279 93.0234h-21.6279c-92.9297 0 -185.953 52.3252 -185.953 186.046c0 136.629 93.0234 186.047 185.953 186.047h186.14c93.0234 0 185.954 -57.6045 185.954 -186.047v-93.0225zM200.953 451.163h93.1162
c60.6748 0 114.651 -29.2559 148.628 -74.4424c22.791 16.9766 37.4189 44.0469 37.4189 74.4424v93.0225c0 80.9307 -58.2324 93.0234 -93.0234 93.0234h-186.14c-92.9297 0 -92.9297 -65.1396 -92.9297 -93.0234c0 -22.9766 0 -93.0225 92.9297 -93.0225zM573.047 172.093
c93.1162 0 93.1162 69.9541 93.1162 93.0234c0 27.8369 0 93.0234 -93.1162 93.0234l-25.6982 0.0458984l0.0927734 0.046875c-32.2559 -55.418 -91.5811 -93.1162 -160.349 -93.1162c0 35.8838 -20.9766 66.1396 -50.79 81.6748
c-21.0703 -13.2793 -42.2334 -39.1162 -42.2334 -81.6748v-93.0234c0 -30.3486 14.6279 -57.418 37.2559 -74.3955c33.9541 45.1396 88.0234 74.3955 148.791 74.3955h92.9307zM566.604 404.791c-0.62793 -2.13965 -1.37207 -4.23242 -2 -6.30273
c0.62793 2.07031 1.44238 4.16309 2 6.30273z" />
    <glyph glyph-name="glyph122" unicode="&#xe03d;"
d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM433.604 218.604v279.07h46.5117l-93.0234 93.0225l-93.0234 -93.0225h46.5117v-279.07
h-46.5117l93.0234 -93.0234l93.0234 93.0234h-46.5117z" />
    <glyph glyph-name="glyph123" unicode="&#xe03c;" horiz-adv-x="309"
d="M154.535 218.604l46.5117 46.5117v-139.535h93.0225l-139.534 -139.534l-139.535 139.534h93.0234v139.535zM154.535 496.232l-46.5117 -45.0693v139.534h-93.0234l139.535 139.535l139.534 -139.535h-93.0225v-139.534z" />
    <glyph glyph-name="glyph124" unicode="&#x2717;"
d="M292.697 58.6748l-277.697 277.697l132.441 132.465l145.256 -145.256l334.047 334.023l132.441 -132.441z" />
    <glyph glyph-name="glyph125" unicode="&#xe05f;" horiz-adv-x="588"
d="M294.069 358.14c-51.418 0 -93.0225 41.6514 -93.0225 93.0234v186.046c0 51.3721 41.6045 93.0234 93.0225 93.0234c51.4189 0 93.0234 -41.6514 93.0234 -93.0234v-186.046c0 -51.3721 -41.6045 -93.0234 -93.0234 -93.0234zM387.093 79.0693
c51.4189 0 93.0234 -41.6045 93.0234 -93.0225h-372.093c0 51.418 41.6045 93.0225 93.0234 93.0225h46.5117v97.7451c-131.722 22.2549 -232.559 136.395 -232.559 274.349v45.0693c0 25.6973 20.8135 46.5117 46.5117 46.5117
c25.6973 0 46.5117 -20.8145 46.5117 -46.5117v-45.0693c0 -102.604 83.3955 -186.047 186.046 -186.047c102.651 0 186.047 83.4424 186.047 186.047v45.0693c0 25.6973 20.8145 46.5117 46.5117 46.5117s46.5117 -20.8145 46.5117 -46.5117v-45.0693
c0 -137.954 -100.837 -252.094 -232.559 -274.349v-97.7451h46.5117z" />
    <glyph glyph-name="glyph126" unicode="&#xe069;" horiz-adv-x="681"
d="M108.023 730.232h558.14v-744.186h-558.14c-51.3721 0 -93.0234 41.6045 -93.0234 93.0225v558.14c0 51.4189 41.6514 93.0234 93.0234 93.0234zM573.14 79.0693v558.14h-92.6748v-187.674l-93.7441 93.7441l-93.0234 -93.0234v186.953h-92.6504v-558.14h372.093z" />
    <glyph glyph-name="glyph127" unicode="&#xe03f;"
d="M387.093 218.604l46.5117 46.5117v-139.535h93.0234l-139.535 -139.534l-139.534 139.534h93.0225v139.535zM387.093 496.232l-46.5117 -45.0693v139.534h-93.0225l139.534 139.535l139.535 -139.535h-93.0234v-139.534zM247.559 358.14l46.5107 -46.5117h-139.534
v-93.0234l-139.535 139.535l139.535 139.535v-93.0234h139.534zM525.186 358.14l-45.0693 46.5117h139.535v93.0234l139.534 -139.535l-139.534 -139.535v93.0234h-139.535z" />
    <glyph glyph-name="glyph128" unicode="&#xe040;"
d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM526.628 265.116l93.0234 93.0234l-93.0234 93.0234v-46.5117h-93.0234v93.0234h46.5117
l-93.0234 93.0225l-93.0234 -93.0225h46.5117v-93.0234h-93.0225v46.5117l-93.0234 -93.0234l93.0234 -93.0234v46.5117h93.0225v-93.0234h-46.5117l93.0234 -93.0234l93.0234 93.0234h-46.5117v93.0234h93.0234v-46.5117z" />
    <glyph glyph-name="glyph129" unicode="&#xe066;"
d="M517.535 730.232l241.65 -239.558v-504.628l-186.139 154.256l-186.14 -154.256l-186.396 154.441l-185.512 -154.441v744.186h502.535zM433.604 404.651h232.559l-232.559 232.558v-232.558z" />
    <glyph glyph-name="glyph130" unicode="&#x2795;"
d="M759.186 451.163v-186.047h-279.069v-279.069h-186.047v279.069h-279.069v186.047h279.069v279.069h186.047v-279.069h279.069z" />
    <glyph glyph-name="glyph131" unicode="&#xe078;"
d="M750 599c5.46484 -17.4414 9.18555 -35.6045 9.18555 -54.8145c0 -102.697 -83.3018 -186.046 -186.046 -186.046c-28.6045 0 -55.5117 7.0459 -79.6748 18.5811l-372.628 -372.512c-11.0928 -11.2559 -26.6279 -18.1621 -43.79 -18.1621
c-34.3496 0 -62.0469 27.79 -62.0469 61.9531c0 17.2559 7 32.6973 18.1631 43.9766l372.558 372.442c-11.6279 24.3018 -18.6279 51.1162 -18.6279 79.7666c0 102.698 83.3027 186.047 186.047 186.047c18.6279 0 36.3252 -3.58105 53.3252 -8.7207l-115.372 -115.326
v-123.999h122.093z" />
    <glyph glyph-name="glyph132" unicode="&#xe047;" horiz-adv-x="588"
d="M15 730.232l558.14 -372.093l-558.14 -372.093v744.186z" />
    <glyph glyph-name="glyph133" unicode="&#x2605;"
d="M529.813 273.837l90.0234 -287.79l-232.372 178.604l-232.93 -178.604l90.1162 288.512l-229.651 176.604h279.069l93.0234 279.069l93.0234 -279.069h279.069z" />
    <glyph glyph-name="glyph134" unicode="&#xe000;" horiz-adv-x="588"
d="M340.581 730.232l232.559 -232.512v-511.674h-558.14v744.186h325.581zM292.163 451.163h186.046l-186.046 186.046v-186.046z" />
    <glyph glyph-name="glyph135" unicode="&#xe028;"
d="M334.553 279.116l-232.744 -232.558c-115.744 133.813 -115.744 331.302 0 465.116zM478.133 633.535c159.35 -23.3955 281.07 -156.396 281.07 -320.535c0 -180.697 -146.441 -326.953 -329.232 -326.953c-70.7207 0 -136.488 25.6279 -190.629 66.0459l238.791 240.838
v340.604zM387.064 357.768l-266.908 266.953c73.9531 60.4424 165.535 99.2324 266.908 105.512v-372.465z" />
    <glyph glyph-name="glyph136" unicode="&#x26c6;"
d="M573.151 590.697c102.558 0 186.046 -83.4414 186.046 -186.046s-83.4883 -186.047 -186.046 -186.047h-372.093c-102.559 0 -186.047 83.4424 -186.047 186.047s83.4883 186.046 186.047 186.046c8.25586 0 16.4414 -1.23242 24.6279 -2.3252
c31.9766 56.6045 91.9297 95.3486 161.418 95.3486c68.0469 0 128 -38.2793 160.419 -95.6045c8.46484 1.16309 16.8135 2.58105 25.6279 2.58105zM573.151 311.628c51.3252 0 93.0234 41.7441 93.0234 93.0234s-41.6982 93.0234 -93.0234 93.0234
c-51.3262 0 -93.0234 -41.7441 -93.0234 -93.0234h-93.0234c0 60.5811 29.5352 113.953 74.3955 147.93c-17.0693 23.21 -44.3252 38.1162 -74.3955 38.1162c-51.3252 0 -93.0234 -41.7441 -93.0234 -93.0225c0 -11.21 1.90723 -22.1631 5.81445 -32.4893l-87.1162 -32.6045
c-7.62793 20.3496 -11.4424 41.8838 -11.6279 63.8145c-47.9766 -1.39551 -93.1162 -40.7441 -93.1162 -91.7441c0 -51.2793 41.6973 -93.0234 93.0234 -93.0234h372.093zM91.3145 45.6279c-17.4424 -17.4424 -45.791 -17.4424 -63.2334 0
c-17.4414 17.4414 -17.4414 45.791 0 63.2324c17.4424 17.4424 126.466 63.2324 126.466 63.2324s-45.791 -109.023 -63.2324 -126.465zM277.453 45.6279c-17.4414 -17.4424 -45.6973 -17.4424 -63.2324 0c-17.4414 17.4414 -17.4414 45.791 0 63.2324
c17.5352 17.4424 126.466 63.2324 126.466 63.2324s-45.6982 -109.023 -63.2334 -126.465zM463.407 45.6279c-17.4424 -17.4424 -45.791 -17.4424 -63.2324 0c-17.4424 17.4414 -17.4424 45.791 0 63.2324c17.4414 17.4424 126.465 63.2324 126.465 63.2324
s-45.791 -109.023 -63.2324 -126.465z" />
    <glyph glyph-name="glyph137" unicode="&#xe065;"
d="M759.186 32.5586c0 -25.791 -20.8135 -46.5117 -46.5107 -46.5117h-651.163c-25.6982 0 -46.5117 20.7207 -46.5117 46.5117v418.604h744.186v-418.604zM294.069 637.163h465.116v-92.9775h-744.186v186.047h279.069v-93.0693z" />
    <glyph glyph-name="glyph138" unicode="&#xe059;"
d="M759.186 730.232v-558.14h-186.046v-186.046h-558.14v558.139h186.047v186.047h558.139zM480.116 79.0693v93.0234h-279.069v186.047h-93.0234v-279.07h372.093zM666.163 265.116v279.069h-372.094v-279.069h372.094z" />
    <glyph glyph-name="glyph139" unicode="&#xe062;" horiz-adv-x="588"
d="M294.069 358.14c154.07 0 279.07 -125 279.07 -279.07c0 -51.418 -41.6045 -93.0225 -93.0234 -93.0225h-372.093c-51.4189 0 -93.0234 41.6045 -93.0234 93.0225c0 154.07 125 279.07 279.069 279.07zM154.535 590.697c0 93.0234 46.5117 139.535 139.534 139.535
c93.0234 0 139.535 -46.5117 139.535 -139.535c0 -93.0225 -46.5117 -139.534 -139.535 -139.534c-93.0225 0 -139.534 46.5117 -139.534 139.534z" />
    <glyph glyph-name="glyph140" unicode="&#xe05b;"
d="M759.186 451.163v-186.047h-93.0225v-46.5117c0 -25.6279 -20.8838 -46.5117 -46.5117 -46.5117h-558.14c-25.6279 0 -46.5117 20.8838 -46.5117 46.5117v279.07c0 25.5811 20.8838 46.5107 46.5117 46.5107h558.14c25.6279 0 46.5117 -20.9297 46.5117 -46.5107
v-46.5117h93.0225zM573.14 265.116v186.047h-186.047v-186.047h186.047z" />
    <glyph glyph-name="glyph141" unicode="&#xe00c;"
d="M719.86 521.559c24.4189 -49.5117 39.3252 -104.512 39.3252 -163.419c0 -23.4424 -2.7207 -46.1396 -6.90625 -68.5117h-264.349zM504.651 375.814v333.604c78.1162 -26.1631 145.349 -75.9775 190.768 -142.931zM404.488 240.581h333.884
c-26.1631 -78.209 -76.0234 -145.534 -143.069 -190.86zM455.535 457.116l-233.094 233.093c49.8145 24.8145 105.233 40.0234 164.651 40.0234c23.4424 0 46.1865 -2.76758 68.4424 -6.90723v-266.209zM318.651 256.931l231.697 -231.628
c-49.5117 -24.3496 -104.396 -39.2559 -163.256 -39.2559c-23.4414 0 -46.1855 2.7207 -68.4414 6.88379v264zM269.488 340.163v-333.326c-78.0234 26.1631 -145.209 75.9541 -190.535 142.814zM21.9072 426.581v0.0234375h264.581l-232.069 -232.069
c-24.4189 49.5117 -39.4189 104.558 -39.4189 163.604c0 23.4414 2.76758 46.1855 6.90723 68.4414zM177.697 665.559l189.814 -189.814h-331.721c26.0459 77.6748 75.5117 144.488 141.906 189.814z" />
    <glyph glyph-name="glyph142" unicode="&#xe04b;"
d="M15 265.116l372.093 465.116l372.093 -465.116h-744.186zM15 -13.9531v186.046h743.186v-186.046h-743.186z" />
    <glyph glyph-name="glyph143" unicode="&#xe016;"
d="M759.186 358.187c0 -205.535 -166.604 -372.14 -372.093 -372.14s-372.093 166.604 -372.093 372.14c0 205.441 166.604 372.046 372.093 372.046s372.093 -166.604 372.093 -372.046zM201.047 357.465l186.046 -185.372l185.326 185.372h-138.814v186.721h-93.0234
v-186.721h-139.534z" />
    <glyph glyph-name="paragraph" unicode="&#xb6;" horiz-adv-x="588"
d="M573.14 730.232v-93.0234h-93.0234v-651.162h-93.0234v651.162h-93.0234v-651.162h-93.0225v372.093c-102.744 0 -186.047 83.3018 -186.047 186.046c0 102.745 83.3027 186.047 186.047 186.047h93.0225h93.0234h93.0234h93.0234z" />
    <glyph glyph-name="glyph145" unicode="&#xe01a;"
d="M15 358.14c0 205.488 166.604 372.093 372.093 372.093s372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093zM480.116 497.675l-93.0234 93.0225l-93.0234 -93.0225h46.5117v-372.094h93.0234v372.094h46.5117z
" />
    <glyph glyph-name="glyph146" unicode="&#xe015;"
d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM387.814 172.093l185.325 186.047l-185.325 185.325v-138.813h-186.768v-93.0234h186.768
v-139.535z" />
    <glyph glyph-name="glyph147" unicode="&#xe019;"
d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM526.628 265.116l93.0234 93.0234l-93.0234 93.0234v-46.5117h-372.093v-93.0234h372.093
v-46.5117z" />
    <glyph glyph-name="glyph148" unicode="&#xe02d;"
d="M759.186 -13.9531h-106.278c0 351.744 -286.163 637.86 -637.907 637.86v106.325c410.256 0 744.186 -333.837 744.186 -744.186zM546.512 -13.9531h-106.279c0 234.465 -190.86 425.232 -425.232 425.232v106.325c293.069 0 531.512 -238.488 531.512 -531.558z
M333.953 -13.9531h-106.372c0 117.278 -95.3018 212.581 -212.581 212.581v106.372c175.86 0 318.953 -143.093 318.953 -318.953zM121.279 -13.9531h-106.279v106.278c58.7676 0 106.279 -47.6045 106.279 -106.278z" />
    <glyph glyph-name="glyph149" unicode="&#xe037;"
d="M124.093 94.8838c-70.3955 70.3018 -109.093 163.697 -109.093 263.256c0 205.116 166.884 372.093 372.093 372.093l46.5117 -46.5117l-46.5117 -46.5117c-153.884 0 -279.069 -125.186 -279.069 -279.069c0 -74.6748 29.0693 -144.814 81.8604 -197.488
l-57.1396 -7.44238zM387.093 -13.9531l-46.5117 46.3252l46.5117 46.6973c153.884 0 279.07 125.187 279.07 279.07c0 74.4883 -29.0703 144.628 -81.9307 197.396l57.2324 7.53418l8.53516 58.2334c70.3955 -70.3027 109.186 -163.791 109.186 -263.163
c0 -205.116 -166.977 -372.093 -372.093 -372.093z" />
    <glyph glyph-name="glyph150" unicode="&#x2600;"
d="M387.093 544.186c102.651 0 186.047 -83.3018 186.047 -186.046s-83.3955 -186.047 -186.047 -186.047c-102.837 0 -186.046 83.3027 -186.046 186.047s83.209 186.046 186.046 186.046zM433.604 683.721c0 -25.6973 -20.8838 -46.5117 -46.5117 -46.5117
c-25.79 0 -46.5117 20.8145 -46.5117 46.5117c0 25.6982 20.7217 46.5117 46.5117 46.5117c25.6279 0 46.5117 -20.8135 46.5117 -46.5117zM108.023 590.697c0 31.0078 15.5039 46.5117 46.5117 46.5117s46.5117 -15.5039 46.5117 -46.5117
s-15.5039 -46.5117 -46.5117 -46.5117s-46.5117 15.5039 -46.5117 46.5117zM61.5117 404.697c25.6279 0 46.5117 -20.8135 46.5117 -46.5107c0 -25.7451 -20.8838 -46.5117 -46.5117 -46.5117c-25.791 0 -46.5117 20.7666 -46.5117 46.5117
c0 25.6973 20.7207 46.5107 46.5117 46.5107zM108.023 125.581c0 31.0078 15.5039 46.5117 46.5117 46.5117s46.5117 -15.5039 46.5117 -46.5117s-15.5039 -46.5117 -46.5117 -46.5117s-46.5117 15.5039 -46.5117 46.5117zM340.581 32.5586
c0 25.79 20.7217 46.5107 46.5117 46.5107c25.791 0 46.5117 -20.7207 46.5117 -46.5107c0 -25.6982 -20.7207 -46.5117 -46.5117 -46.5117c-25.79 0 -46.5117 20.8135 -46.5117 46.5117zM586.953 92.6973c-18.1621 18.1631 -18.1621 47.6055 0 65.7676
c18.1631 18.1631 47.6055 18.1631 65.7676 0c18.3486 -18.1621 18.3486 -47.6045 0 -65.7676c-18.1621 -18.1621 -47.6045 -18.1621 -65.7676 0zM712.581 311.675c-25.5342 0 -46.418 20.79 -46.418 46.4648c0 25.791 20.8838 46.5117 46.6973 46.5117
c25.5352 0 46.5117 -20.7676 46.2324 -46.4648c0.279297 -25.7451 -20.7207 -46.5586 -46.5117 -46.5117zM652.721 557.768c-18.1621 -18.1162 -47.6045 -18.1162 -65.7676 0c-18.1621 18.2559 -18.1621 47.6045 0 65.8135
c18.1631 18.1162 47.6055 18.1631 65.7676 -0.0458984c18.3486 -18.1631 18.3486 -47.6514 0 -65.7676z" />
  </font>
</defs></svg>
src/main/resources/bootstrap/font/iconic_fill.ttf
Binary files differ
src/main/resources/bootstrap/font/iconic_fill.woff
Binary files differ
src/main/resources/bootstrap/font/iconic_stroke.afm
New file
@@ -0,0 +1,170 @@
StartFontMetrics 2.0
Comment Generated by FontForge 20110222
Comment Creation Date: Sun Apr  1 19:42:24 2012
FontName IconicStroke
FullName Iconic Stroke
FamilyName Iconic
Weight Medium
Notice (Icons by PJ Onori, font creation script by Yann)
ItalicAngle 0
IsFixedPitch false
UnderlinePosition -100
UnderlineThickness 50
Version 001.000
EncodingScheme ISOLatin1Encoding
FontBBox 14 -14 760 731
Descender -2147483648
StartCharMetrics 151
C 35 ; WX 681 ; N numbersign ; B 15 -14 667 731 ;
C 63 ; WX 402 ; N question ; B 15 -14 388 731 ;
C 64 ; WX 774 ; N at ; B 15 -14 760 731 ;
C 182 ; WX 588 ; N paragraph ; B 15 -14 574 731 ;
C -1 ; WX 495 ; N glyph0 ; B 15 -14 481 731 ;
C -1 ; WX 774 ; N glyph1 ; B 15 -14 760 731 ;
C -1 ; WX 495 ; N glyph2 ; B 15 -14 481 731 ;
C -1 ; WX 774 ; N glyph3 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph4 ; B 15 -14 760 731 ;
C -1 ; WX 681 ; N glyph5 ; B 15 -14 667 730 ;
C -1 ; WX 774 ; N glyph6 ; B 15 -14 760 731 ;
C -1 ; WX 309 ; N glyph7 ; B 15 -14 295 731 ;
C -1 ; WX 774 ; N glyph8 ; B 15 32 760 684 ;
C -1 ; WX 774 ; N glyph9 ; B 15 32 760 684 ;
C -1 ; WX 588 ; N glyph10 ; B 15 -14 574 731 ;
C -1 ; WX 774 ; N glyph11 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph12 ; B 15 -14 760 731 ;
C -1 ; WX 728 ; N glyph13 ; B 14 -14 713 731 ;
C -1 ; WX 774 ; N glyph14 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph15 ; B 15 -14 760 731 ;
C -1 ; WX 681 ; N glyph16 ; B 15 -14 667 731 ;
C -1 ; WX 774 ; N glyph17 ; B 15 79 760 638 ;
C -1 ; WX 774 ; N glyph18 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph19 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph20 ; B 15 172 760 545 ;
C -1 ; WX 774 ; N glyph21 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph22 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph23 ; B 15 218 760 498 ;
C -1 ; WX 774 ; N glyph24 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph25 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph26 ; B 15 172 760 545 ;
C -1 ; WX 402 ; N glyph27 ; B 15 -14 388 731 ;
C -1 ; WX 588 ; N glyph28 ; B 15 -14 574 731 ;
C -1 ; WX 588 ; N glyph29 ; B 15 -14 574 731 ;
C -1 ; WX 774 ; N glyph31 ; B 15 32 760 684 ;
C -1 ; WX 588 ; N glyph32 ; B 15 -14 574 731 ;
C -1 ; WX 588 ; N glyph33 ; B 15 32 574 684 ;
C -1 ; WX 774 ; N glyph34 ; B 15 79 760 638 ;
C -1 ; WX 774 ; N glyph35 ; B 15 79 760 638 ;
C -1 ; WX 774 ; N glyph36 ; B 15 32 760 684 ;
C -1 ; WX 774 ; N glyph37 ; B 15 79 760 638 ;
C -1 ; WX 774 ; N glyph38 ; B 15 79 760 638 ;
C -1 ; WX 681 ; N glyph39 ; B 15 32 667 684 ;
C -1 ; WX 774 ; N glyph40 ; B 15 -14 760 731 ;
C -1 ; WX 588 ; N glyph41 ; B 15 -14 574 731 ;
C -1 ; WX 774 ; N glyph42 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph43 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph44 ; B 15 -14 760 731 ;
C -1 ; WX 588 ; N glyph45 ; B 15 -14 574 731 ;
C -1 ; WX 774 ; N glyph46 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph47 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph48 ; B 15 79 760 638 ;
C -1 ; WX 774 ; N glyph49 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph50 ; B 15 -12 760 729 ;
C -1 ; WX 774 ; N glyph51 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph52 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph53 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph54 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph55 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph56 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph57 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph58 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph59 ; B 15 79 760 638 ;
C -1 ; WX 774 ; N glyph60 ; B 15 79 760 638 ;
C -1 ; WX 774 ; N glyph61 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph62 ; B 15 32 760 684 ;
C -1 ; WX 774 ; N glyph63 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph64 ; B 15 32 760 684 ;
C -1 ; WX 774 ; N glyph65 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph66 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph67 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph68 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph69 ; B 15 -14 760 731 ;
C -1 ; WX 402 ; N glyph70 ; B 15 -14 388 731 ;
C -1 ; WX 402 ; N glyph71 ; B 15 -14 388 731 ;
C -1 ; WX 774 ; N glyph72 ; B 15 172 760 545 ;
C -1 ; WX 774 ; N glyph73 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph74 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph75 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph76 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph77 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph78 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph79 ; B 14 79 760 638 ;
C -1 ; WX 774 ; N glyph80 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph81 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph82 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph83 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph84 ; B 15 79 760 638 ;
C -1 ; WX 774 ; N glyph85 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph86 ; B 15 125 760 591 ;
C -1 ; WX 774 ; N glyph87 ; B 15 79 760 638 ;
C -1 ; WX 774 ; N glyph88 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph89 ; B 15 79 760 638 ;
C -1 ; WX 774 ; N glyph90 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph91 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph92 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph93 ; B 15 79 760 638 ;
C -1 ; WX 774 ; N glyph94 ; B 15 218 760 498 ;
C -1 ; WX 774 ; N glyph95 ; B 15 -14 760 731 ;
C -1 ; WX 588 ; N glyph96 ; B 15 32 574 684 ;
C -1 ; WX 774 ; N glyph97 ; B 15 -14 760 731 ;
C -1 ; WX 588 ; N glyph98 ; B 15 -14 574 731 ;
C -1 ; WX 681 ; N glyph99 ; B 15 -14 667 731 ;
C -1 ; WX 774 ; N glyph100 ; B 15 -14 760 731 ;
C -1 ; WX 681 ; N glyph101 ; B 15 -14 667 731 ;
C -1 ; WX 774 ; N glyph102 ; B 15 32 760 684 ;
C -1 ; WX 774 ; N glyph103 ; B 15 79 760 638 ;
C -1 ; WX 774 ; N glyph104 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph105 ; B 14 -14 760 731 ;
C -1 ; WX 774 ; N glyph106 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph107 ; B 15 -14 759 731 ;
C -1 ; WX 681 ; N glyph108 ; B 15 -14 667 731 ;
C -1 ; WX 774 ; N glyph109 ; B 15 -14 760 731 ;
C -1 ; WX 402 ; N glyph110 ; B 15 -14 388 731 ;
C -1 ; WX 774 ; N glyph111 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph112 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph113 ; B 15 265 760 452 ;
C -1 ; WX 774 ; N glyph114 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph115 ; B 15 32 760 684 ;
C -1 ; WX 774 ; N glyph117 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph118 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph119 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph120 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph121 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph123 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph124 ; B 15 -14 760 731 ;
C -1 ; WX 309 ; N glyph125 ; B 15 -14 295 731 ;
C -1 ; WX 774 ; N glyph126 ; B 15 58 760 658 ;
C -1 ; WX 588 ; N glyph127 ; B 15 -14 574 731 ;
C -1 ; WX 774 ; N glyph128 ; B 15 -14 760 731 ;
C -1 ; WX 681 ; N glyph129 ; B 15 -14 667 731 ;
C -1 ; WX 774 ; N glyph130 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph131 ; B 15 -14 760 731 ;
C -1 ; WX 402 ; N glyph132 ; B 15 -14 388 731 ;
C -1 ; WX 774 ; N glyph133 ; B 15 -14 760 731 ;
C -1 ; WX 588 ; N glyph134 ; B 15 -14 574 731 ;
C -1 ; WX 774 ; N glyph135 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph136 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph137 ; B 15 32 760 684 ;
C -1 ; WX 774 ; N glyph138 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph139 ; B 15 -14 760 731 ;
C -1 ; WX 588 ; N glyph140 ; B 15 -14 574 731 ;
C -1 ; WX 774 ; N glyph141 ; B 15 172 760 545 ;
C -1 ; WX 774 ; N glyph142 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph143 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph144 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph146 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph147 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph148 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph149 ; B 15 -14 760 731 ;
C -1 ; WX 774 ; N glyph150 ; B 15 -14 760 731 ;
EndCharMetrics
EndFontMetrics
src/main/resources/bootstrap/font/iconic_stroke.css
New file
@@ -0,0 +1 @@
@font-face { font-family: 'IconicStroke'; src: url('iconic_stroke.eot'); src: url('iconic_stroke.eot?#iefix') format('embedded-opentype'), url('iconic_stroke.ttf') format('truetype'), url('iconic_stroke.svg#iconic') format('svg'); font-weight: normal; font-style: normal; }.iconic { display:inline-block; font-family: 'IconicStroke'; }.lightbulb:before {content:'\e063';}.equalizer:before {content:'\e052';}.map_pin_stroke:before {content:'\e068';}.brush_alt:before {content:'\e01c';}.move:before {content:'\e03e';}.paperclip:before {content:'\e08a';}.pen_alt_stroke:before {content:'\e005';}.move_vertical:before {content:'\e03b';}.book_alt2:before {content:'\e06a';}.layers:before {content:'\e01f';}.pause:before {content:'\e049';}.layers_alt:before {content:'\e020';}.cloud_upload:before {content:'\e045';}.chart_alt:before {content:'\e029';}.fullscreen_exit_alt:before {content:'\e051';}.cloud_download:before {content:'\e044';}.comment_alt2_stroke:before {content:'\e004';}.mail:before {content:'\2709';}.check_alt:before {content:'\2714';}.document_stroke:before {content:'\e066';}.battery_charging:before {content:'\e05d';}.stop:before {content:'\e04a';}.arrow_up:before {content:'\2191';}.move_horizontal:before {content:'\e038';}.compass:before {content:'\e021';}.minus_alt:before {content:'\e009';}.battery_empty:before {content:'\e05c';}.map_pin_alt:before {content:'\e002';}.unlock_stroke:before {content:'\e076';}.lock_stroke:before {content:'\e075';}.question_mark:before {content:'\003f';}.list:before {content:'\e055';}.upload:before {content:'\e043';}.reload:before {content:'\e030';}.loop_alt4:before {content:'\e035';}.loop_alt3:before {content:'\e034';}.loop_alt2:before {content:'\e033';}.loop_alt1:before {content:'\e032';}.left_quote:before {content:'\275d';}.x:before {content:'\2717';}.last:before {content:'\e04d';}.document_alt_stroke:before {content:'\e000';}.bars:before {content:'\e06f';}.arrow_left:before {content:'\2190';}.arrow_down:before {content:'\2193';}.download:before {content:'\e042';}.home:before {content:'\2302';}.calendar:before {content:'\e001';}.right_quote_alt:before {content:'\e012';}.fullscreen:before {content:'\e04e';}.dial:before {content:'\e058';}.plus_alt:before {content:'\e008';}.clock:before {content:'\e079';}.movie:before {content:'\e060';}.steering_wheel:before {content:'\e024';}.pen:before {content:'\270e';}.tag_stroke:before {content:'\e02b';}.pin:before {content:'\e067';}.denied:before {content:'\26d4';}.left_quote_alt:before {content:'\e011';}.volume_mute:before {content:'\e071';}.arrow_up_alt2:before {content:'\e018';}.list_nested:before {content:'\e056';}.arrow_up_alt1:before {content:'\e014';}.comment_stroke:before {content:'\e06d';}.undo:before {content:'\e02f';}.umbrella:before {content:'\2602';}.bolt:before {content:'\26a1';}.article:before {content:'\e053';}.read_more:before {content:'\e054';}.beaker:before {content:'\e023';}.beaker_alt:before {content:'\e010';}.battery_full:before {content:'\e073';}.arrow_right:before {content:'\2192';}.new_window:before {content:'\e059';}.plus:before {content:'\2795';}.cog:before {content:'\2699';}.key_stroke:before {content:'\26bf';}.first:before {content:'\e04c';}.comment_alt1_stroke:before {content:'\e003';}.trash_stroke:before {content:'\e05a';}.image:before {content:'\e027';}.chat_alt_stroke:before {content:'\e007';}.cd:before {content:'\e064';}.right_quote:before {content:'\275e';}.brush:before {content:'\e01b';}.cloud:before {content:'\2601';}.eye:before {content:'\e025';}.play_alt:before {content:'\e048';}.transfer:before {content:'\e041';}.pen_alt2:before {content:'\e006';}.camera:before {content:'\e070';}.move_horizontal_alt2:before {content:'\e03a';}.curved_arrow:before {content:'\2935';}.move_horizontal_alt1:before {content:'\e039';}.aperture:before {content:'\e026';}.reload_alt:before {content:'\e031';}.magnifying_glass:before {content:'\e074';}.iphone:before {content:'\e06e';}.fork:before {content:'\e046';}.box:before {content:'\e06b';}.bars_alt:before {content:'\e00a';}.heart_stroke:before {content:'\2764';}.volume:before {content:'\e072';}.x_alt:before {content:'\2718';}.link:before {content:'\e077';}.moon_stroke:before {content:'\263e';}.eyedropper:before {content:'\e01e';}.spin:before {content:'\e036';}.rss:before {content:'\e02c';}.info:before {content:'\2139';}.target:before {content:'\e02a';}.cursor:before {content:'\e057';}.minus:before {content:'\2796';}.book_alt:before {content:'\e00b';}.headphones:before {content:'\e061';}.hash:before {content:'\0023';}.arrow_left_alt1:before {content:'\e013';}.arrow_left_alt2:before {content:'\e017';}.fullscreen_exit:before {content:'\e050';}.share:before {content:'\e02e';}.fullscreen_alt:before {content:'\e04f';}.at:before {content:'\0040';}.chat:before {content:'\e05e';}.move_vertical_alt2:before {content:'\e03d';}.move_vertical_alt1:before {content:'\e03c';}.check:before {content:'\2713';}.mic:before {content:'\e05f';}.calendar_alt_stroke:before {content:'\e06c';}.book:before {content:'\e069';}.move_alt1:before {content:'\e03f';}.move_alt2:before {content:'\e040';}.award_stroke:before {content:'\e022';}.wrench:before {content:'\e078';}.play:before {content:'\e047';}.star:before {content:'\2605';}.chart:before {content:'\e028';}.rain:before {content:'\26c6';}.folder_stroke:before {content:'\e065';}.sun_stroke:before {content:'\2600';}.user:before {content:'\e062';}.battery_half:before {content:'\e05b';}.aperture_alt:before {content:'\e00c';}.eject:before {content:'\e04b';}.arrow_down_alt1:before {content:'\e016';}.pilcrow:before {content:'\00b6';}.arrow_down_alt2:before {content:'\e01a';}.arrow_right_alt1:before {content:'\e015';}.arrow_right_alt2:before {content:'\e019';}.rss_alt:before {content:'\e02d';}.spin_alt:before {content:'\e037';}
src/main/resources/bootstrap/font/iconic_stroke.eot
Binary files differ
src/main/resources/bootstrap/font/iconic_stroke.otf
Binary files differ
src/main/resources/bootstrap/font/iconic_stroke.svg
New file
@@ -0,0 +1,553 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg>
<metadata>
Created by FontForge 20110222 at Sun Apr  1 19:42:24 2012
 By PJ Onori,,,
Icons by PJ Onori, font creation script by Yann
</metadata>
<defs>
<font id="IconicStroke" horiz-adv-x="774" >
  <font-face
    font-family="Iconic"
    font-weight="500"
    font-stretch="normal"
    units-per-em="1000"
    panose-1="2 0 6 3 0 0 0 0 0 0"
    ascent="800"
    descent="-200"
    bbox="14.9997 -13.9766 759.23 730.262"
    underline-thickness="50"
    underline-position="-100"
    unicode-range="U+0023-E08A"
  />
    <missing-glyph />
    <glyph glyph-name="glyph0" unicode="&#xe063;" horiz-adv-x="495"
d="M247.559 637.023c-77 0 -139.582 -62.7676 -139.582 -139.907c0 -44.0469 20.1631 -84.5576 55.2324 -111c52.4883 -39.6973 73.7676 -83.5811 81.0234 -120.465h6.65137c7.30176 36.8838 28.5117 80.7676 81.0234 120.465c35.1162 26.4189 55.1855 66.9307 55.1855 111
c0 77.1396 -62.5342 139.907 -139.534 139.907zM247.559 730.232c128.441 0 232.558 -104.372 232.558 -233.093c0 -76.3252 -35.8838 -143 -92.3018 -185.512c-25.8838 -19.6279 -47.2793 -44.8838 -47.2793 -79.7676v-59.4189h-185.907v59.4189
c0 34.8838 -21.3955 60.1396 -47.3252 79.7676c-56.3721 42.5117 -92.3027 109.187 -92.3027 185.512c0 128.721 104.116 233.093 232.559 233.093zM154.628 -13.9531v93.209h185.907v-93.209h-185.907z" />
    <glyph glyph-name="glyph1" unicode="&#xe052;"
d="M480.116 265.116v-93.0234h-46.5117v-139.534c0 -25.6982 -20.7207 -46.5117 -46.5117 -46.5117c-25.6279 0 -46.5117 20.8135 -46.5117 46.5117v139.534h-46.5117v93.0234h46.5117v418.604c0 25.6982 20.8838 46.5117 46.5117 46.5117
c25.791 0 46.5117 -20.8135 46.5117 -46.5117v-418.604h46.5117zM759.186 544.186v-93.0225h-46.5107v-418.604c0 -25.6982 -20.7217 -46.5117 -46.5117 -46.5117c-25.6279 0 -46.5117 20.8135 -46.5117 46.5117v418.604h-46.5117v93.0225h46.5117v139.535
c0 25.6982 20.8838 46.5117 46.5117 46.5117c25.79 0 46.5117 -20.8135 46.5117 -46.5117v-139.535h46.5107zM201.047 451.163v-93.0234h-46.5117v-325.581c0 -25.6982 -20.7217 -46.5117 -46.5117 -46.5117c-25.6279 0 -46.5117 20.8135 -46.5117 46.5117v325.581h-46.5117
v93.0234h46.5117v232.558c0 25.6982 20.8838 46.5117 46.5117 46.5117c25.79 0 46.5117 -20.8135 46.5117 -46.5117v-232.558h46.5117z" />
    <glyph glyph-name="glyph2" unicode="&#xe068;" horiz-adv-x="495"
d="M247.453 637.209c-39.1162 0 -72.209 -14.5342 -98.5576 -40.8838c-26.3486 -26.3486 -40.8838 -61.3945 -40.8838 -98.6504s14.5352 -72.3027 40.9072 -98.6055c3.62793 -3.53418 51.5811 -51.2324 98.5576 -125.906c47.3262 74.79 95.4648 122.674 99.3721 126.534
c25.6982 25.6748 40.2324 60.7217 40.2324 97.9775s-14.5342 72.3018 -40.8838 98.6045c-26.3486 26.3955 -61.418 40.9297 -98.7441 40.9297zM247.453 730.232c59.6045 0 119.094 -22.7207 164.512 -68.1396c90.8369 -90.8135 90.8369 -238.069 0 -328.86
c0 0 -164.512 -161.163 -164.512 -347.209c0 186.046 -164.325 347.209 -164.325 347.209c-90.8369 90.8145 -90.8369 238.07 0 328.86c45.4189 45.4189 104.907 68.1396 164.325 68.1396zM294.058 497.675c0 -25.6982 -20.8135 -46.5117 -46.6045 -46.5117
c-27.5576 0 -46.418 20.8135 -46.418 46.5117c0 25.6973 18.8604 46.5107 46.418 46.5107c25.791 0 46.6045 -20.8135 46.6045 -46.5107z" />
    <glyph glyph-name="glyph3" unicode="&#xe01c;"
d="M294.069 172.093c0 -102.744 -83.3018 -186.046 -186.046 -186.046c-33.791 0 -65.3955 9 -92.6514 24.6973l-0.37207 0.279297c55.6045 32.1631 93.0234 92.1162 93.0234 160.884v0.185547c0 51.4189 41.6045 93.0234 93.0234 93.0234
c51.3252 0 93.0225 -41.6045 93.0225 -93.0234zM731.93 702.977c36.3496 -36.3252 36.3496 -95.209 0 -131.535l-351.744 -351.837c-17.0693 64.2324 -67.3945 114.465 -131.534 131.628l351.744 351.744c36.3252 36.3262 95.209 36.3262 131.534 0z" />
    <glyph glyph-name="glyph4" unicode="&#xe03e;"
d="M433.604 265.116v-139.535h93.0234l-139.535 -139.534l-139.534 139.534h93.0225v139.535h93.0234zM340.581 451.163v139.534h-93.0225l139.534 139.535l139.535 -139.535h-93.0234v-139.534h-93.0234zM294.069 311.628h-139.534v-93.0234l-139.535 139.535
l139.535 139.535v-93.0234h139.534v-93.0234zM480.116 404.651h139.535v93.0234l139.534 -139.535l-139.534 -139.535v93.0234h-139.535v93.0234z" />
    <glyph glyph-name="glyph5" unicode="&#xe08a;" horiz-adv-x="681"
d="M270.813 -13.0469c-68.3486 0 -132.581 26.6982 -180.86 75.0469c-48.3252 48.3252 -74.9531 112.465 -74.9531 180.86c0.046875 68.3252 26.6279 132.535 74.9531 180.814l258.978 253.372c69.6279 69.6279 192.488 69.9062 262.721 -0.37207
c72.4883 -72.582 72.4883 -190.582 0 -263.07l-233.023 -227.325c-44.8838 -44.8838 -118.651 -44.9766 -163.977 0.37207c-45.3262 45.418 -45.3262 119.14 0 164.465l90.209 90.209l65.7676 -65.7666l-90.209 -90.21
c-5.9541 -5.95312 -6.81445 -12.8604 -6.81445 -16.4414c0 -3.58203 0.860352 -10.4883 6.81445 -16.4883c11.9062 -11.8145 20.9766 -11.8145 32.8838 0l232.93 227.372c35.8838 35.8369 35.8838 94.8369 -0.37207 131.14c-35.1631 35.1621 -96.3955 35.1621 -131.535 0
l-258.977 -253.372c-30.3721 -30.3955 -47.3252 -71.2334 -47.3252 -114.698c0 -43.5117 16.9531 -84.3955 47.6973 -115.093c61.5117 -61.582 168.698 -61.582 230.187 0l116.279 116.279l65.7666 -65.7676l-116.278 -116.279
c-48.3262 -48.3252 -112.535 -75.0469 -180.861 -75.0469z" />
    <glyph glyph-name="glyph6" unicode="&#xe005;"
d="M704.675 675.721c72.6738 -72.6738 72.6738 -190.396 0 -263.069l-426.605 -426.604h-263.069l0.720703 263.813l425.884 425.86c36.3262 36.3486 83.9307 54.5117 131.535 54.5117s95.209 -18.1631 131.535 -54.5117zM239.559 79.0693l398.534 398.442l-131.534 131.535
l-394.279 -394.256c36.5342 31.8135 91.4883 31.3486 126.279 -3.44238c36.3252 -36.3486 36.3252 -95.9531 0 -132.279h1z" />
    <glyph glyph-name="glyph7" unicode="&#xe03b;" horiz-adv-x="309"
d="M201.047 265.116v-139.535h93.0225l-139.534 -139.534l-139.535 139.534h93.0234v139.535h93.0234zM108.023 451.163v139.534h-93.0234l139.535 139.535l139.534 -139.535h-93.0225v-139.534h-93.0234z" />
    <glyph glyph-name="glyph8" unicode="&#xe06a;"
d="M387.093 590.697c0 0 93.0234 93.0234 372.093 93.0234v-558.14c-281.977 0 -372.093 -93.0225 -372.093 -93.0225s-90.1162 93.0225 -372.093 93.0225v558.14c279.069 0 372.093 -93.0234 372.093 -93.0234zM108.023 590.697v-374.627
c118.232 -10.001 190.768 -37.3496 232.558 -59.4189v374.628c-41.79 22.1621 -114.325 49.5117 -232.558 59.418zM666.163 216.07v374.627c-118.279 -9.90625 -190.814 -37.2559 -232.559 -59.418v-374.628c41.7441 22.0928 114.279 49.418 232.559 59.4189z" />
    <glyph glyph-name="glyph9" unicode="&#xe01f;"
d="M15 218.604l372.093 -93.0234l372.093 93.0234v-93.0234l-372.093 -93.0225l-372.093 93.0225v93.0234zM15 404.651l372.093 -93.0234l372.093 93.0234v-93.0234l-372.093 -93.0234l-372.093 93.0234v93.0234zM15 590.697l372.093 93.0234l372.093 -93.0234v-93.0225
l-372.093 -93.0234l-372.093 93.0234v93.0225z" />
    <glyph glyph-name="glyph10" unicode="&#xe049;" horiz-adv-x="588"
d="M15 -13.9531v744.186h186.047v-744.186h-186.047zM387.093 -13.9531v744.186h186.047v-744.186h-186.047z" />
    <glyph glyph-name="glyph11" unicode="&#xe020;"
d="M15 172.093l372.093 -93.0234l372.093 93.0234v-93.0234l-372.093 -93.0225l-372.093 93.0225v93.0234zM15 358.14l372.093 -93.0234l372.093 93.0234v-93.0234l-372.093 -93.0234l-372.093 93.0234v93.0234zM15 544.186l372.093 -93.0225l372.093 93.0225v-93.0225
l-372.093 -93.0234l-372.093 93.0234v93.0225zM15 730.232l372.093 -93.0234l372.093 93.0234v-93.0234l-372.093 -93.0234l-372.093 93.0234v93.0234z" />
    <glyph glyph-name="glyph12" unicode="&#xe045;"
d="M573.14 637.209c102.651 0 186.046 -83.3945 186.046 -186.046s-83.3945 -186.047 -186.046 -186.047h-372.093c-102.605 0 -186.047 83.3955 -186.047 186.047s83.4414 186.046 186.047 186.046c8.30176 0 16.4414 -1.27832 24.6279 -2.37207
c31.9297 56.6982 91.9297 95.3955 161.418 95.3955c68.0469 0 128 -38.3252 160.419 -95.5576c8.46484 1.09277 16.9072 2.53418 25.6279 2.53418zM573.14 358.14c51.2324 0 93.0234 41.791 93.0234 93.0234s-41.791 93.0225 -93.0234 93.0225
s-93.0234 -41.79 -93.0234 -93.0225h-93.0234c0 60.5811 29.5352 113.906 74.4424 147.884c-17.1631 23.2559 -44.3262 38.1621 -74.4424 38.1621c-51.2783 0 -93.0234 -41.79 -93.0234 -93.0234c0 -11.2549 1.9541 -22.1621 5.81445 -32.5342l-87.1162 -32.5117
c-7.62793 20.3486 -11.4424 41.791 -11.6279 63.7676c-47.9307 -1.44238 -93.1162 -40.6982 -93.1162 -91.7441c0 -51.2324 41.7441 -93.0234 93.0234 -93.0234h372.093zM433.651 125.581v-139.534h-93.0234v139.534h-93.0234l139.581 139.535l139.442 -139.535h-92.9766z
" />
    <glyph glyph-name="glyph13" unicode="&#xe029;" horiz-adv-x="728"
d="M353.006 278.559l-246 -246c-122.675 141.534 -122.675 350.465 0 492zM389.797 311.628l-301.86 299.953c83.0225 67.9541 185.86 111.559 301.86 118.651v-418.604zM435.587 636.837c157.466 -24.1621 277.116 -157.512 277.116 -322.116
c0 -181.512 -145.256 -328.674 -327.069 -328.674c-74.0469 0 -139.279 25.0693 -193.419 64.8604l243.372 241.465v344.465z" />
    <glyph glyph-name="glyph14" unicode="&#xe051;"
d="M540.256 139.209l-60.1396 -60.1396v186.047h186.047l-60.1396 -60.1396l153.162 -153.162l-65.7666 -65.7676zM167.256 512.303l-152.256 152.162l65.7676 65.7676l152.256 -152.163l61.0459 59.1396l-0.90625 -185.046l-185.14 -1zM15 51.8145l153.163 153.162
l-60.1396 60.1396h186.046v-186.047l-60.1387 60.1396l-153.163 -153.162zM666.884 451.163h-186.768v186.721l60.4189 -60.3486l152.697 152.697l65.9531 -66l-152.604 -152.697z" />
    <glyph glyph-name="glyph15" unicode="&#xe044;"
d="M573.14 637.209c102.651 0 186.046 -83.4883 186.046 -186.046c0 -102.559 -83.3945 -186.047 -186.046 -186.047h-139.535v-139.535h93.0234l-139.581 -139.534l-139.488 139.534h93.0225v139.535h-139.534c-102.605 0 -186.047 83.4883 -186.047 186.047
c0 102.558 83.4414 186.046 186.047 186.046c8.30176 0 16.4414 -1.18555 24.6279 -2.27832c31.9297 56.5107 91.9297 95.3018 161.418 95.3018c68.0469 0 128 -38.2559 160.419 -95.6514c8.46484 1.25586 16.9072 2.62793 25.6279 2.62793zM573.14 358.14
c51.2324 0 93.0234 41.6973 93.0234 93.0234c0 51.3252 -41.791 93.0225 -93.0234 93.0225s-93.0234 -41.6973 -93.0234 -93.0225h-93.0234c0 60.5811 29.5352 114 74.4424 147.977c-17.1631 23.1631 -44.3262 38.0693 -74.4424 38.0693
c-51.2783 0 -93.0234 -41.6973 -93.0234 -93.0234c0 -11.1621 1.9541 -22.1621 5.81445 -32.4414l-87.1162 -32.6973c-7.62793 20.3486 -11.4424 41.9766 -11.6279 63.8604c-47.9307 -1.34863 -93.1162 -40.791 -93.1162 -91.7441
c0 -51.3262 41.7441 -93.0234 93.0234 -93.0234h372.093z" />
    <glyph glyph-name="glyph16" unicode="&#xe004;" horiz-adv-x="681"
d="M340.581 637.209c-128.278 0 -232.558 -104.278 -232.558 -232.558c0 -61.3262 23.8838 -119.279 67.2324 -163.232l26.9766 -27.3496l-0.185547 -38.418l-0.09375 -15.9072l10.6279 7l33.9775 22.5117l39.6045 -9.81445
c20.1621 -4.90625 37.9766 -7.34863 54.418 -7.34863c128.279 0 232.559 104.279 232.559 232.559s-104.279 232.558 -232.559 232.558zM340.581 730.232c179.768 0 325.582 -145.813 325.582 -325.581s-145.814 -325.582 -325.582 -325.582
c-26.5342 0 -51.9531 4.00098 -76.6738 10.0938l-155.884 -103.116l1 190.046c-58.0469 58.8604 -94.0234 139.442 -94.0234 228.559c0 179.768 145.813 325.581 325.581 325.581z" />
    <glyph glyph-name="glyph17" unicode="&#x2709;"
d="M388.907 370.768l-373.907 175.604v90.8369h744.186v-91.1162zM389.093 267.931l370.093 175.232v-364.094h-744.186v364.651z" />
    <glyph glyph-name="glyph18" unicode="&#x2714;"
d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM329.419 186.441l289.395 289.419l-65.7666 65.7676l-223.651 -223.651l-105.419 105.465
l-65.7676 -65.7666z" />
    <glyph glyph-name="glyph19" unicode="&#xe066;"
d="M527 730.232l232.186 -232.558v-511.256l-184.139 153.884l-186.326 -154.256l-186.488 154.418l-187.232 -152.977v742.744h512zM666.628 173.535v186.046h-279.232v279.07h-279.256v-465.116l95.0234 74.8604l185.581 -153.698l185.953 153.884zM480.488 452.604
h186.14c-37.2559 37.2559 -148.535 148.442 -186.14 186.047v-186.047z" />
    <glyph glyph-name="glyph20" unicode="&#xe05d;"
d="M666.163 451.163h93.0225v-186.047h-93.0225v-46.5117c0 -25.6279 -20.8838 -46.5117 -46.5117 -46.5117h-558.14c-25.6279 0 -46.5117 20.8838 -46.5117 46.5117v92.0234h148.535c19.1621 -54.0469 70.3252 -93.0234 131 -93.0234v47.5117h94.5576v46.5117h-94.5576
v93.0234h92.6504v46.5117h-92.6504v45.5117c-60.6982 0 -111.838 -38.9775 -131 -93.0234h-148.535v94.0234c0 25.5811 20.8838 46.5107 46.5117 46.5107h558.14c25.6279 0 46.5117 -20.9297 46.5117 -46.5107v-46.5117z" />
    <glyph glyph-name="glyph21" unicode="&#xe04a;"
d="M15 -13.9531v744.186h744.186v-744.186h-744.186z" />
    <glyph glyph-name="glyph22" unicode="&#x2191;"
d="M15 358.512l372.14 371.721l372.046 -371.721l-131.93 -131.907l-146.977 146.977v-387.534h-186.535v387.534c-72.8369 -72.8369 -146.837 -146.79 -146.837 -146.79z" />
    <glyph glyph-name="glyph23" unicode="&#xe038;"
d="M294.069 311.628h-139.534v-93.0234l-139.535 139.535l139.535 139.535v-93.0234h139.534v-93.0234zM480.116 404.651h139.535v93.0234l139.534 -139.535l-139.534 -139.535v93.0234h-139.535v93.0234z" />
    <glyph glyph-name="glyph24" unicode="&#xe021;"
d="M387.093 637.209c-153.884 0 -279.069 -125.186 -279.069 -279.069s125.186 -279.07 279.069 -279.07s279.07 125.187 279.07 279.07s-125.187 279.069 -279.07 279.069zM387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093
s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM436.512 407.465c-17.9072 17.9072 -42.8838 22.8604 -65.7676 17.21l202.396 119.511l-119.907 -205.162c6.7207 23.5576 1.81445 49.8604 -16.7207 68.4414z
M337.86 308.814c18.6279 -18.6289 44.9531 -23.5352 68.5811 -16.7217l-205.395 -120l119.558 202.675c-5.62793 -22.9307 -0.720703 -48.0234 17.2559 -65.9531z" />
    <glyph glyph-name="glyph25" unicode="&#xe009;"
d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM573.14 311.628v93.0234h-372.093v-93.0234h372.093z" />
    <glyph glyph-name="glyph26" unicode="&#xe05c;"
d="M759.186 451.163v-186.047h-93.0225v-46.5117c0 -25.5352 -20.8838 -46.5117 -46.5117 -46.5117h-558.14c-25.6279 0 -46.5117 20.9766 -46.5117 46.5117v279.07c0 25.5342 20.8838 46.5107 46.5117 46.5107h558.14c25.6279 0 46.5117 -20.9766 46.5117 -46.5107
v-46.5117h93.0225zM573.14 265.116v186.047h-465.116v-186.047h465.116z" />
    <glyph glyph-name="glyph27" unicode="&#xe002;" horiz-adv-x="402"
d="M201.047 730.232c102.744 0 186.046 -83.3018 186.046 -186.047c0 -102.744 -186.046 -558.139 -186.046 -558.139s-186.047 455.395 -186.047 558.139c0 102.745 83.3027 186.047 186.047 186.047zM201.047 451.163c51.3721 0 93.0225 41.6514 93.0225 93.0225
c0 51.373 -41.6504 93.0234 -93.0225 93.0234s-93.0234 -41.6504 -93.0234 -93.0234c0 -51.3711 41.6514 -93.0225 93.0234 -93.0225z" />
    <glyph glyph-name="glyph28" unicode="&#xe076;" horiz-adv-x="588"
d="M340.675 730.232c128.186 0 232.465 -104.372 232.465 -232.558v-372.094c0 -77.0225 -62.5811 -139.534 -139.535 -139.534h-279.116c-76.9072 0 -139.488 62.5117 -139.488 139.534v325.582h465.116v46.5117c0 76.8604 -62.4883 139.534 -139.441 139.534
c-76.9541 0 -139.488 -62.6738 -139.488 -139.534h-93.0234c0 128.186 104.278 232.558 232.512 232.558zM433.604 79.0693c25.6279 0 46.5117 20.8145 46.5117 46.5117v232.559h-372.14v-232.559c0 -25.6973 20.8838 -46.5117 46.5117 -46.5117h279.116zM340.581 218.604
c0 -25.79 -20.8135 -46.5117 -46.5117 -46.5117c-25.6973 0 -46.5107 20.7217 -46.5107 46.5117c0 25.6279 20.8135 46.5117 46.5107 46.5117c25.6982 0 46.5117 -20.8838 46.5117 -46.5117z" />
    <glyph glyph-name="glyph29" unicode="&#xe075;" horiz-adv-x="588"
d="M340.675 730.232c128.186 0 232.465 -104.279 232.465 -232.558v-372.094c0 -76.8604 -62.5117 -139.534 -139.535 -139.534h-279.116c-76.8135 0 -139.488 62.6738 -139.488 139.534v325.582h93.1631v46.5117c0 128.278 104.372 232.558 232.512 232.558z
M201.186 497.675v-46.5117h278.931v46.5117c0 77.0225 -62.5117 139.534 -139.441 139.534c-76.8613 0 -139.489 -62.5117 -139.489 -139.534zM433.604 79.0693c25.791 0 46.5117 20.8838 46.5117 46.5117v232.559h-372.14v-232.559
c0 -25.6279 20.8838 -46.5117 46.5117 -46.5117h279.116zM340.675 218.604c0 -25.6279 -20.8838 -46.5117 -46.5117 -46.5117c-25.791 0 -46.5117 20.8838 -46.5117 46.5117c0 25.791 20.7207 46.5117 46.5117 46.5117c25.6045 0 46.5117 -20.7207 46.5117 -46.5117z" />
    <glyph glyph-name="question" unicode="?" horiz-adv-x="402"
d="M238.256 32.5586c0 -25.6279 -20.8145 -46.5117 -46.5117 -46.5117s-46.5117 20.8838 -46.5117 46.5117c0 25.79 20.8145 46.5107 46.5117 46.5107s46.5117 -20.7207 46.5117 -46.5107zM193.512 126.116c-31.0703 0 -60.2324 12.1631 -82.209 34.1631
c-21.9775 25.6973 -34.0703 54.8604 -34.0703 85.9297c0 31.0703 12.0928 60.2324 34.0703 78.3955l155.534 155.535c17.5586 17.6279 27.2324 40.9766 27.2324 65.7676c0 24.8838 -9.67383 48.2324 -27.2559 65.7676c-36.2549 36.2559 -95.2549 36.3252 -131.488 0
c-17.6279 -17.5352 -27.3018 -40.8604 -27.3018 -65.7676h-93.0234c0 49.6973 19.3955 96.4648 54.6045 131.628c70.2324 70.3018 192.675 70.2324 263 -0.09375c35.1396 -35.0459 54.4883 -81.7441 54.4883 -131.534c0 -49.6982 -19.3486 -96.3955 -54.5117 -131.535
l-155.534 -151.697c-9.04688 -9.09375 -9.04688 -23.791 0 -32.8838c9.09277 -9.09375 23.79 -9.09375 32.8838 0c5.90625 6 6.81348 12.9062 6.81348 16.5342h93.0234c0 -31.0693 -12.0928 -60.3252 -34.0703 -86.0225c-21.9531 -22 -51.1162 -34.1865 -82.1855 -34.1865z
" />
    <glyph glyph-name="glyph31" unicode="&#xe055;"
d="M15 637.209c0 31.0078 15.5039 46.5117 46.5117 46.5117s46.5117 -15.5039 46.5117 -46.5117s-15.5039 -46.5117 -46.5117 -46.5117s-46.5117 15.5039 -46.5117 46.5117zM15 451.163c0 31.0078 15.5039 46.5117 46.5117 46.5117s46.5117 -15.5039 46.5117 -46.5117
s-15.5039 -46.5117 -46.5117 -46.5117s-46.5117 15.5039 -46.5117 46.5117zM15 265.116c0 31.0078 15.5039 46.5117 46.5117 46.5117s46.5117 -15.5039 46.5117 -46.5117s-15.5039 -46.5117 -46.5117 -46.5117s-46.5117 15.5039 -46.5117 46.5117zM15 79.0693
c0 31.0078 15.5039 46.5117 46.5117 46.5117s46.5117 -15.5039 46.5117 -46.5117c0 -31.0068 -15.5039 -46.5107 -46.5117 -46.5107s-46.5117 15.5039 -46.5117 46.5107zM201.047 590.697v93.0234h558.139v-93.0234h-558.139zM201.047 404.651v93.0234h558.139v-93.0234
h-558.139zM201.047 218.604v93.0234h558.139v-93.0234h-558.139zM201.047 32.5586v93.0225h558.139v-93.0225h-558.139z" />
    <glyph glyph-name="glyph32" unicode="&#xe043;" horiz-adv-x="588"
d="M15 623.907v106.325h558.14v-106.325h-558.14zM201.047 411.279h-93.0234l185.768 212.628l186.325 -212.628h-93.0234v-425.232h-186.046v425.232z" />
    <glyph glyph-name="glyph33" unicode="&#xe030;" horiz-adv-x="588"
d="M480.116 311.628h93.0234c0 -154.163 -125 -279.069 -279.07 -279.069c-154.069 0 -279.069 124.906 -279.069 279.069s125 279.069 279.069 279.069h55.2334l-27.4424 27.2559l65.7676 65.7676l139.813 -139.535l-139.813 -139.977l-65.7676 65.7676l27.0703 27.0703
l-54.8613 0.62793c-102.65 0 -186.046 -83.4893 -186.046 -186.047c0 -102.559 83.3955 -186.047 186.046 -186.047c102.651 0 186.047 83.4883 186.047 186.047z" />
    <glyph glyph-name="glyph34" unicode="&#xe035;"
d="M666.163 311.628h93.0225c0 -76.8604 -62.5811 -139.535 -139.534 -139.535h-418.791v-93.0234l-185.86 139.535l185.86 139.535v-93.0234h418.791c25.6279 0 46.5117 20.8838 46.5117 46.5117zM154.535 451.163c-25.6279 0 -46.5117 -20.8838 -46.5117 -46.5117
h-93.0234c0 77.0234 62.5811 139.534 139.535 139.534h418.604v93.0234l186.046 -139.534l-186.046 -139.535v93.0234h-418.604z" />
    <glyph glyph-name="glyph35" unicode="&#xe034;"
d="M666.163 358.14h93.0225v-46.5117c0 -76.8604 -62.5811 -139.535 -139.534 -139.535h-325.675l0.0927734 -93.0234l-186.046 139.535l186.046 139.535l-0.0927734 -93.0234h325.675c25.6279 0 46.5117 20.8838 46.5117 46.5117v46.5117zM108.023 404.651v-46.5117
h-93.0234v46.5117c0 77.0234 62.5811 139.534 139.535 139.534h325.581v93.0234l185.86 -139.534l-185.86 -139.535v93.0234h-325.581c-25.6279 0 -46.5117 -20.8145 -46.5117 -46.5117z" />
    <glyph glyph-name="glyph36" unicode="&#xe033;"
d="M478.837 218.604l139.722 186.047l140.627 -186.047h-93.0225v-46.5117c0 -76.9531 -62.582 -139.534 -139.535 -139.534h-279.069c-76.9541 0 -139.535 62.5811 -139.535 139.534v46.5117h93.0234v-46.5117c0 -25.6279 20.8838 -46.5117 46.5117 -46.5117h279.069
c25.6279 0 46.5117 20.8838 46.5117 46.5117v46.5117h-94.3027zM295.349 497.675l-139.721 -186.047l-140.628 186.047h93.0234v46.5107c0 76.9541 62.5811 139.535 139.535 139.535h279.069c76.9531 0 139.535 -62.5811 139.535 -139.535v-46.5107h-93.0234v46.5107
c0 25.6289 -20.8838 46.5117 -46.5117 46.5117h-279.069c-25.6279 0 -46.5117 -20.8828 -46.5117 -46.5117v-46.5107h94.3018z" />
    <glyph glyph-name="glyph37" unicode="&#xe032;"
d="M619.651 358.14l139.534 -139.535h-93.0225c0 -76.9531 -62.582 -139.535 -139.535 -139.535h-279.069c-76.9541 0 -139.535 62.582 -139.535 139.535v46.5117h93.0234v-46.5117c0 -25.6279 20.8838 -46.5117 46.5117 -46.5117h279.069
c25.6279 0 46.5117 20.8838 46.5117 46.5117h-93.0234zM526.628 637.209c76.9531 0 139.535 -62.5811 139.535 -139.534v-46.5117h-93.0234v46.5117c0 25.6279 -20.8838 46.5107 -46.5117 46.5107h-279.069c-25.6279 0 -46.5117 -20.8828 -46.5117 -46.5107v-1.44238
h93.0225l-139.534 -138.093l-139.535 138.093h93.0234v1.44238c0 76.9531 62.5811 139.534 139.535 139.534h279.069z" />
    <glyph glyph-name="glyph38" unicode="&#x275d;"
d="M759.186 79.0693h-279.069v279.07c0 153.884 125.187 279.069 279.069 279.069v-93.0234c-102.65 0 -186.046 -83.4883 -186.046 -186.046h186.046v-279.07zM294.069 79.0693h-279.069v279.07c0 153.884 125.187 279.069 279.069 279.069v-93.0234
c-102.65 0 -186.046 -83.4883 -186.046 -186.046h186.046v-279.07z" />
    <glyph glyph-name="glyph39" unicode="&#x2717;" horiz-adv-x="681"
d="M666.163 162.837l-130.279 -130.278l-195.303 195.395l-195.395 -195.395l-130.187 130.278l195.303 195.303l-195.303 195.302l130.187 130.279l195.395 -195.396l195.303 195.396l130.279 -130.279l-195.488 -195.302z" />
    <glyph glyph-name="glyph40" unicode="&#xe04d;"
d="M15 730.232l558.14 -372.093l-558.14 -372.093v744.186zM573.14 79.0693v558.14h186.046v-558.14h-186.046z" />
    <glyph glyph-name="glyph41" unicode="&#xe000;" horiz-adv-x="588"
d="M340.581 730.232l232.559 -232.512v-511.674h-558.14v744.186h325.581zM108.023 79.0693h372.093v372.094h-186.047v186.046h-186.046v-558.14z" />
    <glyph glyph-name="glyph42" unicode="&#xe06f;"
d="M573.14 -13.9531v744.186h186.046v-744.186h-186.046zM294.069 -13.9531v558.139h186.047v-558.139h-186.047zM15 -13.9531v372.093h186.047v-372.093h-186.047z" />
    <glyph glyph-name="glyph43" unicode="&#x2190;"
d="M386.721 -13.9531l-371.721 372.093l371.721 372.093l131.907 -131.93l-146.791 -146.978h387.349v-186.581h-387.349c72.8379 -72.8369 146.791 -146.791 146.791 -146.791z" />
    <glyph glyph-name="glyph44" unicode="&#x2193;"
d="M759.186 357.768l-372.093 -371.721l-372.093 371.721l131.931 131.907l146.977 -146.978v387.535h186.581v-387.535c72.8369 72.8379 146.791 146.791 146.791 146.791z" />
    <glyph glyph-name="glyph45" unicode="&#xe042;" horiz-adv-x="588"
d="M15 -13.9531v106.278h558.14v-106.278h-558.14zM387.093 305h93.0234l-185.768 -212.675l-186.325 212.675h93.0234v425.232h186.046v-425.232z" />
    <glyph glyph-name="glyph46" unicode="&#x2302;"
d="M387.093 730.232l372.093 -372.093h-93.0225v-372.093h-558.14v372.093h-93.0234zM573.14 79.0693v333.582l-186.047 131.534l-186.046 -131.534v-333.582h139.534v139.535h93.0234v-139.535h139.535z" />
    <glyph glyph-name="glyph47" unicode="&#xe001;"
d="M571.232 637.209h187.953v-93.0234h-187.953h-93.0234h-186.046h-93.0234h-184.14v93.0234h184.14v93.0234h93.0234v-93.0234h186.046v93.0234h93.0234v-93.0234zM108.023 172.093v93.0234h558.14v-93.0234h-558.14zM108.023 358.14v93.0234h558.14v-93.0234h-558.14z
M573.14 -13.9531h-465.116v93.0225h558.14z" />
    <glyph glyph-name="glyph48" unicode="&#xe012;"
d="M15 637.209h279.069v-279.069l-279.069 -279.07v558.14zM480.116 637.209h279.069v-279.069l-279.069 -279.07v558.14z" />
    <glyph glyph-name="glyph49" unicode="&#xe04e;"
d="M652.535 158.465l106.65 106.651v-279.069h-279.069l106.651 106.65l-106.651 106.651l65.7676 65.7676zM294.069 730.232l-106.65 -106.651l105.65 -105.558l-65.7666 -65.7676l-105.651 105.559l-106.651 -106.651v279.069h279.069zM294.069 199.349l-106.65 -106.651
l106.65 -106.65h-279.069v279.069l106.651 -106.651l106.651 106.651zM759.186 730.232v-279.069l-106.65 106.651l-105.651 -105.559l-65.7676 65.7676l105.651 105.558l-106.651 106.651h279.069z" />
    <glyph glyph-name="glyph50" unicode="&#xe058;"
d="M294.069 360.14c0 62.0156 31.0078 93.0234 93.0234 93.0234s93.0234 -31.0078 93.0234 -93.0234s-31.0078 -93.0234 -93.0234 -93.0234s-93.0234 31.0078 -93.0234 93.0234zM679.069 587.604c53.4111 -67.583 80.1162 -143.404 80.1162 -227.465
c0 -67.3809 -16.5986 -129.644 -49.7949 -186.787c-33.1973 -57.1436 -78.3672 -102.313 -135.511 -135.511c-57.1436 -33.1963 -119.406 -49.7949 -186.787 -49.7949s-129.644 16.5986 -186.787 49.7949c-57.1436 33.1973 -102.313 78.3672 -135.511 135.511
c-33.1963 57.1436 -49.7949 119.406 -49.7949 186.787c0 82.9883 26.248 158.446 78.7441 226.372c8.68848 -6.54297 17.8047 -9.81445 27.3486 -9.81445c12.8955 0 23.8711 4.52832 32.9277 13.584c9.05566 9.05664 13.584 20.0322 13.584 32.9277
c0 9.53809 -3.35645 18.7471 -10.0693 27.6279c53.9434 42.7354 115.261 68.5342 183.953 77.3955c1.05371 -11.9824 5.91895 -22.0635 14.5957 -30.2432c8.67578 -8.17871 19.0127 -12.2686 31.0088 -12.2686c11.958 0 22.249 4.03418 30.8721 12.1016
c8.62207 8.06836 13.5332 18.0264 14.7324 29.875c67.4736 -8.38184 128.218 -33.3975 182.232 -75.0459c-7.50293 -9.13965 -11.2549 -18.9541 -11.2549 -29.4424c0 -12.8809 4.54395 -23.8516 13.6309 -32.9131c9.08789 -9.06543 20.0479 -13.5986 32.8799 -13.5986
c10.3545 0 19.9824 3.63574 28.8838 10.9072zM387.093 174.093c51.3828 0 95.2363 18.1562 131.561 54.4678s54.4863 80.1709 54.4863 131.579c0 51.4746 -18.2324 95.3818 -54.6982 131.721l-131.349 131.349l-131.534 -131.534
c-36.3408 -36.3408 -54.5117 -80.1865 -54.5117 -131.535c0 -51.3721 18.165 -95.2227 54.4941 -131.553c36.3291 -36.3291 80.1797 -54.4941 131.552 -54.4941z" />
    <glyph glyph-name="glyph51" unicode="&#xe008;"
d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM573.14 311.628v93.0234h-139.535v139.534h-93.0234v-139.534h-139.534v-93.0234h139.534
v-139.535h93.0234v139.535h139.535z" />
    <glyph glyph-name="glyph52" unicode="&#xe079;"
d="M387.093 637.209c-153.884 0 -279.069 -125.186 -279.069 -279.069s125.186 -279.07 279.069 -279.07s279.07 125.187 279.07 279.07s-125.187 279.069 -279.07 279.069zM387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093
s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM513.187 298.187l-65.7676 -65.7676l-91.21 91.209c-9.7207 8.62793 -16.1621 20.6973 -16.1621 34.6973v185.86h93.5576v-166.325z" />
    <glyph glyph-name="glyph53" unicode="&#xe060;"
d="M665.628 544.186l93.5576 93.0234l-91.209 93.0234h91.209v-744.186h-744.186v744.186h93.3955l93.3721 -93.3955l-94.4648 -92.6514h93.209l95 93.3955l-92.6514 92.6514h131.535l93.3018 -93.3955l-94.3945 -92.6514h109.837l95.0234 93.3955l-92.7441 92.6514h129.441
l91.3027 -93.3955l-92.3721 -92.6514h91.8369zM666.163 80.0693v93.0234h-558.14v-93.0234h558.14zM666.163 265.116v93.0234h-558.14v-93.0234h558.14z" />
    <glyph glyph-name="glyph54" unicode="&#xe024;"
d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM387.093 637.209c-121.093 0 -223.372 -78 -262 -186.046h524
c-38.6279 108.046 -140.906 186.046 -262 186.046zM387.093 311.628c25.6982 0 46.5117 20.8135 46.5117 46.5117c0 25.6973 -20.8135 46.5117 -46.5117 46.5117c-25.6973 0 -46.5117 -20.8145 -46.5117 -46.5117c0 -25.6982 20.8145 -46.5117 46.5117 -46.5117z
M108.023 358.14c0 -137.814 100.651 -251.814 232.186 -274.349c-2.16211 151.884 -105.093 274.349 -232.186 274.349zM433.977 83.791c131.535 22.5342 232.187 136.534 232.187 274.349c-127.094 0 -230.023 -122.465 -232.187 -274.349z" />
    <glyph glyph-name="glyph55" unicode="&#x270e;"
d="M704.675 675.721c72.6738 -72.6738 72.6738 -190.396 0 -263.069l-426.605 -426.604h-263.069l0.720703 263.813l425.884 425.86c36.3262 36.3486 83.9307 54.5117 131.535 54.5117c47.6973 0 95.3018 -18.1631 131.535 -54.5117zM239.559 79.0693l399.349 399.35
l-131.535 131.534l-398.721 -398.79l-0.0927734 -39.0703h92.4883v-93.0234h38.5117z" />
    <glyph glyph-name="glyph56" unicode="&#xe02b;"
d="M287.069 529.931c0 -39.6055 -32.1621 -71.7676 -71.6738 -71.7676c-39.6045 0 -71.7676 32.1621 -71.7676 71.7676c0 39.5107 32.1631 71.5811 71.7676 71.5811c39.5117 0 71.6738 -32.0703 71.6738 -71.5811zM15 730.232h308.675l435.511 -435.581h-308.674v-308.604
l-435.512 435.512v308.674zM289.349 647.396c-24.5352 0 -138.535 0 -191.512 -0.0234375v-191.581c18 -17.791 183.232 -183.14 269.838 -269.604v191.325h191.488c-86.582 86.5576 -251.838 251.977 -269.814 269.884z" />
    <glyph glyph-name="glyph57" unicode="&#xe067;"
d="M759.186 544.186c0 -69.9062 -39.0693 -130.093 -96.1162 -161.883c0.745117 -7.86133 2.37207 -15.3955 2.37207 -23.4424c0 -154.163 -124.906 -279.069 -279.069 -279.069c-57.5117 0 -110.931 17.4414 -155.349 47.2324l-216.023 -140.977l141.604 214.744
c-30.9766 44.8838 -49.3252 99.3018 -49.3252 158.069c0 154.163 124.907 279.07 279.069 279.07c8.7207 0 17 -1.76758 25.5352 -2.58203c0 -0.0458984 -0.0927734 -0.0927734 -0.0927734 -0.139648c32 56.4658 91.9531 95.0234 161.349 95.0234
c102.651 0 186.046 -83.3486 186.046 -186.047zM386.372 172.814c102.372 0 185.581 83.0459 185.953 185.418c-16.6279 0.0927734 -32.5342 3 -47.8838 7.18652l-73.0459 -73.0469c-36.3262 -36.3252 -95.209 -36.3252 -131.535 0
c-36.3252 36.3252 -36.3252 95.209 0 131.535l73.7676 73.8135c-3.81348 14.9541 -6.53516 30.3027 -6.53516 46.4648c0 0.373047 0.0927734 0.72168 0.0927734 1.09375c0 -0.139648 -0.0927734 -0.279297 -0.0927734 -0.464844
c-0.185547 0 -0.441406 0.0927734 -0.720703 0.0927734c-102.651 0 -186.047 -83.4424 -186.047 -186.047c0 -102.651 83.3955 -186.046 186.047 -186.046zM573.14 451.163c51.2324 0 93.0234 41.7441 93.0234 93.0225c0 51.2793 -41.791 93.0234 -93.0234 93.0234
s-93.0234 -41.7441 -93.0234 -93.0234c0 -51.2783 41.791 -93.0225 93.0234 -93.0225z" />
    <glyph glyph-name="glyph58" unicode="&#x26d4;"
d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM387.093 637.209c-153.884 0 -279.069 -125.186 -279.069 -279.069
c0 -60.1396 19.5352 -115.559 52.0459 -161.163l388.279 388.093c-45.6045 32.5117 -101.023 52.1396 -161.256 52.1396zM387.093 79.0693c153.884 0 279.07 125.187 279.07 279.07c0 60.1396 -19.5352 115.558 -52.0469 161.163l-388.279 -388.094
c45.6045 -32.5117 101.023 -52.1396 161.256 -52.1396z" />
    <glyph glyph-name="glyph59" unicode="&#xe011;"
d="M759.186 79.0693h-279.069v279.07l279.069 279.069v-558.14zM294.069 79.0693h-279.069v279.07l279.069 279.069v-558.14z" />
    <glyph glyph-name="glyph60" unicode="&#xe071;"
d="M201.047 172.093c-102.744 0 -186.047 83.3027 -186.047 186.047s83.3027 186.046 186.047 186.046v-372.093zM294.069 544.186l186.047 93.0234v-558.14l-186.047 93.0234v372.093zM759.186 311.628h-186.046v93.0234h186.046v-93.0234z" />
    <glyph glyph-name="glyph61" unicode="&#xe018;"
d="M759.186 358.14c0 -205.488 -166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093s372.093 -166.604 372.093 -372.093zM294.069 218.604l93.0234 -93.0234l93.0234 93.0234h-46.5117v372.093h-93.0234v-372.093
h-46.5117z" />
    <glyph glyph-name="glyph62" unicode="&#xe056;"
d="M15 637.209c0 31.0078 15.5039 46.5117 46.5117 46.5117s46.5117 -15.5039 46.5117 -46.5117s-15.5039 -46.5117 -46.5117 -46.5117s-46.5117 15.5039 -46.5117 46.5117zM201.047 590.697v93.0234h558.139v-93.0234h-558.139zM201.047 451.163
c0 31.0078 15.5039 46.5117 46.5117 46.5117c31.0068 0 46.5107 -15.5039 46.5107 -46.5117s-15.5039 -46.5117 -46.5107 -46.5117c-31.0078 0 -46.5117 15.5039 -46.5117 46.5117zM387.093 404.651v93.0234h372.093v-93.0234h-372.093zM201.047 79.0693
c0 31.0078 15.5039 46.5117 46.5117 46.5117c31.0068 0 46.5107 -15.5039 46.5107 -46.5117c0 -31.0068 -15.5039 -46.5107 -46.5107 -46.5107c-31.0078 0 -46.5117 15.5039 -46.5117 46.5107zM387.093 32.5586v93.0225h372.093v-93.0225h-372.093zM387.093 265.116
c0 31.0078 15.5039 46.5117 46.5117 46.5117s46.5117 -15.5039 46.5117 -46.5117s-15.5039 -46.5117 -46.5117 -46.5117s-46.5117 15.5039 -46.5117 46.5117zM573.14 218.604v93.0234h186.046v-93.0234h-186.046z" />
    <glyph glyph-name="glyph63" unicode="&#xe014;"
d="M15 358.14c0 205.535 166.604 372.093 372.186 372.093c205.396 0 372 -166.558 372 -372.093c0 -205.488 -166.604 -372.093 -372 -372.093c-205.581 0 -372.186 166.604 -372.186 372.093zM573.14 358.86l-185.954 185.372l-185.418 -185.372h138.813v-186.768h93.0234
v186.768h139.535z" />
    <glyph glyph-name="glyph64" unicode="&#xe06d;"
d="M480.116 590.697h-232.558c-76.8613 0 -139.535 -62.5811 -139.535 -139.534v-232.559c0 -30.3486 14.7207 -57.4189 37.3252 -74.4883c33.9766 45.2324 88.0469 74.4883 148.721 74.4883h186.047c102.651 0 186.047 83.3955 186.047 186.047
s-83.3955 186.046 -186.047 186.046zM480.116 683.721c154.163 0 279.069 -125 279.069 -279.069c0 -154.07 -124.906 -279.07 -279.069 -279.07h-186.047c-51.3252 0 -93.0225 -41.6045 -93.0225 -93.0225c-102.651 0 -186.047 83.3018 -186.047 186.046v232.559
c0 128.441 104.116 232.558 232.559 232.558h232.558z" />
    <glyph glyph-name="glyph65" unicode="&#xe02f;"
d="M669.791 643.768c57.6045 -57.6748 89.3945 -134.349 89.3945 -217.884c0 -79.6279 -31.79 -156.303 -89.3945 -214.116l-70.1396 -69.9531l-65.7676 65.7666l70.1396 70.0938c40.0693 40.1621 62.1396 93.3945 62.1396 148.209
c0 58.6514 -22.0703 111.884 -62.1396 151.931c-80.1162 80.3018 -219.838 80.3018 -299.954 0.0927734l-126.813 -128.768h116.813v-91.1631h-279.069v279.232h93.0234v-123.697l130.163 130.256c115.209 115.372 316.325 115.279 431.604 0zM444.047 -13.9766
l-65.7676 65.9531l65.7676 65.7676l65.7676 -65.7676z" />
    <glyph glyph-name="glyph66" unicode="&#x2602;"
d="M387.093 730.232c205.21 0 372.093 -166.93 372.093 -372.093h-93.0225c0 19.209 -15.6279 34.8838 -34.8838 34.8838c-19.1631 0 -34.8838 -15.6748 -34.8838 -34.8838h-93.0234c0 19.209 -15.6279 34.8838 -34.8838 34.8838
c-19.1631 0 -34.8838 -15.6748 -34.8838 -34.8838v-232.559c0 -76.9531 -62.5117 -139.534 -139.535 -139.534c-76.8604 0 -139.534 62.5811 -139.534 139.534h93.0234c0 -25.6279 20.8828 -46.5117 46.5107 -46.5117c25.6982 0 46.5117 20.8838 46.5117 46.5117v232.559
c0 19.209 -15.6279 34.8838 -34.8838 34.8838c-19.1621 0 -34.8838 -15.6748 -34.8838 -34.8838h-93.0225c0 19.209 -15.6279 34.8838 -34.8838 34.8838c-19.1631 0 -34.8838 -15.6748 -34.8838 -34.8838h-93.0234c0 205.163 166.977 372.093 372.093 372.093z" />
    <glyph glyph-name="glyph67" unicode="&#x26a1;"
d="M759.186 730.232l-325.581 -372.093l139.535 -93.0234l-558.14 -279.069l325.581 279.069l-139.534 93.0234z" />
    <glyph glyph-name="glyph68" unicode="&#xe053;"
d="M759.186 637.209h-744.186v93.0234h744.186v-93.0234zM480.116 451.163h-465.116v93.0225h465.116v-93.0225zM759.186 172.093h-744.186v93.0234h744.186v-93.0234zM573.14 -13.9531h-558.14v93.0225h558.14v-93.0225zM759.186 32.5586
c0 -25.6982 -20.8828 -46.5117 -46.5107 -46.5117c-25.791 0 -46.6055 20.8135 -46.6055 46.5117c0 25.6973 20.8145 46.5107 46.6055 46.5107c25.6279 0 46.5107 -20.8135 46.5107 -46.5107z" />
    <glyph glyph-name="glyph69" unicode="&#xe054;"
d="M759.186 637.209h-744.186v93.0234h744.186v-93.0234zM480.116 451.163h-465.116v93.0225h465.116v-93.0225zM759.186 263.116h-744.186v93.0234h744.186v-93.0234zM15 32.5586c0 31.0068 15.5039 46.5107 46.5117 46.5107s46.5117 -15.5039 46.5117 -46.5107
c0 -31.0078 -15.5039 -46.5117 -46.5117 -46.5117s-46.5117 15.5039 -46.5117 46.5117zM294.069 32.5586c0 -12.8408 -4.5459 -23.8027 -13.6396 -32.8867c-9.0918 -9.08301 -20.0498 -13.625 -32.8711 -13.625c-12.8906 0 -23.8809 4.53809 -32.9707 13.6152
s-13.6348 20.043 -13.6348 32.8965s4.54492 23.8184 13.6348 32.8955s20.0801 13.6152 32.9707 13.6152c12.8223 0 23.7793 -4.54199 32.8711 -13.625c9.09375 -9.08301 13.6396 -20.0449 13.6396 -32.8857zM387.093 32.5586c0 31.0068 15.5039 46.5107 46.5117 46.5107
s46.5117 -15.5039 46.5117 -46.5107c0 -31.0078 -15.5039 -46.5117 -46.5117 -46.5117s-46.5117 15.5039 -46.5117 46.5117z" />
    <glyph glyph-name="glyph70" unicode="&#xe023;" horiz-adv-x="402"
d="M340.581 730.232c25.6982 0 46.5117 -20.8135 46.5117 -46.5117v-511.628c0 -102.744 -83.3018 -186.046 -186.046 -186.046s-186.047 83.3018 -186.047 186.046v511.628c0 25.6982 20.8135 46.5117 46.5117 46.5117h279.069zM247.559 172.093
c25.6973 0 46.5107 20.8145 46.5107 46.5117c0 25.6982 -20.8135 46.5117 -46.5107 46.5117c-25.6982 0 -46.5117 -20.8135 -46.5117 -46.5117c0 -25.6973 20.8135 -46.5117 46.5117 -46.5117zM294.069 358.14v279.069h-186.046v-279.069h46.7207
c0.348633 25.6973 21.2559 46.5117 47.0469 46.5117c25.79 0 46.6738 -20.8145 47.0459 -46.5117h45.2324z" />
    <glyph glyph-name="glyph71" unicode="&#xe010;" horiz-adv-x="402"
d="M201.768 520.931c0 15.0225 7.51172 22.5342 22.5352 22.5342c15.0225 0 22.5342 -7.51172 22.5342 -22.5342c0 -15.0234 -7.51172 -22.5352 -22.5342 -22.5352c-15.0234 0 -22.5352 7.51172 -22.5352 22.5352zM340.581 730.232
c12.8486 0 23.8135 -4.54004 32.8926 -13.6191s13.6191 -20.043 13.6191 -32.8926v-511.628c0 -51.3721 -18.165 -95.2227 -54.4941 -131.552s-80.1797 -54.4941 -131.552 -54.4941s-95.2227 18.165 -131.553 54.4941c-36.3291 36.3291 -54.4941 80.1797 -54.4941 131.552
v511.628c0 12.8496 4.54004 23.8135 13.6191 32.8926s20.043 13.6191 32.8926 13.6191h279.069zM132 265.116c6.2207 0 11.5322 2.2002 15.9336 6.60156s6.60156 9.71289 6.60156 15.9336s-2.2002 11.5312 -6.60156 15.9326s-9.71289 6.60156 -15.9336 6.60156
s-11.5322 -2.2002 -15.9336 -6.60156s-6.60156 -9.71191 -6.60156 -15.9326s2.2002 -11.5322 6.60156 -15.9336s9.71289 -6.60156 15.9336 -6.60156zM247.559 172.093c12.8486 0 23.8125 4.54004 32.8916 13.6191c9.0791 9.08008 13.6191 20.0439 13.6191 32.8926
s-4.54004 23.8135 -13.6191 32.8926s-20.043 13.6191 -32.8916 13.6191c-12.8496 0 -23.8135 -4.54004 -32.8926 -13.6191s-13.6191 -20.0439 -13.6191 -32.8926s4.54004 -23.8125 13.6191 -32.8926c9.0791 -9.0791 20.0439 -13.6191 32.8926 -13.6191zM294.069 358.14
v279.069h-186.046v-279.069h46.7207c0.174805 12.8652 4.83984 23.834 13.9951 32.9053c9.15625 9.07129 20.1729 13.6064 33.0518 13.6064c12.875 0 23.8887 -4.53516 33.04 -13.6045c9.15039 -9.07031 13.8193 -20.0391 14.0059 -32.9072h45.2324z" />
    <glyph glyph-name="glyph72" unicode="&#xe073;"
d="M759.186 451.163v-186.047h-93.0225v-46.5117c0 -25.6279 -20.8838 -46.5117 -46.5117 -46.5117h-558.14c-25.6279 0 -46.5117 20.8838 -46.5117 46.5117v279.07c0 25.5342 20.8838 46.5107 46.5117 46.5107h558.14c25.6279 0 46.5117 -20.9766 46.5117 -46.5107
v-46.5117h93.0225z" />
    <glyph glyph-name="glyph73" unicode="&#x2192;"
d="M387.465 730.232l371.721 -372.093l-371.721 -372.093l-131.906 131.93l146.883 146.884h-387.441v186.675h387.441l-146.79 146.79z" />
    <glyph glyph-name="glyph74" unicode="&#xe059;"
d="M759.186 730.232v-558.14h-186.046v-186.046h-558.14v558.139h186.047v186.047h558.139zM480.116 79.0693v93.0234h-279.069v186.047h-93.0234v-279.07h372.093zM666.163 265.116v279.069h-372.094v-279.069h372.094z" />
    <glyph glyph-name="glyph75" unicode="&#x2795;"
d="M759.186 451.163v-186.047h-279.069v-279.069h-186.047v279.069h-279.069v186.047h279.069v279.069h186.047v-279.069h279.069z" />
    <glyph glyph-name="glyph76" unicode="&#x2699;"
d="M759.186 312.349l-111.209 -47.418c-3.09277 -8.62793 -6.2793 -17.0938 -10.1855 -25.4424l45.79 -111l-65.7666 -65.7676l-111.559 44.6982c-8.34863 -4 -17.0703 -7.44238 -25.8838 -10.7217l-46.0469 -110.65h-93.0225l-47.0469 110.093
c-9.25586 3.18555 -18.2559 6.53516 -27.0703 10.7207l-109.837 -45.2324l-65.7676 65.7676l44.2324 110.279c-4.34863 9 -7.97656 18.1855 -11.3486 27.6279l-109.465 45.6045v93.0234l109.372 46.7666c3.37207 9.46582 6.90723 18.6279 11.2793 27.6279l-45.0703 109.559
l65.7676 65.7676l110.559 -44.4189c8.81348 4.18652 17.7207 7.62793 26.9766 10.9072l45.9766 110.093h93.0234l47.1396 -110.465c8.90723 -3.18652 17.5352 -6.62793 25.9766 -10.7207l110.744 45.6045l65.791 -65.7676l-44.8838 -111.744
c4 -8.2793 7.25586 -16.7207 10.3486 -25.4424l111.186 -46.3252v-93.0234zM386.372 218.604c77.0234 0 139.535 62.5117 139.535 139.535s-62.5117 139.535 -139.535 139.535s-139.535 -62.5117 -139.535 -139.535s62.5117 -139.535 139.535 -139.535z" />
    <glyph glyph-name="glyph77" unicode="&#x26bf;"
d="M526.628 637.209c-76.9531 0 -139.535 -62.5811 -139.535 -139.534c0 -7.25586 0.860352 -15.2559 2.72168 -25.2559l8.90625 -48.1396l-34.6045 -34.6045l-256.093 -256.094v-54.5117h93.0234v93.0234h93.0225v93.0234h93.0234v38.5117l27.2559 27.2559l4.2793 4.2793
l34.6045 34.6045l48.1396 -8.90723c10 -1.81348 18 -2.7207 25.2559 -2.7207c76.9531 0 139.535 62.5811 139.535 139.535c0 76.9531 -62.582 139.534 -139.535 139.534zM526.628 730.232c128.441 0 232.558 -104.116 232.558 -232.558
c0 -128.442 -104.116 -232.559 -232.558 -232.559c-14.5352 0 -28.5352 1.7207 -42.2324 4.2793l-4.2793 -4.2793v-93.0234h-93.0234v-93.0234h-93.0234v-93.0225h-279.069v186.046l283.349 283.349c-2.55762 13.6982 -4.2793 27.6982 -4.2793 42.2334
c0 128.441 104.116 232.558 232.559 232.558zM480.303 497.675c0 31.0068 15.5039 46.5107 46.5107 46.5107c31.0078 0 46.5117 -15.5039 46.5117 -46.5107c0 -31.0078 -15.5039 -46.5117 -46.5117 -46.5117c-31.0068 0 -46.5107 15.5039 -46.5107 46.5117z" />
    <glyph glyph-name="glyph78" unicode="&#xe04c;"
d="M759.186 -13.9531l-558.139 372.093l558.139 372.093v-744.186zM15 79.0693v558.14h186.047v-558.14h-186.047z" />
    <glyph glyph-name="glyph79" unicode="&#xe003;"
d="M387.138 544.186c-144.116 0 -233.14 -38.5107 -264.581 -114.371c-27 -64.9541 -13 -145.814 8.81348 -205.582c52.6045 36.3486 99.9307 40.8838 209.303 40.8838h308.093c9.09277 27.791 17.4414 61.7676 17.4414 93.0234
c0 90.0234 -21.6279 186.046 -279.069 186.046zM387.138 637.209c186.046 0 372.093 -46.5117 372.093 -279.069c0 -93.0234 -47.9531 -186.047 -47.9531 -186.047h-370.604c-139.442 0 -139.442 0 -232.466 -93.0234c-92.9531 93.0234 -241.302 558.14 278.931 558.14z" />
    <glyph glyph-name="glyph80" unicode="&#xe05a;"
d="M759.186 637.209v-93.0234h-93.0225v-418.604c0 -77.0225 -62.5117 -139.534 -139.535 -139.534h-279.069c-77.0234 0 -139.535 62.5117 -139.535 139.534v418.604h-93.0234v93.0234h93.0234h93.0234c0 51.4189 41.6045 93.0234 93.0225 93.0234h186.047
c51.4189 0 93.0234 -41.6045 93.0234 -93.0234h93.0234h93.0225zM573.14 125.581v418.604h-372.093v-418.604c0 -25.6279 20.8838 -46.5117 46.5117 -46.5117h279.069c25.6279 0 46.5117 20.8838 46.5117 46.5117zM247.559 218.604
c0 31.0078 15.5039 46.5117 46.5107 46.5117c31.0078 0 46.5117 -15.5039 46.5117 -46.5117s-15.5039 -46.5117 -46.5117 -46.5117c-31.0068 0 -46.5107 15.5039 -46.5107 46.5117zM247.559 404.651c0 31.0078 15.5039 46.5117 46.5107 46.5117
c31.0078 0 46.5117 -15.5039 46.5117 -46.5117s-15.5039 -46.5117 -46.5117 -46.5117c-31.0068 0 -46.5107 15.5039 -46.5107 46.5117zM433.604 218.604c0 31.0078 15.5039 46.5117 46.5117 46.5117s46.5117 -15.5039 46.5117 -46.5117s-15.5039 -46.5117 -46.5117 -46.5117
s-46.5117 15.5039 -46.5117 46.5117zM433.604 404.651c0 31.0078 15.5039 46.5117 46.5117 46.5117s46.5117 -15.5039 46.5117 -46.5117s-15.5039 -46.5117 -46.5117 -46.5117s-46.5117 15.5039 -46.5117 46.5117z" />
    <glyph glyph-name="glyph81" unicode="&#xe027;"
d="M201.047 172.093v186.047l93.0225 93.0234l93.0234 -93.0234l186.047 186.046l186.046 -186.046v-186.047h-558.139zM108.023 79.0693h651.162l-93.0225 -93.0225h-558.14h-93.0234v93.0225v558.14l93.0234 93.0234v-651.163z" />
    <glyph glyph-name="glyph82" unicode="&#xe007;"
d="M619.116 446.209c75.3955 -14.5811 140.069 -67.3018 140.069 -181.093c0 -133.721 -93.0225 -186.047 -185.953 -186.047h-93.1162c-51.4189 0 -93.0234 -41.6045 -93.0234 -93.0225c-102.744 0 -185.953 83.3018 -185.953 186.046v93.0234
c0 16.7207 1.62793 32.1162 4.62793 46.5117h88.3018c2.90723 0 5.62793 -1.18652 8.34961 -1.6748c-5.07031 -11.9531 -8.34961 -26.4414 -8.34961 -44.8369v-93.0234c0 -30.3486 14.7217 -57.418 37.2559 -74.4883c33.9541 45.2324 88.21 74.4883 148.791 74.4883h93.1162
c92.9307 0 92.9307 69.9541 92.9307 93.0234c0 24.8838 -0.535156 79.4883 -67.582 90.6514c12.7217 27.7676 19.9072 58.1855 20.5352 90.4414zM387.093 637.209h-185.953c-93.1162 0 -93.1162 -65.2324 -93.1162 -93.0234c0 -23.0225 0 -93.0225 93.1162 -93.0225h92.9297
c60.6748 0 114.838 -29.3027 148.791 -74.4424c22.5352 16.9766 37.2559 44 37.2559 74.4424v93.0225c0 80.9307 -58.3252 93.0234 -93.0234 93.0234zM387.093 730.232c93.0234 0 186.14 -57.6514 186.14 -186.047v-93.0225c0 -102.744 -83.3955 -186.047 -186.14 -186.047
c0 51.3252 -41.6045 93.0234 -93.0234 93.0234h-92.9297c-93.1162 0 -186.14 52.3252 -186.14 186.046c0 136.629 93.0234 186.047 186.14 186.047h185.953z" />
    <glyph glyph-name="glyph83" unicode="&#xe064;"
d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM387.814 266.651c51.0693 0 92.3018 41.2559 92.3018 92.209
c0 51.0703 -41.2324 92.3027 -92.3018 92.3027c-50.8838 0 -92.21 -41.2559 -92.21 -92.3027c0 -50.9766 41.3262 -92.209 92.21 -92.209z" />
    <glyph glyph-name="glyph84" unicode="&#x275e;"
d="M15 637.209h279.069v-279.069c0 -153.884 -125.186 -279.07 -279.069 -279.07v93.0234c102.651 0 186.047 83.4883 186.047 186.047h-186.047v279.069zM480.116 637.209h279.069v-279.069c0 -153.884 -125.186 -279.07 -279.069 -279.07v93.0234
c102.651 0 186.047 83.4883 186.047 186.047h-186.047v279.069z" />
    <glyph glyph-name="glyph85" unicode="&#xe01b;"
d="M387 234.14h0.0927734c0 -137 -111.093 -248.093 -248.093 -248.093c-45.0469 0 -87.209 12 -123.628 32.8828l-0.37207 0.46582c74.0469 42.8604 123.907 122.907 124 214.651l-0.0927734 0.0927734c0 68.4883 55.5117 124 124 124s124.093 -55.5117 124.093 -124z
M731.93 702.977c36.3496 -36.3252 36.3496 -95.209 0 -131.535l-265.162 -265.162c-21.791 61.3955 -70.1162 109.744 -131.535 131.628l265.163 265.069c36.3252 36.3262 95.209 36.3262 131.534 0z" />
    <glyph glyph-name="glyph86" unicode="&#x2601;"
d="M573.14 497.675c102.558 0 186.046 -83.4424 186.046 -186.047c0 -102.651 -83.4883 -186.047 -186.046 -186.047h-372.093c-102.559 0 -186.047 83.3955 -186.047 186.047c0 102.604 83.4883 186.047 186.047 186.047c8.25586 0 16.4414 -1.2334 24.6279 -2.32617
c31.9766 56.6045 91.9297 95.3486 161.418 95.3486c68.0469 0 128 -38.2783 160.419 -95.6045c8.46484 1.16309 16.8135 2.58203 25.6279 2.58203zM573.14 218.604c51.3252 0 93.0234 41.7441 93.0234 93.0234s-41.6982 93.0234 -93.0234 93.0234
c-51.3262 0 -93.0234 -41.7441 -93.0234 -93.0234h-93.0234c0 60.5811 29.5352 113.953 74.3955 147.931c-17.0693 23.209 -44.3252 38.1162 -74.3955 38.1162c-51.3252 0 -93.0234 -41.7441 -93.0234 -93.0234c0 -11.21 1.90723 -22.1631 5.81445 -32.4883
l-87.1162 -32.6045c-7.62793 20.3486 -11.4424 41.8828 -11.6279 63.8135c-47.9766 -1.39551 -93.1162 -40.7441 -93.1162 -91.7441c0 -51.2793 41.6973 -93.0234 93.0234 -93.0234h372.093z" />
    <glyph glyph-name="glyph87" unicode="&#xe025;"
d="M387.093 637.209c205.488 0 372.093 -275.441 372.093 -275.441s-166.604 -282.698 -372.093 -282.698s-372.093 282.698 -372.093 282.698s166.604 275.441 372.093 275.441zM387.093 172.093c102.744 0 186.047 83.3027 186.047 186.047
s-83.3027 186.046 -186.047 186.046s-186.046 -83.3018 -186.046 -186.046s83.3018 -186.047 186.046 -186.047zM294.069 357.768c0 62.0156 31.0078 93.0234 93.0234 93.0234s93.0234 -31.0078 93.0234 -93.0234s-31.0078 -93.0234 -93.0234 -93.0234
s-93.0234 31.0078 -93.0234 93.0234z" />
    <glyph glyph-name="glyph88" unicode="&#xe048;"
d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM247.559 172.093l372.278 186.047l-372.278 186.046v-372.093z" />
    <glyph glyph-name="glyph89" unicode="&#xe041;"
d="M759.186 172.093h-558.325v-93.0234l-185.86 139.535l185.86 139.535v-93.0234h558.325v-93.0234zM15 451.163v93.0225h558.14v93.0234l186.046 -139.534l-186.046 -139.535v93.0234h-558.14z" />
    <glyph glyph-name="glyph90" unicode="&#xe006;"
d="M731.93 702.977c36.3496 -36.3252 36.3496 -95.209 0 -131.535l-351.744 -351.837c-8.16211 30.6982 -23.4414 59.9541 -47.418 83.9307c-23.6045 23.6279 -52.6748 39.418 -84.1162 47.6045l351.744 351.837c36.3252 36.3262 95.209 36.3262 131.534 0zM267 106.232
l-252 -120.186l120.465 251.721c36.3262 36.3252 95.21 36.3252 131.535 0c36.3252 -36.3262 36.3252 -95.209 0 -131.535z" />
    <glyph glyph-name="glyph91" unicode="&#xe070;"
d="M387.093 265.116c0 62.0156 31.0078 93.0234 93.0234 93.0234s93.0234 -31.0078 93.0234 -93.0234s-31.0078 -93.0234 -93.0234 -93.0234s-93.0234 31.0078 -93.0234 93.0234zM666.163 544.186c25.7041 0 47.6338 -9.08105 65.7891 -27.2432
c18.1553 -18.1611 27.2334 -40.0879 27.2334 -65.7793v-465.116h-744.186v465.116c0 25.6855 9.08203 47.6113 27.2471 65.7754c18.165 18.165 40.0898 27.2471 65.7764 27.2471h186.14l79.3486 153.838c3.04004 9.46191 8.61621 17.1953 16.7285 23.2012
c8.1123 6.00488 17.2959 9.00781 27.5508 9.00781h127.721c10.1338 0 19.2324 -2.93359 27.2939 -8.80078c8.0625 -5.86719 13.6855 -13.4531 16.8691 -22.7568zM154.535 358.14c12.8486 0 23.8125 4.54004 32.8926 13.6191c9.0791 9.0791 13.6191 20.0439 13.6191 32.8926
s-4.54004 23.8125 -13.6191 32.8926c-9.08008 9.0791 -20.0439 13.6191 -32.8926 13.6191s-23.8135 -4.54004 -32.8926 -13.6191c-9.0791 -9.08008 -13.6191 -20.0439 -13.6191 -32.8926s4.54004 -23.8135 13.6191 -32.8926s20.043 -13.6191 32.8926 -13.6191z
M480.116 79.0693c51.3721 0 95.2227 18.165 131.553 54.4941c36.3291 36.3301 54.4941 80.1807 54.4941 131.553s-18.165 95.2227 -54.4941 131.553c-36.3301 36.3291 -80.1807 54.4941 -131.553 54.4941s-95.2227 -18.165 -131.553 -54.4941
c-36.3291 -36.3301 -54.4941 -80.1807 -54.4941 -131.553s18.165 -95.2227 54.4941 -131.553c36.3301 -36.3291 80.1807 -54.4941 131.553 -54.4941z" />
    <glyph glyph-name="glyph92" unicode="&#xe03a;"
d="M759.186 358.14c0 -205.488 -166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093s372.093 -166.604 372.093 -372.093zM247.559 311.628h279.069v-46.5117l93.0234 93.0234l-93.0234 93.0234v-46.5117h-279.069
v46.5117l-93.0234 -93.0234l93.0234 -93.0234v46.5117z" />
    <glyph glyph-name="glyph93" unicode="&#x2935;"
d="M666.163 311.628v-46.5117h93.0225l-186.046 -186.047l-186.047 186.047h93.0234v46.5117c0 128.441 -104.116 232.558 -232.558 232.558c-128.442 0 -232.559 -104.116 -232.559 -232.558c0 179.768 145.814 325.581 325.581 325.581
c179.768 0 325.582 -145.813 325.582 -325.581z" />
    <glyph glyph-name="glyph94" unicode="&#xe039;"
d="M247.559 358.14l46.5107 -46.5117h-139.534v-93.0234l-139.535 139.535l139.535 139.535v-93.0234h139.534zM525.186 358.14l-45.0693 46.5117h139.535v93.0234l139.534 -139.535l-139.534 -139.535v93.0234h-139.535z" />
    <glyph glyph-name="glyph95" unicode="&#xe026;"
d="M507.372 405.116l-188 318.303c22.0234 4.0459 44.5117 6.81348 67.7207 6.81348c97.9307 0 186.232 -38.5576 252.628 -100.372zM478.977 265.116l193.628 328.953c53.3262 -64.3721 86.5811 -145.86 86.5811 -235.93c0 -32.3486 -5.44141 -63.1396 -13.1855 -93.0234
h-267.023zM398.721 497.675h-356.093c41.0469 101.256 125.675 178.906 230.325 212.837zM378.559 218.604h353.022c-40.6973 -100.372 -124.186 -177.512 -227.65 -212.023zM296.512 451.163l-194.163 -329.954c-53.7441 64.6055 -87.3486 146.442 -87.3486 236.931
c0 32.3486 5.39551 63.1396 13.1631 93.0234h268.349zM268.907 312.535l188.907 -319.396c-22.9307 -4.37207 -46.5117 -7.09277 -70.7217 -7.09277c-97.4648 0 -185.418 38.3252 -251.768 99.5576z" />
    <glyph glyph-name="glyph96" unicode="&#xe031;" horiz-adv-x="588"
d="M480.116 311.628h93.0234c0 -154.069 -125 -279.069 -279.07 -279.069c-154.069 0 -279.069 125 -279.069 279.069s125 279.069 279.069 279.069h93.5586v93.0234l139.813 -139.535l-139.813 -140v92.4893l-93.5586 1c-102.65 0 -186.046 -83.3955 -186.046 -186.047
s83.3955 -186.047 186.046 -186.047c102.651 0 186.047 83.3955 186.047 186.047z" />
    <glyph glyph-name="glyph97" unicode="&#xe074;"
d="M278.628 271.209c6.81348 -7.62793 13.9072 -14.7207 21.3486 -21.4414c-43.0693 -43.0703 -102.651 -102.675 -132.186 -132.279c-10.0938 10.1865 -11.4424 11.4424 -21.4424 21.4424c29.6279 29.5342 89.1396 89.209 132.279 132.278zM483.209 730.232
c152.163 0 275.977 -123.721 275.954 -275.907c0 -152.069 -123.814 -275.79 -275.978 -275.79c-36.3252 0 -70.8604 7.44141 -102.65 20.3486l-212.744 -212.837l-152.791 152.884l212.651 212.674c-12.8145 31.791 -20.2559 66.3262 -20.2559 102.744
c0 152.163 123.744 275.884 275.813 275.884zM483.209 271.465c100.931 0 183.047 82.1396 183.047 182.86c0 100.838 -82.1162 182.954 -183.047 182.954c-100.744 0 -182.86 -82.1162 -182.86 -182.954c0 -100.744 82.1162 -182.86 182.86 -182.86z" />
    <glyph glyph-name="glyph98" unicode="&#xe06e;" horiz-adv-x="588"
d="M387.093 730.232c102.744 0 186.047 -83.3018 186.047 -186.047v-372.093c0 -102.744 -83.3027 -186.046 -186.047 -186.046h-186.046c-102.744 0 -186.047 83.3018 -186.047 186.046v372.093c0 102.745 83.3027 186.047 186.047 186.047h186.046zM294.069 31.1162
c26.4893 0 47.9541 21.4424 47.9541 47.9531c0 26.5117 -21.4883 47.9541 -47.9541 47.9541c-26.4648 0 -47.9531 -21.4424 -47.9531 -47.9541c0 -26.5107 21.4648 -47.9531 47.9531 -47.9531zM480.116 172.093v372.093c0 51.2334 -41.791 93.0234 -93.0234 93.0234
h-186.046c-51.2793 0 -93.0234 -41.79 -93.0234 -93.0234v-372.093h372.093z" />
    <glyph glyph-name="glyph99" unicode="&#xe046;" horiz-adv-x="681"
d="M480.116 730.232h93.0234v-90.1162c0 -62.1396 -24.1631 -120.465 -68.1396 -164.419l-263.163 -261.628c-23.8838 -24 -37.3486 -55.0459 -39.79 -88.4883h92.0225l-139.534 -139.534l-139.535 139.534h94.1162c2.53516 58.2334 25.4424 112.744 67.0469 154.256
l263.162 261.722c26.2559 26.2559 40.791 61.3018 40.791 98.5576v90.1162zM572.047 125.581h94.1162l-139.535 -139.534l-139.535 139.534h92.0234c-2.46484 33.4424 -15.9072 64.6045 -39.8838 88.4883l-52.1396 51.8613l65.9541 65.6045l51.8604 -51.5117
c41.6045 -41.6982 64.6045 -96.209 67.1396 -154.442z" />
    <glyph glyph-name="glyph100" unicode="&#xe06b;"
d="M15 -13.9531v465.116h744.186v-465.116h-744.186zM433.604 544.186v186.047h232.559l93.0225 -186.047h-325.581zM340.581 730.232v-186.047h-325.581l93.0234 186.047h232.558z" />
    <glyph glyph-name="glyph101" unicode="&#xe00a;" horiz-adv-x="681"
d="M573.14 -13.9531v744.186h93.0234v-744.186h-93.0234zM387.093 -13.9531v558.139h93.0234v-558.139h-93.0234zM201.047 -13.9531v372.093h93.0225v-372.093h-93.0225zM15 -13.9531v186.046h93.0234v-186.046h-93.0234z" />
    <glyph glyph-name="glyph102" unicode="&#x2764;"
d="M552.512 590.697c-46.8604 0 -89.6514 -50.3252 -89.6514 -50.3252l-75.7676 -80.4883l-75.7676 80.4883s-42.7666 50.3252 -89.6504 50.3252c-57.1396 0 -104.466 -42.3252 -112.466 -97.3945l277.977 -319.023l277.791 319.023
c-8 55.0693 -55.3252 97.3945 -112.465 97.3945zM552.512 683.721c114.023 0 206.674 -92.8369 206.674 -206.768v-17.0693l-371.906 -427.325l-372.279 427.325v17.0693c0 113.931 92.6514 206.768 206.675 206.768c69.3945 0 127.906 -36.6973 165.418 -89.3955
c37.5117 52.6982 96.0234 89.3955 165.419 89.3955z" />
    <glyph glyph-name="glyph103" unicode="&#xe072;"
d="M201.047 172.093c-102.744 0 -186.047 83.3027 -186.047 186.047s83.3027 186.046 186.047 186.046v-372.093zM294.069 544.186l186.047 93.0234v-558.14l-186.047 93.0234v372.093zM573.232 172.186v93.0234c7.7207 0 15.5352 1 23.3486 2.90723
c40.791 10.3486 69.582 47.4189 69.582 90.0234s-28.791 79.5811 -70.0469 90.0234c-7.34863 1.81348 -15.1631 2.81348 -22.8838 2.81348v93.0234c15.2559 0 30.5117 -1.90723 45.5117 -5.53516c82.7676 -21.0693 140.441 -95.1162 140.441 -180.325
c0 -85.3027 -57.6738 -159.419 -140.162 -180.325c-15.4424 -3.72168 -30.7207 -5.62891 -45.791 -5.62891z" />
    <glyph glyph-name="glyph104" unicode="&#x2718;"
d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM571.14 239.86l-118.279 118.279l118.279 118.279l-65.7676 65.7666l-118.279 -118.278
l-118.279 118.278l-65.7666 -65.7666l118.278 -118.279l-118.278 -118.279l65.7666 -65.7676l118.279 118.279l118.279 -118.279z" />
    <glyph glyph-name="glyph105" unicode="&#xe077;"
d="M745.529 716.604c18.1621 -18.1631 18.1621 -47.6045 -0.0234375 -65.7676l-94.9307 -94.7441c59.791 -90.209 49.9766 -213.116 -29.6045 -292.604l-139.256 -139.535c-45.4189 -45.418 -106.86 -68.1387 -164.419 -68.1387
c-44.6973 0 -89.4883 12.8135 -128.278 38.6045l-94.6514 -94.7441c-9.09277 -9.09375 -20.9766 -13.6279 -32.8838 -13.6279s-23.791 4.53418 -32.8604 13.6279c-18.1631 18.1621 -18.1631 47.6045 0 65.7666l94.6514 94.7441
c-59.791 90.21 -49.9775 213.117 29.6045 292.605l139.534 139.534c43.4658 45.4189 104.907 68.1396 164.419 68.1396c44.6982 0 89.209 -12.8135 128 -38.6045l94.6514 94.7441c18.1631 18.1631 47.8838 18.1631 66.0469 0zM596.087 427.907
c0 21.1621 -5.06934 41.3252 -14 59.7676l-70.6748 -70.8604c-9.06934 -9.09375 -20.9766 -13.6279 -32.79 -13.6279c-11.9072 0 -23.791 4.53418 -32.8838 13.6279c-18.1631 18.1621 -18.1631 47.6045 0 65.7666l70.7676 70.8604c-18.5117 8.81445 -38.6045 14 -59.6748 14
c-37.2559 0 -74.2559 -14.5342 -100.604 -40.8828l-137.581 -139.535c-26.3496 -26.3486 -40.8838 -61.3955 -40.8838 -98.6514c0 -21.1631 5.09277 -41.3252 14 -59.7676l69.3945 69.3955c18.1631 18.1631 47.6055 18.1631 63.8145 0
c18.1631 -18.1631 18.1631 -47.6045 0 -65.7676l-67.4414 -69.3955c18.5342 -8.81348 38.6973 -14 59.7666 -14c35.3027 0 72.21 14.5352 98.6514 40.8838l139.256 139.535c26.3486 26.3486 40.8838 61.3955 40.8838 98.6514z" />
    <glyph glyph-name="glyph106" unicode="&#x263e;"
d="M152.093 517.488c-28.0693 -44.4414 -44.0693 -96.5352 -44.0693 -151.116c0 -158.488 128.813 -287.303 287.256 -287.279c54.6045 0 106.744 15.9766 151.162 44.1396c-208.302 19.6279 -374.628 185.907 -394.349 394.256zM290.441 730.232
c-29.2549 -50.6514 -47.2549 -108.604 -47.2324 -171.279c0 -190.302 154.232 -344.697 344.651 -344.697c62.6748 0 120.628 17.9766 171.325 47.2324c-45.7666 -158.628 -190.488 -275.441 -363.906 -275.441c-210.047 0 -380.279 170.232 -380.279 380.325
c0 173.419 116.744 318.069 275.441 363.86z" />
    <glyph glyph-name="glyph107" unicode="&#xe01e;"
d="M704.488 412l-13.6045 -13.7207l67.0459 -66.9072l-65.7666 -65.5811l-66.9541 66.9062l-346.396 -346.65h-172.418l-91.3955 92.8369v168.604l347.721 347.931l-69.1855 69.1855l65.5342 65.6279l69.1162 -69.2324l13.8145 13.7207
c36.1396 36.2559 83.6973 54.4189 131.303 54.4189c47.3486 0 94.9297 -18.1631 131.186 -54.4189c72.6748 -72.4883 72.6748 -190.186 0 -262.721zM255 93.791l304.512 304.697l-131.14 131.14l-300.372 -300.559c32.3486 -1.09277 64.4883 -13.1855 89.1162 -37.8838
c26.791 -26.8135 38.9766 -62.1387 37.8838 -97.3945z" />
    <glyph glyph-name="glyph108" unicode="&#xe036;" horiz-adv-x="681"
d="M570.419 588.697c61.7666 -61.5811 95.7441 -143.441 95.7441 -230.558c0 -179.512 -146.07 -325.581 -325.582 -325.581v-46.5117l-93.0225 93.0225l93.0225 93.0234v-46.5117c128.279 0 232.559 104.279 232.559 232.559c0 62.2324 -24.3486 120.721 -68.3027 164.697z
M433.604 637.209l-93.0234 -93.0234v46.5117c-128.278 0 -232.558 -104.278 -232.558 -232.558c0 -62.2324 24.3486 -120.721 68.3018 -164.698l-65.5811 -65.8604c-61.7676 61.582 -95.7441 143.442 -95.7441 230.559c0 179.512 146.069 325.581 325.581 325.581v46.5117z
" />
    <glyph glyph-name="glyph109" unicode="&#xe02c;"
d="M15 79.0693c0 62.0312 31.0156 93.0469 93.0469 93.0469c62.0303 0 93.0459 -31.0156 93.0459 -93.0469c0 -62.0303 -31.0156 -93.0459 -93.0459 -93.0459c-62.0312 0 -93.0469 31.0156 -93.0469 93.0459zM155.069 265.023v93.1162
c64.1133 0 118.909 -22.7549 164.388 -68.2646s68.2178 -100.336 68.2178 -164.479h-93.0703c0 38.5186 -13.6357 71.4189 -40.9062 98.7031c-27.2705 27.2832 -60.1475 40.9248 -98.6289 40.9248zM154.441 451.163v93.0225c75.7012 0 145.709 -18.7051 210.023 -56.1143
c64.3154 -37.4102 115.173 -88.2793 152.574 -152.608c37.4004 -64.3291 56.1006 -134.352 56.1006 -210.067h-93.0703c0 58.8857 -14.5469 113.351 -43.6416 163.393c-29.0938 50.042 -68.6504 89.6152 -118.671 118.719
c-50.0195 29.1045 -104.458 43.6562 -163.315 43.6562zM154.441 637.209v93.0234c81.8926 0 160.163 -15.9893 234.812 -47.9668c74.6484 -31.9775 138.979 -74.9736 192.988 -128.988s97.0029 -118.354 128.979 -193.017
c31.9766 -74.6641 47.9648 -152.952 47.9648 -234.865h-93.0225c0 69.3096 -13.5303 135.554 -40.5908 198.733c-27.0605 63.1807 -63.4434 117.625 -109.146 163.333c-45.7041 45.708 -100.14 82.0928 -163.305 109.155c-63.165 27.0605 -129.393 40.5918 -198.681 40.5918
z" />
    <glyph glyph-name="glyph110" unicode="&#x2139;" horiz-adv-x="402"
d="M61.5117 358.14h-46.5117v93.0234h279.069l0.186523 -325.582c0 -25.6973 20.8838 -46.5117 46.5117 -46.5117h46.3252v-93.0225h-372.093v93.0225h46.5117c25.6973 0 46.5117 20.8145 46.5117 46.5117v186.047c0 25.6973 -20.8145 46.5117 -46.5117 46.5117z
M108.023 637.209c0 62.0156 31.0078 93.0234 93.0234 93.0234c62.0146 0 93.0225 -31.0078 93.0225 -93.0234s-31.0078 -93.0234 -93.0225 -93.0234c-62.0156 0 -93.0234 31.0078 -93.0234 93.0234z" />
    <glyph glyph-name="glyph111" unicode="&#xe02a;"
d="M434.14 405.232v134.628c65.9531 -17.0234 117.558 -68.6738 134.628 -134.628h-134.628zM434.14 311.047h134.628c-17.0703 -65.9072 -68.6748 -117.605 -134.628 -134.582v134.582zM339.953 405.232h-134.628c16.9775 65.9531 68.6748 117.604 134.628 134.628
v-134.628zM339.953 311.047v-134.582c-65.9531 16.9766 -117.65 68.6748 -134.628 134.582h134.628zM434.14 635.977v94.2559c170.069 -21.4883 303.512 -154.977 325.046 -325h-94.3018c-20 118 -112.744 210.768 -230.744 230.744zM109.209 405.232h-94.209
c21.4414 170.023 154.977 303.512 324.953 325v-94.2559c-118.022 -19.9766 -210.767 -112.721 -230.744 -230.744zM339.953 80.3486v-94.3018c-169.977 21.4414 -303.512 154.977 -324.953 325h94.209c20 -118.047 112.744 -210.722 230.744 -230.698zM664.884 311.047
h94.3018c-21.5342 -170.023 -154.977 -303.559 -325.046 -325v94.3018c118 19.9766 210.768 112.651 230.744 230.698z" />
    <glyph glyph-name="glyph112" unicode="&#xe057;"
d="M759.186 79.0693l-93.0225 -93.0225l-325.582 325.674l-139.534 -139.535l-186.047 558.047l558.14 -186.047l-139.535 -139.534z" />
    <glyph glyph-name="glyph113" unicode="&#x2796;"
d="M15 265.116v186.047h744.186v-186.047h-744.186z" />
    <glyph glyph-name="glyph114" unicode="&#xe00b;"
d="M293.791 450.441v93.7441h185.86v-93.7441h-185.86zM665.535 543.093l92.9297 -93.0234h-92.9297v-464.022h-557.604c-51.3262 0 -92.9307 41.6045 -92.9307 93.0225v558.14c0 51.4189 41.6045 93.0234 92.9307 93.0234h557.604v-93.3955h93.6504zM572.604 79.0693
h-0.0234375v558.14h-371.721v-558.14h371.744z" />
    <glyph glyph-name="glyph115" unicode="&#xe061;"
d="M712.675 311.628c25.6973 0 46.5107 -20.8135 46.5107 -46.5117v-186.047c0 -25.6973 -20.8135 -46.5107 -46.5107 -46.5107h-139.535v279.069v93.0234c0 102.651 -83.3955 186.046 -186.047 186.046s-186.046 -83.3945 -186.046 -186.046v-93.0234v-279.069h-139.535
c-25.6982 0 -46.5117 20.8135 -46.5117 46.5107v186.047c0 25.6982 20.8135 46.5117 46.5117 46.5117h46.5117v93.0234c0 154.069 125 279.069 279.069 279.069c154.07 0 279.07 -125 279.07 -279.069v-93.0234h46.5117z" />
    <glyph glyph-name="numbersign" unicode="#" horiz-adv-x="681"
d="M666.163 451.163h-128l-23.1631 -186.047h151.163v-93.0234h-162.791l-23.3027 -186.046h-93.0225l23.2559 186.046h-186l-23.2559 -186.046h-93.0234l23.2559 186.046h-116.279v93.0234h127.907l23.209 186.047h-151.116v93.0225h162.744l23.2559 186.047h93.0234
l-23.2559 -186.047h186l23.2559 186.047h93.0234l-23.2559 -186.047h116.372v-93.0225zM421.931 265.116l23.209 186.047h-186l-23.209 -186.047h186z" />
    <glyph glyph-name="glyph117" unicode="&#xe013;"
d="M387.093 -13.9531c-205.488 0 -372.093 166.604 -372.093 372.046c0 205.535 166.604 372.14 372.093 372.14s372.093 -166.604 372.093 -372.14c0 -205.441 -166.604 -372.046 -372.093 -372.046zM386.372 544.186l-185.325 -186.093l185.325 -185.278v138.813h186.768
v92.9766h-186.768v139.581z" />
    <glyph glyph-name="glyph118" unicode="&#xe017;"
d="M387.093 -13.9531c-205.488 0 -372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093s372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093zM247.559 451.163l-93.0234 -93.0234l93.0234 -93.0234v46.5117h372.093v93.0234h-372.093
v46.5117z" />
    <glyph glyph-name="glyph119" unicode="&#xe050;"
d="M586.768 92.6973l-106.651 -106.65v279.069h279.069l-106.65 -106.651l106.65 -106.65l-65.7666 -65.7676zM15 451.163l106.651 106.651l-105.559 105.65l65.7676 65.7676l105.559 -105.651l106.65 106.651v-279.069h-279.069zM15 51.8145l106.651 106.65
l-106.651 106.651h279.069v-279.069l-106.65 106.65l-106.651 -106.65zM480.116 451.163v279.069l106.651 -106.651l105.744 105.651l65.7676 -65.7676l-105.744 -105.65l106.65 -106.651h-279.069z" />
    <glyph glyph-name="glyph120" unicode="&#xe02e;"
d="M666.163 172.093c51.418 0 93.0225 -41.6973 93.0225 -93.0234c0 -51.3252 -41.6045 -93.0225 -93.0225 -93.0225c-51.4189 0 -93.0234 41.6973 -93.0234 93.0225c0 11.7217 2.7207 22.7217 6.7207 33.0703l-140.907 100.558
c-25.2324 -25.0693 -60.0459 -40.6045 -98.3721 -40.6045c-77.0225 0 -139.534 62.5117 -139.534 139.535c0 7.25586 1.09277 14.2559 2.18555 21.2559l-111.372 37.1631c-8.18555 -7.18652 -18.6279 -11.9072 -30.3486 -11.9072
c-25.6982 0 -46.5117 20.8135 -46.5117 46.5117c0 25.6973 20.8135 46.5117 46.5117 46.5117c22.2559 0 39.9766 -15.9072 44.5117 -36.791l112 -37.4189c23.5352 43.9541 69.3252 74.21 122.558 74.21c30.1631 0 57.7676 -9.72168 80.6748 -26.0703l165.884 165.977
c-8.09277 13.791 -14 28.9775 -14 46.1396c0 51.4189 41.6045 93.0234 93.0234 93.0234c51.418 0 93.0225 -41.6045 93.0225 -93.0234c0 -51.418 -41.6045 -93.0234 -93.0225 -93.0234c-17.1631 0 -32.3496 5.90723 -46.1396 14l-165.884 -165.977
c16.1631 -22.7207 25.9766 -50.5117 25.9766 -80.5811c0 -21.8838 -5.44141 -42.2324 -14.4414 -60.7676l141.813 -101.209c16.0703 13.3486 36.0469 22.4414 58.6748 22.4414z" />
    <glyph glyph-name="glyph121" unicode="&#xe04f;"
d="M699.047 111.953l60.1387 60.1396v-186.046h-186.046l60.1396 60.1387l-153.163 153.163l65.7676 65.7676zM75.1396 604.325l-60.1396 -60.1396v186.047h186.047l-60.1396 -60.1396l153.162 -153.162l-65.7666 -65.7676zM633.279 670.093l-60.1396 60.1396h186.046
v-186.047l-60.1387 60.1396l-153.163 -153.162l-65.7676 65.7676zM294.069 199.349l-153.162 -153.163l60.1396 -60.1387h-186.047v186.046l60.1396 -60.1396l153.163 153.163z" />
    <glyph glyph-name="at" unicode="@"
d="M709.047 172.093h-135.907c-30.3486 0 -56.1396 15.6279 -73.0469 38.1631c-31.418 -24.1631 -70.3018 -39.1631 -113 -39.1631c-102.744 0 -186.046 83.3027 -186.046 186.047s83.3018 186.046 186.046 186.046h186.047v-278.069h75.3018l0.744141 -1.09277
c10.6279 29.4414 16.9775 61.0459 16.9775 94.1162c0 153.884 -125.187 279.069 -279.07 279.069s-279.069 -125.186 -279.069 -279.069s125.186 -279.07 279.069 -279.07c76.9541 0 146.722 31.2559 197.21 81.8613l65.8604 -65.8613
c-67.3027 -67.418 -160.326 -109.022 -263.07 -109.022c-205.488 0 -372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093s372.093 -166.604 372.093 -372.093c0 -67.9541 -18.2549 -131.279 -50.1387 -186.047zM480.116 404.465v45.6982h-93.0234
c-51.2324 0 -93.0234 -41.6982 -93.0234 -93.0234s41.791 -93.0234 93.0234 -93.0234s93.0234 41.6982 93.0234 93.0234v47.3252z" />
    <glyph glyph-name="glyph123" unicode="&#xe05e;"
d="M573.047 451.163c93.1162 0 186.139 -49.4189 186.139 -186.047c0 -133.721 -93.0225 -186.047 -186.139 -186.047h-92.9307c-51.3252 0 -93.0234 -41.6045 -93.0234 -93.0225c-102.744 0 -186.14 83.3018 -186.14 186.046v93.0234
c0 37.0703 8.46582 67.4424 21.6279 93.0234h-21.6279c-92.9297 0 -185.953 52.3252 -185.953 186.046c0 136.629 93.0234 186.047 185.953 186.047h186.14c93.0234 0 185.954 -57.6045 185.954 -186.047v-93.0225zM200.953 451.163h93.1162
c60.6748 0 114.651 -29.2559 148.628 -74.4424c22.791 16.9766 37.4189 44.0469 37.4189 74.4424v93.0225c0 80.9307 -58.2324 93.0234 -93.0234 93.0234h-186.14c-92.9297 0 -92.9297 -65.1396 -92.9297 -93.0234c0 -22.9766 0 -93.0225 92.9297 -93.0225zM573.047 172.093
c93.1162 0 93.1162 69.9541 93.1162 93.0234c0 27.8369 0 93.0234 -93.1162 93.0234l-25.6982 0.0458984l0.0927734 0.046875c-32.2559 -55.418 -91.5811 -93.1162 -160.349 -93.1162c0 35.8838 -20.9766 66.1396 -50.79 81.6748
c-21.0703 -13.2793 -42.2334 -39.1162 -42.2334 -81.6748v-93.0234c0 -30.3486 14.6279 -57.418 37.2559 -74.3955c33.9541 45.1396 88.0234 74.3955 148.791 74.3955h92.9307zM566.604 404.791c-0.62793 -2.13965 -1.37207 -4.23242 -2 -6.30273
c0.62793 2.07031 1.44238 4.16309 2 6.30273z" />
    <glyph glyph-name="glyph124" unicode="&#xe03d;"
d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM433.604 218.604v279.07h46.5117l-93.0234 93.0225l-93.0234 -93.0225h46.5117v-279.07
h-46.5117l93.0234 -93.0234l93.0234 93.0234h-46.5117z" />
    <glyph glyph-name="glyph125" unicode="&#xe03c;" horiz-adv-x="309"
d="M154.535 218.604l46.5117 46.5117v-139.535h93.0225l-139.534 -139.534l-139.535 139.534h93.0234v139.535zM154.535 496.232l-46.5117 -45.0693v139.534h-93.0234l139.535 139.535l139.534 -139.535h-93.0225v-139.534z" />
    <glyph glyph-name="glyph126" unicode="&#x2713;"
d="M292.697 58.6748l-277.697 277.697l132.441 132.465l145.256 -145.256l334.047 334.023l132.441 -132.441z" />
    <glyph glyph-name="glyph127" unicode="&#xe05f;" horiz-adv-x="588"
d="M294.069 358.14c-51.418 0 -93.0225 41.6514 -93.0225 93.0234v186.046c0 51.3721 41.6045 93.0234 93.0225 93.0234c51.4189 0 93.0234 -41.6514 93.0234 -93.0234v-186.046c0 -51.3721 -41.6045 -93.0234 -93.0234 -93.0234zM387.093 79.0693
c51.4189 0 93.0234 -41.6045 93.0234 -93.0225h-372.093c0 51.418 41.6045 93.0225 93.0234 93.0225h46.5117v97.7451c-131.722 22.2549 -232.559 136.395 -232.559 274.349v45.0693c0 25.6973 20.8135 46.5117 46.5117 46.5117
c25.6973 0 46.5117 -20.8145 46.5117 -46.5117v-45.0693c0 -102.604 83.3955 -186.047 186.046 -186.047c102.651 0 186.047 83.4424 186.047 186.047v45.0693c0 25.6973 20.8145 46.5117 46.5117 46.5117s46.5117 -20.8145 46.5117 -46.5117v-45.0693
c0 -137.954 -100.837 -252.094 -232.559 -274.349v-97.7451h46.5117z" />
    <glyph glyph-name="glyph128" unicode="&#xe06c;"
d="M759.186 -13.9531h-744.186v651.162h93.0234v-558.14h558.14v558.14h93.0225v-651.162zM154.535 358.14v93.0234h93.0234v-93.0234h-93.0234zM340.581 357.953v93.0234h93.0234v-93.0234h-93.0234zM526.628 358.14v93.0234h93.0234v-93.0234h-93.0234zM154.535 172.093
v93.0234h93.0234v-93.0234h-93.0234zM340.581 172.093v93.0234h93.0234v-93.0234h-93.0234zM526.628 172.093v93.0234h93.0234zM201.047 590.697v93.0234c0 25.6982 20.8135 46.5117 46.5117 46.5117c25.6973 0 46.5107 -20.8135 46.5107 -46.5117v-93.0234
c0 -25.6973 -20.8135 -46.5117 -46.5107 -46.5117c-25.6982 0 -46.5117 20.8145 -46.5117 46.5117zM480.116 590.697v93.0234c0 25.6982 20.8145 46.5117 46.5117 46.5117s46.5117 -20.8135 46.5117 -46.5117v-93.0234c0 -25.6973 -20.8145 -46.5117 -46.5117 -46.5117
s-46.5117 20.8145 -46.5117 46.5117z" />
    <glyph glyph-name="glyph129" unicode="&#xe069;" horiz-adv-x="681"
d="M108.023 730.232h558.14v-744.186h-558.14c-51.3721 0 -93.0234 41.6045 -93.0234 93.0225v558.14c0 51.4189 41.6514 93.0234 93.0234 93.0234zM573.14 79.0693v558.14h-92.6748v-187.674l-93.7441 93.7441l-93.0234 -93.0234v186.953h-92.6504v-558.14h372.093z" />
    <glyph glyph-name="glyph130" unicode="&#xe03f;"
d="M387.093 218.604l46.5117 46.5117v-139.535h93.0234l-139.535 -139.534l-139.534 139.534h93.0225v139.535zM387.093 496.232l-46.5117 -45.0693v139.534h-93.0225l139.534 139.535l139.535 -139.535h-93.0234v-139.534zM247.559 358.14l46.5107 -46.5117h-139.534
v-93.0234l-139.535 139.535l139.535 139.535v-93.0234h139.534zM525.186 358.14l-45.0693 46.5117h139.535v93.0234l139.534 -139.535l-139.534 -139.535v93.0234h-139.535z" />
    <glyph glyph-name="glyph131" unicode="&#xe040;"
d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM526.628 265.116l93.0234 93.0234l-93.0234 93.0234v-46.5117h-93.0234v93.0234h46.5117
l-93.0234 93.0225l-93.0234 -93.0225h46.5117v-93.0234h-93.0225v46.5117l-93.0234 -93.0234l93.0234 -93.0234v46.5117h93.0225v-93.0234h-46.5117l93.0234 -93.0234l93.0234 93.0234h-46.5117v93.0234h93.0234v-46.5117z" />
    <glyph glyph-name="glyph132" unicode="&#xe022;" horiz-adv-x="402"
d="M201.047 265.116c32.79 0 63.7666 6.7207 93.0225 17.1162v-296.186l-93.0225 93.0225l-93.0234 -93.0225v296.186c29.2559 -10.3955 60.2324 -17.1162 93.0234 -17.1162zM201.047 730.232c102.744 0 186.046 -83.3018 186.046 -186.047
c0 -102.744 -83.3018 -186.046 -186.046 -186.046s-186.047 83.3018 -186.047 186.046c0 102.745 83.3027 186.047 186.047 186.047zM201.047 451.163c51.418 0 93.0225 41.6514 93.0225 93.0225c0 51.373 -41.6045 93.0234 -93.0225 93.0234
c-51.4189 0 -93.0234 -41.6504 -93.0234 -93.0234c0 -51.3711 41.6045 -93.0225 93.0234 -93.0225z" />
    <glyph glyph-name="glyph133" unicode="&#xe078;"
d="M750 599c5.46484 -17.4414 9.18555 -35.6045 9.18555 -54.8145c0 -102.697 -83.3018 -186.046 -186.046 -186.046c-28.6045 0 -55.5117 7.0459 -79.6748 18.5811l-372.628 -372.512c-11.0928 -11.2559 -26.6279 -18.1621 -43.79 -18.1621
c-34.3496 0 -62.0469 27.79 -62.0469 61.9531c0 17.2559 7 32.6973 18.1631 43.9766l372.558 372.442c-11.6279 24.3018 -18.6279 51.1162 -18.6279 79.7666c0 102.698 83.3027 186.047 186.047 186.047c18.6279 0 36.3252 -3.58105 53.3252 -8.7207l-115.372 -115.326
v-123.999h122.093z" />
    <glyph glyph-name="glyph134" unicode="&#xe047;" horiz-adv-x="588"
d="M15 730.232l558.14 -372.093l-558.14 -372.093v744.186z" />
    <glyph glyph-name="glyph135" unicode="&#x2605;"
d="M529.813 273.837l90.0234 -287.79l-232.372 178.604l-232.93 -178.604l90.1162 288.512l-229.651 176.604h279.069l93.0234 279.069l93.0234 -279.069h279.069z" />
    <glyph glyph-name="glyph136" unicode="&#xe028;"
d="M334.553 279.116l-232.744 -232.558c-115.744 133.813 -115.744 331.302 0 465.116zM478.133 633.535c159.35 -23.3955 281.07 -156.396 281.07 -320.535c0 -180.697 -146.441 -326.953 -329.232 -326.953c-70.7207 0 -136.488 25.6279 -190.629 66.0459l238.791 240.838
v340.604zM387.064 357.768l-266.908 266.953c73.9531 60.4424 165.535 99.2324 266.908 105.512v-372.465z" />
    <glyph glyph-name="glyph137" unicode="&#x26c6;"
d="M573.151 590.697c102.558 0 186.046 -83.4414 186.046 -186.046s-83.4883 -186.047 -186.046 -186.047h-372.093c-102.559 0 -186.047 83.4424 -186.047 186.047s83.4883 186.046 186.047 186.046c8.25586 0 16.4414 -1.23242 24.6279 -2.3252
c31.9766 56.6045 91.9297 95.3486 161.418 95.3486c68.0469 0 128 -38.2793 160.419 -95.6045c8.46484 1.16309 16.8135 2.58105 25.6279 2.58105zM573.151 311.628c51.3252 0 93.0234 41.7441 93.0234 93.0234s-41.6982 93.0234 -93.0234 93.0234
c-51.3262 0 -93.0234 -41.7441 -93.0234 -93.0234h-93.0234c0 60.5811 29.5352 113.953 74.3955 147.93c-17.0693 23.21 -44.3252 38.1162 -74.3955 38.1162c-51.3252 0 -93.0234 -41.7441 -93.0234 -93.0225c0 -11.21 1.90723 -22.1631 5.81445 -32.4893l-87.1162 -32.6045
c-7.62793 20.3496 -11.4424 41.8838 -11.6279 63.8145c-47.9766 -1.39551 -93.1162 -40.7441 -93.1162 -91.7441c0 -51.2793 41.6973 -93.0234 93.0234 -93.0234h372.093zM91.3145 45.6279c-17.4424 -17.4424 -45.791 -17.4424 -63.2334 0
c-17.4414 17.4414 -17.4414 45.791 0 63.2324c17.4424 17.4424 126.466 63.2324 126.466 63.2324s-45.791 -109.023 -63.2324 -126.465zM277.453 45.6279c-17.4414 -17.4424 -45.6973 -17.4424 -63.2324 0c-17.4414 17.4414 -17.4414 45.791 0 63.2324
c17.5352 17.4424 126.466 63.2324 126.466 63.2324s-45.6982 -109.023 -63.2334 -126.465zM463.407 45.6279c-17.4424 -17.4424 -45.791 -17.4424 -63.2324 0c-17.4424 17.4414 -17.4424 45.791 0 63.2324c17.4414 17.4424 126.465 63.2324 126.465 63.2324
s-45.791 -109.023 -63.2324 -126.465z" />
    <glyph glyph-name="glyph138" unicode="&#xe065;"
d="M387.093 637.163h372.093v-186.094v-93.0225v-278.978c0 -51.418 -41.6973 -93.0225 -93.0225 -93.0225h-558.14c-51.4189 0 -93.0234 41.6045 -93.0234 93.0225v293.512v78.4883v279.163h372.093v-93.0693zM294.069 637.209h-186.046v-186.046h558.14v92.9766h-279.07
h-93.0234v93.0234v0.0458984zM666.163 79.0693v278.978v0.0927734h-558.14v-279.07h558.14z" />
    <glyph glyph-name="glyph139" unicode="&#x2600;"
d="M387.093 451.163c-51.2324 0 -93.0234 -41.7441 -93.0234 -93.0234s41.791 -93.0234 93.0234 -93.0234s93.0234 41.7441 93.0234 93.0234s-41.791 93.0234 -93.0234 93.0234zM387.093 544.186c102.744 0 186.047 -83.3018 186.047 -186.046
s-83.3027 -186.047 -186.047 -186.047s-186.046 83.3027 -186.046 186.047s83.3018 186.046 186.046 186.046zM340.581 683.721c0 31.0078 15.5039 46.5117 46.5117 46.5117s46.5117 -15.5039 46.5117 -46.5117s-15.5039 -46.5117 -46.5117 -46.5117
s-46.5117 15.5039 -46.5117 46.5117zM108.023 590.697c0 31.0078 15.5039 46.5117 46.5117 46.5117s46.5117 -15.5039 46.5117 -46.5117s-15.5039 -46.5117 -46.5117 -46.5117s-46.5117 15.5039 -46.5117 46.5117zM61.5117 404.697
c25.6973 0 46.5117 -20.8135 46.5117 -46.5107c0 -25.7451 -20.8145 -46.5117 -46.5117 -46.5117c-25.6982 0 -46.5117 20.7666 -46.5117 46.5117c0 25.6973 20.8135 46.5107 46.5117 46.5107zM108.023 125.581c0 31.0078 15.5039 46.5117 46.5117 46.5117
s46.5117 -15.5039 46.5117 -46.5117s-15.5039 -46.5117 -46.5117 -46.5117s-46.5117 15.5039 -46.5117 46.5117zM340.581 32.5586c0 25.79 20.8145 46.5107 46.5117 46.5107c25.791 0 46.5117 -20.7207 46.5117 -46.5107c0 -25.6279 -20.7207 -46.5117 -46.5117 -46.5117
c-25.6973 0 -46.5117 20.8838 -46.5117 46.5117zM586.953 92.6973c-18.1621 18.1631 -18.1621 47.6055 0 65.7676c18.2559 18.1631 47.6055 18.1631 65.7676 0c18.1631 -18.1621 18.2559 -47.6045 0 -65.7676c-18.1621 -18.1621 -47.6045 -18.1621 -65.7676 0z
M712.581 311.675c-25.6045 0 -46.418 20.79 -46.418 46.4648c0 25.791 20.7207 46.5117 46.5117 46.5117c25.6279 0 46.5107 -20.7676 46.5107 -46.4648c0 -25.7451 -20.8828 -46.5586 -46.6045 -46.5117zM652.721 557.768c-18.1621 -18.1162 -47.6045 -18.1162 -65.7676 0
c-18.1621 18.2559 -18.1621 47.6045 0 65.8135c18.1631 18.1162 47.6055 18.1631 65.7676 -0.0458984c18.1631 -18.1631 18.1631 -47.6514 0 -65.7676z" />
    <glyph glyph-name="glyph140" unicode="&#xe062;" horiz-adv-x="588"
d="M294.069 358.14c154.07 0 279.07 -125 279.07 -279.07c0 -51.418 -41.6045 -93.0225 -93.0234 -93.0225h-372.093c-51.4189 0 -93.0234 41.6045 -93.0234 93.0225c0 154.07 125 279.07 279.069 279.07zM154.535 590.697c0 93.0234 46.5117 139.535 139.534 139.535
c93.0234 0 139.535 -46.5117 139.535 -139.535c0 -93.0225 -46.5117 -139.534 -139.535 -139.534c-93.0225 0 -139.534 46.5117 -139.534 139.534z" />
    <glyph glyph-name="glyph141" unicode="&#xe05b;"
d="M759.186 451.163v-186.047h-93.0225v-46.5117c0 -25.6279 -20.8838 -46.5117 -46.5117 -46.5117h-558.14c-25.6279 0 -46.5117 20.8838 -46.5117 46.5117v279.07c0 25.5811 20.8838 46.5107 46.5117 46.5107h558.14c25.6279 0 46.5117 -20.9297 46.5117 -46.5107
v-46.5117h93.0225zM573.14 265.116v186.047h-186.047v-186.047h186.047z" />
    <glyph glyph-name="glyph142" unicode="&#xe00c;"
d="M719.86 521.559c24.4189 -49.5117 39.3252 -104.512 39.3252 -163.419c0 -23.4424 -2.7207 -46.1396 -6.90625 -68.5117h-264.349zM504.651 375.814v333.604c78.1162 -26.1631 145.349 -75.9775 190.768 -142.931zM404.488 240.581h333.884
c-26.1631 -78.209 -76.0234 -145.534 -143.069 -190.86zM455.535 457.116l-233.094 233.093c49.8145 24.8145 105.233 40.0234 164.651 40.0234c23.4424 0 46.1865 -2.76758 68.4424 -6.90723v-266.209zM318.651 256.931l231.697 -231.628
c-49.5117 -24.3496 -104.396 -39.2559 -163.256 -39.2559c-23.4414 0 -46.1855 2.7207 -68.4414 6.88379v264zM269.488 340.163v-333.326c-78.0234 26.1631 -145.209 75.9541 -190.535 142.814zM21.9072 426.581v0.0234375h264.581l-232.069 -232.069
c-24.4189 49.5117 -39.4189 104.558 -39.4189 163.604c0 23.4414 2.76758 46.1855 6.90723 68.4414zM177.697 665.559l189.814 -189.814h-331.721c26.0459 77.6748 75.5117 144.488 141.906 189.814z" />
    <glyph glyph-name="glyph143" unicode="&#xe04b;"
d="M15 265.116l372.093 465.116l372.093 -465.116h-744.186zM15 -13.9531v186.046h743.186v-186.046h-743.186z" />
    <glyph glyph-name="glyph144" unicode="&#xe016;"
d="M759.186 358.187c0 -205.535 -166.604 -372.14 -372.093 -372.14s-372.093 166.604 -372.093 372.14c0 205.441 166.604 372.046 372.093 372.046s372.093 -166.604 372.093 -372.046zM201.047 357.465l186.046 -185.372l185.326 185.372h-138.814v186.721h-93.0234
v-186.721h-139.534z" />
    <glyph glyph-name="paragraph" unicode="&#xb6;" horiz-adv-x="588"
d="M573.14 730.232v-93.0234h-93.0234v-651.162h-93.0234v651.162h-93.0234v-651.162h-93.0225v372.093c-102.744 0 -186.047 83.3018 -186.047 186.046c0 102.745 83.3027 186.047 186.047 186.047h93.0225h93.0234h93.0234h93.0234z" />
    <glyph glyph-name="glyph146" unicode="&#xe01a;"
d="M15 358.14c0 205.488 166.604 372.093 372.093 372.093s372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093zM480.116 497.675l-93.0234 93.0225l-93.0234 -93.0225h46.5117v-372.094h93.0234v372.094h46.5117z
" />
    <glyph glyph-name="glyph147" unicode="&#xe015;"
d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM387.814 172.093l185.325 186.047l-185.325 185.325v-138.813h-186.768v-93.0234h186.768
v-139.535z" />
    <glyph glyph-name="glyph148" unicode="&#xe019;"
d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM526.628 265.116l93.0234 93.0234l-93.0234 93.0234v-46.5117h-372.093v-93.0234h372.093
v-46.5117z" />
    <glyph glyph-name="glyph149" unicode="&#xe02d;"
d="M759.186 -13.9531h-106.278c0 351.744 -286.163 637.86 -637.907 637.86v106.325c410.256 0 744.186 -333.837 744.186 -744.186zM546.512 -13.9531h-106.279c0 234.465 -190.86 425.232 -425.232 425.232v106.325c293.069 0 531.512 -238.488 531.512 -531.558z
M333.953 -13.9531h-106.372c0 117.278 -95.3018 212.581 -212.581 212.581v106.372c175.86 0 318.953 -143.093 318.953 -318.953zM121.279 -13.9531h-106.279v106.278c58.7676 0 106.279 -47.6045 106.279 -106.278z" />
    <glyph glyph-name="glyph150" unicode="&#xe037;"
d="M124.093 94.8838c-70.3955 70.3018 -109.093 163.697 -109.093 263.256c0 205.116 166.884 372.093 372.093 372.093l46.5117 -46.5117l-46.5117 -46.5117c-153.884 0 -279.069 -125.186 -279.069 -279.069c0 -74.6748 29.0693 -144.814 81.8604 -197.488
l-57.1396 -7.44238zM387.093 -13.9531l-46.5117 46.3252l46.5117 46.6973c153.884 0 279.07 125.187 279.07 279.07c0 74.4883 -29.0703 144.628 -81.9307 197.396l57.2324 7.53418l8.53516 58.2334c70.3955 -70.3027 109.186 -163.791 109.186 -263.163
c0 -205.116 -166.977 -372.093 -372.093 -372.093z" />
  </font>
</defs></svg>
src/main/resources/bootstrap/font/iconic_stroke.ttf
Binary files differ
src/main/resources/bootstrap/font/iconic_stroke.woff
Binary files differ
src/main/resources/gitblit.css
@@ -139,7 +139,7 @@
    font-weight: bold;
}
.repositorynavbar .project a, .repositorynavbar .repository a {
.title .repository a, .repositorynavbar .project a, .repositorynavbar .repository a {
    font-family: Helvetica,arial,freesans,clean,sans-serif;
    font-size: 22px;
    color: #002060;
src/site/design.mkd
@@ -1,7 +1,7 @@
## Design Principles
1. [Keep It Simple, Stupid](http://en.wikipedia.org/wiki/KISS_principle)
2. Offer useful features for serving Git repositories.  If feature is complex, refer to #1.
3. All dependencies must be retrievable from a publicly accessible [Maven](http://maven.apache.org) repository.<br/>This is to ensure authenticity of dependencies and to automate the setup of developer environments.
3. All dependencies must be retrievable from a publicly accessible [Maven](http://maven.apache.org) repository.<br/>This is to ensure authenticity of dependencies and to automate the setup of developer environments.
## Architecture
@@ -12,6 +12,7 @@
- [Bootstrap](http://twitter.github.com/bootstrap) (Apache 2.0)
- [GLYPHICONS](http://glyphicons.com) (Creative Commons CC-BY)
- [Iconic](http://somerandomdude.com/work/iconic) (Creative Commons Share Alike 3.0)
- [Clippy](https://github.com/mojombo/clippy) (MIT)
- [google-code-prettify](http://code.google.com/p/google-code-prettify) (Apache 2.0)
- [Commons Daemon](http://commons.apache.org/daemon) (Apache 2.0)
@@ -30,7 +31,7 @@
- [MarkdownPapers](http://markdown.tautua.org) (Apache 2.0)
- [Jetty](http://eclipse.org/jetty) (Apache 2.0, EPL 1.0)
- [SLF4J](http://www.slf4j.org) (MIT/X11)
- [Log4j](http://logging.apache.org/log4j) (Apache 2.0)
- [Log4j](http://logging.apache.org/log4j) (Apache 2.0)
- [JCommander](http://jcommander.org) (Apache 2.0)
- [BouncyCastle](http://www.bouncycastle.org) (MIT/X11)
- [JSch - Java Secure Channel](http://www.jcraft.com/jsch) (BSD)
@@ -59,16 +60,16 @@
Additionally, [Google CodePro AnalytiX](http://code.google.com/javadevtools), [eclipse-cs](http://eclipse-cs.sourceforge.net), [FindBugs](http://findbugs.sourceforge.net), and [EclEmma](http://www.eclemma.org) are recommended development tools.
1. Clone the git repository from [Github][gitbltsrc].
2. Import the gitblit project into your Eclipse workspace.
2. Import the gitblit project into your Eclipse workspace.
*There will be lots of build errors.*
3. Using Ant, execute the `build.xml` script in the project root.
3. Using Ant, execute the `build.xml` script in the project root.
*This will download all necessary build dependencies and will also generate the Keys class for accessing settings.*
4. Select your gitblit project root and **Refresh** the project, this should correct all build problems.
5. Using JUnit, execute the `com.gitblit.tests.GitBlitSuite` test suite.
5. Using JUnit, execute the `com.gitblit.tests.GitBlitSuite` test suite.
*This will clone some repositories from the web and run through the unit tests.*
5. Review the settings in `gitblit.properties` in your project root.
    - By default, the *git.repositoriesFolder* points to the repositories cloned by the test suite.
    - If running on Linux you may have to change the served port(s) to > 1024 unless you are developing as the root user.
    - By default, the *git.repositoriesFolder* points to the repositories cloned by the test suite.
    - If running on Linux you may have to change the served port(s) to > 1024 unless you are developing as the root user.
6. Execute the *com.gitblit.Launcher* class to start Gitblit.
@@ -81,4 +82,4 @@
[git]: http://git-scm.com "Official Git Site"
[gitbltsrc]: http://github.com/gitblit "gitblit git repository"
[googlecode]: http://code.google.com/p/gitblit "gitblit project management"
[apachelicense]: http://www.apache.org/licenses/LICENSE-2.0 "Apache License, Version 2.0"
[apachelicense]: http://www.apache.org/licenses/LICENSE-2.0 "Apache License, Version 2.0"