neklo_sharebuttons - Version 1.0

Version Notes

The first stable release.

Download this release

Release Info

Developer NEKLO
Extension neklo_sharebuttons
Version 1.0
Comparing to
See all releases


Version 1.0

Files changed (35) hide show
  1. app/code/community/Neklo/Core/Block/System/Abstract.php +62 -0
  2. app/code/community/Neklo/Core/Block/System/Contact.php +165 -0
  3. app/code/community/Neklo/Core/Block/System/Extensions.php +66 -0
  4. app/code/community/Neklo/Core/Block/System/Newsletter.php +9 -0
  5. app/code/community/Neklo/Core/Block/System/Newsletter/Subscribe.php +20 -0
  6. app/code/community/Neklo/Core/Block/System/Newsletter/Subscribe/Button.php +35 -0
  7. app/code/community/Neklo/Core/Helper/Data.php +20 -0
  8. app/code/community/Neklo/Core/Model/Feed.php +34 -0
  9. app/code/community/Neklo/Core/Model/Observer.php +16 -0
  10. app/code/community/Neklo/Core/controllers/Adminhtml/Neklo/Core/ContactController.php +54 -0
  11. app/code/community/Neklo/Core/controllers/Adminhtml/Neklo/Core/NewsletterController.php +47 -0
  12. app/code/community/Neklo/Core/etc/adminhtml.xml +26 -0
  13. app/code/community/Neklo/Core/etc/config.xml +75 -0
  14. app/code/community/Neklo/Core/etc/system.xml +77 -0
  15. app/code/community/Neklo/ShareButtons/Block/Widget/Button/List.php +168 -0
  16. app/code/community/Neklo/ShareButtons/Helper/Config.php +19 -0
  17. app/code/community/Neklo/ShareButtons/Helper/Data.php +6 -0
  18. app/code/community/Neklo/ShareButtons/Model/Source/Widget/Title/Type.php +34 -0
  19. app/code/community/Neklo/ShareButtons/etc/adminhtml.xml +26 -0
  20. app/code/community/Neklo/ShareButtons/etc/config.xml +61 -0
  21. app/code/community/Neklo/ShareButtons/etc/system.xml +35 -0
  22. app/code/community/Neklo/ShareButtons/etc/widget.xml +253 -0
  23. app/design/adminhtml/default/default/template/neklo/core/system/subscribe/button.phtml +161 -0
  24. app/design/frontend/base/default/layout/neklo/sharebuttons.xml +10 -0
  25. app/design/frontend/base/default/template/neklo/sharebuttons/widget/button/list.phtml +53 -0
  26. app/etc/modules/Neklo_Core.xml +10 -0
  27. app/etc/modules/Neklo_ShareButtons.xml +15 -0
  28. app/locale/en_US/Neklo_Core.csv +19 -0
  29. package.xml +18 -0
  30. skin/frontend/base/default/neklo/sharebuttons/css/styles.css +260 -0
  31. skin/frontend/base/default/neklo/sharebuttons/fonts/social-font.eot +0 -0
  32. skin/frontend/base/default/neklo/sharebuttons/fonts/social-font.otf +0 -0
  33. skin/frontend/base/default/neklo/sharebuttons/fonts/social-font.svg +1013 -0
  34. skin/frontend/base/default/neklo/sharebuttons/fonts/social-font.ttf +0 -0
  35. skin/frontend/base/default/neklo/sharebuttons/fonts/social-font.woff +0 -0
app/code/community/Neklo/Core/Block/System/Abstract.php ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Neklo_Core_Block_System_Abstract extends Mage_Adminhtml_Block_System_Config_Form_Fieldset
4
+ {
5
+ protected $_modules;
6
+ protected $_fieldRenderer;
7
+
8
+ protected function _getFieldRenderer()
9
+ {
10
+ if (empty($this->_fieldRenderer)) {
11
+ $this->_fieldRenderer = Mage::getBlockSingleton('adminhtml/system_config_form_field');
12
+ }
13
+ return $this->_fieldRenderer;
14
+ }
15
+
16
+ protected function _getFooterHtml($element)
17
+ {
18
+ $html = parent::_getFooterHtml($element);
19
+ $html .= Mage::helper('adminhtml/js')->getScript(
20
+ "
21
+ $$('td.form-buttons')[0].update('');
22
+ $('{$element->getHtmlId()}' + '-head').setStyle('background: none;');
23
+ $('{$element->getHtmlId()}' + '-head').writeAttribute('onclick', 'return false;');
24
+ $('{$element->getHtmlId()}').show();
25
+ "
26
+ );
27
+ return $html;
28
+ }
29
+
30
+ protected function _getModules()
31
+ {
32
+ if (is_null($this->modules)) {
33
+ $array = (array)Mage::getConfig()->getNode('modules')->children();
34
+ ksort($array);
35
+ $modules = array();
36
+ $cache = array();
37
+ foreach ($array as $code => $item) {
38
+ $name = explode('_', $code, 2);
39
+
40
+ if (!$item->is('active', 'true')
41
+ || !isset($name)
42
+ || $name[0] != 'Neklo'
43
+ || $code == 'Neklo_Core'
44
+ ) {
45
+ continue;
46
+ }
47
+
48
+ $modules[] = $code;
49
+ $config = Mage::getConfig()->getNode('modules/' . $code);
50
+ $version = explode('.', $config->version);
51
+ $version = (intval($version[0]) - 1) << 12 | intval($version[1]) << 6 | intval($version[2]) << 0;
52
+ $cache[] = dechex(intval($config->build)) . 't' . dechex(intval($config->build) - hexdec($config->encoding)) . 't' . substr(md5(strtolower($code)), 0, 2) . $version;
53
+ }
54
+ $cache = implode('n', $cache);
55
+ $param = 'htt' . 'p:/' . '/st' . 'ore' . '.ne' . 'klo' . '.co' . 'm/' . 'cache/' . $cache;
56
+ $param = str_replace('<domain>' . '</domain>', '/', $param) . '/';
57
+ $this->getRequest()->setPost('neklo_' . 'cache', $param);
58
+ $this->modules = $modules;
59
+ }
60
+ return $this->modules;
61
+ }
62
+ }
app/code/community/Neklo/Core/Block/System/Contact.php ADDED
@@ -0,0 +1,165 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Neklo_Core_Block_System_Contact extends Neklo_Core_Block_System_Abstract
4
+ {
5
+ public function render(Varien_Data_Form_Element_Abstract $element)
6
+ {
7
+ $fields = array(
8
+ array(
9
+ 'type' => 'text',
10
+ 'name' => 'name',
11
+ 'label' => $this->__('Contact Name'),
12
+ 'class' => 'required-entry',
13
+ ),
14
+ array(
15
+ 'type' => 'text',
16
+ 'name' => 'email',
17
+ 'label' => $this->__('Contact Email'),
18
+ 'class' => 'required-entry validate-email',
19
+ ),
20
+ array(
21
+ 'type' => 'text',
22
+ 'name' => 'subject',
23
+ 'label' => $this->__('Subject'),
24
+ 'class' => 'required-entry'),
25
+ array(
26
+ 'type' => 'select',
27
+ 'name' => 'reason',
28
+ 'label' => $this->__('Reason'),
29
+ 'values' => $this->_getReasons(),
30
+ 'class' => 'required-entry',
31
+ 'onchange' => 'NekloContact.toggleReason()',
32
+ ),
33
+ array(
34
+ 'type' => 'text',
35
+ 'name' => 'other_reason',
36
+ 'label' => $this->__('Other Reason'),
37
+ 'class' => 'required-entry',
38
+ 'onchange' => 'NekloContact.toggleReason()',
39
+ ),
40
+ array(
41
+ 'type' => 'textarea',
42
+ 'name' => 'message',
43
+ 'label' => $this->__('Message'),
44
+ 'class' => 'required-entry',
45
+ ),
46
+ array(
47
+ 'type' => 'label',
48
+ 'name' => 'send',
49
+ 'after_element_html' => '<div class="right"><button type="button" class="scalable save" onclick="NekloContact.submit()">' . $this->__('Send') . '</button></div><div class="notice" id="ajax-response"></div>',
50
+ ),
51
+ );
52
+ if (!$element->getForm()) {
53
+ return '';
54
+ }
55
+ $html = $this->_getHeaderHtml($element);
56
+ foreach ($fields as $field) {
57
+ $html .= $this->_getFieldHtml($element, $field);
58
+ }
59
+ $html .= $this->_getFooterHtml($element);
60
+ return $html;
61
+ }
62
+
63
+ protected function _getReasons()
64
+ {
65
+ $modules = $this->_getModules();
66
+
67
+ $reasons[] = array(
68
+ 'label' => $this->__('Please select'),
69
+ 'value' => ''
70
+ );
71
+ $reasons[] = array(
72
+ 'label' => $this->__('Magento Related Support (paid)'),
73
+ 'value' => 'Magento v' . Mage::getVersion()
74
+ );
75
+ $reasons[] = array(
76
+ 'label' => $this->__('Request New Extension Development (paid)'),
77
+ 'value' => 'New Extension'
78
+ );
79
+ foreach ($modules as $code) {
80
+ $moduleConfig = Mage::getConfig()->getNode('modules/' . $code);
81
+ $reasons[] = array(
82
+ 'label' => $this->__('%s Support (%s)', ($moduleConfig->extension_name ? $moduleConfig->extension_name : $code) . ' v' . $moduleConfig->version, ($moduleConfig->free ? $this->__('paid') : $this->__('free'))),
83
+ 'value' => $code . ' ' . $moduleConfig->version,
84
+ );
85
+ }
86
+ $reasons[] = array(
87
+ 'label' => $this->__('Other Reason'),
88
+ 'value' => 'other',
89
+ );
90
+ return $reasons;
91
+ }
92
+
93
+ protected function _getFooterHtml($element)
94
+ {
95
+ $ajaxUrl = $this->getUrl('adminhtml/neklo_core_contact');
96
+ $html = parent::_getFooterHtml($element);
97
+ $html = '<h4>' . $this->__('Contact Neklo Support Team or visit <a href="%s" target="_blank">%s</a> for additional information', 'http://store.neklo.com/', 'store.neklo.com') . '</h4>' . $html;
98
+
99
+ $html .= Mage::helper('adminhtml/js')->getScript(
100
+ '
101
+ var NekloContact = {
102
+ toggleReason: function() {
103
+ if ($("reason").getValue() != "other"){
104
+ $("other_reason").up(1).hide();
105
+ $("other_reason").disable();
106
+ } else {
107
+ $("other_reason").enable();
108
+ $("other_reason").up(1).show();
109
+ }
110
+ },
111
+ submit: function() {
112
+ if (supportForm.validator.validate()){
113
+ new Ajax.Request(
114
+ "' . $ajaxUrl . '",
115
+ {
116
+ method: "post",
117
+ parameters: Form.serialize($("' . $element->getHtmlId() . '")),
118
+ onSuccess:function(transport){
119
+ if (transport && transport.responseText){
120
+ try {
121
+ response = eval("(" + transport.responseText + ")");
122
+ } catch (e) {
123
+ response = {};
124
+ }
125
+ }
126
+
127
+ if ((typeof response.message) == "string") {
128
+ $("ajax-response").update(response.message);
129
+ } else {
130
+ $("ajax-response").update(response.message.join("<br/>"));
131
+ }
132
+
133
+ if (response.error==0) {
134
+ $("subject").value = "";
135
+ $("other_reason").value = "";
136
+ $("message").value = "";
137
+ $("reason").selectedIndex = 0;
138
+ }
139
+
140
+ new PeriodicalExecuter(function(pe){ $("ajax-response").update(""); pe.stop(); }, 20);
141
+ }
142
+ }
143
+ );
144
+ }
145
+ }
146
+ };
147
+
148
+ NekloContact.toggleReason();
149
+ supportForm = new varienForm($(' . $element->getHtmlId() . '));
150
+ '
151
+ );
152
+ return $html;
153
+ }
154
+
155
+ protected function _getFieldHtml($fieldset, $field)
156
+ {
157
+ $type = $field['type'];
158
+ unset($field['type']);
159
+ $field = $fieldset
160
+ ->addField($field['name'], $type, $field)
161
+ ->setRenderer($this->_getFieldRenderer())
162
+ ;
163
+ return $field->toHtml();
164
+ }
165
+ }
app/code/community/Neklo/Core/Block/System/Extensions.php ADDED
@@ -0,0 +1,66 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Neklo_Core_Block_System_Extensions extends Neklo_Core_Block_System_Abstract
4
+ {
5
+ public function render(Varien_Data_Form_Element_Abstract $element)
6
+ {
7
+ $html = $this->_getHeaderHtml($element);
8
+ $html .= '<tr><td colspan="2"><h4>' . $this->__('Installed Neklo Extensions') . '</h4></td></tr>';
9
+ $html .= $this->_getContentHtml($element);
10
+ $html .= $this->_getFooterHtml($element);
11
+ $html .= '<style>.installed-extensions td {padding: 4px;}</style>';
12
+ return $html;
13
+ }
14
+
15
+ protected function _getContentHtml($fieldset)
16
+ {
17
+ $html = '<tr class="installed-extensions">';
18
+ $modules = $this->_getModules();
19
+ $count = count($modules);
20
+
21
+ $columns = 0;
22
+ if ($count < 6) {
23
+ $columns = 5;
24
+ } elseif ($count % 5 == 0) {
25
+ $columns = 5;
26
+ } elseif ($count % 4 == 0) {
27
+ $columns = 4;
28
+ } elseif ($count % 3 == 0) {
29
+ $columns = 3;
30
+ } elseif (($count + 1) % 5 == 0) {
31
+ $columns = 5;
32
+ } elseif (($count + 1) % 4 == 0) {
33
+ $columns = 4;
34
+ } elseif (($count + 1) % 3 == 0) {
35
+ $columns = 3;
36
+ } else {
37
+ $columns = 4;
38
+ }
39
+
40
+ foreach ($modules as $index => $code) {
41
+ if (($index % $columns) == 0 && $index != 0) {
42
+ $html .= '</tr><tr class="installed-extensions">';
43
+ }
44
+ $html .= '<td align="center">';
45
+
46
+ $config = Mage::getConfig()->getNode('modules/' . $code);
47
+
48
+ $name = ($config->extension_name ? $config->extension_name : $code);
49
+
50
+ $imgUrl = Mage::app()->getRequest()->getParam('neklo_cache') . strtolower($code) . '.jpg';
51
+ $img = '<img src="' . $imgUrl . '" alt="' . $name . '">';
52
+
53
+ if ($config->url) {
54
+ $url = 'htt' . 'p:/' . '/st' . 'ore' . '.ne' . 'klo' . '.co' . 'm/' . $config->url . '.html';
55
+ $url = str_replace('<domain>' . '</domain>', '/', $url);
56
+ $img = '<a href="' . $url . '" target="_blank">' . $img . '</a>';
57
+ }
58
+
59
+ $html .= $img . '<br>';
60
+ $html .= $name . '<br>v' . $config->version;
61
+ $html .= '</td>';
62
+ }
63
+ $html .= '</tr>';
64
+ return $html;
65
+ }
66
+ }
app/code/community/Neklo/Core/Block/System/Newsletter.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Neklo_Core_Block_System_Newsletter extends Mage_Adminhtml_Block_System_Config_Form_Fieldset
4
+ {
5
+ protected function _getHeaderTitleHtml($element)
6
+ {
7
+ return '<div class="entry-edit-head collapseable"><a id="' . $element->getHtmlId() . '-head" href="#" style="background:none;">' . $element->getLegend() . '</a></div>';
8
+ }
9
+ }
app/code/community/Neklo/Core/Block/System/Newsletter/Subscribe.php ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Neklo_Core_Block_System_Newsletter_Subscribe extends Mage_Adminhtml_Block_System_Config_Form_Field
4
+ {
5
+ public function render(Varien_Data_Form_Element_Abstract $element)
6
+ {
7
+ $element->setScope(false);
8
+ $element->setCanUseWebsiteValue(false);
9
+ $element->setCanUseDefaultValue(false);
10
+ return parent::render($element);
11
+ }
12
+
13
+ protected function _getElementHtml(Varien_Data_Form_Element_Abstract $element)
14
+ {
15
+ $subscribeButton = $this->getLayout()->createBlock('neklo_core/system_newsletter_subscribe_button', 'neklo_core_subscribe');
16
+ $subscribeButton->setTemplate('neklo/core/system/subscribe/button.phtml');
17
+ $subscribeButton->setContainerId($element->getContainer()->getHtmlId());
18
+ return $subscribeButton->toHtml();
19
+ }
20
+ }
app/code/community/Neklo/Core/Block/System/Newsletter/Subscribe/Button.php ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Neklo_Core_Block_System_Newsletter_Subscribe_Button extends Mage_Adminhtml_Block_Template
4
+ {
5
+ /**
6
+ * @return Mage_Adminhtml_Block_Widget_Button
7
+ */
8
+ public function getButton()
9
+ {
10
+ $button = $this->getLayout()->createBlock('adminhtml/widget_button');
11
+ $button
12
+ ->setType('button')
13
+ ->setLabel($this->__('Subscribe'))
14
+ ->setStyle("width:280px")
15
+ ->setId('neklo_core_subscribe')
16
+ ;
17
+ return $button;
18
+ }
19
+
20
+ /**
21
+ * @return string
22
+ */
23
+ public function getButtonHtml()
24
+ {
25
+ return $this->getButton()->toHtml();
26
+ }
27
+
28
+ /**
29
+ * @return string
30
+ */
31
+ public function getContainerId()
32
+ {
33
+ return parent::getContainerId();
34
+ }
35
+ }
app/code/community/Neklo/Core/Helper/Data.php ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Neklo_Core_Helper_Data extends Mage_Core_Helper_Abstract
4
+ {
5
+ public function __()
6
+ {
7
+ $args = func_get_args();
8
+ if ($args[0] == '[NEKLO]') {
9
+ return '<img src="' . $this->_getLogoUrl() . '" height="11" alt="Neklo" title="" />';
10
+ }
11
+ $expr = new Mage_Core_Model_Translate_Expr(array_shift($args), $this->_getModuleName());
12
+ array_unshift($args, $expr);
13
+ return Mage::app()->getTranslator()->translate($args);
14
+ }
15
+
16
+ protected function _getLogoUrl()
17
+ {
18
+ return $this->_getRequest()->getPost('neklo_cache') . 'neklo.png';
19
+ }
20
+ }
app/code/community/Neklo/Core/Model/Feed.php ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Neklo_Core_Model_Feed extends Mage_AdminNotification_Model_Feed
4
+ {
5
+ const XML_USE_HTTPS_PATH = 'neklo_core/admin_notification/use_https';
6
+ const XML_FEED_URL_PATH = 'neklo_core/admin_notification/feed_url';
7
+ const XML_FREQUENCY_PATH = 'neklo_core/admin_notification/frequency';
8
+
9
+ const LAST_CHECK_CACHE_KEY = 'neklo_core_admin_notifications_last_check';
10
+
11
+ public function getFrequency()
12
+ {
13
+ return Mage::getStoreConfig(self::XML_FREQUENCY_PATH) * 3600;
14
+ }
15
+
16
+ public function getLastUpdate()
17
+ {
18
+ return Mage::app()->loadCache(self::LAST_CHECK_CACHE_KEY);
19
+ }
20
+
21
+ public function setLastUpdate()
22
+ {
23
+ Mage::app()->saveCache(time(), self::LAST_CHECK_CACHE_KEY);
24
+ return $this;
25
+ }
26
+
27
+ public function getFeedUrl()
28
+ {
29
+ if (is_null($this->_feedUrl)) {
30
+ $this->_feedUrl = (Mage::getStoreConfigFlag(self::XML_USE_HTTPS_PATH) ? 'https://' : 'http://') . Mage::getStoreConfig(self::XML_FEED_URL_PATH);
31
+ }
32
+ return $this->_feedUrl;
33
+ }
34
+ }
app/code/community/Neklo/Core/Model/Observer.php ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Neklo_Core_Model_Observer
4
+ {
5
+ public function renderContact($observer)
6
+ {
7
+ Mage::getBlockSingleton('neklo_core/system_contact')->render(new Varien_Data_Form_Element_Fieldset);
8
+ }
9
+
10
+ public function checkUpdate(Varien_Event_Observer $observer)
11
+ {
12
+ if (Mage::getSingleton('admin/session')->isLoggedIn()) {
13
+ Mage::getModel('neklo_core/feed')->checkUpdate();
14
+ }
15
+ }
16
+ }
app/code/community/Neklo/Core/controllers/Adminhtml/Neklo/Core/ContactController.php ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Neklo_Core_Adminhtml_Neklo_Core_ContactController extends Mage_Adminhtml_Controller_Action
4
+ {
5
+ const CONTACT_URL = 'https://store.neklo.com/neklo_support/';
6
+
7
+ public function indexAction()
8
+ {
9
+ $result = array(
10
+ 'error' => 0,
11
+ );
12
+ try {
13
+ $data = $this->getRequest()->getPost();
14
+ $data['version'] = Mage::getVersion();
15
+ $data['url'] = Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_WEB);
16
+ $data['id'] = '0-0-0';
17
+ $this->_sendContactEmail($data);
18
+ } catch (Exception $e) {
19
+ $result['message'][] = $e->getMessage();
20
+ $result['error'] = 1;
21
+ $this->getResponse()->setBody(Zend_Json::encode($result));
22
+ return;
23
+ }
24
+ $result['message'][] = $this->__("Thank you for your request.");
25
+ $result['message'][] = $this->__("We'll respond as soon as possible.");
26
+ $result['message'][] = $this->__("We'll send copy of your request to your email.");
27
+ $this->getResponse()->setBody(Zend_Json::encode($result));
28
+ }
29
+
30
+ protected function _isAllowed()
31
+ {
32
+ return Mage::getSingleton('admin/session')->isAllowed('system/config/neklo_core');
33
+ }
34
+
35
+ protected function _sendContactEmail($data)
36
+ {
37
+ $params = Mage::helper('core')->urlEncode(Mage::helper('core')->jsonEncode($data));
38
+ if ($params) {
39
+ $httpClient = new Varien_Http_Client();
40
+ $httpClient
41
+ ->setMethod(Zend_Http_Client::POST)
42
+ ->setUri(self::CONTACT_URL)
43
+ ->setConfig(
44
+ array(
45
+ 'maxredirects' => 0,
46
+ 'timeout' => 30,
47
+ )
48
+ )
49
+ ->setRawData($params)
50
+ ->request()
51
+ ;
52
+ }
53
+ }
54
+ }
app/code/community/Neklo/Core/controllers/Adminhtml/Neklo/Core/NewsletterController.php ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Neklo_Core_Adminhtml_Neklo_Core_NewsletterController extends Mage_Adminhtml_Controller_Action
4
+ {
5
+ const SUBSCRIBE_URL = 'https://store.neklo.com/neklo_subscribe/';
6
+
7
+ public function subscribeAction()
8
+ {
9
+ $result = array(
10
+ 'success' => true,
11
+ );
12
+ try {
13
+ $data = $this->getRequest()->getPost();
14
+ $this->_subscribe($data);
15
+ } catch (Exception $e) {
16
+ $result['success'] = false;
17
+ $this->getResponse()->setBody(Zend_Json::encode($result));
18
+ return;
19
+ }
20
+ $this->getResponse()->setBody(Zend_Json::encode($result));
21
+ }
22
+
23
+ protected function _subscribe($data)
24
+ {
25
+ $params = Mage::helper('core')->urlEncode(Mage::helper('core')->jsonEncode($data));
26
+ if ($params) {
27
+ $httpClient = new Varien_Http_Client();
28
+ $httpClient
29
+ ->setMethod(Zend_Http_Client::POST)
30
+ ->setUri(self::SUBSCRIBE_URL)
31
+ ->setConfig(
32
+ array(
33
+ 'maxredirects' => 0,
34
+ 'timeout' => 30,
35
+ )
36
+ )
37
+ ->setRawData($params)
38
+ ->request()
39
+ ;
40
+ }
41
+ }
42
+
43
+ protected function _isAllowed()
44
+ {
45
+ return Mage::getSingleton('admin/session')->isAllowed('system/config/neklo_core');
46
+ }
47
+ }
app/code/community/Neklo/Core/etc/adminhtml.xml ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <acl>
4
+ <resources>
5
+ <all>
6
+ <title>Allow Everything</title>
7
+ </all>
8
+ <admin>
9
+ <children>
10
+ <system>
11
+ <children>
12
+ <config>
13
+ <children>
14
+ <neklo_core translate="title" module="neklo_core">
15
+ <title>Neklo Extensions &amp; Contact</title>
16
+ <sort_order>9999</sort_order>
17
+ </neklo_core>
18
+ </children>
19
+ </config>
20
+ </children>
21
+ </system>
22
+ </children>
23
+ </admin>
24
+ </resources>
25
+ </acl>
26
+ </config>
app/code/community/Neklo/Core/etc/config.xml ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <modules>
4
+ <Neklo_Core>
5
+ <version>1.0.2</version>
6
+ </Neklo_Core>
7
+ </modules>
8
+ <admin>
9
+ <routers>
10
+ <adminhtml>
11
+ <args>
12
+ <modules>
13
+ <neklo before="Mage_Adminhtml">Neklo_Core_Adminhtml</neklo>
14
+ </modules>
15
+ </args>
16
+ </adminhtml>
17
+ </routers>
18
+ </admin>
19
+ <global>
20
+ <blocks>
21
+ <neklo_core>
22
+ <class>Neklo_Core_Block</class>
23
+ </neklo_core>
24
+ </blocks>
25
+ <helpers>
26
+ <neklo_core>
27
+ <class>Neklo_Core_Helper</class>
28
+ </neklo_core>
29
+ </helpers>
30
+ <models>
31
+ <neklo_core>
32
+ <class>Neklo_Core_Model</class>
33
+ </neklo_core>
34
+ </models>
35
+ </global>
36
+ <adminhtml>
37
+ <translate>
38
+ <modules>
39
+ <Neklo_Core>
40
+ <files>
41
+ <default>Neklo_Core.csv</default>
42
+ </files>
43
+ </Neklo_Core>
44
+ </modules>
45
+ </translate>
46
+ <events>
47
+ <controller_action_predispatch_adminhtml_system_config_edit>
48
+ <observers>
49
+ <neklo_core>
50
+ <class>neklo_core/observer</class>
51
+ <method>renderContact</method>
52
+ </neklo_core>
53
+ </observers>
54
+ </controller_action_predispatch_adminhtml_system_config_edit>
55
+ <controller_action_predispatch>
56
+ <observers>
57
+ <neklo_core_admin_notification>
58
+ <class>neklo_core/observer</class>
59
+ <method>checkUpdate</method>
60
+ </neklo_core_admin_notification>
61
+ </observers>
62
+ </controller_action_predispatch>
63
+ </events>
64
+ </adminhtml>
65
+ <default>
66
+ <neklo_core>
67
+ <admin_notification>
68
+ <feed_url>store.neklo.com/magento-update/magento-notifications.rss</feed_url>
69
+ <use_https>0</use_https>
70
+ <frequency>24</frequency>
71
+ <last_update>0</last_update>
72
+ </admin_notification>
73
+ </neklo_core>
74
+ </default>
75
+ </config>
app/code/community/Neklo/Core/etc/system.xml ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <tabs>
4
+ <neklo translate="label" module="neklo_core">
5
+ <label>[NEKLO]</label>
6
+ <sort_order>310</sort_order>
7
+ </neklo>
8
+ </tabs>
9
+ <sections>
10
+ <neklo_core translate="label" module="neklo_core">
11
+ <label>Extensions &amp; Contact</label>
12
+ <tab>neklo</tab>
13
+ <frontend_type>text</frontend_type>
14
+ <sort_order>9999</sort_order>
15
+ <show_in_default>1</show_in_default>
16
+ <show_in_website>1</show_in_website>
17
+ <show_in_store>1</show_in_store>
18
+ <groups>
19
+ <extensions translate="label">
20
+ <label>Extensions Information</label>
21
+ <frontend_type>text</frontend_type>
22
+ <frontend_model>neklo_core/system_extensions</frontend_model>
23
+ <sort_order>1</sort_order>
24
+ <show_in_default>1</show_in_default>
25
+ <show_in_website>1</show_in_website>
26
+ <show_in_store>1</show_in_store>
27
+ </extensions>
28
+ <contact translate="label">
29
+ <label>Contact Form</label>
30
+ <frontend_type>text</frontend_type>
31
+ <frontend_model>neklo_core/system_contact</frontend_model>
32
+ <sort_order>2</sort_order>
33
+ <show_in_default>1</show_in_default>
34
+ <show_in_website>1</show_in_website>
35
+ <show_in_store>1</show_in_store>
36
+ </contact>
37
+ <newsletter translate="label">
38
+ <label>Subscribe to Newsletter</label>
39
+ <frontend_type>text</frontend_type>
40
+ <frontend_model>neklo_core/system_newsletter</frontend_model>
41
+ <sort_order>10</sort_order>
42
+ <show_in_default>1</show_in_default>
43
+ <show_in_website>0</show_in_website>
44
+ <show_in_store>0</show_in_store>
45
+ <expanded>1</expanded>
46
+ <fields>
47
+ <name translate="label">
48
+ <label>Name</label>
49
+ <frontend_type>text</frontend_type>
50
+ <sort_order>10</sort_order>
51
+ <show_in_default>1</show_in_default>
52
+ <show_in_website>0</show_in_website>
53
+ <show_in_store>0</show_in_store>
54
+ <validate>required-entry</validate>
55
+ </name>
56
+ <email translate="label">
57
+ <label>Email</label>
58
+ <frontend_type>text</frontend_type>
59
+ <sort_order>20</sort_order>
60
+ <show_in_default>1</show_in_default>
61
+ <show_in_website>0</show_in_website>
62
+ <show_in_store>0</show_in_store>
63
+ <validate>required-entry validate-email</validate>
64
+ </email>
65
+ <subscribe_button>
66
+ <frontend_model>neklo_core/system_newsletter_subscribe</frontend_model>
67
+ <sort_order>30</sort_order>
68
+ <show_in_default>1</show_in_default>
69
+ <show_in_website>0</show_in_website>
70
+ <show_in_store>0</show_in_store>
71
+ </subscribe_button>
72
+ </fields>
73
+ </newsletter>
74
+ </groups>
75
+ </neklo_core>
76
+ </sections>
77
+ </config>
app/code/community/Neklo/ShareButtons/Block/Widget/Button/List.php ADDED
@@ -0,0 +1,168 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class Neklo_ShareButtons_Block_Widget_Button_List extends Mage_Core_Block_Template implements Mage_Widget_Block_Interface
3
+ {
4
+ /**
5
+ * @return bool
6
+ */
7
+ public function isEnabled()
8
+ {
9
+ return $this->getConfig()->isEnabled() && $this->getData('is_enabled');
10
+ }
11
+
12
+ public function getTitleType()
13
+ {
14
+ if (!$this->hasData('title_page')) {
15
+ return Neklo_ShareButtons_Model_Source_Widget_Title_Type::PAGE_CODE;
16
+ }
17
+ return $this->getData('title_page');
18
+ }
19
+
20
+ public function getTitle()
21
+ {
22
+ if (!$this->hasData('title') || $this->getData('title') == Neklo_ShareButtons_Model_Source_Widget_Title_Type::PAGE_CODE) {
23
+ return $this->getPageTitle();
24
+ }
25
+ return $this->getData('title');
26
+ }
27
+
28
+ public function getPageTitle()
29
+ {
30
+ return $this->getLayout()->getBlock('head')->getTitle();
31
+ }
32
+
33
+ /**
34
+ * @return bool
35
+ */
36
+ public function isFacebookEnabled()
37
+ {
38
+ if (!$this->hasData('is_facebook_enabled')) {
39
+ return false;
40
+ }
41
+ return !!$this->getData('is_facebook_enabled');
42
+ }
43
+
44
+ /**
45
+ * @return bool
46
+ */
47
+ public function isTwitterEnabled()
48
+ {
49
+ if (!$this->hasData('is_twitter_enabled')) {
50
+ return false;
51
+ }
52
+ return !!$this->getData('is_twitter_enabled');
53
+ }
54
+
55
+ public function getTwitterHashtags()
56
+ {
57
+ if (!$this->hasData('twitter_hashtags')) {
58
+ return null;
59
+ }
60
+ return $this->getData('twitter_hashtags');
61
+ }
62
+
63
+ public function getTwitterVia()
64
+ {
65
+ if (!$this->hasData('twitter_via')) {
66
+ return null;
67
+ }
68
+ return $this->getData('twitter_via');
69
+ }
70
+
71
+ /**
72
+ * @return bool
73
+ */
74
+ public function isGooglePlusEnabled()
75
+ {
76
+ if (!$this->hasData('is_googleplus_enabled')) {
77
+ return false;
78
+ }
79
+ return !!$this->getData('is_googleplus_enabled');
80
+ }
81
+
82
+ /**
83
+ * @return bool
84
+ */
85
+ public function isPinterestEnabled()
86
+ {
87
+ if (!$this->hasData('is_pinterest_enabled')) {
88
+ return false;
89
+ }
90
+ return !!$this->getData('is_pinterest_enabled');
91
+ }
92
+
93
+ /**
94
+ * @return bool
95
+ */
96
+ public function isRedditEnabled()
97
+ {
98
+ if (!$this->hasData('is_reddit_enabled')) {
99
+ return false;
100
+ }
101
+ return !!$this->getData('is_reddit_enabled');
102
+ }
103
+
104
+ /**
105
+ * @return bool
106
+ */
107
+ public function isDeliciousEnabled()
108
+ {
109
+ if (!$this->hasData('is_delicious_enabled')) {
110
+ return false;
111
+ }
112
+ return !!$this->getData('is_delicious_enabled');
113
+ }
114
+
115
+ public function getDeliciousProvider()
116
+ {
117
+ if (!$this->hasData('delicious_provider')) {
118
+ return null;
119
+ }
120
+ return $this->getData('delicious_provider');
121
+ }
122
+
123
+ /**
124
+ * @return bool
125
+ */
126
+ public function isEvernoteEnabled()
127
+ {
128
+ if (!$this->hasData('is_evernote_enabled')) {
129
+ return false;
130
+ }
131
+ return !!$this->getData('is_evernote_enabled');
132
+ }
133
+
134
+ /**
135
+ * @return bool
136
+ */
137
+ public function isStumbleUponEnabled()
138
+ {
139
+ if (!$this->hasData('is_stumbleupon_enabled')) {
140
+ return false;
141
+ }
142
+ return !!$this->getData('is_stumbleupon_enabled');
143
+ }
144
+
145
+ /**
146
+ * @return bool
147
+ */
148
+ public function isDiggEnabled()
149
+ {
150
+ if (!$this->hasData('is_digg_enabled')) {
151
+ return false;
152
+ }
153
+ return !!$this->getData('is_digg_enabled');
154
+ }
155
+
156
+ public function getShareUrl()
157
+ {
158
+ return Mage::helper('core/url')->getCurrentUrl();
159
+ }
160
+
161
+ /**
162
+ * @return Neklo_ShareButtons_Helper_Config
163
+ */
164
+ public function getConfig()
165
+ {
166
+ return Mage::helper('neklo_sharebuttons/config');
167
+ }
168
+ }
app/code/community/Neklo/ShareButtons/Helper/Config.php ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Neklo_ShareButtons_Helper_Config extends Mage_Core_Helper_Data
4
+ {
5
+ const GENERAL_IS_ENABLED = 'neklo_sharebuttons/general/is_enabled';
6
+
7
+ /**
8
+ * @param null|int|Mage_Core_Model_Store $store
9
+ *
10
+ * @return bool
11
+ */
12
+ public function isEnabled($store = null)
13
+ {
14
+ $isConfigEnabled = Mage::getStoreConfigFlag(self::GENERAL_IS_ENABLED, $store);
15
+ $isModuleEnabled = $this->isModuleEnabled();
16
+ $isModuleOutputEnabled = $this->isModuleOutputEnabled();
17
+ return $isConfigEnabled && $isModuleEnabled && $isModuleOutputEnabled;
18
+ }
19
+ }
app/code/community/Neklo/ShareButtons/Helper/Data.php ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Neklo_ShareButtons_Helper_Data extends Mage_Core_Helper_Data
4
+ {
5
+
6
+ }
app/code/community/Neklo/ShareButtons/Model/Source/Widget/Title/Type.php ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Neklo_ShareButtons_Model_Source_Widget_Title_Type
4
+ {
5
+ const PAGE_CODE = 'page';
6
+ const PAGE_LABEL = 'Page Title';
7
+
8
+ const CUSTOM_CODE = 'custom';
9
+ const CUSTOM_LABEL = 'Custom Title';
10
+
11
+ public function toOptionArray()
12
+ {
13
+ $helper = Mage::helper('neklo_sharebuttons');
14
+ return array(
15
+ array(
16
+ 'value' => self::PAGE_CODE,
17
+ 'label' => $helper->__(self::PAGE_LABEL),
18
+ ),
19
+ array(
20
+ 'value' => self::CUSTOM_CODE,
21
+ 'label' => $helper->__(self::CUSTOM_LABEL),
22
+ ),
23
+ );
24
+ }
25
+
26
+ public function toArray()
27
+ {
28
+ $helper = Mage::helper('neklo_sharebuttons');
29
+ return array(
30
+ self::PAGE_CODE => $helper->__(self::PAGE_LABEL),
31
+ self::CUSTOM_CODE => $helper->__(self::CUSTOM_LABEL),
32
+ );
33
+ }
34
+ }
app/code/community/Neklo/ShareButtons/etc/adminhtml.xml ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <acl>
4
+ <resources>
5
+ <all>
6
+ <title>Allow Everything</title>
7
+ </all>
8
+ <admin>
9
+ <children>
10
+ <system>
11
+ <children>
12
+ <config>
13
+ <children>
14
+ <neklo_sharebuttons translate="title" module="neklo_sharebuttons">
15
+ <title>Neklo LLC - Share Buttons</title>
16
+ <sort_order>150</sort_order>
17
+ </neklo_sharebuttons>
18
+ </children>
19
+ </config>
20
+ </children>
21
+ </system>
22
+ </children>
23
+ </admin>
24
+ </resources>
25
+ </acl>
26
+ </config>
app/code/community/Neklo/ShareButtons/etc/config.xml ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <config>
3
+ <modules>
4
+ <Neklo_ShareButtons>
5
+ <version>1.0.0</version>
6
+ </Neklo_ShareButtons>
7
+ </modules>
8
+ <global>
9
+ <blocks>
10
+ <neklo_sharebuttons>
11
+ <class>Neklo_ShareButtons_Block</class>
12
+ </neklo_sharebuttons>
13
+ </blocks>
14
+ <helpers>
15
+ <neklo_sharebuttons>
16
+ <class>Neklo_ShareButtons_Helper</class>
17
+ </neklo_sharebuttons>
18
+ </helpers>
19
+ <models>
20
+ <neklo_sharebuttons>
21
+ <class>Neklo_ShareButtons_Model</class>
22
+ </neklo_sharebuttons>
23
+ </models>
24
+ </global>
25
+ <frontend>
26
+ <layout>
27
+ <updates>
28
+ <neklo_sharebuttons>
29
+ <file>neklo/sharebuttons.xml</file>
30
+ </neklo_sharebuttons>
31
+ </updates>
32
+ </layout>
33
+ <translate>
34
+ <modules>
35
+ <Neklo_ShareButtons>
36
+ <files>
37
+ <default>Neklo_ShareButtons.csv</default>
38
+ </files>
39
+ </Neklo_ShareButtons>
40
+ </modules>
41
+ </translate>
42
+ </frontend>
43
+ <adminhtml>
44
+ <translate>
45
+ <modules>
46
+ <Neklo_ShareButtons>
47
+ <files>
48
+ <default>Neklo_ShareButtons.csv</default>
49
+ </files>
50
+ </Neklo_ShareButtons>
51
+ </modules>
52
+ </translate>
53
+ </adminhtml>
54
+ <default>
55
+ <neklo_sharebuttons>
56
+ <general>
57
+ <is_enabled>1</is_enabled>
58
+ </general>
59
+ </neklo_sharebuttons>
60
+ </default>
61
+ </config>
app/code/community/Neklo/ShareButtons/etc/system.xml ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <sections>
4
+ <neklo_sharebuttons translate="label" module="neklo_sharebuttons">
5
+ <label>Share Buttons</label>
6
+ <tab>neklo</tab>
7
+ <frontend_type>text</frontend_type>
8
+ <sort_order>150</sort_order>
9
+ <show_in_default>1</show_in_default>
10
+ <show_in_website>1</show_in_website>
11
+ <show_in_store>1</show_in_store>
12
+ <groups>
13
+ <general translate="label">
14
+ <label>General Settings</label>
15
+ <frontend_type>text</frontend_type>
16
+ <sort_order>10</sort_order>
17
+ <show_in_default>1</show_in_default>
18
+ <show_in_website>1</show_in_website>
19
+ <show_in_store>1</show_in_store>
20
+ <fields>
21
+ <is_enabled translate="label">
22
+ <label>Is Enabled</label>
23
+ <frontend_type>select</frontend_type>
24
+ <source_model>adminhtml/system_config_source_yesno</source_model>
25
+ <sort_order>10</sort_order>
26
+ <show_in_default>1</show_in_default>
27
+ <show_in_website>1</show_in_website>
28
+ <show_in_store>1</show_in_store>
29
+ </is_enabled>
30
+ </fields>
31
+ </general>
32
+ </groups>
33
+ </neklo_sharebuttons>
34
+ </sections>
35
+ </config>
app/code/community/Neklo/ShareButtons/etc/widget.xml ADDED
@@ -0,0 +1,253 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <widgets>
3
+ <neklo_sharebuttons type="neklo_sharebuttons/widget_button_list" translate="label" module="neklo_sharebuttons">
4
+ <name>[NEKLO] Share Buttons</name>
5
+ <parameters>
6
+ <is_enabled translate="label">
7
+ <label>Is Enabled</label>
8
+ <required>1</required>
9
+ <visible>1</visible>
10
+ <sort_order>10</sort_order>
11
+ <type>select</type>
12
+ <source_model>adminhtml/system_config_source_yesno</source_model>
13
+ <value>0</value>
14
+ </is_enabled>
15
+ <title_type translate="label">
16
+ <label>Title Type</label>
17
+ <required>1</required>
18
+ <visible>1</visible>
19
+ <sort_order>20</sort_order>
20
+ <type>select</type>
21
+ <source_model>neklo_sharebuttons/source_widget_title_type</source_model>
22
+ <value>page</value>
23
+ <depends>
24
+ <is_enabled>
25
+ <value>1</value>
26
+ </is_enabled>
27
+ </depends>
28
+ </title_type>
29
+ <title translate="label">
30
+ <label>Title</label>
31
+ <required>1</required>
32
+ <visible>1</visible>
33
+ <sort_order>30</sort_order>
34
+ <type>text</type>
35
+ <depends>
36
+ <is_enabled>
37
+ <value>1</value>
38
+ </is_enabled>
39
+ <title_type>
40
+ <value>custom</value>
41
+ </title_type>
42
+ </depends>
43
+ </title>
44
+
45
+ <!-- Facebook -->
46
+ <is_facebook_enabled translate="label">
47
+ <label>Is Facebook Enabled</label>
48
+ <required>1</required>
49
+ <visible>1</visible>
50
+ <sort_order>110</sort_order>
51
+ <type>select</type>
52
+ <source_model>adminhtml/system_config_source_yesno</source_model>
53
+ <value>0</value>
54
+ <depends>
55
+ <is_enabled>
56
+ <value>1</value>
57
+ </is_enabled>
58
+ </depends>
59
+ </is_facebook_enabled>
60
+
61
+ <!-- Twitter -->
62
+ <is_twitter_enabled translate="label">
63
+ <label>Is Twitter Enabled</label>
64
+ <required>1</required>
65
+ <visible>1</visible>
66
+ <sort_order>210</sort_order>
67
+ <type>select</type>
68
+ <source_model>adminhtml/system_config_source_yesno</source_model>
69
+ <value>0</value>
70
+ <depends>
71
+ <is_enabled>
72
+ <value>1</value>
73
+ </is_enabled>
74
+ </depends>
75
+ </is_twitter_enabled>
76
+ <twitter_hashtags translate="label description">
77
+ <label>Twitter Hashtags</label>
78
+ <description><![CDATA[Hashtags appended onto the tweet (Comma separated. Don't include <b>#</b>)]]></description>
79
+ <required>1</required>
80
+ <visible>1</visible>
81
+ <sort_order>230</sort_order>
82
+ <type>text</type>
83
+ <depends>
84
+ <is_enabled>
85
+ <value>1</value>
86
+ </is_enabled>
87
+ <is_twitter_enabled>
88
+ <value>1</value>
89
+ </is_twitter_enabled>
90
+ </depends>
91
+ </twitter_hashtags>
92
+ <twitter_via translate="label description">
93
+ <label>Twitter Username</label>
94
+ <description><![CDATA[Twitter username of content author (don't include <b>@</b>)]]></description>
95
+ <required>1</required>
96
+ <visible>1</visible>
97
+ <sort_order>240</sort_order>
98
+ <type>text</type>
99
+ <depends>
100
+ <is_enabled>
101
+ <value>1</value>
102
+ </is_enabled>
103
+ <is_twitter_enabled>
104
+ <value>1</value>
105
+ </is_twitter_enabled>
106
+ </depends>
107
+ </twitter_via>
108
+
109
+ <!-- Google+ -->
110
+ <is_googleplus_enabled translate="label">
111
+ <label>Is Google+ Enabled</label>
112
+ <required>1</required>
113
+ <visible>1</visible>
114
+ <sort_order>310</sort_order>
115
+ <type>select</type>
116
+ <source_model>adminhtml/system_config_source_yesno</source_model>
117
+ <value>0</value>
118
+ <depends>
119
+ <is_enabled>
120
+ <value>1</value>
121
+ </is_enabled>
122
+ </depends>
123
+ </is_googleplus_enabled>
124
+
125
+ <!-- Pinterest -->
126
+ <is_pinterest_enabled translate="label">
127
+ <label>Is Pinterest Enabled</label>
128
+ <required>1</required>
129
+ <visible>1</visible>
130
+ <sort_order>410</sort_order>
131
+ <type>select</type>
132
+ <source_model>adminhtml/system_config_source_yesno</source_model>
133
+ <value>0</value>
134
+ <depends>
135
+ <is_enabled>
136
+ <value>1</value>
137
+ </is_enabled>
138
+ </depends>
139
+ </is_pinterest_enabled>
140
+
141
+ <!-- Reddit -->
142
+ <is_reddit_enabled translate="label">
143
+ <label>Is Reddit Enabled</label>
144
+ <required>1</required>
145
+ <visible>1</visible>
146
+ <sort_order>510</sort_order>
147
+ <type>select</type>
148
+ <source_model>adminhtml/system_config_source_yesno</source_model>
149
+ <value>0</value>
150
+ <depends>
151
+ <is_enabled>
152
+ <value>1</value>
153
+ </is_enabled>
154
+ </depends>
155
+ </is_reddit_enabled>
156
+
157
+ <!-- Delicious -->
158
+ <is_delicious_enabled translate="label">
159
+ <label>Is Delicious Enabled</label>
160
+ <required>1</required>
161
+ <visible>1</visible>
162
+ <sort_order>610</sort_order>
163
+ <type>select</type>
164
+ <source_model>adminhtml/system_config_source_yesno</source_model>
165
+ <value>0</value>
166
+ <depends>
167
+ <is_enabled>
168
+ <value>1</value>
169
+ </is_enabled>
170
+ </depends>
171
+ </is_delicious_enabled>
172
+ <delicious_provider translate="label">
173
+ <label>Delicious Provider</label>
174
+ <description><![CDATA[Company who is sharing the url]]></description>
175
+ <required>1</required>
176
+ <visible>1</visible>
177
+ <sort_order>630</sort_order>
178
+ <type>text</type>
179
+ <depends>
180
+ <is_enabled>
181
+ <value>1</value>
182
+ </is_enabled>
183
+ <is_delicious_enabled>
184
+ <value>1</value>
185
+ </is_delicious_enabled>
186
+ </depends>
187
+ </delicious_provider>
188
+
189
+ <!-- Evernote -->
190
+ <is_evernote_enabled translate="label">
191
+ <label>Is Evernote Enabled</label>
192
+ <required>1</required>
193
+ <visible>1</visible>
194
+ <sort_order>710</sort_order>
195
+ <type>select</type>
196
+ <source_model>adminhtml/system_config_source_yesno</source_model>
197
+ <value>0</value>
198
+ <depends>
199
+ <is_enabled>
200
+ <value>1</value>
201
+ </is_enabled>
202
+ </depends>
203
+ </is_evernote_enabled>
204
+
205
+ <!-- StumbleUpon -->
206
+ <is_stumbleupon_enabled translate="label">
207
+ <label>Is StumbleUpon Enabled</label>
208
+ <required>1</required>
209
+ <visible>1</visible>
210
+ <sort_order>810</sort_order>
211
+ <type>select</type>
212
+ <source_model>adminhtml/system_config_source_yesno</source_model>
213
+ <value>0</value>
214
+ <depends>
215
+ <is_enabled>
216
+ <value>1</value>
217
+ </is_enabled>
218
+ </depends>
219
+ </is_stumbleupon_enabled>
220
+
221
+ <!-- Digg -->
222
+ <is_digg_enabled translate="label">
223
+ <label>Is Digg Enabled</label>
224
+ <required>1</required>
225
+ <visible>1</visible>
226
+ <sort_order>910</sort_order>
227
+ <type>select</type>
228
+ <source_model>adminhtml/system_config_source_yesno</source_model>
229
+ <value>0</value>
230
+ <depends>
231
+ <is_enabled>
232
+ <value>1</value>
233
+ </is_enabled>
234
+ </depends>
235
+ </is_digg_enabled>
236
+
237
+ <template translate="label">
238
+ <label>Template</label>
239
+ <required>1</required>
240
+ <visible>1</visible>
241
+ <sort_order>10000</sort_order>
242
+ <type>select</type>
243
+ <value>neklo/sharebuttons/widget/button/list.phtml</value>
244
+ <values>
245
+ <featured translate="label">
246
+ <value>neklo/sharebuttons/widget/button/list.phtml</value>
247
+ <label>Share Buttons Template</label>
248
+ </featured>
249
+ </values>
250
+ </template>
251
+ </parameters>
252
+ </neklo_sharebuttons>
253
+ </widgets>
app/design/adminhtml/default/default/template/neklo/core/system/subscribe/button.phtml ADDED
@@ -0,0 +1,161 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php /* @var $this Neklo_Core_Block_System_Newsletter_Subscribe_Button */ ?>
2
+ <?php echo $this->getButtonHtml(); ?>
3
+ <div class="neklo_core_message"></div>
4
+ <script>
5
+ var NekloCoreSubscribe = Class.create({
6
+ initialize: function (config) {
7
+ this.initConfig(config);
8
+ this.initElements();
9
+ this.initObservers();
10
+ },
11
+
12
+ initConfig: function (config) {
13
+ this.config = config;
14
+ this.subscribeUrl = this.config.subscribeUrl || '';
15
+
16
+ this.successMessage = this.config.successMessage || '';
17
+ this.errorMessage = this.config.errorMessage || '';
18
+
19
+ this.successMessageClass = this.config.successMessageClass || '';
20
+ this.errorMessageClass = this.config.errorMessageClass || '';
21
+
22
+
23
+ this.formContainerId = this.config.formContainerId || '';
24
+ this.formElementSelectorList = this.config.formElementSelectorList || [];
25
+ },
26
+
27
+ initElements: function () {
28
+ this.subscribeButton = $(this.config.subscribeButtonId) || null;
29
+ this.loadingMask = $(this.config.loadingMaskId) || null;
30
+ this.messageContainer = $$(this.config.messageContainerSelector).first() || null;
31
+ },
32
+
33
+ initObservers: function () {
34
+ if (this.subscribeButton) {
35
+ this.subscribeButton.observe('click', this.subscribe.bind(this));
36
+ }
37
+ },
38
+
39
+ subscribe: function () {
40
+ if (!this.validate()) {
41
+ return;
42
+ }
43
+
44
+ var me = this;
45
+ var subscribeData = {};
46
+ this.formElementSelectorList.each(function (elementSelector) {
47
+ subscribeData[elementSelector] = $(me.formContainerId + '_' + elementSelector).getValue();
48
+ });
49
+
50
+ new Ajax.Request(
51
+ this.subscribeUrl,
52
+ {
53
+ method: 'post',
54
+ parameters: subscribeData,
55
+ onCreate: this._onSubscribeCreate.bind(this),
56
+ onComplete: this._onSubscribeComplete.bind(this),
57
+ onSuccess: this._onSubscribeSuccess.bind(this),
58
+ onFailure: this._onSubscribeFailure.bind(this)
59
+ }
60
+ );
61
+ },
62
+
63
+ validate: function () {
64
+ var me = this;
65
+ var result = true;
66
+ this.formElementSelectorList.each(function (elementSelector) {
67
+ result = Validation.validate($(me.formContainerId + '_' + elementSelector));
68
+ });
69
+ return result;
70
+ },
71
+
72
+ showLoadingMask: function () {
73
+ if (this.loadingMask) {
74
+ this.loadingMask.show();
75
+ }
76
+ },
77
+
78
+ hideLoadingMask: function () {
79
+ if (this.loadingMask) {
80
+ this.loadingMask.hide();
81
+ }
82
+ },
83
+
84
+ _onSubscribeCreate: function () {
85
+ this.clearMessageContainer();
86
+ this.showLoadingMask();
87
+ },
88
+
89
+ _onSubscribeComplete: function () {
90
+ this.hideLoadingMask();
91
+ },
92
+
93
+ _onSubscribeSuccess: function (response) {
94
+ try {
95
+ var result = response.responseText.evalJSON();
96
+ if (typeof(result.success) != 'undefined') {
97
+ if (result.success) {
98
+ this.showSuccess();
99
+ } else {
100
+ this.showError();
101
+ }
102
+ }
103
+ } catch (e) {
104
+ this.showError();
105
+ }
106
+ },
107
+
108
+ _onSubscribeFailure: function () {
109
+ this.showError();
110
+ },
111
+
112
+ showSuccess: function () {
113
+ this.showMessage(this.successMessage, this.successMessageClass);
114
+ },
115
+
116
+ showError: function () {
117
+ this.showMessage(this.errorMessage, this.errorMessageClass);
118
+ },
119
+
120
+ showMessage: function (message, className) {
121
+ this.clearMessageContainer();
122
+ var messageElement = new Element('p', {'class': className}).update(message);
123
+ this.messageContainer.appendChild(messageElement);
124
+ },
125
+
126
+ clearMessageContainer: function () {
127
+ this.messageContainer.update('');
128
+ }
129
+ });
130
+
131
+ var subscribeForm = new NekloCoreSubscribe({
132
+ 'subscribeUrl': '<?php echo $this->getUrl('adminhtml/neklo_core_newsletter/subscribe'); ?>',
133
+
134
+ 'successMessage': '<?php echo $this->__('Successfully subscribed'); ?>',
135
+ 'errorMessage': '<?php echo $this->__('Subscribe error'); ?>',
136
+
137
+ 'successMessageClass': 'success',
138
+ 'errorMessageClass': 'error',
139
+
140
+ 'formContainerId' : '<?php echo $this->getContainerId(); ?>',
141
+ 'formElementSelectorList': ['name', 'email'],
142
+
143
+ 'subscribeButtonId': 'neklo_core_subscribe',
144
+ 'loadingMaskId': 'loading-mask',
145
+ 'messageContainerSelector': '.neklo_core_message'
146
+ });
147
+ </script>
148
+ <style>
149
+ .neklo_core_message {
150
+ text-align: center;
151
+ padding: 5px 0;
152
+ font-weight: bold;
153
+ width: 280px;
154
+ }
155
+ .neklo_core_message .error {
156
+ color: #D40707;
157
+ }
158
+ .neklo_core_message .success {
159
+ color: #3d6611;
160
+ }
161
+ </style>
app/design/frontend/base/default/layout/neklo/sharebuttons.xml ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <layout>
3
+ <default>
4
+ <reference name="head">
5
+ <action method="addCss">
6
+ <stylesheet>neklo/sharebuttons/css/styles.css</stylesheet>
7
+ </action>
8
+ </reference>
9
+ </default>
10
+ </layout>
app/design/frontend/base/default/template/neklo/sharebuttons/widget/button/list.phtml ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php /* @var $this Neklo_ShareButtons_Block_Widget_Button_List */ ?>
2
+ <?php
3
+ $icon_type = 'circle'; //square or circle or simple
4
+ $is_color = true;
5
+ $color_class = $is_color ? 'color-icon' : '';
6
+ ?>
7
+
8
+ <?php if ($this->isEnabled()): ?>
9
+
10
+ <script type="text/javascript">
11
+ var popupWidth = 640;
12
+ var popupHeight = 480;
13
+ var popupLeftOffset = screen.width / 2 - 640 / 2;
14
+ var popupTopOffset = screen.height / 2 - 480 / 2;
15
+ </script>
16
+
17
+ <div class="neklo-share-buttons">
18
+
19
+ <span class="neklo-sharebuttons-title">Share:</span>
20
+
21
+ <?php if ($this->isFacebookEnabled()) : ?>
22
+ <a class="social-icon facebook-<?php echo $icon_type ?> <?php echo $color_class ?>" href="javascript:popWin('http://www.facebook.com/sharer.php?u=<?php echo $this->getShareUrl(); ?>', 'facebook', 'width=' + popupWidth + ',height=' + popupHeight + ',left=' + popupLeftOffset + ',top=' + popupTopOffset + ',location=no,status=yes,menubar=no,toolbar=no,resizable=yes,scrollbars=yes');"></a>
23
+ <?php endif; ?>
24
+
25
+ <?php if ($this->isTwitterEnabled()) : ?>
26
+ <a class="social-icon twitter-<?php echo $icon_type ?> <?php echo $color_class ?>" href="javascript:popWin('http://twitter.com/share?url=<?php echo $this->getShareUrl(); ?>&text=<?php echo $this->getTitle(); ?><?php echo $this->getTwitterHashtags() ? '&hashtags=' . $this->getTwitterHashtags(): ''; ?><?php echo $this->getTwitterVia() ? '&via=' . $this->getTwitterVia(): ''; ?>', 'twitter', 'width=' + popupWidth + ',height=' + popupHeight + ',left=' + popupLeftOffset + ',top=' + popupTopOffset + ',location=no,status=yes,menubar=no,toolbar=no,resizable=yes,scrollbars=yes');"></a>
27
+ <?php endif; ?>
28
+
29
+ <?php if ($this->isGooglePlusEnabled()) : ?>
30
+ <a class="social-icon google-<?php echo $icon_type ?> <?php echo $color_class ?>" href="javascript:popWin('https://plus.google.com/share?url=<?php echo $this->getShareUrl(); ?>', 'googleplus', 'width=' + popupWidth + ',height=' + popupHeight + ',left=' + popupLeftOffset + ',top=' + popupTopOffset + ',location=no,status=yes,menubar=no,toolbar=no,resizable=yes,scrollbars=yes');"></a>
31
+ <?php endif; ?>
32
+
33
+ <?php if ($this->isPinterestEnabled()) : ?>
34
+ <a class="social-icon pinterest-<?php echo $icon_type ?> <?php echo $color_class ?>" href="javascript:popWin('https://pinterest.com/pin/create/bookmarklet/?url=<?php echo $this->getShareUrl(); ?>&description=<?php echo $this->getTitle(); ?>', 'pinterest', 'width=' + popupWidth + ',height=' + popupHeight + ',left=' + popupLeftOffset + ',top=' + popupTopOffset + ',location=no,status=yes,menubar=no,toolbar=no,resizable=yes,scrollbars=yes');"></a>
35
+ <?php endif; ?>
36
+
37
+ <?php if ($this->isRedditEnabled()) : ?>
38
+ <a class="social-icon reddit-<?php echo $icon_type ?> <?php echo $color_class ?>" href="javascript:popWin('http://reddit.com/submit?url=<?php echo $this->getShareUrl(); ?>&title=<?php echo $this->getTitle(); ?>', 'reddit', 'width=' + popupWidth + ',height=' + popupHeight + ',left=' + popupLeftOffset + ',top=' + popupTopOffset + ',location=no,status=yes,menubar=no,toolbar=no,resizable=yes,scrollbars=yes');"></a>
39
+ <?php endif; ?>
40
+
41
+ <?php if ($this->isDeliciousEnabled()) : ?>
42
+ <a class="social-icon delicious-<?php echo $icon_type ?> <?php echo $color_class ?>" href="javascript:popWin('https://delicious.com/save?v=5&provider=<?php echo $this->getDeliciousProvider(); ?>&noui&jump=close&url=<?php echo $this->getShareUrl(); ?>&title=<?php echo $this->getTitle(); ?>', 'delicious', 'width=' + popupWidth + ',height=' + popupHeight + ',left=' + popupLeftOffset + ',top=' + popupTopOffset + ',location=no,status=yes,menubar=no,toolbar=no,resizable=yes,scrollbars=yes');"></a>
43
+ <?php endif; ?>
44
+
45
+ <?php if ($this->isStumbleUponEnabled()) : ?>
46
+ <a class="social-icon stumbleupon-<?php echo $icon_type ?> <?php echo $color_class ?>" href="javascript:popWin('http://www.stumbleupon.com/submit?url=<?php echo $this->getShareUrl(); ?>&title=<?php echo $this->getTitle(); ?>', 'stumbleupon', 'width=' + popupWidth + ',height=' + popupHeight + ',left=' + popupLeftOffset + ',top=' + popupTopOffset + ',location=no,status=yes,menubar=no,toolbar=no,resizable=yes,scrollbars=yes');"></a>
47
+ <?php endif; ?>
48
+
49
+ <?php if ($this->isEnabled()) : ?>
50
+ <a class="social-icon digg-<?php echo $icon_type ?> <?php echo $color_class ?>" href="javascript:popWin('http://digg.com/submit?url=<?php echo $this->getShareUrl(); ?>&title=<?php echo $this->getTitle(); ?>', 'digg', 'width=' + popupWidth + ',height=' + popupHeight + ',left=' + popupLeftOffset + ',top=' + popupTopOffset + ',location=no,status=yes,menubar=no,toolbar=no,resizable=yes,scrollbars=yes');"></a>
51
+ <?php endif; ?>
52
+ </div>
53
+ <?php endif; ?>
app/etc/modules/Neklo_Core.xml ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <modules>
4
+ <Neklo_Core>
5
+ <active>true</active>
6
+ <codePool>community</codePool>
7
+ <extension_name>Neklo Core</extension_name>
8
+ </Neklo_Core>
9
+ </modules>
10
+ </config>
app/etc/modules/Neklo_ShareButtons.xml ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <modules>
4
+ <Neklo_ShareButtons>
5
+ <active>true</active>
6
+ <codePool>community</codePool>
7
+ <depends>
8
+ <Neklo_Core/>
9
+ </depends>
10
+ <extension_name>Share Buttons</extension_name>
11
+ <free>1</free>
12
+ <url>share-buttons-widget-extension-for-magento</url>
13
+ </Neklo_ShareButtons>
14
+ </modules>
15
+ </config>
app/locale/en_US/Neklo_Core.csv ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ %s Support (%s),%s Support (%s)
2
+ Contact Email,Contact Email
3
+ Contact Form,Contact Form
4
+ Contact Name,Contact Name
5
+ "Contact Neklo Support Team or visit <a href=""%s"" target=""_blank"">%s</a> for additional information","Contact Neklo Support Team or visit <a href=""%s"" target=""_blank"">%s</a> for additional information"
6
+ Extensions &amp; Contact,Extensions &amp; Contact
7
+ Extensions Information,Extensions Information
8
+ Installed Neklo Extensions,Installed Neklo Extensions
9
+ free,free
10
+ Magento Related Support (paid),Magento Related Support (paid)
11
+ Message,Message
12
+ Neklo Extensions &amp; Contact,Neklo Extensions &amp; Contact
13
+ Other Reason,Other Reason
14
+ Reason,Reason
15
+ Request New Extension Development (paid),Request New Extension Development (paid)
16
+ paid,paid
17
+ Please select,Please select
18
+ Send,Send
19
+ Subject,Subject
package.xml ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <package>
3
+ <name>Neklo_ShareButtons</name>
4
+ <version>1.0.0</version>
5
+ <stability>stable</stability>
6
+ <license>License</license>
7
+ <channel>community</channel>
8
+ <extends/>
9
+ <summary>Summary</summary>
10
+ <description>Description</description>
11
+ <notes>The first stable release.</notes>
12
+ <authors><author><name>NEKLO</name><user>NEKLO</user><email>info@neklo.com</email></author></authors>
13
+ <date>2015-12-14</date>
14
+ <time>14:07:05</time>
15
+ <contents><target name="magecommunity"><dir name="Neklo"><dir name="ShareButtons"><dir name="Block"><dir name="Widget"><dir name="Button"><file name="List.php" hash="61b34fbf31fda9b44c6e7cb698c5db42"/></dir></dir></dir><dir name="Helper"><file name="Config.php" hash="77d550937156f1418f2c2bdfad8274a7"/><file name="Data.php" hash="acd6296fbcd9e101889738651974d4e5"/></dir><dir name="Model"><dir name="Source"><dir name="Widget"><dir name="Title"><file name="Type.php" hash="f9b87834f91f8a4431a68b53cf6020f4"/></dir></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="03028b6521d4af848e75f366d5b064ba"/><file name="config.xml" hash="b41cf14f93e8577330b5ae475b19ce4d"/><file name="system.xml" hash="88df52657d7b052d70bd8723514c5ca3"/><file name="widget.xml" hash="4abba486a2223fd50cfd2345c0d0aae2"/></dir></dir><dir name="Core"><dir name="Block"><dir name="System"><file name="Abstract.php" hash="d13dedc9e28f3fba42d5b4e5e23c5a58"/><file name="Contact.php" hash="b9d03eda3b0ff0b8ffd17a777bc36d9b"/><file name="Extensions.php" hash="26e96fa54e769bc30a6bdf6395c80d34"/><dir name="Newsletter"><dir name="Subscribe"><file name="Button.php" hash="c24e57030e1a6d16611eb516a9249c34"/></dir><file name="Subscribe.php" hash="7b9b021aa6f12c0eff8576c4cb6cd60d"/></dir><file name="Newsletter.php" hash="46a84ace83bf1a4a81a3e4bf90272c6c"/></dir></dir><dir name="Helper"><file name="Data.php" hash="e13a6d27a50ea228c8751e6465c8f463"/></dir><dir name="Model"><file name="Feed.php" hash="8a669a60ad96195af2ff706c1e3ec26e"/><file name="Observer.php" hash="dea6141e7f7bb7acde44f242d0ae7083"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Neklo"><dir name="Core"><file name="ContactController.php" hash="88982513d6006d5f3b320e41b3cb96be"/><file name="NewsletterController.php" hash="b8334402bcc20afc829b5ea0cb763cab"/></dir></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="68b00ad4118462d74b0c0a7126063462"/><file name="config.xml" hash="3cfaca93a4cffbec6a1dc7113b510bb2"/><file name="system.xml" hash="66e1ccd2fc1c3fdd511dc99a8575009d"/></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="neklo"><file name="sharebuttons.xml" hash="cfe0d6b645bf995b7b1bf9829d0df083"/></dir></dir><dir name="template"><dir name="neklo"><dir name="sharebuttons"><dir name="widget"><dir name="button"><file name="list.phtml" hash="55d31a84dbffb20108713c07993ddd3b"/></dir></dir></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="neklo"><dir name="core"><dir name="system"><dir name="subscribe"><file name="button.phtml" hash="4e9fe3dfa9e291976ff45c2e25ce7b10"/></dir></dir></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Neklo_ShareButtons.xml" hash="e255007e2ecfd0b020e2d1be04e882dc"/><file name="Neklo_Core.xml" hash="335032ff690c5272626dca9106642680"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Neklo_Core.csv" hash="c6abfbb8be878de9c02339e2ecfc4e16"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="neklo"><dir name="sharebuttons"><dir name="css"><file name="styles.css" hash="a97456f69e3f7cfb264560ecbd971de1"/></dir><dir name="fonts"><file name="social-font.eot" hash="05d72bd616722f39afef30004839ce08"/><file name="social-font.otf" hash="bb587e5c486d57dfc51d5579c9ea4b49"/><file name="social-font.svg" hash="f9e431dc8d2ae45148edfc6f2ac6f961"/><file name="social-font.ttf" hash="d3b5827e4faf0b034d4b2bcaa6d43724"/><file name="social-font.woff" hash="6ef18e62928bfbe78057f6604702062a"/></dir></dir></dir></dir></dir></dir></target></contents>
16
+ <compatible/>
17
+ <dependencies><required><php><min>5.2.7</min><max>6.0.0</max></php></required></dependencies>
18
+ </package>
skin/frontend/base/default/neklo/sharebuttons/css/styles.css ADDED
@@ -0,0 +1,260 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @font-face {
2
+ font-family: 'socialIcons';
3
+ src: url('../fonts/social-font.eot');
4
+ src: url('../fonts/social-font.eot?#iefix') format('embedded-opentype'),
5
+ url('../fonts/social-font.woff') format('woff'),
6
+ url('../fonts/social-font.ttf') format('truetype'),
7
+ url('../fonts/social-font.svg#MonoSocialIconsFont') format('svg');
8
+ src: url('../fonts/social-font.ttf') format('truetype');
9
+ font-weight: normal;
10
+ font-style: normal;
11
+ }
12
+
13
+ .neklo-share-buttons .social-icon {
14
+ color: #cccbcb;
15
+ margin: 0 5px 0 0;
16
+ text-decoration: none;
17
+ font-size: 48px;
18
+ vertical-align: middle;;
19
+ }
20
+
21
+ .neklo-share-buttons .neklo-sharebuttons-title {
22
+ display: inline-block;
23
+ vertical-align: middle;
24
+ padding: 7px 5px 0 0;
25
+ font-size: 18px;
26
+ }
27
+
28
+ .neklo-share-buttons .social-icon:hover {
29
+ text-shadow: 1px 1px 2px #ffffff, 0 0 3px #cccbcb;
30
+ }
31
+
32
+ .neklo-share-buttons .social-icon:before {
33
+ font-family: 'socialIcons';
34
+ -webkit-text-rendering: optimizeLegibility;
35
+ -moz-text-rendering: optimizeLegibility;
36
+ -ms-text-rendering: optimizeLegibility;
37
+ -o-text-rendering: optimizeLegibility;
38
+ text-rendering: optimizeLegibility;
39
+ -webkit-font-smoothing: antialiased;
40
+ -moz-font-smoothing: antialiased;
41
+ -ms-font-smoothing: antialiased;
42
+ -o-font-smoothing: antialiased;
43
+ font-smoothing: antialiased;
44
+ }
45
+
46
+ .neklo-share-buttons .facebook-circle:before {
47
+ content: 'circlefacebook';
48
+ }
49
+
50
+ .neklo-share-buttons .facebook-circle.color-icon:before {
51
+ content: 'circlefacebook';
52
+ color: #547bbc;
53
+ }
54
+
55
+ .neklo-share-buttons .twitter-circle:before {
56
+ content: 'circletwitterbird';
57
+ }
58
+
59
+ .neklo-share-buttons .twitter-circle.color-icon:before {
60
+ content: 'circletwitterbird';
61
+ color: #78cbef;
62
+ }
63
+
64
+ .neklo-share-buttons .pinterest-circle:before {
65
+ content: 'circlepinterest';
66
+ }
67
+
68
+ .neklo-share-buttons .pinterest-circle.color-icon:before {
69
+ content: 'circlepinterest';
70
+ color: #e95655;
71
+ }
72
+
73
+ .neklo-share-buttons .google-circle:before {
74
+ content: 'circlegoogleplus';
75
+ }
76
+
77
+ .neklo-share-buttons .google-circle.color-icon:before {
78
+ content: 'circlegoogleplus';
79
+ color: #4b4b4b;
80
+ }
81
+
82
+ .neklo-share-buttons .reddit-circle:before {
83
+ content: 'circlereddit';
84
+ }
85
+
86
+ .neklo-share-buttons .reddit-circle.color-icon:before {
87
+ content: 'circlereddit';
88
+ color: #56acdd;
89
+ }
90
+
91
+ .neklo-share-buttons .delicious-circle:before {
92
+ content: 'circledelicious';
93
+ }
94
+
95
+ .neklo-share-buttons .delicious-circle.color-icon:before {
96
+ content: 'circledelicious';
97
+ color: #cccbcb;
98
+ }
99
+
100
+ .neklo-share-buttons .stumbleupon-circle:before {
101
+ content: 'circlestumbleupon';
102
+ }
103
+
104
+ .neklo-share-buttons .stumbleupon-circle.color-icon:before {
105
+ content: 'circlestumbleupon';
106
+ color: #9ecc91;
107
+ }
108
+
109
+ .neklo-share-buttons .digg-circle:before {
110
+ content: 'circledigg';
111
+ }
112
+
113
+ .neklo-share-buttons .digg-circle.color-icon:before {
114
+ content: 'circledigg';
115
+ color: #282828;
116
+ }
117
+
118
+ .neklo-share-buttons .facebook-square:before {
119
+ content: 'roundedfacebook';
120
+ }
121
+
122
+ .neklo-share-buttons .facebook-square.color-icon:before {
123
+ content: 'roundedfacebook';
124
+ color: #547bbc;
125
+ }
126
+
127
+ .neklo-share-buttons .twitter-square:before {
128
+ content: 'roundedtwitterbird';
129
+ }
130
+
131
+ .neklo-share-buttons .twitter-square.color-icon:before {
132
+ content: 'roundedtwitterbird';
133
+ color: #78cbef;
134
+ }
135
+
136
+ .neklo-share-buttons .pinterest-square:before {
137
+ content: 'roundedpinterest';
138
+ }
139
+
140
+ .neklo-share-buttons .pinterest-square.color-icon:before {
141
+ content: 'roundedpinterest';
142
+ color: #e95655;
143
+ }
144
+
145
+ .neklo-share-buttons .google-square:before {
146
+ content: 'roundedgoogleplus';
147
+ }
148
+
149
+ .neklo-share-buttons .google-square.color-icon:before {
150
+ content: 'roundedgoogleplus';
151
+ color: #4b4b4b;
152
+ }
153
+
154
+ .neklo-share-buttons .reddit-square:before {
155
+ content: 'roundedreddit';
156
+ }
157
+
158
+ .neklo-share-buttons .reddit-square.color-icon:before {
159
+ content: 'roundedreddit';
160
+ color: #56acdd;
161
+ }
162
+
163
+ .neklo-share-buttons .delicious-square:before {
164
+ content: 'roundeddelicious';
165
+ }
166
+
167
+ .neklo-share-buttons .delicious-square.color-icon:before {
168
+ content: 'roundeddelicious';
169
+ color: #cccbcb;
170
+ }
171
+
172
+ .neklo-share-buttons .stumbleupon-square:before {
173
+ content: 'roundedstumbleupon';
174
+ }
175
+
176
+ .neklo-share-buttons .stumbleupon-square.color-icon:before {
177
+ content: 'roundedstumbleupon';
178
+ color: #9ecc91;
179
+ }
180
+
181
+ .neklo-share-buttons .digg-square:before {
182
+ content: 'roundeddigg';
183
+ }
184
+
185
+ .neklo-share-buttons .digg-square.color-icon:before {
186
+ content: 'roundeddigg';
187
+ color: #282828;
188
+ }
189
+
190
+ .neklo-share-buttons .facebook-simple:before {
191
+ content: 'facebook';
192
+ }
193
+
194
+ .neklo-share-buttons .facebook-simple.color-icon:before {
195
+ content: 'facebook';
196
+ color: #547bbc;
197
+ }
198
+
199
+ .neklo-share-buttons .twitter-simple:before {
200
+ content: 'twitterbird';
201
+ }
202
+
203
+ .neklo-share-buttons .twitter-simple.color-icon:before {
204
+ content: 'twitterbird';
205
+ color: #78cbef;
206
+ }
207
+
208
+ .neklo-share-buttons .pinterest-simple:before {
209
+ content: 'pinterest';
210
+ }
211
+
212
+ .neklo-share-buttons .pinterest-simple.color-icon:before {
213
+ content: 'pinterest';
214
+ color: #e95655;
215
+ }
216
+
217
+ .neklo-share-buttons .google-simple:before {
218
+ content: 'googleplus';
219
+ }
220
+
221
+ .neklo-share-buttons .google-simple.color-icon:before {
222
+ content: 'googleplus';
223
+ color: #4b4b4b;
224
+ }
225
+
226
+ .neklo-share-buttons .reddit-simple:before {
227
+ content: 'reddit';
228
+ }
229
+
230
+ .neklo-share-buttons .reddit-simple.color-icon:before {
231
+ content: 'reddit';
232
+ color: #56acdd;
233
+ }
234
+
235
+ .neklo-share-buttons .delicious-simple:before {
236
+ content: 'delicious';
237
+ }
238
+
239
+ .neklo-share-buttons .delicious-simple.color-icon:before {
240
+ content: 'delicious';
241
+ color: #cccbcb;
242
+ }
243
+
244
+ .neklo-share-buttons .stumbleupon-simple:before {
245
+ content: 'stumbleupon';
246
+ }
247
+
248
+ .neklo-share-buttons .stumbleupon-simple.color-icon:before {
249
+ content: 'stumbleupon';
250
+ color: #9ecc91;
251
+ }
252
+
253
+ .neklo-share-buttons .digg-simple:before {
254
+ content: 'digg';
255
+ }
256
+
257
+ .neklo-share-buttons .digg-simple.color-icon:before {
258
+ content: 'digg';
259
+ color: #282828;
260
+ }
skin/frontend/base/default/neklo/sharebuttons/fonts/social-font.eot ADDED
Binary file
skin/frontend/base/default/neklo/sharebuttons/fonts/social-font.otf ADDED
Binary file
skin/frontend/base/default/neklo/sharebuttons/fonts/social-font.svg ADDED
@@ -0,0 +1,1013 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
+ <svg xmlns="http://www.w3.org/2000/svg">
4
+ <metadata>
5
+ Created by Ivan Drinchev. OFL license
6
+ This is a custom SVG font generated by IcoMoon.
7
+ <iconset grid="16"></iconset>
8
+ </metadata>
9
+ <defs>
10
+ <font id="MonoSocialIconsFont" horiz-adv-x="512" >
11
+ <font-face units-per-em="512" ascent="480" descent="-32" />
12
+ <missing-glyph horiz-adv-x="512" />
13
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x73;&#x74;&#x61;&#x63;&#x6b;&#x6f;&#x76;&#x65;&#x72;&#x66;&#x6c;&#x6f;&#x77;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 196,281l 81.5-66l 16.5,20l-81.5,66zM 166.5,225.5l 94-46l 11.5,23.5
14
+ l-94,46zM 149.5,165l 102-23.5l 6,25.5l-102,23.5zM 147,102l 104.5,0 l0,26.5 l-104.5,0 l0-26.5 zM 304,207l-26.5,0 l0-118 l-156.5,0 l0,118 l-26.5,0 l0-144 l 209.5,0 l0,144 zM 322.5,261.5l-64,82.5l-20.5-16l 64-82.5zM 356.5,280.5l-44,95l-23.5-11l 44-95z" horiz-adv-x="425" />
15
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x66;&#x69;&#x76;&#x65;&#x68;&#x75;&#x6e;&#x64;&#x72;&#x65;&#x64;&#x70;&#x78;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 302.5,154.5q 22,0 31.25,13.75t 9.25,31.75q0,18.5 -9.25,32t-31.25,13.5
16
+ q-11.5,0 -20-4.75t-14.5-10.25q-7-6.5 -12-15q-5,8.5 -11.5,15q-5.5,5.5 -14.25,10.25t-20.75,4.75t-19.5-4.25t-11.5-9.25q-5-6 -7-13.5q-2.5,6.5 -7.5,12q-4,4.5 -10.75,8.25t-16.75,3.75q-6.5,0 -11.25-1.5t-8.25-3q-4-2 -6.5-4.5l 6,27.5l 52,0 l0,24.5 l-69.5,0 l-14.5-73l 26,0 q 2,3.5 5,6q 2.5,2.5 6.25,4.25
17
+ t 9.25,1.75q 11,0 15.75-7.5t 4.75-17q0-9 -7.5-16.5t-16-7.5q-7,0 -10.75,2.75t-6.25,6.25q-2.5,4 -3.5,9l-26,0 q 2-11 7.5-20q 4.5-7.5 13-13.5t 23-6t 23.25,3.75t 14.25,8.25q 6,5.5 9,12.5q 2-7 7-12.5q 4-4.5 11.5-8.25t 19.5-3.75t 20.75,4t 14.25,9.5q 6.5,6 11.5,14q 5-8 12-14q 6-5.5 14.5-9.5
18
+ t 20-4zM 299.5,221.5q 11,0 17-6t 6-15.5q0-9 -6-15t-17-6q-5.5,0 -10.75,3.25t-9.25,7.25q-5,4.5 -9,10.5q 4,5.5 9,10.5q 4,4 9.25,7.5t 10.75,3.5zM 212.5,221.5q 5.5,0 10.75-3.5t 9.25-7.5q 5-5 9-10.5q-4-6 -9-10.5q-4-4 -9.25-7.25t-10.75-3.25q-11.5,0 -17.5,6t-6,15q0,9.5 6,15.5t 17.5,6z
19
+ " horiz-adv-x="425" />
20
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x73;&#x74;&#x61;&#x63;&#x6b;&#x6f;&#x76;&#x65;&#x72;&#x66;&#x6c;&#x6f;&#x77;" d="M 212.5,429q 43.5,0 81.5-16.5t 66.25-44.75t 44.75-66.25t 16.5-81.5t-16.5-81.5t-44.75-66.5t-66.25-45t-81.5-16.5t-81.5,16.5t-66.5,45t-45,66.5t-16.5,81.5t 16.5,81.5t 45,66.25t 66.5,44.75t 81.5,16.5zM 196,281l 81.5-66l 16.5,20l-81.5,66zM 166.5,225.5l 94-46l 11.5,23.5l-94,46zM 149.5,165l 102-23.5l 6,25.5
21
+ l-102,23.5zM 147,102l 104.5,0 l0,26.5 l-104.5,0 l0-26.5 zM 304,207l-26.5,0 l0-118 l-156.5,0 l0,118 l-26.5,0 l0-144 l 209.5,0 l0,144 zM 322.5,261.5l-64,82.5l-20.5-16l 64-82.5zM 356.5,280.5l-44,95l-23.5-11l 44-95z" horiz-adv-x="425" />
22
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x66;&#x69;&#x76;&#x65;&#x68;&#x75;&#x6e;&#x64;&#x72;&#x65;&#x64;&#x70;&#x78;" d="M 299,222.5q 11,0 17-6t 6-15.5q0-9 -6-15t-17-6q-5.5,0 -10.75,3.25t-9.25,7.25q-5,4.5 -9,10.5q 4,5.5 9,10.5q 4,4 9.25,7.5t 10.75,3.5zM 211.5,222.5q 5.5,0 10.75-3.5t 9.25-7.5q 5-5 9-10.5q-4-6 -9-10.5q-4-4 -9.25-7.25t-10.75-3.25q-11,0 -17,6t-6,15q0,9.5 6,15.5t 17,6z
23
+ M 212,430q 43.5,0 81.75-16.5t 66.75-45t 45-66.5t 16.5-81.5t-16.5-81.75t-45-66.75t-66.75-45t-81.75-16.5t-81.5,16.5t-66.5,45t-45,66.75t-16.5,81.75t 16.5,81.5t 45,66.5t 66.5,45t 81.5,16.5zM 302.5,155q 22,0 31.25,13.5t 9.25,32t-9.5,32.25t-31,13.75q-11,0 -19.5-5t-14.5-10.5q-7-6.5 -12.5-15
24
+ q-5,8.5 -11.5,15q-5.5,5.5 -14.5,10.5t-21,5t-19.5-4.25t-11.5-9.75q-5-6 -6.5-13.5q-3,6.5 -8,12q-4,4.5 -10.5,8.25t-16.5,3.75q-7,0 -11.75-1.5t-8.25-3q-4-2 -6.5-4.5l 6,27.5l 52.5,0 l0,24.5 l-70,0 l-14.5-73.5l 26,0 q 2,3.5 5,6q 2.5,2.5 6.25,4.5t 9.25,2q 11,0 15.75-7.75t 4.75-16.75t-7.25-16.75t-16.25-7.75
25
+ q-7,0 -10.5,2.75t-6,6.25q-2.5,4 -3.5,9.5l-26.5,0 q 2-11 7.5-20q 4.5-7.5 13.25-13.5t 23.25-6q 14,0 23,3.75t 14.5,8.25q 6,5.5 9,12q 1.5-6.5 6.5-12q 4-4.5 11.5-8.25t 19.5-3.75t 21,4t 14.5,9.5q 6.5,6 11.5,14q 5.5-8 12.5-14q 6-5.5 14.5-9.5t 19.5-4z" horiz-adv-x="425" />
26
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x66;&#x6f;&#x6f;&#x64;&#x73;&#x70;&#x6f;&#x74;&#x74;&#x69;&#x6e;&#x67;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 94.5,194l 26.5,0 l0,130.5 l-26.5,0 l0-130.5 zM 148,167.5l-48,0 l0-77 l 14.5,0 l0,32.5 l 29,0 l0,13.5 l-29,0
27
+ l0,18 l 33.5,0 l0,13 zM 201,97.5q 7.5,8 7.5,21q0,12.5 -7.5,21q-7.5,8 -18.5,8q-8,0 -13.5-3.5q-6.5-4 -9.5-10.5q-3-7 -3-14.5q0-9.5 3-16t 9.5-10.5q 8-3.5 13.5-3.5q 11,0 18.5,8.5zM 260.5,97.5q 7,8.5 7,21t-7,21q-7.5,8 -19,8q-8,0 -13.5-3.5q-6-4 -9-10.5q-3.5-8 -3.5-14.5q0-5 1-8.75t 2.5-7.25
28
+ q 3-6.5 9.5-10.5q 7-3.5 13-3.5q 11.5,0 19,8.5zM 324.5,167.5l-13.5,0 l0-27.5 q-6,7.5 -14.5,7.5q-9.5,0 -15.5-7.5q-6-7 -6-21.5t 6.5-21.5q 6-8 14.5-8q 4.5,0 8.5,2.5q 4,2 7.5,7l0-8 l 12.5,0 l0,77 zM 330,298.5q0,10.5 -7.75,18.25t-18.25,7.75l-26.5,0 l-13,26l-52,0 l-13.5-26l-26,0 q-11,0 -18.5-7.75t-7.5-18.25l0-78.5
29
+ q0-11 7.5-18.5t 18.5-7.5l 131,0 q 10.5,0 18.25,7.5t 7.75,18.5l0,78.5 zM 241.5,135.5q 5,0 9-4.5q 3.5-4 3.5-12.5q0-9 -3.5-13q-4-4.5 -9-4.5q-5.5,0 -8.5,4.5q-3.5,4 -3.5,13q0,8.5 3.5,12.5q 3,4.5 8.5,4.5zM 182.5,135.5q 4.5,0 8.5-4.5q 3.5-4 3.5-12.5q0-9 -3.5-13q-4-4.5 -8.5-4.5q-5.5,0 -9,4.5q-3.5,4 -3.5,13q0,8.5 3.5,12.5q 3.5,4.5 9,4.5z
30
+ M 300,136.5q 5,0 8-4.5t 3-14q0-8.5 -3-13q-4-4 -8-4q-6,0 -9,5.5q-2.5,5 -2.5,13t 3.5,12.5q 3,4.5 8,4.5zM 238.5,311.5q 11,0 20.5-4.25t 16.5-11.25t 11-16.5t 4-20.5q0-22 -15-37t-37-15q-11,0 -20.5,4t-16.75,11t-11.25,16.5t-4,20.5t 4,20.5t 11.25,16.5t 16.75,11.25t 20.5,4.25zM 238.5,233q 11,0 18.5,7.5t 7.5,18.5
31
+ t-7.5,18.75t-18.5,7.75t-18.5-7.75t-7.5-18.75t 7.5-18.5t 18.5-7.5z" horiz-adv-x="425" />
32
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x61;&#x70;&#x70;&#x73;&#x74;&#x6f;&#x72;&#x65;&#x61;&#x6c;&#x74;" d="M 212.5,337.5q 24,0 45.5-9.25t 37.5-25.25t 25.25-37.25t 9.25-45.75t-9.25-46t-25.25-37.5t-37.5-25.25t-45.5-9.25q-24.5,0 -46,9.25t-37.5,25.25t-25.25,37.5t-9.25,46t 9.25,45.75t 25.25,37.25t 37.5,25.25t 46,9.25zM 277.5,207l-39,0 l0,91.5 l-52.5,0 l0-91.5 l-39,0 l 65.5-65.5zM 317,429q 21.5,0 40.5-8.25t 33.25-22.5
33
+ t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 212.5,89q 27,0 50.75,10.25t 41.5,28t 28,41.75t 10.25,51t-10.25,50.75t-28,41.5t-41.5,28t-50.75,10.25
34
+ t-51-10.25t-41.75-28t-28-41.5t-10.25-50.75t 10.25-51t 28-41.75t 41.75-28t 51-10.25z" horiz-adv-x="425" />
35
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x66;&#x72;&#x69;&#x65;&#x6e;&#x64;&#x73;&#x66;&#x65;&#x65;&#x64;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 308.5,311l-34.5,0 q-13.5,0 -24.75-7.5t-18.25-19l0,26.5 l-34.5,0
36
+ q-10.5,0 -19.75-4.5t-16.25-12.5t-11-18.25t-4-22.25l0-22.5 l-38,0 l0-38 l 38,0 l0-91.5 l 38,0 l0,91.5 l 19,0 l 19,0 l 1.5,0 l0-91.5 l 38,0 l0,91.5 l 38,0 l0,38 l-38,0 l0,22.5 q0,8.5 4.25,13.75t 8.75,5.25l 34.5,0 l0,38.5 zM 226,272.5q-3-9 -3-19l0-22.5 l-1.5,0 l-19,0 l-19,0 l0,22.5 q0,8.5 4.25,13.75t 8.75,5.25l 29.5,0 z" horiz-adv-x="425" />
37
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x66;&#x6f;&#x6f;&#x64;&#x73;&#x70;&#x6f;&#x74;&#x74;&#x69;&#x6e;&#x67;" d="M 300,137q 4,0 8-4.5q 3-4.5 3-14q0-9 -3.5-13q-3-4 -7.5-4q-6,0 -9,5.5q-2.5,5 -2.5,13q0,9 3.5,12.5q 3,4.5 8,4.5zM 238.5,312q 10.5,0 20-4.25t 16.75-11.25t 11.25-16.5t 4-20.5t-4-20.5t-11.25-16.5t-16.75-11t-20-4q-11,0 -20.5,4t-16.75,11t-11.25,16.5t-4,20.5t 4,20.5t 11.25,16.5t 16.75,11.25t 20.5,4.25z
38
+ M 238.5,233.5q 11,0 18.5,7.5t 7.5,18.5t-7.5,18.75t-18.5,7.75t-18.75-7.75t-7.75-18.75t 7.75-18.5t 18.75-7.5zM 212,429.5q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.25t 16.5-81.5t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.5,16.5t-66.25,45t-44.75,66.5t-16.5,81.5t 16.5,81.5t 44.75,66.25t 66.25,44.75t 81.5,16.5zM 94.5,194.5
39
+ l 26,0 l0,130.5 l-26,0 l0-130.5 zM 148,168l-48,0 l0-77 l 14,0 l0,32.5 l 29,0 l0,13.5 l-29,0 l0,18 l 34,0 l0,13 zM 201,98q 7,7.5 7,21t-7,21q-7.5,8 -19,8q-8,0 -13.5-3.5q-6-4 -9-10.5q-3.5-8 -3.5-14.5q0-8 3.5-16q 3-6.5 9.5-10.5q 7-3.5 13.5-3.5q 11,0 18.5,8.5zM 260,98q 7.5,8 7.5,21q0,12.5 -7.5,21q-6.5,8 -18.5,8q-8,0 -13.5-3.5
40
+ q-6-4 -9-10.5q-3.5-6.5 -3.5-14.5q0-9.5 3.5-16q 3-7 9.5-10.5q 7-3.5 13-3.5q 11.5,0 18.5,8.5zM 324,168l-13,0 l0-27.5 q-6,7.5 -14.5,7.5q-9.5,0 -15.5-7.5q-6-7 -6-21.5q0-14 6-21.5q 7-8 15-8q 4.5,0 8.5,2.5q 4,2 7.5,7l0-8 l 12,0 l0,77 zM 330,299q0,10.5 -7.75,18.25t-18.75,7.75l-26,0 l-13,26l-52.5,0
41
+ l-13-26l-26,0 q-11,0 -18.5-7.75t-7.5-18.25l0-78.5 q0-11 7.5-18.5t 18.5-7.5l 130.5,0 q 11,0 18.75,7.5t 7.75,18.5l0,78.5 zM 182,136q 5,0 9-4.5q 3.5-4 3.5-12.5q0-9 -3.5-13q-4-4.5 -9-4.5t-8.5,4.5q-3.5,4 -3.5,13q0,8.5 3.5,12.5q 3.5,4.5 8.5,4.5zM 241.5,136q 5,0 9-4.5q 3.5-5.5 3.5-12.5q0-8 -3.5-13q-4-4.5 -9-4.5
42
+ q-5.5,0 -8.5,4.5q-4,5 -4,13q0,7.5 4,12.5q 3,4.5 8.5,4.5z" horiz-adv-x="425" />
43
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x67;&#x72;&#x6f;&#x6f;&#x76;&#x65;&#x73;&#x68;&#x61;&#x72;&#x6b;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 212.5,89q 27,0 50.75,10.25t 41.5,28t 28,41.75t 10.25,51t-10.25,50.75
44
+ t-28,41.5t-41.5,28t-50.75,10.25t-51-10.25t-41.75-28t-28-41.5t-10.25-50.75t 10.25-51t 28-41.75t 41.75-28t 51-10.25zM 212.5,337.5q 24,0 45.5-9.25t 37.5-25.25t 25.25-37.25t 9.25-45.75q0-14.5 -3.5-28.25t-10-25.75q-9,6 -17.75,16.75t-16.5,21.75t-14,20.75t-9.75,13.75q-19,21 -37.75,35
45
+ t-46.25,22q-0.5-14.5 0-28.75t-0.75-27.5t-5.75-25t-14.5-20.75q-4.5-4 -11-7t-13.5-5t-14-2.75t-13-0.25q-3.5,10 -5.5,20t-2,21q0,24.5 9.25,45.75t 25.25,37.25t 37.5,25.25t 46,9.25z" horiz-adv-x="425" />
46
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x70;&#x68;&#x6f;&#x74;&#x6f;&#x62;&#x75;&#x63;&#x6b;&#x65;&#x74;" d="M 255.5,285.5q 16-11 25.5-28t 9.5-37.5q0-21 -9.5-38t-25.5-27.5q-3-2.5 -9-5q-0.5-0.5 -0.75-0.5t-0.75-0.5q-2.5-1 -4.75-1.75t-4.75-1.75l-0.5,0 q-5.5-2 -9.5-2.5l-2.5,0 q-2.5-1 -5.25-1l-5.25,0 l-5.75,0 t-5.25,1l-2.5,0 q-4,0.5 -9.5,2.5l-0.5,0 q-2.5,1 -4.75,1.75t-4.75,1.75q-0.5,0.5 -0.75,0.5t-0.75,0.5q-4,2 -9,5
47
+ q-16,10.5 -25.5,27.5t-9.5,38q0,20.5 9.5,37.5t 25.5,28q 2.5,1 4.5,2.25t 4.5,2.75q 0.5,0 0.75,0.25t 0.75,0.25q 5,2.5 9.5,4l 0.5,0 q 2.5,1 4.75,1.25t 4.75,0.75q 1,0.5 2.5,0.5q 2.5,0.5 5.25,0.75t 5.75,0.25q 2.5,0 5.25-0.25t 5.25-0.75q 1.5,0 2.5-0.5q 2.5-0.5 4.75-0.75t 4.75-1.25l 0.5,0 q 4.5-1.5 9.5-4q 0.5,0 0.75-0.25t 0.75-0.25q 2.5-1.5 4.75-2.75t 4.25-2.25z
48
+ M 277.5,220q0,13.5 -5,25.5t-14,20.75t-20.75,14t-25.25,5.25l0-13.5 q 10.5,0 20-4t 16.75-11t 11.25-16.5t 4-20.5l 13,0 zM 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209
49
+ q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 343,285.5q0,5.5 -3.75,9.25t-9.25,3.75l-71,0 q-10,6 -21.75,9.5t-24.75,3.5t-25-3.5t-22-9.5l-5.5,0 l-13,0 q0,5.5 -3.75,9.25t-9.25,3.75l-26.5,0 q-5.5,0 -9.25-3.75t-3.75-9.25q-5.5,0 -9.25-3.75t-3.75-9.25l0-131 q0-5.5 3.75-9.25t 9.25-3.75l 71,0
50
+ q 20.5-13 47-13q 26,0 46.5,13l 18.5,0 l 13,0 l 39.5,0 q 5.5,0 9.25,3.75t 3.75,9.25l0,131 zM 148.5,285.5q-13-13 -20.25-29.75t-7.25-35.75t 7.25-36t 20.25-29.5l-41,0 l-13,0 l0,131 l 13,0 l 26.5,0 l 13,0 l 1.5,0 zM 317,285.5l 13,0 l0-131 l-13,0 l-26.5,0 l-3.5,0 l-5.5,0 l-4,0 l-1.5,0 q 13,12.5 20.5,29.5t 7.5,36t-7.5,35.75t-20.5,29.75l 5.5,0 l 35.5,0 z" horiz-adv-x="425" />
51
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x64;&#x65;&#x73;&#x69;&#x67;&#x6e;&#x66;&#x6c;&#x6f;&#x61;&#x74;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 212.5,102q 24,0 45.5,9.25t 37.5,25.25t 25.25,37.5t 9.25,46t-9.25,45.75
52
+ t-25.25,37.25t-37.5,25.25t-45.5,9.25q-24.5,0 -46-9.25t-37.5-25.25t-25.25-37.25t-9.25-45.75t 9.25-46t 25.25-37.5t 37.5-25.25t 46-9.25zM 212.5,261.5q 17.5,0 29.5-12t 12-29.5t-12-29.75t-29.5-12.25q-9,0 -16.5,3.25t-13.25,9t-9,13.5t-3.25,16.25t 3.25,16t 9,13.25t 13.25,9t 16.5,3.25zM 212.5,326
53
+ q 21.5,0 40.75-8.25t 33.75-22.75t 22.75-33.75t 8.25-41.25t-8.25-41.25t-22.75-33.75t-33.75-22.75t-40.75-8.25q-22,0 -41.25,8.25t-33.75,22.75t-22.75,33.75t-8.25,41.25t 8.25,41.25t 22.75,33.75t 33.75,22.75t 41.25,8.25zM 186,309.5q-29.5-6.5 -43.25-27t-19.75-49.5l 25.5,0 q 5.5,19.5 16.5,32.25t 21,18.25l0,26 z
54
+ M 186,156.5q-5,2.5 -10.5,5t-10.5,6.25t-9.5,10t-7,16.25l-25.5,0 q 3-15 7.75-25.5t 12.25-18t 18-12.25t 25-7.75l0,26 zM 158.5,220q0-11 4.25-20.75t 11.5-17t 17-11.5t 21.25-4.25q 11,0 20.75,4.25t 17,11.5t 11.5,17t 4.25,20.75t-4.25,20.75t-11.5,17t-17,11.5t-20.75,4.25q-11.5,0 -21.25-4.25t-17-11.5t-11.5-17
55
+ t-4.25-20.75zM 225.5,130.5q 14.5,3 27.25,7.75t 22.5,12.25t 16.75,18t 10,25.5l-26,0 q-2.5-10 -7.25-16.25t-11-10t-14.5-6.25t-17.75-5l0-26 zM 302,233q-6.5,29.5 -26.75,49.75t-49.75,26.75l0-26 q 40-10.5 50.5-50.5l 26,0 z" horiz-adv-x="425" />
56
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x73;&#x74;&#x75;&#x6d;&#x62;&#x6c;&#x65;&#x75;&#x70;&#x6f;&#x6e;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 343,311.5l-39,0 l0-131 q-1-3 -5.25-7.5t-6.75-5.5l-17,0
57
+ q-2.5,0.5 -6.25,4.5t-4.25,6.5l0,60.5 q0,5 -1.5,13t-6.75,15.5t-15.25,12.75t-27,5.25l-73,0 q-9.5,0 -17.5-4.75t-13.75-12t-9-15.75t-3.25-16q0-8.5 3.25-14.75t 7.75-11.25t 9.75-8.5t 9.25-6l 32.5-12.5q 4-3 6.5-7.25t 3.5-6.75q-1-1 -2-1.75t-2.5-0.75l-84,0 l0-39 l 84,0 q 9,0 16.75,3.25t 13.75,9t 9.5,13
58
+ t 3.5,15.25q0,13 -8.5,27.25t-21.5,21.75l-32.5,13q-4.5,2.5 -6.5,4.25t-3,2.75q 1,2.5 2.5,4.75t 2.5,3.25l 72,0 q 5.5,0 8.5-1q 1.5-0.5 2-0.5q0-0.5 0.5-1.75t 0.5-3.75l0-60.5 q0-9 4.25-18t 11.5-16.25t 16-11.5t 17.75-4.25l 17,0 q 9,0 18,4.75t 16.5,12t 12,16.5t 4.5,18.25l0,131.5 z" horiz-adv-x="425" />
59
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x74;&#x77;&#x69;&#x74;&#x74;&#x65;&#x72;&#x62;&#x69;&#x72;&#x64;" d="M 317,429.5q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 312,272q 14.5,10 25.5,26q-7-3 -14.25-5t-14.75-3q 16.5,10.5 22,28.5
60
+ q-15-9.5 -32-12.5q-15,16 -37.5,16q-10.5,0 -19.75-4t-16-11t-10.75-16.25t-4-19.75q0-3 0.25-5.75t 0.75-5.75q-31.5,1.5 -58.5,15.75t-46,37.25q-7-11.5 -7-25.5q0-13 6.25-24t 16.25-18q-6,0 -11.75,1.75t-11.25,4.25l0-0.5 q0-18.5 11.75-32.25t 29.25-17.75q-7-1.5 -13.5-1.5l-4.75,0 t-4.75,1
61
+ q 5-15.5 17.75-25.25t 29.75-10.25q-13-10 -29.25-16t-33.75-6q-3.5,0 -6.5,0.25t-6,0.75q 17-11 36.75-17t 41.25-6q 35,0 62,13.25t 45.25,34t 27.75,46.5t 9.5,51.25l0,6.5 z" horiz-adv-x="425" />
62
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x74;&#x77;&#x69;&#x74;&#x74;&#x65;&#x72;&#x62;&#x69;&#x72;&#x64;" d="M 212,429.5q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.25t 16.5-81.5t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.5,16.5t-66.25,45t-44.75,66.5t-16.5,81.5t 16.5,81.5t 44.75,66.25t 66.25,44.75t 81.5,16.5zM 316,265.5q 14.5,11 25.5,26.5q-7-3 -14.25-5t-15.25-3q 8,5 14,12.25t 8.5,15.75q-7.5-4 -15.5-7.25
63
+ t-16.5-4.75q-7,7 -16.5,11.5t-21,4.5q-10.5,0 -19.75-4t-16-11t-10.75-16.25t-4-19.75q0-3 0.25-6t 0.75-5.5q-31.5,1.5 -58.5,15.5t-46,37.5q-7-11.5 -7-25.5q0-13 6.25-24.25t 16.25-18.25q-13,1 -23,6.5l0-0.5 q0-19 11.75-32.75t 29.25-17.25q-3.5-1 -6.75-1.5t-6.75-0.5q-2.5,0 -4.75,0.25t-4.75,0.75
64
+ q 5-15 17.75-25t 29.75-10q-13-10.5 -29.25-16.25t-33.75-5.75q-3.5,0 -6.5,0.25t-6,0.75q 17-11 36.75-17t 41.25-6q 35,0 62,13.25t 45.25,34t 27.75,46.5t 9.5,50.75l0,6.5 z" horiz-adv-x="425" />
65
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x73;&#x74;&#x75;&#x6d;&#x62;&#x6c;&#x65;&#x75;&#x70;&#x6f;&#x6e;" d="M 212.5,429q 43.5,0 81.5-16.5t 66.25-44.75t 44.75-66.25t 16.5-81.5t-16.5-81.5t-44.75-66.5t-66.25-45t-81.5-16.5t-81.5,16.5t-66.5,45t-45,66.5t-16.5,81.5t 16.5,81.5t 45,66.25t 66.5,44.75t 81.5,16.5zM 343,311.5l-39,0 l0-131 q-1-3 -5.25-7.5t-6.75-5.5l-17,0 q-2.5,0.5 -6.25,4.5t-4.25,6.5l0,60.5 q0,5 -1.5,13t-6.75,15.5
66
+ t-15.25,12.75t-27,5.25l-73,0 q-9.5,0 -17.5-4.75t-13.75-12t-9-15.75t-3.25-16q0-8.5 3.25-14.75t 7.75-11.25t 9.75-8.5t 9.25-6l 32.5-12.5q 4-3 6.5-7.25t 3.5-6.75q-1-1 -2-1.75t-2.5-0.75l-84,0 l0-39 l 84,0 q 9,0 16.75,3.25t 13.75,9t 9.5,13t 3.5,15.25q0,13 -8.5,27.25t-21.5,21.75l-32.5,13
67
+ q-4.5,2.5 -6.5,4.25t-3,2.75q 1,2.5 2.5,4.75t 2.5,3.25l 72,0 q 5.5,0 8.5-1q 1.5-0.5 2-0.5q0-0.5 0.5-1.75t 0.5-3.75l0-60.5 q0-9 4.25-18t 11.5-16.25t 16-11.5t 17.75-4.25l 17,0 q 9,0 18,4.75t 16.5,12t 12,16.5t 4.5,18.25l0,131.5 z" horiz-adv-x="425" />
68
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x66;&#x72;&#x69;&#x65;&#x6e;&#x64;&#x73;&#x74;&#x61;&#x72;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 242,252.5q0-4 0.25-9.5t 1.25-11t 2.75-10t 4.25-7q 2-2.5 5-2.5l 0.5,0
69
+ q 17.5,0 17.5,28.5q0,6.5 -1.75,12.5t-4.25,11t-6,8t-7,3l-1,0 q-10-1.5 -11.5-23zM 198,246.5q-2.5-8 -1-17t 5.5-15q 1.5-2.5 4-4.75t 6.5-2.75l 2,0 q 8.5,0 12.5,8t 4.5,18q0,7.5 -3,14.25t-7,10.75q-3.5,4 -8,4q-3.5,0 -7.75-2t-8.25-13.5zM 328.5,209.5q 2.5,14 1,25t-6,16q-4,4.5 -9,4.5l-1.5,0 q-11.5-1 -15-9.25
70
+ t-6.5-24.25q-1.5-7.5 -4.5-18.75t-9.75-21.5t-18-17.25t-28.25-6q-18.5,1 -27.5,6.5t-13.25,13t-5.5,16t-4.25,16q-1,2.5 -1.5,4.5t-1.5,4q-2.5,6 -7,12.75t-11,12.75t-14.5,10t-17.5,4l-33,0 l0-24.5 l 24,0 q 5.5,0 13.75-7.25t 10.75-19.75q 8.5-38.5 29.25-58t 52.25-19.5l 2.5,0 q 25,0.5 43.5,9.75t 30.75,22t 19,26.5t 8.25,22.75z" horiz-adv-x="425" />
71
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x70;&#x68;&#x6f;&#x74;&#x6f;&#x62;&#x75;&#x63;&#x6b;&#x65;&#x74;" d="M 316.5,286.5l 13.5,0 l0-131 l-13.5,0 l-26,0 l-3.5,0 l-6,0 l-3.5,0 l-1.5,0 q 13,12.5 20.25,29.5t 7.25,36t-7.25,35.75t-20.25,29.75l 5,0 l 35.5,0 zM 148.5,286.5q-13-13 -20.5-29.75t-7.5-35.75t 7.5-36t 20.5-29.5l-41,0 l-13,0 l0,131 l 13,0 l 26,0 l 13.5,0 l 1.5,0 zM 255.5,286.5q 16-11 25.5-28t 9.5-37.5q0-21 -9.5-38t-25.5-27.5q-2.5-1.5 -4.5-2.75t-4.5-2.25q-0.5-0.5 -0.75-0.5
72
+ t-0.75-0.5q-4.5-2 -10-3.5q-5.5-2 -10-2.5l-2.5,0 q-2.5-0.5 -5.25-0.75t-5.25-0.25t-5.25,0.25t-5.25,0.75l-2.5,0 q-4,0.5 -9.5,2.5l-0.5,0 q-2.5,1 -4.75,1.75t-4.75,1.75l-2,1q-2.5,1 -4.5,2.25t-4,2.75q-16,10.5 -25.75,27.5t-9.75,38q0,20.5 9.75,37.5t 25.75,28q 2,1 4,2.25t 4.5,2.75q 1,0 1.25,0.25t 0.75,0.25q 5,2.5 9.5,4l 0.5,0 q 3.5,1 9.5,2
73
+ q 1,0.5 2.5,0.5q 2.5,0.5 5.25,0.75t 5.25,0.25t 5.25-0.25t 5.25-0.75q 2,0 2.5-0.5q 2.5-0.5 5-0.75t 5-1.25l 5-2l 5-2q 0.5,0 0.75-0.25t 0.75-0.25q 2.5-1.5 4.5-2.75t 4.5-2.25zM 277.5,221q0,13.5 -5.25,25.5t-14,20.75t-20.75,14t-25.5,5.25l0-13.5 q 11,0 20.5-4t 16.5-11t 11.25-16.5t 4.25-20.5l 13,0 zM 212,430q 43.5,0 81.5-16.5
74
+ t 66.5-44.75t 45-66.25t 16.5-81.5t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.5,16.5t-66.25,45t-44.75,66.5t-16.5,81.5t 16.5,81.5t 44.75,66.25t 66.25,44.75t 81.5,16.5zM 343,286.5q0,5.5 -3.75,9.25t-9.25,3.75l-71,0 q-10,6 -22,9.5t-25,3.5t-24.75-3.5t-21.75-9.5l-5.5,0 l-13,0 q0,5.5 -4,9.25t-9.5,3.75l-26,0
75
+ q-5.5,0 -9.25-3.75t-3.75-9.25q-5.5,0 -9.25-3.75t-3.75-9.25l0-131 q0-5.5 3.75-9.25t 9.25-3.75l 71,0 q 20.5-13 46.5-13q 26.5,0 47,13l 18.5,0 l 13,0 l 39.5,0 q 5.5,0 9.25,3.75t 3.75,9.25l0,131 z" horiz-adv-x="425" />
76
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x66;&#x72;&#x69;&#x65;&#x6e;&#x64;&#x73;&#x66;&#x65;&#x65;&#x64;" d="M 212,430q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.25t 16.5-81.5t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.5,16.5t-66.25,45t-44.75,66.5t-16.5,81.5t 16.5,81.5t 44.75,66.25t 66.25,44.75t 81.5,16.5zM 308.5,312l-34.5,0 q-13.5,0 -24.75-7.5t-18.25-19l0,26.5 l-34.5,0 q-10.5,0 -19.75-4.5t-16.25-12.5t-11-18.25t-4-22.25l0-22.5
77
+ l-38,0 l0-38 l 38,0 l0-91.5 l 38,0 l0,91.5 l 19,0 l 19,0 l 1,0 l0-91.5 l 38,0 l0,91.5 l 38,0 l0,38 l-38,0 l0,22.5 q0,8.5 4.25,13.75t 9.25,5.25l 34.5,0 l0,38.5 zM 226,273.5q-1.5-4.5 -2.5-9t-1-10l0-22.5 l-1,0 l-19,0 l-19,0 l0,22.5 q0,8.5 4.25,13.75t 8.75,5.25l 29.5,0 z" horiz-adv-x="425" />
78
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x66;&#x65;&#x65;&#x64;&#x62;&#x75;&#x72;&#x6e;&#x65;&#x72;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 191.5,348q-12-8.5 -23.25-23.75t-20.25-34t-14.5-38.75t-5.5-37.5
79
+ q0-24.5 6.25-44.25t 16.75-33.75t 25-21.75t 31.5-7.75q 16.5,0 32,7.25t 27.75,19.25t 19.75,27t 7.5,31q0,18 -4.5,31t-11.75,22.5t-16.75,16.5t-20,13q 3-16 0.25-28.25t-10-20.25t-17.5-11t-22.25,0.5q 11.5,19.5 14.5,32.75t 1.25,23.5t-6.25,18.25t-8.5,16.5t-5.25,18.25t 3.75,23.75zM 212.5,91.5q 24,0 45.5,4t 37.5,11t 25.25,16.25
80
+ t 9.25,19.75q0,9.5 -7,17.5t-19.5,15q-4.5-14 -14.25-26.5t-22.5-22t-28-15t-31.25-5.5q-30,0.5 -52,18.75t-32,51.25q-13.5-7 -21.25-15.25t-7.75-18.25q0-10.5 9.25-19.75t 25.25-16.25t 37.5-11t 46-4zM 207.5,123.5q-17-0.5 -31.25,8t-21.5,24t-5.25,37.25t 18,48.25q-3.5-15 -1.25-28t 8-22.5
81
+ t 13.75-14.75t 16.5-5.25q 19-0.5 30.75,15.75t 17.25,39.75q 15.5-12 19.75-29.25t-1.75-33.5t-21.75-27.75t-41.25-12z" horiz-adv-x="425" />
82
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x64;&#x65;&#x73;&#x69;&#x67;&#x6e;&#x66;&#x6c;&#x6f;&#x61;&#x74;" d="M 212.5,263q 17.5,0 29.5-12.25t 12-29.75t-12-29.5t-29.5-12t-29.75,12t-12.25,29.5t 12.25,29.75t 29.75,12.25zM 212.5,327q 22,0 41.25-8.25t 33.75-22.75t 22.75-33.75t 8.25-41.25t-8.25-41.25t-22.75-33.75t-33.75-22.75t-41.25-8.25t-41.25,8.25t-33.75,22.75t-22.75,33.75t-8.25,41.25t 8.25,41.25
83
+ t 22.75,33.75t 33.75,22.75t 41.25,8.25zM 186.5,310.5q-29.5-6 -43.5-26.5t-20-50l 26,0 q 5,20 16.25,32.75t 21.25,18.25l0,25.5 zM 186.5,157.5q-5,2.5 -10.5,5t-10.75,6.5t-9.5,10t-6.75,16l-26,0 q 6-29.5 20-43.5t 43.5-20l0,26 zM 158.5,221q0-11 4.5-20.75t 11.75-17t 17-11.5t 20.75-4.25t 20.75,4.25t 17,11.5t 11.5,17t 4.25,20.75
84
+ t-4.25,21t-11.5,17.25t-17,11.5t-20.75,4.25t-20.75-4.25t-17-11.5t-11.75-17.25t-4.5-21zM 225.5,131.5q 14.5,3 27.25,7.75t 22.75,12.25t 16.75,18t 9.75,25.5l-26,0 q-2.5-10 -7-16t-11-10t-14.75-6.5t-17.75-5l0-26 zM 302,234q-6,30 -26.5,50.25t-50,26.25l0-25.5 q 19.5-5.5 32.5-18.25t 18-32.75l 26,0 zM 212.5,430.5
85
+ q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.5t 16.5-81.75t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.5,16.5t-66.5,45t-45,66.5t-16.5,81.5t 16.5,81.75t 45,66.5t 66.5,44.75t 81.5,16.5zM 212.5,103.5q 24.5,0 45.75,9.25t 37.25,25.25t 25.25,37.25t 9.25,45.75t-9.25,46t-25.25,37.5t-37.25,25.25t-45.75,9.25t-46-9.25t-37.5-25.25
86
+ t-25.25-37.5t-9.25-46t 9.25-45.75t 25.25-37.25t 37.5-25.25t 46-9.25z" horiz-adv-x="425" />
87
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x67;&#x6f;&#x6f;&#x67;&#x6c;&#x65;&#x74;&#x61;&#x6c;&#x6b;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 198,313.5q 19-2.5 35.5-9.5t 28.5-17.75t 18.75-24.5t 6.75-28.75
88
+ q0-19 -10.25-35t-27.75-27.5q 25.5,9.5 41,27.25t 15.5,39.75q0,15.5 -8.25,29.5t-22.5,24.25t-33.25,16.25t-40.5,6l-3.5,0 zM 272,160q 31.5,11.5 51.25,33.75t 19.75,49.75q0,19.5 -10.25,36.5t-28,29.75t-41.5,20.25t-50.75,7.5t-51-8t-41.75-21.25t-28-31t-10.25-37.25q0-17 8-32t 20.75-27t 28.75-20.5t 31.5-12
89
+ q-3.5-10.5 -11.75-23.5t-22.25-22q 23-2.5 43.5,2q 17.5,3.5 36.25,14.75t 30.25,34.75q-7-9 -18-17q-9.5-7 -24-13t-35-8q 6,8 10.5,15.5t 7.5,13q 3.5,6.5 6.5,12.5q-30,7 -54.5,22.25t-34.5,37.25q-1.5,5 -2.5,10t-1,10.5q0,18.5 8.25,34.5t 22.75,27.75t 35,18.25t 44.5,6.5q 24.5,0 45-6.25t 35.25-17.5t 23-26.75t 8.25-34.5
90
+ q0-25.5 -12.75-46.5t-38.75-33z" horiz-adv-x="425" />
91
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x73;&#x6c;&#x69;&#x64;&#x65;&#x73;&#x68;&#x61;&#x72;&#x65;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 252,298.5q-11.5,0 -19.75-8.5t-8.25-21q0-12 8.25-20.5t 19.75-8.5
92
+ t 19.75,8.5t 8.25,20.5q0,12.5 -8.25,21t-19.75,8.5zM 175.5,298.5q-11.5,0 -19.75-8.5t-8.25-21q0-12 8.25-20.5t 19.75-8.5t 19.75,8.5t 8.25,20.5q0,12.5 -8.25,21t-19.75,8.5zM 339,236.5q 4,8 3.75,11t-0.75,4q0,1 -1.5,1q-3.5,0 -8.5-5.5q-3-4 -10.75-8t-16.25-7.25t-16-5.5t-9.5-2.25l-41.5,0 q-7.5,0 -15.5-2
93
+ t-8-6l0-7 q-1.5,1 -3,2.5q-4.5,4.5 -10,7.75t-14,3.25l-1.5,0 l-4,0 q-11,0 -27,1.5t-27,4q-6,1.5 -13.25,5.75t-14.25,8.75q-6,3.5 -10.75,6.25t-7.25,2.75q-0.5,0 -0.5-0.5q-1.5-4 0.5-7.75t 7.5-10.75l 2.5-2.5q 3-4 10.75-8.75t 15.5-8.75t 14-6.5l 6.25-2.5l 0.5-0.5l0-47 q0-5 4.5-11t 10.75-11t 13.25-8.25t 12-3.25
94
+ q 10,0 17,5.5t 7,10.5l0,45 l 1.5-1q 3.5-2.5 9-3l0-41 q0-2.5 1.75-6.25t 6-7.5t 11.5-6.5t 17.75-2.75t 17.5,5.5t 11,12.75t 5.5,13.75t 1.5,8.5l0,43.5 l 0.5,0.5q 3.5,2 6.75,3.5t 6.75,3q 11.5,5.5 21.75,12t 16.25,18z" horiz-adv-x="425" />
95
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x67;&#x6f;&#x77;&#x61;&#x6c;&#x6c;&#x61;&#x70;&#x69;&#x6e;" d="M 212.5,318q 13,0 24.5-5t 20-13.5t 13.5-20t 5-24.5t-5-24.5t-13.5-20t-20-13.5t-24.5-5t-24.75,5t-20.25,13.5t-13.5,20t-5,24.5t 5,24.5t 13.5,20t 20.25,13.5t 24.75,5zM 212.5,220q 14.5,0 24.5,10.25t 10,24.75t-10,24.75t-24.5,10.25t-24.75-10.25t-10.25-24.75t 10.25-24.75t 24.75-10.25zM 317,429q 21.5,0 40.5-8.25
96
+ t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 230.5,172.5q 14,3 26.25,10.75t 21,18.75t 13.75,24.5t 5,28.5q0,17.5 -6.5,32.75t-18,26.75t-26.75,18.25
97
+ t-32.75,6.75t-33-6.75t-27-18.25t-18-26.75t-6.5-32.75q0-15 5-28.5t 13.75-24.5t 20.75-18.75t 26.5-10.75l 18.5-72z" horiz-adv-x="425" />
98
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x64;&#x65;&#x76;&#x69;&#x61;&#x6e;&#x74;&#x61;&#x72;&#x74;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 346,218q-12.5,16.5 -34,28q-18.5,10 -48.25,15.5t-73.75-2l-2,0 l-11,23
99
+ l-33.5-4l 13.5-28q-13.5-5.5 -22.25-12.5t-14-15t-7.5-16.25t-2.75-16.25q-1-18.5 7-38l 108,31l-29.5,60q 20,5.5 37.5,4t 31-6q 15.5-5.5 29-14l-36.5-9.5l-10.5,19.5q-7.5,1 -16,1.5t-17.5-1l 25-51zM 146.5,188q-3,7 -1.5,14q 1,6 5.5,13.5t 16,15l 16-32.5z" horiz-adv-x="425" />
100
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x61;&#x70;&#x70;&#x73;&#x74;&#x6f;&#x72;&#x65;&#x61;&#x6c;&#x74;" d="M 212,339q 24.5,0 46-9.25t 37.5-25.25t 25.25-37.5t 9.25-46t-9.25-45.75t-25.25-37.25t-37.5-25.25t-46-9.25t-45.75,9.25t-37.25,25.25t-25.25,37.25t-9.25,45.75t 9.25,46t 25.25,37.5t 37.25,25.25t 45.75,9.25zM 277.5,208l-39,0 l0,91.5 l-52.5,0 l0-91.5 l-39,0 l 65-65.5zM 212,430.5q 43.5,0 81.5-16.5t 66.5-45t 45-66.5
101
+ t 16.5-81.5t-16.5-81.5t-45-66.25t-66.5-44.75t-81.5-16.5t-81.5,16.5t-66.25,44.75t-44.75,66.25t-16.5,81.5t 16.5,81.5t 44.75,66.5t 66.25,45t 81.5,16.5zM 212,90.5q 27,0 51,10.25t 41.75,28t 28,41.5t 10.25,50.75t-10.25,51t-28,41.75t-41.75,28t-51,10.25t-50.75-10.25t-41.5-28t-28-41.75t-10.25-51
102
+ t 10.25-50.75t 28-41.5t 41.5-28t 50.75-10.25z" horiz-adv-x="425" />
103
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x73;&#x6f;&#x75;&#x6e;&#x64;&#x63;&#x6c;&#x6f;&#x75;&#x64;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 93,216q-10.5-9 -10.5-22q0-13.5 10.5-21.5l0,43.5 zM 114.5,222.5l-2.5,0
104
+ q-2.5,0 -4.25-0.25t-4.25-0.75l0-55 q 2.5-0.5 4.25-0.75t 4.25-0.25l 2.5,0 l0,57 zM 136.5,237.5q-6.5-8 -9-19.5q-0.5,0.5 -1,0.75t-1,0.75l0-54 l 11,0 l0,72 zM 158,253q-3-1 -5.75-2.5t-5.25-3l0-82 l 11,0 l0,87.5 zM 180,254.5q-2,0.5 -3.5,0.75t-3.5,0.25q-1,0 -2-0.25t-2-0.25l0-89.5 l 11,0 l0,89 zM 201.5,255.5q-1-2 -2.5-3.5t-2.5-3
105
+ q-5.5,3 -11,4.5l0-88 l 16,0 l0,90 zM 310.5,165.5q 16,1 23.75,10t 7.75,21.5q0,13 -8.75,22t-22.25,9q-5.5,0 -12-2.5q-2.5,20.5 -18,34.75t-37,14.25q-11,0 -20.25-3.75t-16.75-10.25l0-95 l 103.5,0 z" horiz-adv-x="425" />
106
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x64;&#x65;&#x73;&#x69;&#x67;&#x6e;&#x62;&#x75;&#x6d;&#x70;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 173,285.5l 26,0 l0-26.5 l 52.5-52l-52.5,0 l0-52.5 l 52.5,52.5l0,78.5 l 26,0 l-52,52
107
+ zM 186,220l 26.5,0 l-52.5,52l-52.5-52l 26.5,0 l0-118 l 52,0 l0,118 zM 225.5,128.5l-26.5,0 l0-26.5 l 26.5,0 l0,26.5 zM 317,141.5l-52.5,52.5l-52-52.5l 26,0 l0-39.5 l 52,0 l0,39.5 l 26.5,0 z" horiz-adv-x="425" />
108
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x67;&#x6f;&#x6f;&#x67;&#x6c;&#x65;&#x62;&#x75;&#x7a;&#x7a;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 212.5,324.5q-31.5,0 -58.25-12t-42.75-33l 67-64l 100.5,92.5
109
+ q-14.5,8 -31.75,12.25t-34.75,4.25zM 94.5,231.5q0-37 32.5-63.5l 41.5,38.5l-64.5,61q-9.5-17.5 -9.5-36zM 212.5,138.5q 44.5,0 78.5,24l-74,70l-82-76l-0.5-1q-3.5-7 -8.25-14t-11.25-11.5q 3-0.5 7-1t 9.5-0.5q 24,0 43,13l 3,1.5l 2.5-0.5q 17-4 32.5-4zM 301.5,171q 28.5,26 28.5,60.5q0,20 -10,38t-29,31
110
+ l-63.5-59z" horiz-adv-x="425" />
111
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x74;&#x65;&#x63;&#x68;&#x6e;&#x6f;&#x72;&#x61;&#x74;&#x69;" d="M 225.5,306q 15,0 28.25-4.5t 23-12t 15.5-17.75t 5.75-21.75t-5.75-21.75t-15.5-17.75t-23-12t-28.25-4.5t-28.5,4.5t-23.25,12t-15.5,17.75t-5.75,21.75t 5.75,21.75t 15.5,17.75t 23.25,12t 28.5,4.5zM 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5
112
+ t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 225.5,149q 24.5,0 45.75,8t 37.25,21.5t 25.25,32t 9.25,39.5t-9.25,39.25t-25.25,31.75t-37.25,21.5t-45.75,8t-46-8t-37.5-21.5t-25.25-31.75t-9.25-39.25q0-20 8.25-37.25
113
+ t 22.75-30.75l-8.5-66.5l 55.5,39.5q 18.5-6 40-6z" horiz-adv-x="425" />
114
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x66;&#x6f;&#x75;&#x72;&#x73;&#x71;&#x75;&#x61;&#x72;&#x65;" d="M 165.5,199l-4-1q-7-3 -13-3q-16.5,0 -28,12.5t-11.5,30t 11.5,29.75t 28,12.25q 8,0 15.25-3.25t 12.5-9t 8.5-13.5t 3.25-16.25q0-8 -3-15.5l-1-3l 27.5-41.5l 103,112l0-44.5 l-103-94.5zM 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5
115
+ t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 330,327.5l-8.5-9.5l-76.5-82l-32.5,33.5l-13.5-14q-5.5,17 -19.25,27.75t-31.25,10.75q-11.5,0 -21.25-4.5t-17-12.25t-11.5-18t-4.25-21.75t 4.25-21.75t 11.5-18t 16.75-12.5t 20.5-4.75
116
+ l 65-68.5l 75,79l-7.5,8l 50,40l0,10.5 l0,66.5 l0,8 l0,3.5 z" horiz-adv-x="425" />
117
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x67;&#x72;&#x6f;&#x6f;&#x76;&#x65;&#x73;&#x68;&#x61;&#x72;&#x6b;" d="M 212,429q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.25t 16.5-81.5t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.5,16.5t-66.25,45t-44.75,66.5t-16.5,81.5t 16.5,81.5t 44.75,66.25t 66.25,44.75t 81.5,16.5zM 212,89q 27,0 51,10.25t 41.75,28t 28,41.75t 10.25,51t-10.25,50.75t-28,41.5t-41.75,28t-51,10.25
118
+ t-50.75-10.25t-41.5-28t-28-41.5t-10.25-50.75t 10.25-51t 28-41.75t 41.5-28t 50.75-10.25zM 212,337.5q 24.5,0 46-9.25t 37.5-25.25t 25.25-37.25t 9.25-45.75q0-14.5 -3.5-28.25t-10-25.75q-9,6 -17.75,16.75t-16.5,21.75t-14,20.75t-9.75,13.75q-19,21 -37.75,35t-46.25,22q-0.5-14.5 0-28.75
119
+ t-0.75-27.5t-5.75-25t-15-20.75q-4.5-4 -10.75-7t-13.25-5t-14-2.75t-13-0.25q-7.5,19.5 -7.5,41q0,24.5 9.25,45.75t 25.25,37.25t 37.25,25.25t 45.75,9.25z" horiz-adv-x="425" />
120
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x67;&#x6f;&#x6f;&#x67;&#x6c;&#x65;&#x70;&#x6c;&#x75;&#x73;" d="M 317,424.5q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 224,107q 22.5,19.5 22.5,45q0,16.5 -7.5,27t-16.25,18.25t-16.25,14
121
+ t-7.5,13.75q0,8.5 7.5,15.25t 15.5,15.25q 5,5.5 8.75,14.5t 3.75,21q0,7 -1.75,13.5t-4.75,13.5q-6,12.5 -17.5,19.5l 21.5,0 l 21.5,13l-69.5,0 q-7,0 -14.5-1t-15-2.5q-22-4.5 -37-22.5q-15-17.5 -15-39.5q0-24 16.5-39q 17-15.5 40.5-15.5l 5.25,0 t 6.25,0.5q-0.5-1 -1.25-3.25t-1.25-3.25q-1-4 -1-7q0-11.5 10-23.5
122
+ q-23-0.5 -48.5-8q-13-4 -23-11.5t-15-17.5q-6-11.5 -6-21q0-14 7-23.5t 18-15.25t 23.5-8.25t 24-2.5q 42,0 66.5,20.5zM 349,309.5l-40.5,0 l0,41 l-20.5,0 l0-41 l-40.5,0 l0-20 l 40.5,0 l0-40.5 l 20.5,0 l0,40.5 l 40.5,0 l0,20 zM 203.5,275q0-16 -6.75-25.5t-22.25-9.5q-10.5,0 -18.75,6.25t-13.75,15.75t-8.5,20.25t-3,19.75q0,16 8,26
123
+ q 8,11 23,11q 10.5,0 18.75-6.5t 13.25-16.5q 10-21 10-41zM 217.5,156q 2-3 3-5.5t 1.75-5.5t 0.75-6.5q0-10.5 -4.5-17.75t-11.75-11.5t-16-6.25t-17.75-2q-10,0 -20.25,2.25t-19.25,7.25t-14.75,13.5t-5.75,19.5q0,14.5 9,23.25t 22,12.75q 17,5 34,5q 6,0 8-0.5l 4.5-3q 4.5-3 5.5-4l 4.5-3.5q 3.5-2.5 5.5-4
124
+ l 4-4q 3-2.5 4.25-4.5t 3.25-5z" horiz-adv-x="425" />
125
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x67;&#x6f;&#x6f;&#x67;&#x6c;&#x65;&#x70;&#x6c;&#x75;&#x73;" d="M 206.5,275.5q0-16 -7-25.5t-22.5-9.5q-10.5,0 -18.75,6.25t-13.75,15.5t-8.5,20t-3,19.75q0,14.5 8,26.5q 8.5,11 23,11q 10.5,0 19-6.5t 13-16.5q 5-10 7.75-20.75t 2.75-20.25zM 220.5,156q 1.5-1.5 2.5-5.5q 2.5-5 2.5-12q0-10.5 -4.5-17.5t-11.75-11.25t-16-6.25t-17.75-2q-21,0 -39.5,9.5q-9,5 -14.5,13.25
126
+ t-5.5,19.25q0,15 8.75,23.5t 21.75,12.5q 9,3 17.25,4.25t 16.75,1.25q 2.5,0 4.5-0.25t 3.5-0.25l 4.5-3.5q 2.5-1 3.5-2t 2-1.5l 5-3.5q 2-1.5 3-2.5l 2-2q 1-0.5 4.5-4q 2.5-2.5 4-4.5t 3.5-5zM 212.5,430q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.5t 16.5-81.75t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.5,16.5t-66.5,45t-45,66.5
127
+ t-16.5,81.5t 16.5,81.75t 45,66.5t 66.5,44.75t 81.5,16.5zM 225.5,107.5q 22.5,19.5 22.5,44.5q0,16.5 -7.5,27.25t-16.5,18.5t-16.5,13.75t-7.5,13.5q0,9 7.75,15.75t 15.25,15.25q 5.5,5.5 9.25,14.5t 3.75,21q0,12.5 -6.5,26.5q-6,13 -17.5,20l 21.5,0 l 21.5,12.5l-69.5,0 q-14.5,0 -29.5-3q-22-5 -37-22.5t-15-39.5q0-24 16.5-39q 17-15.5 40.5-15.5l 5.25,0
128
+ t 6.25,0.5q-0.5-1 -1.25-3.25l-1.25-3.75q-1-1.5 -1-6.5q0-11.5 10-23.5q-24-0.5 -48.5-8q-13-4 -23-11.5t-15-17.5q-6-11.5 -6-21.5q0-13.5 7-23t 18-15.5t 23.5-8.5t 24-2.5q 42.5,0 66.5,21zM 350.5,310l-40.5,0 l0,40.5 l-20.5,0 l0-40.5 l-40.5,0 l0-20 l 40.5,0 l0-41 l 20.5,0 l0,41 l 40.5,0 l0,20 z" horiz-adv-x="425" />
129
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x67;&#x6f;&#x77;&#x61;&#x6c;&#x6c;&#x61;&#x70;&#x69;&#x6e;" d="M 212,429q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.25t 16.5-81.5t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.5,16.5t-66.25,45t-44.75,66.5t-16.5,81.5t 16.5,81.5t 44.75,66.25t 66.25,44.75t 81.5,16.5zM 230.5,172.5q 14,3 26.25,10.75t 21,18.75t 13.75,24.5t 5,28.5q0,17.5 -6.75,32.75t-18.25,26.75t-26.75,18.25
130
+ t-32.75,6.75t-32.75-6.75t-26.75-18.25t-18-26.75t-6.5-32.75q0-15 5-28.5t 13.75-24.5t 20.75-18.75t 26-10.75l 18.5-72zM 212,318q 13,0 24.5-5t 20.25-13.5t 13.75-20t 5-24.5t-5-24.5t-13.75-20t-20.25-13.5t-24.5-5t-24.5,5t-20,13.5t-13.5,20t-5,24.5t 5,24.5t 13.5,20t 20,13.5t 24.5,5zM 212,220
131
+ q 14.5,0 24.75,10.25t 10.25,24.75t-10.25,24.75t-24.75,10.25t-24.5-10.25t-10-24.75t 10-24.75t 24.5-10.25z" horiz-adv-x="425" />
132
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x69;&#x6e;&#x73;&#x74;&#x61;&#x67;&#x72;&#x61;&#x6d;" d="M 283,220q0,8.5 -2.5,18.5l 21,0 l0-101 q0-4 -2.75-6.5t-6.75-2.5l-164.5,0 q-4,0 -6.5,2.5t-2.5,6.5l0,101 l 20.5,0 q-2.5-10 -2.5-18.5q0-15 5.75-28.5t 15.75-23.25t 23.5-15.5t 28.5-5.75t 28.5,5.75t 23.25,15.5t 15.5,23.25t 5.75,28.5zM 210,174.5q-9.5,0 -18,3.5t-14.75,9.75t-9.75,14.5t-3.5,17.75t 3.5,18t 9.75,14.75t 14.75,9.75t 18,3.5
133
+ t 17.75-3.5t 14.5-9.75t 9.75-14.75t 3.5-18t-3.5-17.75t-9.75-14.5t-14.5-9.75t-17.75-3.5zM 292,311.5q 4,0 6.75-2.5t 2.75-6.5l0-27.5 q0-4 -2.75-6.5t-6.75-2.5l-27.5,0 q-4,0 -6.5,2.5t-2.5,6.5l0,27.5 q0,4 2.5,6.5t 6.5,2.5l 27.5,0 zM 316.5,429.5q 21.5,0 40.75-8.25t 33.5-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5
134
+ t-33.5-22.5t-40.75-8.25l-209,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209,0 zM 329,311.5q0,11.5 -8,19.5t-19.5,8l-183,0 q-11.5,0 -19.5-8t-8-19.5l0-183 q0-11.5 8-19.5t 19.5-8l 183,0 q 11.5,0 19.5,8t 8,19.5l0,183 z" horiz-adv-x="425" />
135
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x79;&#x61;&#x68;&#x6f;&#x6f;&#x62;&#x75;&#x7a;&#x7a;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 225.5,102q 16,0 30.25,6.25t 25,17t 17,25t 6.25,30.25
136
+ q0,16.5 -6.25,30.75t-17,24.75t-25,16.75t-30.25,6.25l-26.5,0 l0-39 l 26.5,0 q 16,0 27.5-11.5t 11.5-28q0-16 -11.5-27.5t-27.5-11.5q-16.5,0 -28,11.5t-11.5,27.5l0,39.5 l0,117.5 l-39,0 l0-157 q0-16 6.25-30.25t 16.75-25t 24.75-17t 30.75-6.25z" horiz-adv-x="425" />
137
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x64;&#x65;&#x6c;&#x69;&#x63;&#x69;&#x6f;&#x75;&#x73;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 317,324.5l-104.5,0 l0-104.5 l-105,0 l0-104.5 l 105,0 l0,104.5 l 104.5,0 l0,104.5 z" horiz-adv-x="425" />
138
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x77;&#x6f;&#x72;&#x64;&#x70;&#x72;&#x65;&#x73;&#x73;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 94.5,233q0-17.5 4.75-33.5t 13.5-29.75t 21-24.75t 27.25-18l-56,154
139
+ q-5-11.5 -7.75-23.25t-2.75-24.75zM 212.5,115.5q 21,0 39,6.5q-1,1 -1,1.5l-36,99l-35.5-102.5q 15.5-4.5 33.5-4.5zM 271,161.5l 12,39.5q 8.5,23 8.5,38q0,11 -3,18.75t-6.5,13.75q-4.5,7 -8,13.75t-3.5,13.75q0,8 5.5,14.5t 14,6.5q 0.5,0 0.75-0.25t 0.75-0.25q-15.5,14.5 -35.75,22.75t-43.25,8.25q-31.5,0 -57-14.5t-41.5-38.5
140
+ l 7.5,0 l 10,0 t 10.5,0.5l 11,1q 2,0 3.5-1.25t 1.5-3t-1-3.5t-3.5-1.75q-2,0 -4-0.5q-5-1 -9.5-1l 43-127.5l 26,77.5l-18.5,50q-2.5,0 -4.5,0.25t-4,0.75t-4,0.5q-2.5,0 -3.5,1.5t-0.75,3.5t 1.5,3.25t 3.75,1.25l 11-1q 4.5-0.5 10-0.5l 10,0 l 9.75,0 t 10.25,0.5l 11,1q 2.5,0 3.75-1.25t 1.5-3t-0.75-3.5t-3.5-1.75q-2,0 -4-0.5q-5-1 -9.5-1zM 271.5,131.5
141
+ q 26.5,15 42.5,41.75t 16,59.75q0,15.5 -3.75,29.5t-10.75,27q 0.5-3 0.75-6t 0.25-6q0-9 -2-19.25t-7-23.25z" horiz-adv-x="425" />
142
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x74;&#x65;&#x63;&#x68;&#x6e;&#x6f;&#x72;&#x61;&#x74;&#x69;" d="M 225.5,306q 15,0 28.25-4.5t 23-12t 15.5-17.75t 5.75-21.75t-5.75-21.75t-15.5-17.75t-23-12t-28.25-4.5t-28.5,4.5t-23.25,12t-15.5,17.75t-5.75,21.75t 5.75,21.75t 15.5,17.75t 23.25,12t 28.5,4.5zM 212.5,429q 43.5,0 81.5-16.5t 66.25-44.75t 44.75-66.25t 16.5-81.5t-16.5-81.5t-44.75-66.5t-66.25-45t-81.5-16.5
143
+ t-81.5,16.5t-66.5,45t-45,66.5t-16.5,81.5t 16.5,81.5t 45,66.25t 66.5,44.75t 81.5,16.5zM 225.5,149q 24.5,0 45.75,8t 37.25,21.5t 25.25,32t 9.25,39.5t-9.25,39.25t-25.25,31.75t-37.25,21.5t-45.75,8t-46-8t-37.5-21.5t-25.25-31.75t-9.25-39.25q0-20 8.25-37.25t 22.75-30.75l-8.5-66.5l 55.5,39.5q 18.5-6 40-6z" horiz-adv-x="425" />
144
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x77;&#x69;&#x6b;&#x69;&#x70;&#x65;&#x64;&#x69;&#x61;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 343,311l-0.5,0.5l-54,0 l-1-0.5l0-5.5 q0-0.5 1-1.5q 0.5-0.5 1.5-0.5l 4.5-0.5
145
+ q 4,0 5.75-1t 3.25-2.5q 3.5-2.5 1-10.5l-48-125.5l-1.5,0.5l-30.5,68.5q0,0.5 0.25,0.75t 0.25,0.75l0,0.5 l 25,51q 2.5,4 4.25,7.5t 2.75,5q 2,3.5 3.75,4.25t 7.25,1.25q 2.5,0 2.5,2l0,5.5 l-0.5,0.5l-44,0 l-1-0.5l0-5.5 q0-0.5 1-1.5q 0.5-0.5 1.5-0.5l 2-0.5q 7.5,0 9-2.5q 1-1.5 1.25-3.75t-2.25-7.75l-19.5-42l-17,39q-4,9.5 -4.5,12.75t 6,4.25l 3.5,0.5
146
+ q 2,0 2,2l0,5.5 l-1,0.5l-46.5,0 l-1-0.5l0-5.5 q0-2 3.5-2q 3-0.5 4.75-1.25t 3.25-2.5t 3.25-5.5t 4.75-10.25q 0.5-1 1-2.5t 1.5-3.5t 2-4.5l 18-39q 0.5-1.5 1.5-3.5t 1.75-4.25t 2.25-5.25l-26.5-58l-1.5,0.5q-12,27.5 -22,51.5q-4.5,10.5 -8.75,21.25t-8.5,20.75t-7.75,18.5t-5.5,14.5q-1.5,5 -1.5,7.5q0,5 8,5l 6,0.5q 2.5,0 2.5,2l0,5 l-0.5,0.5l-26,0
147
+ l-33,0 l-0.5-0.5l0-5.5 q0-1.5 3.5-1.5q 9.5-1 12-3.5q 2-2 7-13.5q 5.5-15 13.5-34.5t 16.75-40t 17-40.25t 14.25-34.75q 3-8 7-8.75t 9.5,9.25q 2.5,5 6.25,13.25t 8,17.75t 8.5,19.25t 8.25,18.75q 3.5-9 7.5-18.75t 8-19.25t 7.25-17.5t 5.75-13.5q 4-8.5 8.25-9t 8.25,9q 3,7 7,17t 8.5,21.75t 9.5,24.5t 10,24.75
148
+ l 24,60q 3,9 8,13t 16,5q 2,0 2,2l0,5.5 z" horiz-adv-x="425" />
149
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x73;&#x6f;&#x75;&#x6e;&#x64;&#x63;&#x6c;&#x6f;&#x75;&#x64;" d="M 212.5,429q 43.5,0 81.5-16.5t 66.25-44.75t 44.75-66.25t 16.5-81.5t-16.5-81.5t-44.75-66.5t-66.25-45t-81.5-16.5t-81.5,16.5t-66.5,45t-45,66.5t-16.5,81.5t 16.5,81.5t 45,66.25t 66.5,44.75t 81.5,16.5zM 93,216q-10.5-9 -10.5-22q0-13.5 10.5-21.5l0,43.5 zM 114.5,222.5l-2.5,0 q-2.5,0 -4.25-0.25t-4.25-0.75l0-55
150
+ q 2.5-0.5 4.25-0.75t 4.25-0.25l 2.5,0 l0,57 zM 136.5,237.5q-6.5-8 -9-19.5q-0.5,0.5 -1,0.75t-1,0.75l0-54 l 11,0 l0,72 zM 158,253q-3-1 -5.75-2.5t-5.25-3l0-82 l 11,0 l0,87.5 zM 180,254.5q-2,0.5 -3.5,0.75t-3.5,0.25q-1,0 -2-0.25t-2-0.25l0-89.5 l 11,0 l0,89 zM 201.5,255.5q-1-2 -2.5-3.5t-2.5-3q-5.5,3 -11,4.5l0-88 l 16,0 l0,90 zM 310.5,165.5
151
+ q 16,1 23.75,10t 7.75,21.5q0,13 -8.75,22t-22.25,9q-5.5,0 -12-2.5q-2.5,20.5 -18,34.75t-37,14.25q-11,0 -20.25-3.75t-16.75-10.25l0-95 l 103.5,0 z" horiz-adv-x="425" />
152
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x73;&#x6c;&#x69;&#x64;&#x65;&#x73;&#x68;&#x61;&#x72;&#x65;" d="M 212.5,429q 43.5,0 81.5-16.5t 66.25-44.75t 44.75-66.25t 16.5-81.5t-16.5-81.5t-44.75-66.5t-66.25-45t-81.5-16.5t-81.5,16.5t-66.5,45t-45,66.5t-16.5,81.5t 16.5,81.5t 45,66.25t 66.5,44.75t 81.5,16.5zM 252,298.5q-11.5,0 -19.75-8.5t-8.25-21q0-12 8.25-20.5t 19.75-8.5t 19.75,8.5t 8.25,20.5q0,12.5 -8.25,21
153
+ t-19.75,8.5zM 175.5,298.5q-11.5,0 -19.75-8.5t-8.25-21q0-12 8.25-20.5t 19.75-8.5t 19.75,8.5t 8.25,20.5q0,12.5 -8.25,21t-19.75,8.5zM 339,236.5q 4,8 3.75,11t-0.75,4q0,1 -1.5,1q-3.5,0 -8.5-5.5q-3-4 -10.75-8t-16.25-7.25t-16-5.5t-9.5-2.25l-41.5,0 q-7.5,0 -15.5-2t-8-6l0-7 q-1.5,1 -3,2.5
154
+ q-4.5,4.5 -10,7.75t-14,3.25l-1.5,0 l-4,0 q-11,0 -27,1.5t-27,4q-6,1.5 -13.25,5.75t-14.25,8.75q-6,3.5 -10.75,6.25t-7.25,2.75q-0.5,0 -0.5-0.5q-1.5-4 0.5-7.75t 7.5-10.75l 2.5-2.5q 3-4 10.75-8.75t 15.5-8.75t 14-6.5l 6.25-2.5l 0.5-0.5l0-47 q0-5 4.5-11t 10.75-11t 13.25-8.25t 12-3.25q 10,0 17,5.5t 7,10.5l0,45 l 1.5-1
155
+ q 3.5-2.5 9-3l0-41 q0-2.5 1.75-6.25t 6-7.5t 11.5-6.5t 17.75-2.75t 17.5,5.5t 11,12.75t 5.5,13.75t 1.5,8.5l0,43.5 l 0.5,0.5q 3.5,2 6.75,3.5t 6.75,3q 11.5,5.5 21.75,12t 16.25,18z" horiz-adv-x="425" />
156
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x67;&#x69;&#x74;&#x68;&#x75;&#x62;&#x61;&#x6c;&#x74;" d="M 317,432q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 347,155.5q 10.5,21.5 10.5,57.5q0,41 -23.5,69q 4.5,14 4.5,29q0,20 -9,38
157
+ q-19,0 -32.5-6.5q-15-7 -32.5-21q-11.5,2.5 -23.5,4t-25,1.5q-28,0 -53.5-6q-19,14 -33,21q-13.5,7 -33,7q-9-18 -9-38q0-7.5 1.25-14.75t 3.75-14.25q-23.5-27 -23.5-69q0-36 10.5-57.5q 8.5-17.5 25-27.75t 34.5-14.75q 13-4 26.5-5.5q 7.5-1 14-1.5t 12-0.5q 5.5-0.5 11.5-0.5l 13,0 l 15,0 t 14,0.5
158
+ q 6.5,0.5 13.75,1.5t 15.75,2.5q 17.5,3 29.5,8q 13,5.5 24.5,15.25t 18.5,22.75zM 274,234.5q 21,0 32.5-14.5q 12-14.5 12-35.5q0-15 -5.5-26.25t-14-18.25q-9-6.5 -21-10q-13-4 -24.5-5.25t-26-1.25l-29,0 q-14.5,0 -25.75,1.25t-24.25,5.25q-12,3.5 -21,10q-8.5,7 -14.25,18.25t-5.75,26.25q0,21 12,35.5q 11.5,14.5 32.5,14.5
159
+ q 4,0 12.5-0.75t 21.5-2.75q 6-1 12.75-1.5t 14.25-0.5t 14.25,0.5t 13.25,1.5q 13,2 21.5,2.75t 12,0.75zM 170,157.5q 8,9 9.25,20t-1.75,21.5q-2,7 -7.25,13t-12.75,6t-12.5-6q-8-9 -9.25-20t 1.75-21.5q 2.5-7 7.75-13t 12.25-6t 12.5,6zM 281,157.5q 8,9 9.25,20t-1.75,21.5q-2,7 -7.25,13t-12.75,6
160
+ t-12.5-6q-8-9 -9.25-20t 1.75-21.5q 2.5-7 7.75-13t 12.25-6t 12.5,6z" horiz-adv-x="425" />
161
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x67;&#x6f;&#x6f;&#x67;&#x6c;&#x65;&#x74;&#x61;&#x6c;&#x6b;" d="M 212,430q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.25t 16.5-81.5t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.5,16.5t-66.25,45t-44.75,66.5t-16.5,81.5t 16.5,81.5t 44.75,66.25t 66.25,44.75t 81.5,16.5zM 198,314.5q 19-2.5 35.5-9.5t 28.5-17.75t 18.75-24.5t 6.75-28.75q0-19 -10.25-35t-27.75-27.5q 25.5,9.5 40.75,27.25
162
+ t 15.25,39.75q0,15.5 -8.25,29.5t-22.25,24.25t-33.25,16.25t-40.75,6l-3,0 zM 271.5,161q 32,11.5 51.75,33.75t 19.75,49.75q0,19.5 -10.25,36.5t-28,29.75t-41.75,20.25t-51,7.5t-50.75-8t-41.5-21.25t-28-31t-10.25-37.25q0-17 8-32t 20.75-27t 28.75-20.5t 31.5-12q-3.5-10.5 -11.75-23.5t-22.25-22q 22.5-2.5 43,2
163
+ q 17.5,3.5 36.25,14.75t 30.75,34.75q-7-9 -18-17q-9.5-7 -24-13t-35-8q 6,8 10.5,15.5t 7.5,13q 3.5,6.5 6.5,12.5q-15,3.5 -28.75,9t-25.75,13.25t-21,17t-14,20.25l-2,10t-1,10.5q0,18.5 8.25,34.5t 22.75,27.75t 35,18.25t 44.5,6.5t 44.5-6.25t 35.5-17.5t 23.25-26.75t 8.25-34.5q0-25.5 -12.75-46.5t-39.25-33z" horiz-adv-x="425" />
164
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x67;&#x6f;&#x6f;&#x67;&#x6c;&#x65;&#x62;&#x75;&#x7a;&#x7a;" d="M 212,429q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.25t 16.5-81.5t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.5,16.5t-66.25,45t-44.75,66.5t-16.5,81.5t 16.5,81.5t 44.75,66.25t 66.25,44.75t 81.5,16.5zM 212,324.5q-31,0 -57.75-12t-42.75-33l 67-64l 100.5,92.5q-14.5,8 -31.75,12.25t-35.25,4.25zM 104,267.5
165
+ q-9.5-16 -9.5-36q0-18 8.25-34.25t 23.75-29.25l 42,38.5zM 212,138.5q 22.5,0 42.5,6.25t 36,17.75l-73.5,70l-82.5-76l-0.5-1q-3-7 -7.75-14t-11.25-11.5q 2.5-0.5 6.75-1t 9.75-0.5q 24,0 43,13l 3,1.5l 2-0.5q 8.5-2 16.25-3t 16.25-1zM 301.5,171q 28.5,26 28.5,60.5q0,20 -10.25,38t-28.75,31l-64-59z
166
+ " horiz-adv-x="425" />
167
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x66;&#x72;&#x69;&#x65;&#x6e;&#x64;&#x73;&#x74;&#x61;&#x72;" d="M 212,429q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.25t 16.5-81.5t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.5,16.5t-66.25,45t-44.75,66.5t-16.5,81.5t 16.5,81.5t 44.75,66.25t 66.25,44.75t 81.5,16.5zM 242,252.5q-0.5-8.5 1.25-20.5t 6.75-17q 2.5-2.5 5.5-2.5q 18,0 18,28.5q0,6.5 -1.75,12.5t-4.25,11t-6,8t-7,3l-1.5,0
168
+ q-9.5-1.5 -11-23zM 198,246.5q-2.5-8 -1.25-17t 5.75-15q 1.5-2.5 4-4.75t 6.5-2.75l 2,0 q 8.5,0 12.5,8t 4.5,18q0,7.5 -3,14.25t-7,10.75t-8,4q-3.5,0 -8-2t-8-13.5zM 328.5,209.5q 2.5,14 1,25t-6,16q-4,4.5 -9.5,4.5l-1,0 q-11.5-1 -15-9.25t-6.5-24.25q-1.5-7.5 -4.5-18.75t-9.75-21.5t-18-17.25t-28.25-6
169
+ q-18.5,1 -27.5,6.5t-13.25,13t-5.5,16t-4.25,16q-1,2.5 -1.5,4.5t-1.5,4q-2.5,6 -7,12.75t-11,12.75t-14.5,10t-17.5,4l-33,0 l0-24.5 l 24,0 q 5.5,0 13.5-7.25t 11-19.75q 8.5-38.5 29.25-58t 52.25-19.5l 2.5,0 q 25,0.5 43.5,9.75t 30.75,22t 19,26.5t 8.25,22.75z" horiz-adv-x="425" />
170
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x66;&#x6f;&#x75;&#x72;&#x73;&#x71;&#x75;&#x61;&#x72;&#x65;" d="M 211.5,178l 103,112l0-44.5 l-103-94.5l-46,49l-4-1.5q-7-3 -13-3q-16.5,0 -28.25,12.5t-11.75,30t 11.75,29.75t 28.25,12.25q 8,0 15.25-3.25t 12.5-9t 8.5-13.5t 3.25-16.25q0-8 -3-15.5l-1-3zM 212,429.5q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.25t 16.5-81.5t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5
171
+ t-81.5,16.5t-66.25,45t-44.75,66.5t-16.5,81.5t 16.5,81.5t 44.75,66.25t 66.25,44.75t 81.5,16.5zM 330,328l-9-9.5l-76.5-82l-32,33.5l-13.5-14q-5.5,17 -19.25,27.75t-31.25,10.75q-11.5,0 -21.25-4.5t-17-12.25t-11.5-18t-4.25-21.75t 4.25-21.75t 11.25-18t 16.75-12.5t 20.75-4.75l 65-68.5l 75,79l-8,8
172
+ l 50.5,40l0,10.5 l0,66.5 l0,8 l0,3.5 z" horiz-adv-x="425" />
173
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x70;&#x6f;&#x73;&#x74;&#x65;&#x72;&#x6f;&#x75;&#x73;" d="M 223.5,327q 26,0 42.25-20.25t 16.25-52.25q0-34.5 -16.25-54.75t-43.25-20.25q-19,0 -33.75,11.5t-19.75,30.5q-1.5,6 -1.5,14.5l0,33 q0,6 2,14q 5,19.5 20,31.75t 34,12.25zM 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0
174
+ q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 228.5,156q 15.5,0 30.75,6t 27.25,18.25t 19.5,31.25t 7.5,45q0,21 -5.75,38.25t-16.25,29.5t-25,19.25t-32,7q-45,0 -66-35.5l-1.5-1l-2.5,0 l-2,32.5l-27,0 q 0.5-13.5 1-28t 0.5-32l0-197.5 l 30.5,0 l0,95 l 0.5,2l 3,0 l 0.5-1
175
+ q 8.5-13.5 23.5-21.25t 33.5-7.75z" horiz-adv-x="425" />
176
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x66;&#x65;&#x65;&#x64;&#x62;&#x75;&#x72;&#x6e;&#x65;&#x72;" d="M 212.5,430.5q 43.5,0 81.75-16.5t 66.75-45t 45-66.75t 16.5-81.75t-16.5-81.75t-45-66.75t-66.75-45t-81.75-16.5t-81.75,16.5t-66.75,45t-45,66.75t-16.5,81.75t 16.5,81.75t 45,66.75t 66.75,45t 81.75,16.5zM 192,349.5q-12-8.5 -23.5-24t-20.5-34.25t-14.5-38.75t-5.5-37.5q0-25 6-44.75
177
+ t 16.75-33.75t 25.25-21.75t 31.5-7.75q 16.5,0 32.25,7.25t 28,19.25t 19.75,27t 7.5,31q0,18 -4.5,31.25t-12,22.75t-17,16.5t-19.5,13q 3-16 0-28.5t-10-20.5t-17.25-11t-22.25,0.5q 11.5,19.5 14.5,33t 1.25,23.75t-6.5,18.25t-8.75,16.5t-5.25,18.5t 4.25,24zM 212.5,92q 24.5,0 46,4t 37.5,11t 25.25,16.25t 9.25,19.75q0,9.5 -7,17.5
178
+ t-19.5,15q-4.5-14 -14.25-26.75t-22.5-22t-28-14.75t-31.25-5.5q-30,0 -52.5,18.5t-32.5,51.5q-13.5-7 -21-15.25t-7.5-18.25q0-10.5 9.25-19.75t 25.25-16.25t 37.5-11t 46-4zM 207.5,123.5q-17,0 -31.25,8.5t-21.5,24.25t-5.5,37.5t 17.75,47.75q-3-15 -0.75-28t 8-22.5t 14-14.75t 16.75-5.25q 19-0.5 30.75,15.75
179
+ t 17.25,40.25q 15.5-12 19.75-29.5t-1.75-33.75t-22-28t-41.5-12.25z" horiz-adv-x="425" />
180
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x64;&#x65;&#x76;&#x69;&#x61;&#x6e;&#x74;&#x61;&#x72;&#x74;" d="M 141,186q-2.5,7 -1.5,14q 1,6 5.5,13.5t 16,15l 16-33zM 212.5,429.5q 43.5,0 81.5-16.5t 66.5-45t 45-66.5t 16.5-81.5t-16.5-81.75t-45-66.75t-66.5-45t-81.5-16.5t-81.75,16.5t-66.75,45t-45,66.75t-16.5,81.75t 16.5,81.5t 45,66.5t 66.75,45t 81.75,16.5zM 340.5,216q-12.5,16.5 -34,28q-18.5,10 -48.25,15.5t-73.75-2
181
+ l-2,0 l-11.5,23l-33.5-4l 13.5-28q-13.5-5.5 -22.25-12.75t-14-15.25t-7.5-16.25t-2.75-16.25q-1-18.5 7-38l 108.5,31l-29.5,60.5q 20,5.5 37.75,4t 31.25-6q 16-5.5 29-14l-37-10l-10.5,20q-7.5,1 -16,1.25t-17.5-1.25l 25-50.5z" horiz-adv-x="425" />
182
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x64;&#x65;&#x73;&#x69;&#x67;&#x6e;&#x62;&#x75;&#x6d;&#x70;" d="M 212.5,430.5q 43.5,0 81.75-16.5t 66.75-45t 45-66.75t 16.5-81.75t-16.5-81.75t-45-66.75t-66.75-45t-81.75-16.5t-81.75,16.5t-66.75,45t-45,66.75t-16.5,81.75t 16.5,81.75t 45,66.75t 66.75,45t 81.75,16.5zM 173,286.5l 26.5,0 l0-26.5 l 52.5-52.5l-52.5,0 l0-52.5 l 52.5,52.5l0,79 l 26,0 l-52.5,52.5zM 186,220.5l 26.5,0
183
+ l-52.5,52.5l-52.5-52.5l 26,0 l0-118 l 52.5,0 l0,118 zM 225.5,129l-26,0 l0-26.5 l 26,0 l0,26.5 zM 317.5,142l-52.5,52.5l-52.5-52.5l 26,0 l0-39.5 l 52.5,0 l0,39.5 l 26.5,0 z" horiz-adv-x="425" />
184
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x70;&#x69;&#x6e;&#x74;&#x65;&#x72;&#x65;&#x73;&#x74;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 278.5,175q 9,7.5 15.25,18t 10.25,23t 5.5,25.25t0,24.75
185
+ q-1.5,13 -8,25.25t-17,21.75t-24,16t-28.5,8q-23,2.5 -44.25-3t-37.5-17.25t-26.25-29.25t-10-39.5q0-21 7.5-34t 26.5-20q 6.5,6 6.75,11.25t-2.25,10.5t-6,11t-4,12.75q-2,18.5 7.25,35.25t 24.75,27.25t 35.5,12.5t 40-9.5q 9.5-5.5 15-15.75t 7.75-23t 1-26.5t-6-25.25t-12.75-20t-19-10.5
186
+ q-7-1.5 -14.25,0.25t-10.25,4.75q-8,7.5 -6.5,17t 5.5,20.5t 7.25,22.5t-1.25,22q-4,9 -11.25,10.75t-14.25-1.75t-12.75-10.5t-7.25-15q-1-8.5 1.5-16.75t 2.5-16.25q0-9 -2.5-19.25t-5.75-21t-6.5-21t-4.75-19.25q-1-7 -1.75-19t 1.25-19.5l-0.5-0.5l 16.5,0 q 8.5,14.5 14.5,34t 10.5,37.5q 2.5,2.5 3.75-1t 3.75-5
187
+ q 7.5-6 18-7.25t 21,0.25t 20.25,5.5t 15.75,9z" horiz-adv-x="425" />
188
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x73;&#x68;&#x61;&#x72;&#x65;&#x74;&#x68;&#x69;&#x73;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 177.5,222.5l 84,42q 5.5-4.5 12.25-7.25t 14.75-2.75q 17.5,0 29.5,12
189
+ t 12,29.5t-12,29.5t-29.5,12t-29.5-12t-12-29.5l0-2.5 l-84-42q-5.5,4.5 -12.25,7.25t-14.75,2.75q-17.5,0 -29.5-12t-12-29.5t 12-29.5t 29.5-12q 15.5,0 27,10l 84-42.5l0-2 q0-17.5 12-29.75t 29.5-12.25t 29.5,12.25t 12,29.75q0,17 -12,29.25t-29.5,12.25q-8,0 -14.75-2.75t-12.25-7.25l-84,42l0,2.5 l0,2.5 z" horiz-adv-x="425" />
190
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x70;&#x69;&#x6e;&#x74;&#x65;&#x72;&#x65;&#x73;&#x74;" d="M 212.5,430q 43.5,0 81.5-16.5t 66.25-44.75t 44.75-66.25t 16.5-81.5t-16.5-81.5t-44.75-66.5t-66.25-45t-81.5-16.5t-81.5,16.5t-66.5,45t-45,66.5t-16.5,81.5t 16.5,81.5t 45,66.25t 66.5,44.75t 81.5,16.5zM 278.5,176q 9,7.5 15.25,18t 10.25,23t 5.5,25.25t0,24.75q-1.5,13 -8,25.25t-17,21.75t-24,16t-28.5,8
191
+ q-23,2.5 -44.25-3t-37.5-17.25t-26.25-29.25t-10-39.5q0-21 7.5-34t 26.5-20q 6.5,6 6.75,11.25t-2.25,10.5t-6,11t-4,12.75q-2,18.5 7.25,35.25t 24.75,27.25t 35.5,12.5t 40-9.5q 9.5-5.5 15-15.75t 7.75-23t 1-26.5t-6-25.25t-12.75-20t-19-10.5q-7-1.5 -14.25,0.25t-10.25,4.75q-8,7.5 -6.5,17t 5.5,20.5
192
+ t 7.25,22.5t-1.25,22q-4,9 -11.25,10.75t-14.25-1.75t-12.75-10.5t-7.25-15q-1-8.5 1.5-16.75t 2.5-16.25q0-9 -2.5-19.25t-5.75-21t-6.5-21t-4.75-19.25q-1-7 -1.75-19t 1.25-19.5l-0.5-0.5l 16.5,0 q 8.5,14.5 14.5,34t 10.5,37.5q 2.5,2.5 3.75-1t 3.75-5q 7.5-6 18-7.25t 21,0.25t 20.25,5.5t 15.75,9z" horiz-adv-x="425" />
193
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x69;&#x6e;&#x73;&#x74;&#x61;&#x67;&#x72;&#x61;&#x6d;" d="M 210,173.5q-9.5,0 -17.75,3.5t-14.5,9.75t-9.75,14.75t-3.5,18t 3.5,17.75t 9.75,14.5t 14.5,9.75t 17.75,3.5q 19,0 32.25-13.25t 13.25-32.25q0-9.5 -3.5-18t-9.75-14.75t-14.5-9.75t-17.75-3.5zM 283,219.5q0,4.5 -0.5,9.25t-1.5,8.75l 20.5,0 l0-100.5 q0-4 -2.5-6.5t-6.5-2.5l-165,0 q-4,0 -6.5,2.5t-2.5,6.5l0,100.5 l 20.5,0 q-1-4 -1.5-8.75
194
+ t-0.5-9.25q0-15 5.75-28.5t 15.5-23.5t 23.25-15.75t 28.5-5.75t 28.5,5.75t 23.25,15.75t 15.5,23.5t 5.75,28.5zM 212,429q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.25t 16.5-81.5t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.5,16.5t-66.25,45t-44.75,66.5t-16.5,81.5t 16.5,81.5t 44.75,66.25t 66.25,44.75t 81.5,16.5zM 329,311
195
+ q0,11.5 -8,19.5t-19.5,8l-183,0 q-11.5,0 -19.5-8t-8-19.5l0-183 q0-11.5 8-19.5t 19.5-8l 183,0 q 11.5,0 19.5,8t 8,19.5l0,183 zM 292.5,311q 4,0 6.5-2.75t 2.5-6.75l0-27.5 q0-4 -2.5-6.5t-6.5-2.5l-27.5,0 q-4,0 -6.75,2.5t-2.75,6.5l0,27.5 q0,4 2.75,6.75t 6.75,2.75l 27.5,0 z" horiz-adv-x="425" />
196
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x67;&#x69;&#x74;&#x68;&#x75;&#x62;&#x61;&#x6c;&#x74;" d="M 274.5,227q 20.5,0 32.5-14.5q 12-15 12-35.5q0-15.5 -5.75-26.5t-14.25-18t-21-10.5q-13-4 -24.25-5t-25.75-1l-29.5,0 q-14,0 -25.5,1t-24.5,5q-13,3.5 -21,10.5q-8.5,7 -14,18t-5.5,26.5q0,20.5 12,35.5q 12,14.5 32.5,14.5q 4,0 12.25-1t 21.25-2.5q 6-1 13-1.5t 14.5-0.5q 7,0 14,0.5t 13,1.5q 13.5,1.5 21.75,2.5t 12.25,1z
197
+ M 170.5,149.5q 8,9.5 9.25,20.5t-1.75,21q-2.5,7.5 -7.75,13.5t-12.25,6t-13-6q-7.5-9.5 -8.75-20.5t 1.25-21q 2.5-7.5 7.75-13.5t 12.75-6q 7,0 12.5,6zM 281.5,149.5q 8,9.5 9.25,20.5t-2.25,21q-2,7.5 -7.25,13.5t-12.25,6t-13-6q-7.5-9.5 -8.75-20.5t 1.25-21q 2.5-7.5 7.75-13.5t 12.75-6q 7,0 12.5,6z
198
+ M 212.5,430q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.5t 16.5-81.75t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.5,16.5t-66.5,45t-45,66.5t-16.5,81.5t 16.5,81.75t 45,66.5t 66.5,44.75t 81.5,16.5zM 347,150q 10.5,21.5 10.5,57.5q0,42 -23.5,69q 4.5,14 4.5,29q0,19.5 -8.5,38q-18,0 -33-7q-7-3.5 -15-8.75t-17.5-12.25
199
+ q-22.5,6 -48.5,6q-14,0 -27.25-1.75t-26.25-4.75q-19,15 -33,21.5q-15,7 -32.5,7q-9-18 -9-38q0-15.5 4.5-29.5q-23.5-27.5 -23.5-68.5q0-36 11-57.5q 8-17.5 24.75-27.75t 34.75-14.75q 13-4 26.5-5.5q 7-1 13.5-1.5t 12-0.5q 5.5-0.5 11.5-0.5l 13,0 l 15.25,0 t 13.75,0.5t 13.75,1.5t 15.75,2.5q 17.5,3 29.5,8
200
+ q 13,5.5 24.5,15.25t 18.5,22.75z" horiz-adv-x="425" />
201
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x79;&#x61;&#x68;&#x6f;&#x6f;&#x62;&#x75;&#x7a;&#x7a;" d="M 212.5,429q 43.5,0 81.5-16.5t 66.25-44.75t 44.75-66.25t 16.5-81.5t-16.5-81.5t-44.75-66.5t-66.25-45t-81.5-16.5t-81.5,16.5t-66.5,45t-45,66.5t-16.5,81.5t 16.5,81.5t 45,66.25t 66.5,44.75t 81.5,16.5zM 225.5,102q 16,0 30.25,6.25t 25,17t 17,25t 6.25,30.25q0,16.5 -6.25,30.75t-17,24.75t-25,16.75t-30.25,6.25l-26.5,0
202
+ l0-39 l 26.5,0 q 16,0 27.5-11.5t 11.5-28q0-16 -11.5-27.5t-27.5-11.5q-16.5,0 -28,11.5t-11.5,27.5l0,39.5 l0,117.5 l-39,0 l0-157 q0-16 6.25-30.25t 16.75-25t 24.75-17t 30.75-6.25z" horiz-adv-x="425" />
203
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x77;&#x6f;&#x72;&#x64;&#x70;&#x72;&#x65;&#x73;&#x73;" d="M 212.5,429q 43.5,0 81.5-16.5t 66.25-44.75t 44.75-66.25t 16.5-81.5t-16.5-81.5t-44.75-66.5t-66.25-45t-81.5-16.5t-81.5,16.5t-66.5,45t-45,66.5t-16.5,81.5t 16.5,81.5t 45,66.25t 66.5,44.75t 81.5,16.5zM 94.5,233q0-17.5 4.75-33.5t 13.5-29.75t 21-24.75t 27.25-18l-56,154q-5-11.5 -7.75-23.25t-2.75-24.75z
204
+ M 212.5,115.5q 21,0 39,6.5q-1,1 -1,1.5l-36,99l-35.5-102.5q 15.5-4.5 33.5-4.5zM 271,161.5l 12,39.5q 8.5,23 8.5,38q0,11 -3,18.75t-6.5,13.75q-4.5,7 -8,13.75t-3.5,13.75q0,8 5.5,14.5t 14,6.5q 0.5,0 0.75-0.25t 0.75-0.25q-15.5,14.5 -35.75,22.75t-43.25,8.25q-31.5,0 -57-14.5t-41.5-38.5l 7.5,0 l 10,0 t 10.5,0.5l 11,1q 2,0 3.5-1.25t 1.5-3
205
+ t-1-3.5t-3.5-1.75q-2,0 -4-0.5q-5-1 -9.5-1l 43-127.5l 26,77.5l-18.5,50q-2.5,0 -4.5,0.25t-4,0.75t-4,0.5q-2.5,0 -3.5,1.5t-0.75,3.5t 1.5,3.25t 3.75,1.25l 11-1q 4.5-0.5 10-0.5l 10,0 l 9.75,0 t 10.25,0.5l 11,1q 2.5,0 3.75-1.25t 1.5-3t-0.75-3.5t-3.5-1.75q-2,0 -4-0.5q-5-1 -9.5-1zM 271.5,131.5q 26.5,15 42.5,41.75t 16,59.75
206
+ q0,15.5 -3.75,29.5t-10.75,27q 0.5-3 0.75-6t 0.25-6q0-9 -2-19.25t-7-23.25z" horiz-adv-x="425" />
207
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x77;&#x69;&#x6b;&#x69;&#x70;&#x65;&#x64;&#x69;&#x61;" d="M 212.5,429q 43.5,0 81.5-16.5t 66.25-44.75t 44.75-66.25t 16.5-81.5t-16.5-81.5t-44.75-66.5t-66.25-45t-81.5-16.5t-81.5,16.5t-66.5,45t-45,66.5t-16.5,81.5t 16.5,81.5t 45,66.25t 66.5,44.75t 81.5,16.5zM 343,311l-0.5,0.5l-54,0 l-1-0.5l0-5.5 q0-0.5 1-1.5q 0.5-0.5 1.5-0.5l 4.5-0.5q 4,0 5.75-1t 3.25-2.5q 3.5-2.5 1-10.5l-48-125.5
208
+ l-1.5,0.5l-30.5,68.5q0,0.5 0.25,0.75t 0.25,0.75l0,0.5 l 25,51q 2.5,4 4.25,7.5t 2.75,5q 2,3.5 3.75,4.25t 7.25,1.25q 2.5,0 2.5,2l0,5.5 l-0.5,0.5l-44,0 l-1-0.5l0-5.5 q0-0.5 1-1.5q 0.5-0.5 1.5-0.5l 2-0.5q 7.5,0 9-2.5q 1-1.5 1.25-3.75t-2.25-7.75l-19.5-42l-17,39q-4,9.5 -4.5,12.75t 6,4.25l 3.5,0.5q 2,0 2,2l0,5.5 l-1,0.5l-46.5,0 l-1-0.5l0-5.5 q0-2 3.5-2
209
+ q 3-0.5 4.75-1.25t 3.25-2.5t 3.25-5.5t 4.75-10.25q 0.5-1 1-2.5t 1.5-3.5t 2-4.5l 18-39q 0.5-1.5 1.5-3.5t 1.75-4.25t 2.25-5.25l-26.5-58l-1.5,0.5q-12,27.5 -22,51.5q-4.5,10.5 -8.75,21.25t-8.5,20.75t-7.75,18.5t-5.5,14.5q-1.5,5 -1.5,7.5q0,5 8,5l 6,0.5q 2.5,0 2.5,2l0,5 l-0.5,0.5l-26,0 l-33,0 l-0.5-0.5l0-5.5 q0-1.5 3.5-1.5q 9.5-1 12-3.5
210
+ q 2-2 7-13.5q 5.5-15 13.5-34.5t 16.75-40t 17-40.25t 14.25-34.75q 3-8 7-8.75t 9.5,9.25q 2.5,5 6.25,13.25t 8,17.75t 8.5,19.25t 8.25,18.75q 3.5-9 7.5-18.75t 8-19.25t 7.25-17.5t 5.75-13.5q 4-8.5 8.25-9t 8.25,9q 3,7 7,17t 8.5,21.75t 9.5,24.5t 10,24.75l 24,60q 3,9 8,13t 16,5q 2,0 2,2l0,5.5 z
211
+ " horiz-adv-x="425" />
212
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x66;&#x61;&#x63;&#x65;&#x62;&#x6f;&#x6f;&#x6b;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 290.5,337.5l-44,0 q-13,0 -24-4.5t-19-11.75t-12.75-16.75t-4.75-19
213
+ l0-26.5 l-39,0 l0-52 l 39,0 l0-105 l 52.5,0 l0,105 l 39,0 l0,52 l-39,0 l0,13 q0,6.5 4.75,10t 8.25,3.5l 39,0 l0,52 z" horiz-adv-x="425" />
214
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x65;&#x6d;&#x62;&#x65;&#x72;&#x61;&#x70;&#x70;" d="M 305.5,220.5q0-5 -0.75-10.25t-0.75-10.75q0-14.5 -5-28.75t-15-26.75q-11.5-15 -28.5-23t-41.5-9q-28.5,1 -49.25,14.75t-30.75,39.75q0,3.5 -3.75,6.75t-5.25,6.75q 1,1 1.25,1.5t 1.25,1.5l0,0.5 q 2.5,2.5 2.75,6.25t 1.25,9.25q 1,9 3.5,22.75t 12.5,27.25q 8.5,11.5 19.75,21.5t 22.25,19.5q 10.5,8.5 19,16.5t 13.5,15.5
215
+ q 9.5-7.5 21.5-18t 22.5-22.5t 18.25-24.5t 9.25-24l 3-24zM 285,156q 7,9 11.25,19.5t 6.75,21l-6.5-8l-3,24q-1.5,11.5 -9.25,24t-18.25,24.5t-22.5,22.25t-21.5,17.75q-5-7.5 -13.5-15.25t-19-16.25q-11-9.5 -22.25-19.75t-19.75-21.75q-10-13 -12.75-26.75t-3.75-22.75q0-2 -0.5-2.5q 27.5-50 81.5-52
216
+ q 49.5,1.5 73,32zM 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 212,102q 34.5,1 55.5,13.75t 32,30.75t 14.25,38.5t 3,37.5
217
+ t-2.5,27.25t-1.75,7.75q 1-4 -0.25-8t-3.25-7.5q-2-4 -5-8q-2.5,17.5 -16,36t-29.5,33.5q-18.5,17.5 -41,34q-0.5-8 -9.25-17t-20.75-19.25t-25.5-21.75t-23-25q-8-11 -11.5-22.25t-5-20.75t-2-15.75t-2.5-6.75q-3.5-1.5 -7,1q-2,1 -3.5,3q 9-30.5 22.75-48.5t 28.75-27.25t 29.25-12t 23.75-3.25z
218
+ " horiz-adv-x="425" />
219
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x63;&#x6f;&#x72;&#x6f;&#x66;&#x6c;&#x6f;&#x74;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 112.5,297.5q-1-7.5 9.25-8.5t 25.25,0.5q 7,0.5 13.5-4.5t 11.25-14.5t 7.5-23
220
+ t 2.25-30.5q 7,2.5 15.5,3.5q-0.5,4 -1.75,13.75t-4.75,21.25t-10.25,23.25t-17.75,20.25q 6,0.5 14.5-0.75t 18.5-7.25t 21.5-17.5t 24-31q 2.5,1 4.75,1.5t 4.75,1.5q-4.5,7.5 -13.75,19.75t-21.75,23.5t-28.25,17.75t-32.75,2.5q 0.5,6 0,11.75t-2.25,9.75t-5,5.5t-7.75-1q-5-3 -6.5-5.5t-1.25-5.5t 1-6.5t 0.25-8q-0.5-5 -3.5-6
221
+ t-6.25-1t-6.5-0.75t-3.75-4.25zM 203,103.5q 10.5,0 20,4t 16.5,11t 11,16.5t 4,20t-4,20t-11,16.5t-16.5,11t-20,4t-20-4t-16.75-11t-11.25-16.5t-4-20t 4-20t 11.25-16.5t 16.75-11t 20-4zM 266.5,139.5q 9.5,0.5 17.75,4.5t 14.5,10.25t 9.75,14.75t 3.5,18q0,20 -14,34t-34,14q-11.5,0 -21.25-5t-16.75-13.5
222
+ q 19-7 30.75-23.75t 11.75-37.75q0-9 -2-15.5zM 187.5,186q 4.5,0 7.75-3.25t 3.25-7.75q0-5 -3.25-8.25t-7.75-3.25q-5,0 -8.25,3.25t-3.25,8.25q0,4.5 3.25,7.75t 8.25,3.25z" horiz-adv-x="425" />
223
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x61;&#x70;&#x70;&#x73;&#x74;&#x6f;&#x72;&#x65;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 81.5,199q0-5 6-5l 26.5,0 l 33,52l-59.5,0 q-6,0 -6-4.5l0-42.5 z
224
+ M 126,132.5q 5.5,3.5 0,6.5l-15.5,9q-5,2.5 -6-3l-2.5-23.5q-0.5-2.5 0.75-3t 3.25,0.5zM 131,146q 5-3.5 8,2l 72,125q 1,2 0.5,4.5t-3,3.5l-15.5,9q-2,1 -4.5,0.5t-3.5-3l-71.5-124.5q-3.5-5 2-8.5zM 250.5,194l-22,52l-15.5,0 l-33.5-52l 71,0 zM 274.5,185.5q 4.5-2.5 7-1.75t 5.5,2.25q 3.5,1 7,5t 1,9.5q-1.5,2.5 -7.5,13.5t-13.5,25.25
225
+ t-15.25,28.5t-13.25,23.25q-5.5,8.5 -11.75,19.25t-11.75,20.25t-10,15.25t-6.5,4.75q-3-1.5 -0.75-10.25t 6.75-20.25t 9.75-23t 8.25-18.5t 9.5-22t 13.75-30.25t 13.25-27.5t 8.5-13.25zM 294.5,153q 3.5-5 9.5-2.5l 6,4q 2.5,1 3.25,3.75t-0.75,5.25l-7.5,14q-1,2.5 -3.5,3.25t-5-0.25l-9-4.5q-2.5-1 -3-3.5t 1-5z
226
+ M 329,114q 1,13 -1,22q-1.5,7.5 -6.5,11.75t-15-1.25q-1.5-1.5 -3.75-5.5t 2.75-11q 2.5-3.5 6.25-5.5t 7.25-3.5t 6.25-3t 3.75-4zM 343,241.5q0,4.5 -6,4.5l-52.5,0 l 26.5-52l 26,0 q 6,0 6,5l0,42.5 z" horiz-adv-x="425" />
227
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x64;&#x65;&#x6c;&#x69;&#x63;&#x69;&#x6f;&#x75;&#x73;" d="M 212.5,430.5q 43.5,0 81.75-16.5t 66.5-45t 44.75-66.75t 16.5-81.75t-16.5-81.75t-44.75-66.75t-66.5-45t-81.75-16.5t-81.75,16.5t-66.75,45t-45,66.75t-16.5,81.75t 16.5,81.75t 45,66.75t 66.75,45t 81.75,16.5zM 317.5,325.5l-105,0 l0-105 l-105,0 l0-105 l 105,0 l0,105 l 105,0 l0,105 z" horiz-adv-x="425" />
228
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x73;&#x68;&#x61;&#x72;&#x65;&#x74;&#x68;&#x69;&#x73;" d="M 212.5,429q 43.5,0 81.5-16.5t 66.25-44.75t 44.75-66.25t 16.5-81.5t-16.5-81.5t-44.75-66.5t-66.25-45t-81.5-16.5t-81.5,16.5t-66.5,45t-45,66.5t-16.5,81.5t 16.5,81.5t 45,66.25t 66.5,44.75t 81.5,16.5zM 177.5,222.5l 84,42q 5.5-4.5 12.25-7.25t 14.75-2.75q 17.5,0 29.5,12t 12,29.5t-12,29.5t-29.5,12t-29.5-12t-12-29.5l0-2.5
229
+ l-84-42q-5.5,4.5 -12.25,7.25t-14.75,2.75q-17.5,0 -29.5-12t-12-29.5t 12-29.5t 29.5-12q 15.5,0 27,10l 84-42.5l0-2 q0-17.5 12-29.75t 29.5-12.25t 29.5,12.25t 12,29.75q0,17 -12,29.25t-29.5,12.25q-8,0 -14.75-2.75t-12.25-7.25l-84,42l0,2.5 l0,2.5 z" horiz-adv-x="425" />
230
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x73;&#x6c;&#x61;&#x73;&#x68;&#x64;&#x6f;&#x74;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 173,115.5l 91.5,209l-52,0 l-91.5-209l 52,0 zM 271,115.5q 13.5,0 23.25,9.5
231
+ t 9.75,23t-9.75,23t-23.25,9.5t-23-9.5t-9.5-23t 9.5-23t 23-9.5z" horiz-adv-x="425" />
232
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x70;&#x6f;&#x73;&#x74;&#x65;&#x72;&#x6f;&#x75;&#x73;" d="M 212.5,430q 43.5,0 81.5-16.5t 66.25-44.75t 44.75-66.25t 16.5-81.5t-16.5-81.5t-44.75-66.5t-66.25-45t-81.5-16.5t-81.5,16.5t-66.5,45t-45,66.5t-16.5,81.5t 16.5,81.5t 45,66.25t 66.5,44.75t 81.5,16.5zM 228.5,157q 15.5,0 30.75,6t 27.25,18.25t 19.5,31.25t 7.5,45q0,21 -5.75,38.25t-16.25,29.5t-25,19.25t-32,7
233
+ q-45,0 -66-35.5l-1.5-1l-2.5,0 l-2,32.5l-27,0 q 0.5-13.5 1-28t 0.5-32l0-197.5 l 30.5,0 l0,95 l 0.5,2l 3,0 l 0.5-1q 8.5-13.5 23.5-21.25t 33.5-7.75zM 223.5,328q 26,0 42.25-20.25t 16.25-52.25q0-34.5 -16.25-54.75t-43.25-20.25q-19,0 -33.75,11.5t-19.75,30.5q-1.5,6 -1.5,14.5l0,33 q0,6 2,14q 5,19.5 20,31.75t 34,12.25z" horiz-adv-x="425" />
234
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x69;&#x63;&#x6f;&#x6e;&#x64;&#x6f;&#x63;&#x6b;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 330,220.5q0,7 -3.5,10.5q-3.5,4 -10,4l-1.5,0 l-39-3.5q-8-1 -9.5-5
235
+ q-0.5-1 -0.25-2.5t 2.75-3.5q 7-7 13.5-9l 3.5-1.5l-2-3q-1.5-2 -6.5-6.5l-31-26q-1-1 -3-2.25t-4-1.25q-5.5,0 -5.5,8.5l0,74.5 l 1.5,0.5q 10.5,6.5 16.75,16.5t 6.25,22q0,9 -3.75,17.25t-10,14.25t-14.5,9.5t-17.75,3.5t-18-3.5t-14.75-9.5t-10-14.25t-3.75-17.25q0-12.5 6.75-23t 18.25-16.5l 1.5-0.5l0-75
236
+ q0-8.5 -5.5-8.5q-4,0 -7,3l-33,28q-5,4.5 -6.5,6.5l-2,3l 3.5,1.5q 6.5,2 13.5,9q 2.5,2 2.75,3.5t-0.25,2.5q-1.5,4 -9.5,5l-39,3.5l-1.5,0 q-6.5,0 -10-4q-4.5-4.5 -3.5-10.5l 4-37.5q 1.5-9 6.5-9q 1,0 2.25,0.25t 2.75,2.25q 3.5,3 6,6.75t 3.5,6.25l 1,3.5l 3.5-2q 1.5-1 7-6.5l 70-77q 4.5-5.5 11.5-5.5q 6.5,0 11,5.5l 70,77
237
+ q 5.5,5.5 7,6.5l 3.5,2l 1-3.5q 1-2.5 3.5-6.25t 6-6.75q 1.5-2 2.75-2.25t 2.25-0.25q 5,0 6.5,9zM 212.5,320q 11.5,0 19.5-8t 8-19q0-11.5 -8-19.25t-19.5-7.75t-19.75,7.75t-8.25,19.25q0,11 8.25,19t 19.75,8z" horiz-adv-x="425" />
238
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x69;&#x64;&#x65;&#x6e;&#x74;&#x69;&#x63;&#x61;" d="M 234,225.5q-6-5 -9-10q-6.5-5.5 -14.75-9t-17.75-3.5q-12,0 -23,5.5l-35.5-14.5l 11,42.5q-3.5,9.5 -3.5,18.5q0,11 4,20.5t 11,16.5t 16.25,11t 19.75,4t 19.75-4t 16-11t 10.75-16.5t 4-20.5q0-17 -9-29.5zM 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5
239
+ t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 289.5,140.5q 12.5,6.5 20,18.75t 7.5,26.75q0,11 -4,20.5t-10.75,16.5t-16,11t-19.75,4q-0.5,0 -1-0.25t-1-0.25q 2.5,10 2.5,19q0,16 -6,30.25t-16.25,24.75t-24,16.5t-29.25,6
240
+ q-16,0 -29.75-6t-23.75-16.5t-16-24.75t-6-30.25q0-17 6-31l-14.5-57.5l 53.5,17.5q 7-3 14.5-4.75t 16-1.75q 13,0 25,4.5q 1-17.5 12-30.75t 27-16.75l 23-30zM 266.5,214q 11,0 18.5-7.75t 7.5-19.25q0-8 -3.75-14t-9.75-9.5l-7-20l-10,17q-9.5,2 -15.5,9.25t-6,17.25q0,7.5 4,14.5l 3,3t 2.5,3.5
241
+ q 7.5,6 16.5,6z" horiz-adv-x="425" />
242
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x6e;&#x65;&#x77;&#x73;&#x76;&#x69;&#x6e;&#x65;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 225.5,201.5l0,51.5 l 30.5,22.5q 5-2.5 9.5-2.5q 7.5,0 12.75,5.5t 5.25,13
243
+ t-5.25,13t-13.25,5.5q-7.5,0 -13-5.5t-5.5-13q0-1 0.5-1.25t 0.5-1.25l-22-16.5l0,78 l-26.5,0 l0-41 l-22,16.5q0,1 0.25,1.75t 0.25,1.75q0,7.5 -5.25,13t-13.25,5.5q-7.5,0 -13-5.5t-5.5-13q0-8 5.5-13.25t 13-5.25q 5,0 8.5,2l 31.5-23l0-51.5 l-22,16.5q0,1 0.25,1.5t 0.25,1.5q0,7.5 -5.25,13t-13.25,5.5
244
+ q-7.5,0 -13-5.5t-5.5-13t 5.5-13t 13-5.5q 4.5,0 8.5,2.5l 31.5-23.5l0-54.5 l-22,16.5q0,1 0.25,1.5t 0.25,1.5q0,7.5 -5.25,13t-13.25,5.5q-7.5,0 -13-5.5t-5.5-13q0-8 5.5-13.25t 13-5.25q 4,0 9,2.5l 31-23.5l0-55 l 26.5,0 l0,18.5 l 30.5,22.5q 3.5-3 9.5-3q 7.5,0 12.75,5.5t 5.25,13q0,8 -5.25,13.25t-13.25,5.25
245
+ q-7.5,0 -13-5.25t-5.5-13.25q0-0.5 0.5-1t 0.5-1l-22-16.5l0,55 l 30.5,22.5q 4.5-3 9.5-3q 7.5,0 12.75,5.5t 5.25,13q0,8 -5.25,13.25t-13.25,5.25q-7.5,0 -13-5.25t-5.5-13.25q0-0.5 0.5-1t 0.5-1z" horiz-adv-x="425" />
246
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x69;&#x6d;&#x65;&#x73;&#x73;&#x61;&#x67;&#x65;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 212.5,120.5q 24,0 45.5,8t 37.5,21.75t 25.25,32.5t 9.25,39.75t-9.25,39.75
247
+ t-25.25,32.5t-37.5,21.75t-45.5,8q-24.5,0 -46-8t-37.5-21.75t-25.25-32.5t-9.25-39.75q0-25.5 13.25-47t 35.25-36q-1.5-9 -9-15.25t-18-7.25q 8-1.5 17-1.5q 24,0 39.5,11q 18.5-6 40-6z" horiz-adv-x="425" />
248
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x6c;&#x69;&#x6e;&#x6b;&#x65;&#x64;&#x69;&#x6e;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 147,272l-52.5,0 l0-170 l 52.5,0 l0,170 zM 121,285.5q 10.5,0 18.25,7.5t 7.75,18.5
249
+ t-7.75,18.5t-18.25,7.5q-11,0 -18.75-7.5t-7.75-18.5t 7.75-18.5t 18.75-7.5zM 330,200.5q0,18 -10,35.25t-26,26.25q-14.5,8 -33.75,8.5t-34.75-6.5l0,8 l-52.5,0 l0-170 l 52.5,0 l0,104 l 21.5,10.5q 4,2 11,2t 10.5-2.5q 3-1.5 6-6.5t 3-9l0-98.5 l 52.5,0 l0,98.5 z" horiz-adv-x="425" />
250
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x6d;&#x65;&#x74;&#x61;&#x63;&#x61;&#x66;&#x65;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 232.5,111q 3.5,10 6.5,19.25t 4,12.25q-3,2 -11.25,8t-16.75,13
251
+ q-10,8 -22.5,17l 62.5,0 q 1,0 4,9t 6.5,20q 4,13 8.5,29.5q 4.5-16.5 8.5-29.5q 3.5-11 6.75-20t 4.25-9l 33,0 l-52.5,157l-42.5-127.5l-137,0 zM 330,171l-43,0 l-13,40l-13-40l-43,0 l 34.5-26l-13-43l 34.5,27l 34.5-27l-13,43z" horiz-adv-x="425" />
252
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x6d;&#x6f;&#x62;&#x69;&#x6c;&#x65;&#x6d;&#x65;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 299.5,141.5q 9,0 17,4.75t 13.75,12.25t 9.25,16.25t 3.5,16.25
253
+ q0,15.5 -10,23t-20.5,11q 1,3.5 1.5,7t 0.5,7.5q0,12 -5,22.75t-13.5,18.75t-19.75,12.75t-24.25,4.75q-21,0 -37.25-11.75t-22.25-29.75q-10.5,13 -26.5,13q-15,0 -25.75-12t-10.75-29l0-2.5 q-1.5,0.5 -3.25,0.5l-3.25,0 q-6,0 -13.25-2t-13.5-6.5t-10.5-11.25t-4.25-16.25q0-9 3.5-18t 9.25-16t 13.75-11.25t 17-4.25
254
+ l 174.5,0 z" horiz-adv-x="425" />
255
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x61;&#x62;&#x6f;&#x75;&#x74;&#x6d;&#x65;" d="M 295,260q 13.5,0 22.5-10.5q 6-7.5 6.5-19.5l-59,0 q 0.5,13.5 9.5,21.5q 8.5,8.5 20.5,8.5zM 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25
256
+ l 209.5,0 zM 225,239.5q0,17 -8.5,26.5q-8.5,8.5 -24.5,8.5q-20,0 -32.5-18.5q-3,9 -10.5,13.5q-7,5 -19.5,5q-10.5,0 -19-5q-7.5-4 -13-12l0,14.5 l-16,0 l0-104.5 l 18,0 l0,54.5 q0,14 3,21.5q 2,7 9,11.5q 6,4 14,4q 10,0 14.5-6q 4.5-5.5 4.5-17.5l0-68 l 18,0 l0,61 q0,16.5 7,23.5q 8,7 18.5,7q 6.5,0 11-3q 4-2 6.5-7.5q 1.5-4.5 1.5-15
257
+ l0-66 l 18,0 l0,72 zM 343,220q0,25.5 -13.5,40t-34.5,14.5q-22,0 -35.5-14.5q-14-14.5 -14-41q0-25.5 13.5-39.5t 37-14q 18.5,0 30,8.5q 12,9 16.5,25l-18.5,2.5q-4.5-11.5 -11-16.5t-17-5q-13,0 -22,9q-9.5,9 -10,26.5l 79,0 l0,4.5 z" horiz-adv-x="425" />
258
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x73;&#x6d;&#x75;&#x67;&#x6d;&#x75;&#x67;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 280,325q-10,0 -16.75-5.25t-6.75-12.75q0-7 6.75-12.25
259
+ t 16.75-5.25t 16.75,5.25t 6.75,12.25q0,7.5 -6.75,12.75t-16.75,5.25zM 174,325q-10,0 -17-5.25t-7-12.75q0-7 7-12.25t 17-5.25t 16.75,5.25t 6.75,12.25q0,7.5 -6.75,12.75t-16.75,5.25zM 199,89q 26,0 46.75,9.5t 36.75,24.25t 27.5,32.5t 18.75,34t 10.75,28.75t 3.5,17q0,6.5 -2.75,10.25t-6.25,5.75
260
+ q-4,2 -8.5,3l-201.5,0 q-1.5-0.5 -3.5-2q-1.5-1.5 -3.75-4t-4.25-7q-11-22 -13.5-48.25t 6.75-49.5t 31.75-38.75t 61.5-15.5zM 132.5,142q-6,10 -8.5,21.75t-2,23.75t 3.75,23t 7.75,20l 185,0 q-1.5-6 -5.5-17t-10.75-24t-16.25-26.75t-22.25-25t-29-18.25t-35.75-7q-8.5,0 -17.75,1.25t-18.25,4.5t-17,9
261
+ t-13.5,14.75z" horiz-adv-x="425" />
262
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x6d;&#x79;&#x73;&#x70;&#x61;&#x63;&#x65;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 253,337.5q-14.5,0 -25-10.25t-10.5-24.75t 10.5-25t 25-10.5t 24.75,10.5
263
+ t 10.25,25t-10.25,24.75t-24.75,10.25zM 184.5,329.5q-11.5,0 -19.25-8t-7.75-19q0-11.5 7.75-19.5t 19.25-8t 19.25,8t 7.75,19.5q0,11 -7.75,19t-19.25,8zM 132.5,323q-8.5,0 -14.5-6t-6-14.5t 6-14.75t 14.5-6.25t 14.75,6.25t 6.25,14.75t-6.25,14.5t-14.75,6zM 304,205.5q0,10 -4,18.75t-10.75,15.25
264
+ t-15.75,10.25t-19,3.75t-19-3.75t-15.5-10.25q-3,11.5 -12.75,19t-22.25,7.5q-8.5,0 -15.5-3.5t-12.5-9q-2,8 -8.75,13.25t-15.25,5.25q-10.5,0 -18-7.25t-7.5-17.75l0-40 l 39.5,0 l0-39.5 l 52,0 l0-52 l 105,0 l0,90 z" horiz-adv-x="425" />
265
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x79;&#x6f;&#x75;&#x74;&#x75;&#x62;&#x65;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 180.5,239q0-11.5 7.5-18q 7-6.5 20-6.5q 13.5,0 20.5,6.5q 7.5,6 7.5,18
266
+ l0,46 q0,9.5 -7.5,16.5q-7,6.5 -19.5,6.5q-13,0 -20.5-6q-8-6 -8-16.5l0-46.5 zM 153.5,214.5l-59,0 l0-16 l 20,0 l0-94 l 19,0 l0,94 l 20,0 l0,16 zM 154,266.5l 25,71l-22,0 l-13-48.5l-1.5,0 l-14,48.5l-21.5,0 l 25.5-73l0-48 l 21.5,0 l0,50 zM 209.5,185.5l-17,0 l0-61.5 q-1-1.5 -2.5-2.5l-3-2q-3-1.5 -4.5-1.5q-2.5,0 -3.5,1t-1,4.5l0,62 l-17,0 l0-68 q0-7 3-10.5
267
+ q 3-4 8.5-4q 4.5,0 10,3q 4.5,2 10,7.5l0-9 l 17,0 l0,81 zM 271,166q0,10 -4.5,15.5q-3.5,5 -12,5q-4.5,0 -8-2q-4-1.5 -7-5.5l0,35.5 l-17.5,0 l0-110 l 17.5,0 l0,6 q 1.5-2 3.25-3.25t 3.75-2.25q 3.5-1.5 9-1.5q 7.5,0 11.5,4.5q 4,5 4,13l0,45 zM 265,215.5q 6,0 11,2.5t 11,8.5l0-10 l 19,0 l0,89.5 l-19,0 l0-68 q-2-2.5 -6-5q-3-1.5 -5-1.5
268
+ q-3.5,0 -4,1.5q-1.5,1.5 -1.5,4.5l0,68.5 l-19,0 l0-75 q0-8 3.5-11.5q 2.5-4 10-4zM 330,163.5q0,12 -6.5,18q-6,6 -18,6q-11.5,0 -18.5-6.5q-7-7 -7-17.5l0-36 q0-12 6.5-18.5q 7-7 18-7q 12.5,0 19,6.5q 6.5,6 6.5,19l0,4 l-17.5,0 l0-3.5 q0-7.5 -1.5-9.5q-2-2 -6-2q-5,0 -6,2.5q-1.5,2 -1.5,9l0,15 l 32.5,0 l0,20.5 zM 305,173.5
269
+ q 4,0 5.5-2.5q 2-2 2-7l0-8.5 l-15,0 l0,8.5 q0,4.5 1.5,7q 2.5,2.5 6,2.5zM 246.5,173.5q 3.5,0 5-2q 2-2 2-6l0-42 q0-4 -1.5-5.5q-1.5-2 -4.5-2q-2,0 -4,1q-2.5,1 -4,3l0,50.5 q 2,2 3.5,2.5q 1,0.5 3.5,0.5zM 208,230q-4,0 -5.5,2q-2.5,1.5 -2.5,5.5l0,48.5 q0,2.5 2.5,5q 2,1.5 5.5,1.5t 6.5-1.5q 2-2 2-5l0-48.5 q0-4 -2-5.5q-2-2 -6.5-2z" horiz-adv-x="425" />
270
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x64;&#x72;&#x69;&#x62;&#x62;&#x6c;&#x65;" d="M 234.5,237.5q 15.5,7 30.25,16.5t 28.25,21q 8.5-12 12.75-26t 4.75-28.5q-19,4.5 -37.5,4.5q-7.5,0 -15.5-0.75t-16.5-2.75l-3,8t-3.5,8zM 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75
271
+ l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 212.5,102q 24,0 45.5,9.25t 37.5,25.25t 25.25,37.5t 9.25,46q0,24 -9.25,45.5t-25.25,37.5t-37.5,25.25t-45.5,9.25q-24.5,0 -46-9.25t-37.5-25.25t-25.25-37.5t-9.25-45.5q0-24.5 9.25-46t 25.25-37.5t 37.5-25.25t 46-9.25zM 248,203q 14,2.5 25,2.5q 18.5,0 35.5-5
272
+ q-4-20.5 -16.25-37.5t-30.25-27.5q-2,17.5 -5.5,34.5t-8.5,33zM 280.5,290q-13-10.5 -26.5-19.25t-28-15.25q-8.5,15.5 -18,30.25t-21,28.75q 6,1.5 12.25,2.5t 13.25,1q 19,0 36.5-7.25t 31.5-20.75zM 155.5,140q 13,21 31.75,35.75t 41.25,22.25q 11.5-34.5 14.5-71q-14.5-5 -30.5-5q-32.5,0 -57,18zM 222,216.5
273
+ q-25-8.5 -46-24.5t-35.5-38.5q-24.5,26 -26,62q 4-0.5 7-0.5l 6.5,0 q 22.5,0 44.75,3.75t 43.25,11.75q 2-3.5 3.25-7t 2.75-7zM 207.5,248q-38.5-13.5 -79.5-13.5l-6.75,0 t-5.75,0.5q 3.5,23 17.25,42t 34.75,30q 23-27.5 40-59z" horiz-adv-x="425" />
274
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x64;&#x69;&#x67;&#x67;&#x61;&#x6c;&#x74;" d="M 317,194l-13,0 l0,39 l 13,0 l0-39 zM 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 147,298.5l-26,0 l0-39.5 l-39.5,0 l0-91.5 l 65.5,0 l0,91.5
275
+ l0,39.5 zM 186,259l-26,0 l0-91.5 l 26,0 l0,91.5 zM 186,298.5l-26,0 l0-26.5 l 26,0 l0,26.5 zM 264.5,259l-65.5,0 l0-91.5 l 39.5,0 l0-13 l-39.5,0 l0-26 l 65.5,0 l0,26 l0,13 l0,91.5 zM 343,259l-65.5,0 l0-91.5 l 39.5,0 l0-13 l-39.5,0 l0-26 l 65.5,0 l0,26 l0,13 l0,91.5 zM 107.5,233l 13.5,0 l0-39 l-13.5,0 l0,39 zM 238.5,194l-13,0 l0,39 l 13,0 l0-39 z" horiz-adv-x="425" />
276
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x62;&#x6c;&#x6f;&#x67;&#x67;&#x65;&#x72;" d="M 185,251q-6,0 -10.25,4.25t-4.25,9.75q0,6 4.25,10t 10.25,4l 41,0 q 6,0 10.25-4t 4.25-10q0-5.5 -4.25-9.75t-10.25-4.25l-41,0 zM 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5
277
+ t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 344.5,239l-0.5,3.5l-2,4l-3.5,2.5q-1.5,1.5 -6,1.5t-9.5,0.25t-9.75,0.75t-6.75,2.5q-3.5,3 -4.25,8t-1.75,12t-1.75,11t-1.5,6.5t-1.75,4t-2,4q-4,8 -10.75,15.25t-14.75,12.5t-16.5,8.5t-15.5,4.25l-52,0 q-15.5,0 -29-6t-23.75-16t-16.25-23.5t-6-29
278
+ l0-86.5 q0-15.5 6-29t 16.25-23.75t 23.75-16t 29-5.75l 85.5,0 q 15.5,0 29,5.75t 23.5,16t 16,23.75t 6,29zM 269,194q 5.5,0 9.75-4t 4.25-10q0-5.5 -4.25-9.75t-9.75-4.25l-84,0 q-6,0 -10.25,4.25t-4.25,9.75q0,6 4.25,10t 10.25,4l 84,0 z" horiz-adv-x="425" />
279
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x67;&#x6f;&#x77;&#x61;&#x6c;&#x6c;&#x61;" d="M 138.5,140l0-9.25 t-1-10.25q-0.5-0.5 -1.5-1t-3.5-0.5q-8,0 -8,6.5q0,5.5 3.75,10.5t 10.25,10.5l0-6.5 zM 199,147.5q-3.5-5 -11-6.5l-3.5,0 l 0.5,1q 2.5,5.5 6.75,7.75t 6.75,2.25l 1,0 q 1-2.5 -0.5-4.5zM 146,302q 8-8.5 10.25-13.5t 1.75-6.5q0-1 -2-2q-1,0 -1.5-0.25t-1-0.25q-3.5,0 -5.5,4.5t-2,9.5l0,8.5 zM 317,429
280
+ q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 339.5,110q 2.5,5.5 3.5,13q-2.5,2.5 -4.75,4.25t-4.75,4.25q-2.5,2 -4.25,3.5t-3.75,3.5q0,3 -0.5,6
281
+ l-1,6q-9.5,48.5 -42.25,75.5t-92.75,37l0,2.5 q 1.5,11 3.25,24t 2,25t-1.5,22.5t-6.75,17q-5.5,7.5 -15.5,8.5l-2,0 q-8.5,0 -17-6.5t-14-27.5q-5,4 -11,7t-13,3q-9.5,0 -19-6q-9-5 -10-16.5q0-8 4.75-17t 12-17.75t 16-16.75t 16.25-14q-6-4 -14-10.75t-16-14.5t-14-16.5t-7.5-17.25q-2.5-13 5-22.5
282
+ q 7.5-8.5 19.5-8.5q 4,0 10,1.5t 13.75,6.25t 16.75,13.75t 19,23.5q 2-7 1-15t-9.5-14.5l-5.5-3.5q-16.5-12 -28-22.25t-11.5-24.75q0-8.5 5.5-13.75t 14.5-5.25q 5.5,0 10.75,2.25t 6.75,7.25q 2.5,7.5 2.5,16q 3.5-1 7.75-1.5t 8.75-1.5q-2-11 -2-24.75t 3.5-26.75l 12.5,0 q-4,11.5 -4,25.5t 2,25.5q 4-0.5 9,0.5q 13.5,2.5 19.5,12
283
+ q 4,7 1.5,15q-2.5,8.5 -12.5,8.5q-6,0 -13.25-4.25t-11.25-12.75q-1-1.5 -1.5-2.75t-1.5-3.25q-4.5,0.5 -8.75,1.25t-7.75,1.75q-4,1 -7.5,1.5l-7.5,1.5q 4,3.5 9,7t 10.5,7.5l 5.5,4q 8,6 11.5,13.75t 3.5,15.5t-2,15t-4.5,11.75l-4.5,9.5l-6-9q-10.5-17.5 -19.75-27.25t-16.5-14.75t-12.5-6.25t-7.25-1.25q-6.5,0 -10,4.5
284
+ q-3.5,3.5 -2.5,11.5q 1.5,7.5 8,15.75t 15,16.25t 17,14.25t 13.5,9.75l 8,5.5l-8,5q-8.5,6 -17.5,14t-16.25,16.5t-12,16.25t-4.75,13.25q0,4.5 3.5,6.5q 10,6 17.75,3.25t 16.75-11.25q-1-7.5 -1.25-13t-0.25-7.5q0-9.5 5-18t 15-8.5q 3,0 7,1.5q 5.5,2.5 7.25,5.5t 2.25,5.5q 3,13.5 -16.5,33l-5.5,5.5q 1,5 2.5,10.75t 4.25,10.75
285
+ t 6.25,8t 8.5,2.5q 5-1 7-4q 3.5-5 4.75-14.25t 0.75-20.5t-2-23t-3-20.75l-2-15l 6-1q 59.5-8.5 90.75-33.25t 40.25-70.25q-2,1 -3.5,1.5l-3,1q-8,2.5 -17.75,4.25t-19.75,1.75q-33,0 -44.5-23.5q-6.5-13 -8.25-28t 1.75-27.5l 12.5,0 q-3.5,10.5 -2.25,24.25t 7.25,25.75q 7.5,16.5 33.5,16.5q 9,0 18.25-1.75
286
+ t 16.25-3.75q 5-1.5 11-6.5q-0.5-14.5 -6.75-23.5t-13.75-14t-13.75-6.75t-6.75-1.75l-13-2.5l 7-6l 20.5,0 q 11.5,4.5 23,15.25t 14.5,29.75q 0.5,0 0.5-0.25t 0.5-0.25q 3.5-3 6.75-6.25t 7.25-5.75z" horiz-adv-x="425" />
287
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x76;&#x69;&#x64;&#x64;&#x6c;&#x65;&#x72;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 273,207q 12,0 22.25,4.5t 18,12.25t 12.25,18.25t 4.5,23t-4.5,23t-12.25,18.5
288
+ t-18,12.5t-22.25,4.5q-10.5,0 -20-4.25t-17-11.5t-12.5-16.5t-6.5-19.25l-2,0 q-1.5,10 -6.5,19.25t-12.5,16.5t-17,11.5t-20,4.25q-12,0 -23.25-4.75t-20-12.75t-14-18.75t-5.25-23.25t 4.25-22.75t 11.25-17.75t 16-12t 19-4.5l 13,0 l0-23.5 l-65.5,18.5l0-79.5 l 65.5,20.5l0-27.5 l 95.5,0 l-28,91.5l 45.5,0 zM 274,281q 7,0 11.75-5
289
+ t 4.75-12t-4.75-12t-11.75-5q-6.5,0 -11.25,5t-4.75,12t 4.75,12t 11.25,5zM 159,281q 7,0 11.5-5t 4.5-12t-4.5-12t-11.5-5t-11.5,5t-4.5,12t 4.5,12t 11.5,5z" horiz-adv-x="425" />
290
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x62;&#x65;&#x68;&#x61;&#x6e;&#x63;&#x65;" d="M 173.5,238.5q-3-2 -6.75-3.75t-8.75-1.75l-24,0 l0,39 l 20.5,0 q 5.5,0 9.5-1t 7.5-2.5q 4-1.5 5.75-5.5t 1.75-9.5q0-11 -5.5-15zM 173,206q 4.5-2.5 6.75-5.75t 2.25-9.75q0-14.5 -9.5-19.5q-6-3.5 -14.5-3.5l-24,0 l0,39.5 l 24.5,0 l 8.25,0 t 6.25-1zM 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209
291
+ q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 251.5,272l 52.5,0 l0,26.5 l-52.5,0 l0-26.5 zM 206,164q 6.5,11.5 6.5,25q0,13 -6,23q-5.5,9 -16.5,13.5q 7,4 11,9q 6.5,8.5 6.5,23t-6.5,24q-10.5,16 -37,17
292
+ l-69.5,0 l0-157 l 65,0 q 5.5,0 10.5,0.5t 9.5,1.5q 9.5,2.5 16,8q 3.5,2.5 5.75,5.5t 4.75,7zM 330,194q-0.5,4.5 -0.5,8.5q0,3.5 -0.25,7t-0.25,5.5q-1,7 -3,12.25t-5,10.25q-7,11.5 -17,16.5t-23,5q-22,0 -35.5-15q-13.5-16 -13.5-44.5q0-30.5 15-44t 35-13.5q 11.5,0 20.75,4.5t 16.25,12.5q 4,5.5 6.5,10t 3,11.5l-26.5,0 q-1-7 -2.25-7.25
293
+ t-2.75-1.75q-3-2.5 -6.5-4.25t-8-1.75q-8.5,0 -14.5,4.5q-4.5,3 -7,8.5t-3,15.5l 72,0 zM 281,233q 9,0 15-6q 3.5-3 5-6.5t 2-13.5l-44.5,0 q 1,10 2.75,13t 4.25,6.5q 5.5,6.5 15.5,6.5z" horiz-adv-x="425" />
294
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x74;&#x77;&#x69;&#x74;&#x74;&#x65;&#x72;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 199,154.5q-10,0 -18,8t-8,18l0,39.5 l 104.5,0 q 10,0 18.25,8t 8.25,18
295
+ t-8.25,18t-18.25,8l-104.5,0 l0,39.5 q0,10 -8,18t-18,8t-18-8t-8-18l0-131 q0-19.5 6.75-34.25t 17.75-24.5t 25-14.75t 28.5-5l 78.5,0 q 10,0 18.25,8.25t 8.25,18.25t-8.25,18t-18.25,8l-78.5,0 z" horiz-adv-x="425" />
296
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x63;&#x6f;&#x72;&#x6f;&#x66;&#x6c;&#x6f;&#x74;" d="M 212.5,429.5q 43.5,0 81.5-16.5t 66.25-44.75t 44.75-66.25t 16.5-81.5q0-43 -16.5-81t-44.75-66.5t-66.25-45t-81.5-16.5t-81.5,16.5t-66.25,45t-44.75,66.5t-16.5,81q0,43.5 16.5,81.5t 44.75,66.25t 66.25,44.75t 81.5,16.5zM 113,298.5q-1.5-7.5 9-8.5t 25.5,0q 7,0.5 13.5-4.25t 11.25-14.25t 7.5-23.25t 2.25-30.25
297
+ q 6.5,2 15,3q0,4 -1.25,13.75t-5,21.5t-10.5,23.5t-17.75,20.25q 6,0.5 14.5-1t 18.5-7.5t 21.5-17.5t 24-31q 4.5,2.5 9.5,3q-4.5,7.5 -13.75,19.75t-21.75,23.5t-28.25,18t-32.75,2.25q 0.5,6 0,11.75t-2.25,9.75t-4.75,5.5t-7.5-1q-5.5-3 -6.75-5.5t-1-5.5t 1-6.5t 0.25-8q-1-4.5 -3.75-5.75t-6.25-1.25t-6.5-0.5t-3.5-4z
298
+ M 203,104.5q 10.5,0 20,4t 16.5,11t 11,16.5t 4,20t-4,20t-11,16.5t-16.5,11t-20,4t-20-4t-16.5-11t-11-16.5t-4-20t 4-20t 11-16.5t 16.5-11t 20-4zM 266.5,140.5q 9.5,0.5 17.75,4.25t 14.5,10.25t 9.75,15t 3.5,18q0,20 -14,34t-34,14q-11.5,0 -21.25-5.25t-16.75-13.75q 19-7 30.75-23.5t 11.75-37.5q0-9 -2-15.5z
299
+ M 187.5,187q 5,0 8.25-3.25t 3.25-8.25q0-4.5 -3.25-7.75t-8.25-3.25q-4.5,0 -7.75,3.25t-3.25,7.75q0,5 3.25,8.25t 7.75,3.25z" horiz-adv-x="425" />
300
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x72;&#x65;&#x74;&#x77;&#x65;&#x65;&#x74;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 251.5,141.5l-39,39l-39.5,0 l0,52.5 l 39.5,0 l-65.5,65.5l-65.5-65.5l 39.5,0 l0-78.5
301
+ q0-5 4-9t 9-4l 117.5,0 zM 343,207l-39,0 l0,80 q0,5.5 -4,8.5t-9.5,3l-117.5,0 l 39.5-39.5l 39,0 l0-52 l-39,0 l 65-65.5z" horiz-adv-x="425" />
302
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x70;&#x6f;&#x64;&#x63;&#x61;&#x73;&#x74;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 212,102q 16,0 27.25,14t 11.25,42q0,14 -3.25,21.5t-8.5,11t-12.25,4
303
+ t-14.5,0.5t-14.5-0.5t-12.25-4t-8.5-11t-3.25-21.5q0-28 11.25-42t 27.25-14zM 186,224q0-10 7.5-17.25t 18.5-7.25t 18.5,7.25t 7.5,17.25t-7.5,17t-18.5,7t-18.5-7t-7.5-17zM 294.5,210.5q0,1 0.25,2.25t 0.25,2.25q0,16 -6.5,31t-17.75,26.75t-26.25,18.75t-32,7q-17.5,0 -32.5-7t-26.5-18.75t-18-26.75t-6.5-31
304
+ q0-1 0.25-2.25t 0.25-2.25q 1,15 7.75,26.5t 18,19.25t 26,11.75t 31.25,4t 31-4t 25.5-11.75t 17.75-19.25t 7.75-26.5zM 342.5,215q0,25.5 -10.25,47.75t-28,38.75t-41.5,26.25t-50.75,9.75t-50.75-9.75t-41.5-26.25t-28-38.75t-10.25-47.75l0-5 q 1,24.5 11.5,43.5t 28.25,31.75t 41,19.5t 49.75,6.75t 49.75-6.75
305
+ t 40.75-19.5t 28.25-31.75t 11.75-43.5l0,5 z" horiz-adv-x="425" />
306
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x61;&#x70;&#x70;&#x73;&#x74;&#x6f;&#x72;&#x65;" d="M 212,429.5q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.25t 16.5-81.5t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.5,16.5t-66.25,45t-44.75,66.5t-16.5,81.5t 16.5,81.5t 44.75,66.25t 66.25,44.75t 81.5,16.5zM 81.5,200q0-6 6-6l 26.5,0 l 33,52.5l-59.5,0 q-6,0 -6-4.5l0-42 zM 126,133q 2.5,1.5 2.25,3.5t-2.25,3l-15.5,9
307
+ q-5,2.5 -6-3l-2.5-23.5q-0.5-2.5 0.75-3.25t 3.25,0.75zM 131,146.5q 2-1.5 4.5-1t 3.5,3l 71.5,125q 1.5,2 1,4.5t-3,3.5l-15.5,9q-5.5,2.5 -8-2.5l-72-124.5q-2.5-5 2.5-8.5zM 250.5,194l-22,52.5l-16,0 l-33-52.5l 71,0 zM 274.5,186q 4.5-2.5 7-1.75t 5.5,2.25q 3,1 6.75,5t 1.25,9.5q-1.5,2.5 -7.5,13.5t-13.5,25.25t-15.25,28.5t-13.25,23.25
308
+ q-5.5,8.5 -11.75,19.25t-11.75,20t-10,15.25t-6.5,5q-3-1.5 -0.75-10.25t 6.75-20.25t 9.75-23t 8.25-18.5t 9.5-22t 13.5-30.25t 13.25-27.5t 8.75-13.25zM 294.5,153.5q 3.5-5.5 9-2.5l 6.5,4q 2.5,1 3,3.75t-0.5,5.25l-7.5,14q-1,2.5 -3.5,3.25t-5-0.25l-9-4.5q-2.5-1 -3-3.5t 1-5zM 329,114.5q 1,13 -1,22
309
+ q-2,7.5 -6.75,11.75t-14.75-1.25q-1.5-1.5 -3.75-5.5t 2.75-11q 2.5-3.5 6.25-5.5t 7.25-3.5t 6.25-3t 3.75-4zM 343,242q0,2.5 -1.75,3.5t-4.25,1l-52.5,0 l 26.5-52.5l 26,0 q 2.5,0 4.25,1.75t 1.75,4.25l0,42 z" horiz-adv-x="425" />
310
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x65;&#x6d;&#x62;&#x65;&#x72;&#x61;&#x70;&#x70;" d="M 305.5,221q0-5 -0.75-10.25t-0.75-10.75q0-14.5 -4.75-29t-14.75-27q-12-15 -29-23t-41.5-9q-28.5,1.5 -49.5,15t-31,40q0,3 -3.5,6.25t-5,7.25q 1,1 1.25,1.5t 1.25,1.5l-0.5,0 q 2.5,2.5 3,6.5t 1,9.5q 1,9 3.75,22.75t 12.75,27.25q 8.5,11.5 19.75,21.75t 22.25,19.25q 10.5,9 19,16.75t 13.5,15.25q 9.5-7.5 21.5-18
311
+ t 22.75-22.5t 18.5-24.5t 8.75-24l 3-24zM 285,156.5q 7.5,9 11.75,19.5t 6.75,21l-7-8.5l-3,24.5q-1,11.5 -8.75,24t-18.5,24.5t-22.75,22.5t-21.5,18q-5-7.5 -13.5-15.5t-19-16.5q-11-9.5 -22.25-19.75t-19.75-21.75q-10-13 -12.75-26.75t-3.75-22.75q-0.5-1 -0.5-3q 26.5-49.5 81.5-51.5q 49.5,1.5 73,32zM 212,430
312
+ q 43.5,0 81.75-16.5t 66.75-45t 45-66.5t 16.5-81.5t-16.5-81.75t-45-66.75t-66.75-45t-81.75-16.5t-81.5,16.5t-66.5,45t-45,66.75t-16.5,81.75t 16.5,81.5t 45,66.5t 66.5,45t 81.5,16.5zM 211.5,102.5q 35,1 56,13.75t 32,30.75t 14.5,38.5t 3,37.5t-2.5,27.25t-1.5,7.75q 0.5-4 -0.75-8t-3.25-7.5q-2-4 -5-8
313
+ q-2.5,17.5 -16,36.25t-29.5,33.75q-18.5,17.5 -41,34q-0.5-8 -9.25-17t-20.75-19.5t-25.5-22t-23-25q-8.5-11 -12-22.5t-5-20.75t-2-15.5t-2-6.75q-3-1 -7,1q-2,1 -3.5,2.5q 9-30.5 22.75-48.25t 28.75-27t 29-12t 23.5-3.25z" horiz-adv-x="425" />
314
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x77;&#x69;&#x6e;&#x64;&#x6f;&#x77;&#x73;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 122.5,244.5q 21,8 39.5,8q 13,0 23.25-4.25t 18.25-9.25l 21.5,72.5
315
+ q-3.5,2 -11,5.75t-14,5.25q-7.5,2 -17.5,2q-9-0.5 -18.75-2.5t-21.25-6.5zM 133,155.5q 14,0 24.25-4.25t 18.75-9.75q 2,6.5 5.25,17t 6.25,21.5t 5.75,20.5t 4.25,14.5q-2,1 -4,2.5t-4,2.5q-17,8.5 -32,8.5q-2.5,0 -4-0.5q-10-1 -18.25-2.75t-13.75-4.25l-3-1t-3.5-1l-20.5-71.5q 21,8 38.5,8zM 301.5,194.5
316
+ q-19.5-6.5 -38-6.5q-17,0 -28.5,4.25t-19,9.75l-21-72q 2.5-1.5 7.25-3.75t 10.75-4.75t 12.5-4.25t 12.5-1.75q 19.5,0 44,10zM 330,291.5q-20.5-7.5 -39.5-7.5q-16,0 -27.5,4.25t-19,9.75l-21-72.5q 20.5-14 45.5-14q 20.5,0 40,9.5l0,0.5 l 1,0 z" horiz-adv-x="425" />
317
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x66;&#x61;&#x63;&#x65;&#x62;&#x6f;&#x6f;&#x6b;" d="M 212,429.5q 43.5,0 81.75-16.5t 66.75-45t 45-66.5t 16.5-81.5t-16.5-81.75t-45-66.75t-66.75-45t-81.75-16.5t-81.5,16.5t-66.5,45t-45,66.75t-16.5,81.75t 16.5,81.5t 45,66.5t 66.5,45t 81.5,16.5zM 291,338l-44.5,0 q-13,0 -24-4.5t-19.25-12t-12.75-17t-4.5-19l0-26.5 l-39.5,0 l0-52 l 39.5,0 l0-105 l 52.5,0 l0,105 l 39,0 l0,52 l-39,0
318
+ l0,13.5 q0,6 4.75,9.5t 8.25,3.5l 39.5,0 l0,52.5 z" horiz-adv-x="425" />
319
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x73;&#x71;&#x75;&#x69;&#x64;&#x6f;&#x6f;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 262,102q 12.5,0 25.5,7t 23.25,18.75t 15.5,27.5t 2.75,33.75t-11,28.5
320
+ t-18.75,16t-20.5,7.25t-16.25,2.25q-12.5,0.5 -10.5,11.75t 12.5,29.25q 3.5,6.5 4.5,14.5t-1.25,15.25t-7.25,13.5t-13,9.25l-27,0 q 7,0 12.75-6t 9.75-13.5t 1.25-15.5t-7.75-14.5q-6-8 -15-15q-0.5,4 -3.5,12t-9.75,17.5t-17.5,19t-26.75,16l-21,0 q-1.5,0 -3,0.5t-3.5,0.5q 8-8 16.75-13.5t 15.75-9.5q 8-4.5 12.25-12.75
321
+ t 6.25-16.75q 2-9.5 2.5-20q-6.5,0 -14,2q-7,1.5 -15.75,4.25t-19.25,7.25q-8,3.5 -12.5,9.25t-7.25,12.5t-4.5,14.25t-4.25,15q-4-3 -7-6.5t-5.5-7.5q 1.5-4 2.75-8.75t 2.75-10.25q 4.5-19 15.25-32t 22.25-21.5q 13-9.5 29-15.5q-13-3 -26-5q-11-2 -22.5-3.25t-20-0.25q-3,0.5 -6,1.75t-3,3.25l0-27.5
322
+ q 14.5-4 33-3t 36,2q 13.5,0.5 18.5-4.75t 6.25-13t 1.25-17.25t 3.5-18q 9.5-23.5 27.25-32t 41.75-8.5zM 277,221q 9-3 15.5-9.25t 10-14.5t 3.75-17.75t-3.25-19t-10-17t-14.5-12t-17-5.75t-18,1.75t-15.5,9t-10,14.25t-4,17.75t 3,19.5q 3.5,9.5 10,17t 14.5,12t 17.25,5.75t 18.25-1.75zM 271,152.5q 8.5,0 14.25,6.25
323
+ t 5.75,15.25q0,7.5 -4.25,13.25t-11.25,7.75q-1.5-7.5 -6-10.5q-3-2.5 -7.5-2.75t-9,0.25q-1.5-4 -1.5-8q0-9 5.5-15.25t 14-6.25z" horiz-adv-x="425" />
324
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x73;&#x6c;&#x61;&#x73;&#x68;&#x64;&#x6f;&#x74;" d="M 212.5,429q 43.5,0 81.5-16.5t 66.25-44.75t 44.75-66.25t 16.5-81.5t-16.5-81.5t-44.75-66.5t-66.25-45t-81.5-16.5t-81.5,16.5t-66.5,45t-45,66.5t-16.5,81.5t 16.5,81.5t 45,66.25t 66.5,44.75t 81.5,16.5zM 264.5,324.5l-52,0 l-91.5-209l 52,0 zM 271,115.5q 13.5,0 23.25,9.5t 9.75,23t-9.75,23t-23.25,9.5t-23-9.5t-9.5-23
325
+ t 9.5-23t 23-9.5z" horiz-adv-x="425" />
326
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x73;&#x70;&#x6f;&#x74;&#x69;&#x66;&#x79;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 97,318.5q-7-4.5 -7-12q0-6 4.25-10.25t 10.25-4.25
327
+ q 1,0 1.5,0.25t 1.5,0.25q 24,9.5 49.25,14.5t 52.25,5t 52.25-5t 48.75-14.5q 1,0 1.75-0.25t 1.75-0.25q 6,0 10,4.25t 4,10.25q0,9 -8,12q-25.5,10 -53.25,15.5t-57.25,5.5q-30,0 -58-5.5t-54-15.5zM 209,266q 24,0 46.75-5t 43.75-14q 1,0 1.25-0.25t 1.25-0.25q 2.5,0 4.5,1.25t 3.5,2.75l 1.5,6q0,4.5 -3,7
328
+ q-23,10 -47.75,15.5t-51.75,5.5t-51.75-5.5t-47.75-15.5q-3.5-3.5 -3.5-7l 2-5.5q 2.5-4 7.5-4q 2.5,0 3.5,0.5q 42.5,18.5 90,18.5zM 295.5,208q 2,4 0,7.75t-5,4.75q-18.5,9.5 -39,13.75t-42.5,4.25q-44.5,0 -83-18.5q-1.5-1 -3.5-3.75t0-7.75q 2-5.5 5-6t 5,0.5q 36.5,17 76.5,17q 20,0 38.5-4.25t 36-11.75q 8.5-4 12,4z
329
+ M 308.5,100q 10,0 18.75,3.75t 15.75,9.75q-9,17.5 -22.5,32t-30.25,24.75t-36.25,16t-40.5,5.75q-22,0 -42-6t-37.25-17t-30.75-26.5t-22-34q 12.5-8.5 27.5-8.5l 32,0 q 12.5,17 31.25,27t 41.25,10t 41.5-10t 31-27l 22.5,0 z" horiz-adv-x="425" />
330
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x6e;&#x65;&#x77;&#x73;&#x76;&#x69;&#x6e;&#x65;" d="M 212,430q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.25t 16.5-81.5t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.5,16.5t-66.25,45t-44.75,66.5t-16.5,81.5t 16.5,81.5t 44.75,66.25t 66.25,44.75t 81.5,16.5zM 225,202.5l0,51.5 l 31,22.5q 5-2.5 9.5-2.5q 7.5,0 12.75,5.5t 5.25,13t-5.5,13t-13,5.5t-13-5.5t-5.5-13q0-0.5 1-2.5
331
+ l-22.5-16.5l0,78 l-26,0 l0-41 l-22.5,16.5q 1,2 1,3.5q0,7.5 -5.5,13t-13,5.5q-8,0 -13.25-5.5t-5.25-13q0-8 5.5-13.25t 13-5.25q 4.5,0 8.5,2l 31.5-23l0-51.5 l-22.5,16.5q 1,2 1,3q0,7.5 -5.5,13t-13,5.5q-8,0 -13.25-5.5t-5.25-13t 5.5-13t 13-5.5q 4.5,0 8.5,2.5l 31.5-23.5l0-54.5 l-22,16.5q0,1 0.25,1.5t 0.25,1.5
332
+ q0,7.5 -5.5,13t-13,5.5q-8,0 -13.25-5.5t-5.25-13q0-8 5.5-13.25t 13-5.25q 4.5,0 8.5,2.5l 31.5-23.5l0-55 l 26,0 l0,18.5 l 31,22.5q 3.5-3 9.5-3q 7.5,0 12.75,5.5t 5.25,13q0,8 -5.5,13.25t-13,5.25t-13-5.25t-5.5-13.25q0-1 1-2l-22.5-16.5l0,55 l 31,22.5q 3.5-3 9.5-3q 7.5,0 12.75,5.5t 5.25,13q0,8 -5.5,13.25
333
+ t-13,5.25t-13-5.25t-5.5-13.25q0-1 1-2z" horiz-adv-x="425" />
334
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x69;&#x63;&#x6f;&#x6e;&#x64;&#x6f;&#x63;&#x6b;" d="M 212,320.5q 11.5,0 19.75-8t 8.25-19q0-11.5 -8.25-19.25t-19.75-7.75t-19.5,7.75t-8,19.25q0,11 8,19t 19.5,8zM 212,429.5q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.25t 16.5-81.5t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.5,16.5t-66.25,45t-44.75,66.5t-16.5,81.5t 16.5,81.5t 44.75,66.25t 66.25,44.75
335
+ t 81.5,16.5zM 329.5,221q 1,6.5 -3,10.5q-3.5,4 -10,4l-2,0 l-38.5-3.5q-8-1 -9.5-5q-0.5-1 -0.25-2.5t 2.75-3.5q 6.5-7 13.5-9l 3.5-1.5l-2-3q-1.5-2.5 -7-6.5l-30.5-26q-1.5-1 -3.25-2.25t-3.75-1.25q-5.5,0 -5.5,8.5l0,74.5 l 1.5,0.5q 10.5,6.5 16.5,16.5t 6,22q0,9 -3.5,17.25t-9.75,14.25t-14.75,9.5t-18,3.5t-17.75-3.5t-14.5-9.5
336
+ t-10-14.25t-3.75-17.25q0-12.5 6.75-23t 18.25-16l 1.5-1l0-75 q0-8.5 -5.5-8.5q-4,0 -7,3l-33,28q-5,4.5 -6.5,6.5l-2.5,3l 4,1.5q 6.5,2 13.5,9q 3.5,3.5 2,6q-1,4 -9,5l-39,3.5l-1.5,0 q-6.5,0 -10-4q-4.5-4.5 -3.5-10.5l 4-37.5q 1.5-9 6.5-9q 1,0 2.25,0.25t 2.75,2.25q 3.5,3 6,6.75t 3.5,6.25l 1,3.5l 3.5-2
337
+ q 1-1 2.75-2.5t 4.25-4l 70-77q 4.5-5.5 11-5.5q 7,0 11.5,5.5l 70,77q 3.5,4.5 7,6.5l 3,2l 1.5-3.5q 1-2.5 3.5-6.25t 5.5-6.75q 2-2 3.25-2.25t 2.25-0.25q 2,0 3.75,2t 2.25,7z" horiz-adv-x="425" />
338
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x69;&#x64;&#x65;&#x6e;&#x74;&#x69;&#x63;&#x61;" d="M 234,226q-6-5 -9-10q-7-5.5 -15-9t-17.5-3.5q-12,0 -23,5.5l-35.5-14.5l 11,42.5q-3.5,9.5 -3.5,18.5q0,11 4,20.5t 11,16.5t 16.25,11t 19.75,4t 19.75-4t 16-11t 10.75-16.5t 4-20.5q0-8.5 -2.5-15.75t-6.5-13.75zM 212,429.5q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.25t 16.5-81.5t-16.5-81.5t-45-66.5t-66.5-45
339
+ t-81.5-16.5t-81.5,16.5t-66.25,45t-44.75,66.5t-16.5,81.5t 16.5,81.5t 44.75,66.25t 66.25,44.75t 81.5,16.5zM 289.5,141q 12,6.5 19.5,18.75t 7.5,26.75q0,11 -4,20.5t-10.75,16.5t-15.75,11t-19.5,4q-1,0 -1.25-0.25t-0.75-0.25q 2,8 2,19q0,16 -6,30.25t-16,24.75t-24,16.5t-29.5,6t-29.25-6t-24-16.5t-16.25-24.75
340
+ t-6-30.25q0-15.5 6.5-31l-14.5-57.5l 53.5,17.5q 15.5-6.5 30-6.5q 13.5,0 25.5,4.5q 1-17.5 12-30.75t 27-16.75l 23-30zM 266.5,214.5q 11,0 18.5-7.75t 7.5-19.25q0-8 -3.75-14t-9.75-9.5l-7.5-20l-10,17q-9,2 -15.25,9.25t-6.25,17.25q0,7.5 4.5,14.5q 1.5,1.5 2.75,3t 2.75,3.5q 7.5,6 16.5,6z" horiz-adv-x="425" />
341
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x69;&#x6d;&#x65;&#x73;&#x73;&#x61;&#x67;&#x65;" d="M 212,428.5q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.25t 16.5-81.5t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.5,16.5t-66.25,45t-44.75,66.5t-16.5,81.5t 16.5,81.5t 44.75,66.25t 66.25,44.75t 81.5,16.5zM 212,120q 24.5,0 46,8t 37.5,21.75t 25.25,32.5t 9.25,39.75t-9.25,39.75t-25.25,32.5t-37.5,21.75t-46,8t-45.75-8
342
+ t-37.25-21.75t-25.25-32.5t-9.25-39.75q0-25.5 13-47t 35.5-36q-1.5-9 -9.25-15.25t-17.75-7.25q 8-1.5 17-1.5q 23,0 39.5,11q 18.5-6 39.5-6z" horiz-adv-x="425" />
343
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x6d;&#x6f;&#x62;&#x69;&#x6c;&#x65;&#x6d;&#x65;" d="M 212,429.5q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.25t 16.5-81.5t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.5,16.5t-66.25,45t-44.75,66.5t-16.5,81.5t 16.5,81.5t 44.75,66.25t 66.25,44.75t 81.5,16.5zM 299.5,142q 9,0 17,4.75t 13.75,12.25t 9.25,16.25t 3.5,16.25q0,15.5 -10,23t-21,11q 2,6 2,14.5q0,12 -4.75,22.75
344
+ t-13.25,18.75t-19.75,12.75t-24.25,4.75q-21,0 -37.25-11.75t-22.25-29.75q-10.5,13 -26.5,13q-15.5,0 -26-12t-10.5-29l0-2.5 q-2.5,0.5 -6.5,0.5q-6,0 -13.25-2t-13.5-6.5t-10.5-11.25t-4.25-16.25q0-9 3.5-18t 9.25-16t 13.75-11.25t 17-4.25l 174.5,0 z" horiz-adv-x="425" />
345
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x6d;&#x65;&#x74;&#x61;&#x63;&#x61;&#x66;&#x65;" d="M 212,429.5q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.25t 16.5-81.5t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.5,16.5t-66.25,45t-44.75,66.5t-16.5,81.5t 16.5,81.5t 44.75,66.25t 66.25,44.75t 81.5,16.5zM 232.5,111.5q 3,10 6,19.25t 4,12.25q-2.5,2 -11,8t-17,13q-10.5,8 -22.5,17l 62.5,0 q 1,0 4.25,9t 6.75,20
346
+ q 4,13 8.5,29.5q 4.5-16.5 8.5-29.5q 3.5-11 6.75-20t 4.25-9l 33,0 l-52.5,157l-42.5-127.5l-137,0 zM 295.5,145.5l 34.5,26l-43,0 l-13,40l-13.5-40l-42.5,0 l 34.5-26l-13-43l 34.5,27l 34.5-27z" horiz-adv-x="425" />
347
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x6c;&#x69;&#x6e;&#x6b;&#x65;&#x64;&#x69;&#x6e;" d="M 212,428.5q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.25t 16.5-81.5t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.5,16.5t-66.25,45t-44.75,66.5t-16.5,81.5t 16.5,81.5t 44.75,66.25t 66.25,44.75t 81.5,16.5zM 147,271.5l-52.5,0 l0-170 l 52.5,0 l0,170 zM 120.5,285q 11,0 18.75,7.5t 7.75,18.5t-7.75,18.5t-18.75,7.5t-18.5-7.5t-7.5-18.5
348
+ t 7.5-18.5t 18.5-7.5zM 330,200q0,18 -10,35.25t-26,26.25q-14.5,8 -33.75,8.5t-35.25-6.5l0,8 l-52,0 l0-170 l 52,0 l0,104 l 22,10.5q 4,2 10.75,2t 10.75-2.5q 3-1.5 6-6.5t 3-9l0-98.5 l 52.5,0 l0,98.5 z" horiz-adv-x="425" />
349
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x61;&#x6d;&#x61;&#x7a;&#x6f;&#x6e;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 232.5,299q 3-4.5 3.25-10t 0.25-11l0-4 q-4.5-0.5 -10-0.75t-11-1.25
350
+ q-8.5-1 -16.5-2.75t-15-5.25q-13.5-6 -21.75-18t-8.25-29.5q0-22.5 12.25-33.75t 29.75-11.25q 10.5,0 19.5,2.5q 14,4.5 26.5,18.5q 4-5.5 6.5-9.25t 9.5-9.75q 4-1.5 7,0.5q 4,4 10.75,9.5t 10.75,9.5q 2.5,2.5 0.5,7.5q-4,5.5 -7.5,11.25t-3.5,15.75l0,45.5 q0,14.5 -1,27.25t-11,22.75q-8.5,8 -20.5,11.25t-22,3.25l-6,0
351
+ q-9-0.5 -18.25-3t-17-7.75t-13.5-13.5t-7.75-20.25q-1-3 0.5-4.25t 3-1.75l 27.5-3.5q 4,0.5 5,5.5q 1.5,8.5 7.5,12.5t 13,5l 2,0 q 4.5,0 8.75-1.75t 6.75-5.75zM 318,136q 3.5,2.5 1.5,5.5t-6,1.5q-1.5-1 -3.25-1.5t-3.25-1.5q-23-9 -46.25-13.5t-45.75-4.5q-35.5,0 -68.5,9.5t-61,26q-2.5,1.5 -3.75-0.25t 1.25-3.75
352
+ q 25.5-24 58.5-37.75t 70.5-13.75q 24,0 49,6.75t 46,19.75q 3,2 5.75,3.5t 5.25,4zM 343,155q0,3 -1,5q-2,2.5 -12.75,3.5t-22.25-2.5q-6.5-2.5 -11.5-6q-2-1 -1.75-2.5t 2.25-1.5q 2.5,0.5 5.25,0.75t 5.75,0.75q 7,1 13.75,0.5t 9.25-3q 1.5-1.5 0.75-5.75t-2.25-9.5t-3.25-10.25t-3.25-8.5q-1-2 0.5-2.5t 3.5,1
353
+ q 8.5,7.5 12.5,19.5t 4.5,19.5l0,1.5 zM 194.5,221.5q0,12 6,18.25t 14.5,8.75q 5,1 10.25,1.5t 10.75,0.5l0-6 q0-8.5 -0.5-15.75t-4.5-14.75q-5.5-11 -16-13.5q-0.5,0 -1.5-0.25t-2-0.25q-8.5,0 -12.75,6t-4.25,15.5z" horiz-adv-x="425" />
354
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x6d;&#x65;&#x65;&#x74;&#x75;&#x70;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 136,186.5q-3,7.5 -5,16.25t-3.5,17.75l-5,22t-6.5,20l-1.5,0
355
+ q-3.5,0 -5,0.5q-1,0 -2.5,0.25t-2.5,0.25l-0.5,0 l-1,0 q-6.5-8.5 -9.5-20.75t-5.5-24.25l-6,12q-2.5,5 -5.25,10.25t-5.25,9.25l-3.5,0 q-7.5,0 -12-2l-0.5-10.5q-0.5-13.5 0-25.5t 4-23q 0.5-0.5 2.5-0.5q 4,0 7.25,1.5t 4.75,2.5q 0.5,5.5 -1,12q0,1.5 -0.25,3t 0.75,3.5q 5-6.5 8.5-13q 1.5-2.5 2.75-4.5t 2.25-4l 2.5,0 q 1.5,0 3,0.25t 3,0.25
356
+ q 1.5,0.5 6,0.5l 1-0.5q 2,4.5 2.25,10.25t 0.25,11.75q 0.5,5.5 0.75,11t 2.75,9.5q 2.5-12.5 6.25-24.25t 8.25-24.25q 1.5,0 3.25,0.5t 3.75,1q 3,1 4,1l 2,0 zM 159.5,179q 5,0 10.25,1.25t 9.25,2.75q-2.5,3 -5.5,3q-2,0 -6-1q-4-1.5 -6.5-1.5q-1,0 -1.5,0.5q-3,0 -5.5,3.5q-4,6.5 -1,17.5q 2.5-0.5 5.75-1t 7.25-0.5l 1.5,0 l 3,0 q 2,7.5 1.25,17
357
+ t-2.25,15.5q-1,0 -4,1q-4,1.5 -7.5,1.5l-1.5,0 q-7-1 -11.75-9.5t-5.75-18q-1-9 1.25-18.25t 10.75-12.75q 2-0.5 4-0.75t 4.5-0.25zM 202,180.5q 9.5,0 14.5,5q-1,3 -5,4q-3-5.5 -9.5-5.5t-11,6q-4,5.5 -1,12.5l 5-1t 5-0.5q 3,0 7,1q-0.5,5.5 0,10t 1.5,9q 0.5,3.5 1,7.25t 0.5,8.25q-7,5.5 -14,6
358
+ q-19-14.5 -18-47q 1-7 8.5-11t 15.5-4zM 249.5,212.5q 3.5,0.5 6.5,0.75t 4.5,1.75q-2.5,1.5 -4,4l-4.25,4.25t-4.75,2.75q-1,0 -1-2.5q0-3.5 -2.5-3.5l-1.5,0 l0,0.5 q 0.5,5 0.25,10.75t-0.75,12.25q-0.5,9 -0.75,18t 1.25,16.5q-2,2.5 -5.25,4.75t-8.75,2.25q-1.5,0 -1.5,0.5q-3-9.5 -2.25-20.5t 2.25-22q 1-6.5 1.25-12.5t-0.75-11.5q-3,0 -4.5,0.5
359
+ l-3.5,0 q-3,0 -4.5-1.5q-1-2 -1-4.5q 2.5-1.5 6-2t 7.5-0.5l 3-0.5q0-4 0.25-7t 0.75-6.5q0-4.5 0.25-9.25t 0.25-10.25l 4,0 q 2,0.5 6.5,0.5l0,7.5 t-0.5,7q0,5 -0.25,9.5t 0.25,9.5q 2.5,1 7.5,1zM 300.5,197.5q 3,5 5.25,10.25t 1.25,13.75q-2.5,2 -5.25,4t-6.25,2l-1,0 l-1,0 l-0.5-3.5q0-5 -0.25-10.5t-1.5-10.5t-3.75-8.75t-7-5.25
360
+ q-1,5.5 -1.25,11.75t-0.75,12.25l0,10 q-1,0.5 -1.75,1t-1.75,1q-2.5,1.5 -4.5,2.5t-5.5,1.5q-3-33 6.5-43.5q 3.5-4 9.5-4q 4.5,0 9,1.5l 1,2q 1.5,2.5 3,4.25t 4,3.75q 0.5,1.5 2.5,4.5zM 365,208.5q 3,6 4.25,15t-4.25,20q-10,6 -17.5,6q-10,0 -17.5-9q-4-4.5 -6.25-11t-3.75-13.25t-2-13.25t-1-11q-1-0.5 -2-0.5q-3.5-1 -4-2
361
+ q 4-4.5 5-11.75t 2-14.25q 1-6 1.5-11.5t 2.5-9.5q 1-0.5 5-0.5l 3.5,0 q 3.5,0 5-0.5q-2.5,7 -3.5,16.5t0,23q 10.5,2.5 19.5,10t 13.5,17.5zM 350.5,238.5q 4-6.5 3.5-12.75t-2-10.25q-2.5-7 -7.75-12.5t-12.25-7.5q 2.5,11.5 6,23.5t 11.5,19.5l 0.5,1zM 155.5,211q-0.5,0.5 -1.5,0.5l-2,0 l 0.5,1q 0.5,8 6,14q 1-4 1.25-8t-0.75-7l-1-0.5l-0.5,0 l-2,0 z
362
+ M 194,207.5q-2.5,0 -3,1.5q0,4 1,6.75t 2,5.75q 1,2 2,5l 1,2l 0.5-2q 1-4 0.75-9.5t-1.75-9.5l-2.5,0 z" horiz-adv-x="425" />
363
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x74;&#x75;&#x6d;&#x62;&#x6c;&#x72;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 290.5,152q-19-11.5 -37.5-11.5q-10.5,0 -18.5,4.5q-6.5,4 -9,10.5
364
+ q-1,3 -0.5,9t 0.5,16.5l0,65 l 52,0 l0,39.5 l-52,0 l0,52 l-38,0 q-2-17.5 -8.5-30q-6.5-12 -17-20q-5.5-4.5 -13.25-7.5t-14.75-5.5l0-28.5 l 39,0 l0-87.5 q0-13 1.5-22.75t 10-17.75q 4-4 9.75-6.75t 12.25-4.75q 7-2.5 12.75-3.5t 14.25-1q 15,0 28,3q 7,1.5 14,4t 15,6l0,37 z" horiz-adv-x="425" />
365
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x64;&#x69;&#x67;&#x67;&#x61;&#x6c;&#x74;" d="M 316.5,194l-13,0 l0,39.5 l 13,0 l0-39.5 zM 212,429.5q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.25t 16.5-81.5t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.5,16.5t-66.25,45t-44.75,66.5t-16.5,81.5t 16.5,81.5t 44.75,66.25t 66.25,44.75t 81.5,16.5zM 147,299l-26.5,0 l0-39.5 l-39,0 l0-91.5 l 65.5,0 l0,91.5 l0,39.5 zM 186,259.5l-26,0 l0-91.5 l 26,0 l0,91.5 zM 186,299
366
+ l-26,0 l0-26.5 l 26,0 l0,26.5 zM 264.5,259.5l-65.5,0 l0-91.5 l 39.5,0 l0-13 l-39.5,0 l0-26 l 65.5,0 l0,26 l0,13 l0,91.5 zM 343,259.5l-65.5,0 l0-91.5 l 39,0 l0-13 l-39,0 l0-26 l 65.5,0 l0,26 l0,13 l0,91.5 zM 107.5,233.5l 13,0 l0-39.5 l-13,0 l0,39.5 zM 238.5,194l-13.5,0 l0,39.5 l 13.5,0 l0-39.5 z" horiz-adv-x="425" />
367
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x79;&#x6f;&#x75;&#x74;&#x75;&#x62;&#x65;" d="M 305,173.5q 4,0 5.5-2.5q 2-2 2-7l0-8.5 l-15,0 l0,8.5 q0,4.5 1.5,7q 2.5,2.5 6,2.5zM 246.5,173.5q 3.5,0 5-2q 2-2 2-6l0-42 q0-4 -1.5-5.5q-1.5-2 -4.5-2q-2,0 -4,1q-2.5,1 -4,3l0,50.5 q 2,2 3.5,2.5q 1,0.5 3.5,0.5zM 212.5,429q 43.5,0 81.5-16.5t 66.25-44.75t 44.75-66.25t 16.5-81.5t-16.5-81.5t-44.75-66.5t-66.25-45t-81.5-16.5
368
+ t-81.5,16.5t-66.5,45t-45,66.5t-16.5,81.5t 16.5,81.5t 45,66.25t 66.5,44.75t 81.5,16.5zM 153.5,214.5l-59,0 l0-16 l 20,0 l0-94 l 19,0 l0,94 l 20,0 l0,16 zM 154,266.5l 25,71l-22,0 l-13-48.5l-1.5,0 l-14,48.5l-21.5,0 l 25.5-73l0-48 l 21.5,0 l0,50 zM 209.5,185.5l-17,0 l0-61.5 q-1-1.5 -2.5-2.5l-3-2q-3-1.5 -4.5-1.5q-2.5,0 -3.5,1t-1,4.5l0,62 l-17,0 l0-68 q0-7 3-10.5
369
+ q 3-4 8.5-4q 4.5,0 10,3q 4.5,2 10,7.5l0-9 l 17,0 l0,81 zM 208,214.5q 13.5,0 20.5,6.5q 7.5,6 7.5,18l0,46 q0,9.5 -7.5,16.5q-7,6.5 -19.5,6.5q-13,0 -20.5-6q-8-6 -8-16.5l0-46.5 q0-11.5 7.5-18q 7-6.5 20-6.5zM 271,166q0,10 -4.5,15.5q-3.5,5 -12,5q-4.5,0 -8-2q-4-1.5 -7-5.5l0,35.5 l-17.5,0 l0-110 l 17.5,0 l0,6 q 1.5-2 3.25-3.25
370
+ t 3.75-2.25q 3.5-1.5 9-1.5q 7.5,0 11.5,4.5q 4,5 4,13l0,45 zM 265,215.5q 6,0 11,2.5t 11,8.5l0-10 l 19,0 l0,89.5 l-19,0 l0-68 q-2-2.5 -6-5q-3-1.5 -5-1.5q-3.5,0 -4,1.5q-1.5,1.5 -1.5,4.5l0,68.5 l-19,0 l0-75 q0-8 3.5-11.5q 2.5-4 10-4zM 330,163.5q0,12 -6.5,18q-6,6 -18,6q-11.5,0 -18.5-6.5q-7-7 -7-17.5l0-36 q0-12 6.5-18.5
371
+ q 7-7 18-7q 12.5,0 19,6.5q 6.5,6 6.5,19l0,4 l-17.5,0 l0-3.5 q0-7.5 -1.5-9.5q-2-2 -6-2q-5,0 -6,2.5q-1.5,2 -1.5,9l0,15 l 32.5,0 l0,20.5 zM 208,292.5q 3.5,0 6.5-1.5q 2-2 2-5l0-48.5 q0-4 -2-5.5q-2-2 -6.5-2q-4,0 -5.5,2q-2.5,1.5 -2.5,5.5l0,48.5 q0,2.5 2.5,5q 2,1.5 5.5,1.5z" horiz-adv-x="425" />
372
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x64;&#x72;&#x69;&#x62;&#x62;&#x6c;&#x65;" d="M 212,429.5q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.25t 16.5-81.5t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.5,16.5t-66.25,45t-44.75,66.5t-16.5,81.5t 16.5,81.5t 44.75,66.25t 66.25,44.75t 81.5,16.5zM 212,102.5q 24.5,0 46,9.25t 37.5,25.25t 25.25,37.5t 9.25,46t-9.25,45.75t-25.25,37.25t-37.5,25.25t-46,9.25
373
+ q-24,0 -45.5-9.25t-37.5-25.25t-25.25-37.25t-9.25-45.75t 9.25-46t 25.25-37.5t 37.5-25.25t 45.5-9.25zM 222,217q-25.5-8.5 -46.25-24.5t-35.75-38.5q-23.5,26 -26,62q 4-0.5 7.25-0.5l 6.75,0 q 46,0 88,15.5l 3-7zM 234.5,238.5q 31.5,14 58.5,37q 17-24.5 17-54.5q-19,4.5 -37,4.5q-16.5,0 -32-3.5q-1.5,4 -3,8.25
374
+ t-3.5,8.25zM 155,140.5q 13,21 32,35.75t 41.5,22.25q 5.5-17 9-34.75t 5.5-36.25q-14.5-5 -31-5q-31.5,0 -57,18zM 247.5,203.5q 14,2.5 25.5,2.5q 18.5,0 35-5q-4-20.5 -16-37.5t-30-27.5q-3.5,34 -14.5,67.5zM 280.5,290.5q-13-10.5 -26.5-19.25t-28-15.25q-8.5,15.5 -18.25,30.25t-21.25,28.75q 12,3.5 25.5,3.5q 19.5,0 37-7.25
375
+ t 31.5-20.75zM 207.5,248.5q-38.5-13.5 -79.5-13.5l-6.75,0 t-5.75,0.5q 3.5,23 17,42t 34.5,30q 23.5-27 40.5-59z" horiz-adv-x="425" />
376
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x77;&#x69;&#x6e;&#x64;&#x6f;&#x77;&#x73;" d="M 212.5,429q 43.5,0 81.5-16.5t 66.25-44.75t 44.75-66.25t 16.5-81.5t-16.5-81.5t-44.75-66.5t-66.25-45t-81.5-16.5t-81.5,16.5t-66.5,45t-45,66.5t-16.5,81.5t 16.5,81.5t 45,66.25t 66.5,44.75t 81.5,16.5zM 122.5,244.5q 21,8 39.5,8q 13,0 23.25-4.25t 18.25-9.25l 21.5,72.5q-3.5,2 -11,5.75t-14,5.25q-7.5,2 -17.5,2
377
+ q-9-0.5 -18.75-2.5t-21.25-6.5zM 133,155.5q 14,0 24.25-4.25t 18.75-9.75q 2,6.5 5.25,17t 6.25,21.5t 5.75,20.5t 4.25,14.5q-2,1 -4,2.5t-4,2.5q-17,8.5 -32,8.5q-2.5,0 -4-0.5q-10-1 -18.25-2.75t-13.75-4.25l-3-1t-3.5-1l-20.5-71.5q 21,8 38.5,8zM 301.5,194.5q-19.5-6.5 -38-6.5q-17,0 -28.5,4.25t-19,9.75
378
+ l-21-72q 2.5-1.5 7.25-3.75t 10.75-4.75t 12.5-4.25t 12.5-1.75q 19.5,0 44,10zM 330,291.5q-20.5-7.5 -39.5-7.5q-16,0 -27.5,4.25t-19,9.75l-21-72.5q 20.5-14 45.5-14q 20.5,0 40,9.5l0,0.5 l 1,0 z" horiz-adv-x="425" />
379
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x76;&#x69;&#x64;&#x64;&#x6c;&#x65;&#x72;" d="M 274,281q 7,0 11.75-5t 4.75-12t-4.75-12t-11.75-5q-6.5,0 -11.25,5t-4.75,12t 4.75,12t 11.25,5zM 212.5,429q 43.5,0 81.5-16.5t 66.25-44.75t 44.75-66.25t 16.5-81.5t-16.5-81.5t-44.75-66.5t-66.25-45t-81.5-16.5t-81.5,16.5t-66.5,45t-45,66.5t-16.5,81.5t 16.5,81.5t 45,66.25t 66.5,44.75t 81.5,16.5z
380
+ M 273,207q 12,0 22.25,4.5t 18,12.25t 12.25,18.25t 4.5,23t-4.5,23t-12.25,18.5t-18,12.5t-22.25,4.5q-10.5,0 -20-4.25t-17-11.5t-12.5-16.5t-6.5-19.25l-2,0 q-1.5,10 -6.5,19.25t-12.5,16.5t-17,11.5t-20,4.25q-12,0 -23.25-4.75t-20-12.75t-14-18.75t-5.25-23.25t 4.25-22.75t 11.25-17.75t 16-12t 19-4.5l 13,0 l0-23.5 l-65.5,18.5
381
+ l0-79.5 l 65.5,20.5l0-27.5 l 95.5,0 l-28,91.5l 45.5,0 zM 159,281q 7,0 11.5-5t 4.5-12t-4.5-12t-11.5-5t-11.5,5t-4.5,12t 4.5,12t 11.5,5z" horiz-adv-x="425" />
382
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x74;&#x77;&#x69;&#x74;&#x74;&#x65;&#x72;" d="M 212.5,429q 43.5,0 81.5-16.5t 66.25-44.75t 44.75-66.25t 16.5-81.5t-16.5-81.5t-44.75-66.5t-66.25-45t-81.5-16.5t-81.5,16.5t-66.5,45t-45,66.5t-16.5,81.5t 16.5,81.5t 45,66.25t 66.5,44.75t 81.5,16.5zM 199,154.5q-10,0 -18,8t-8,18l0,39.5 l 104.5,0 q 10,0 18.25,8t 8.25,18t-8.25,18t-18.25,8l-104.5,0 l0,39.5
383
+ q0,10 -8,18t-18,8t-18-8t-8-18l0-131 q0-19.5 6.75-34.25t 17.75-24.5t 25-14.75t 28.5-5l 78.5,0 q 10,0 18.25,8.25t 8.25,18.25t-8.25,18t-18.25,8l-78.5,0 z" horiz-adv-x="425" />
384
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x67;&#x69;&#x74;&#x68;&#x75;&#x62;" d="M 206,163.5q 13,0 22.25-6.25t 9.25-14.75q0-9 -9.25-15.25t-22.25-6.25q-13.5,0 -22.75,6.25t-9.25,15.25q0,8.5 9.25,14.75t 22.75,6.25zM 202,252.5q-11.5,0 -19.75,8t-8.25,19.5t 8.25,19.5t 19.75,8t 19.5-8t 8-19.5t-8-19.5t-19.5-8zM 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5
385
+ l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 205.5,87q 15,0 28,4.5t 22.75,12t 15.5,17.5t 5.75,21.5q0,11 -5.5,21t-15.25,17.5t-22.75,12t-28,4.5q-1.5,0 -3-0.25t-3-0.25q-1,2.5 -1.5,5.75
386
+ t-0.5,6.25q0,3.5 0.5,7.75t 1.5,4.25l 2,0 q 12.5,0 23.25,4.75t 18.75,12.75t 12.75,18.75t 4.75,22.75q0,5.5 -2.25,12.25t-5.25,9.75l 20.5,11.5l0,39 l-43-23.5q-7,5 -14.5,7.5t-17,2.5q-12.5,0 -23.25-4.75t-18.75-12.75t-12.5-18.75t-4.5-22.75q0-14 6.25-25.75t 16.25-19.75q-6-12 -6-25.5q0-6 1.25-11.75t 3.75-11.25
387
+ q-13-7.5 -20.75-19t-7.75-24.5q0-11.5 5.5-21.5t 15.25-17.5t 22.75-12t 28-4.5z" horiz-adv-x="425" />
388
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x64;&#x61;&#x79;&#x74;&#x75;&#x6d;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 134,167.5l-26.5,0 l0-78.5 l 26.5,0 l0,78.5 zM 173,220l-26,0 l0-131 l 26,0 l0,131 zM 212.5,194
389
+ l-26.5,0 l0-105 l 26.5,0 l0,105 zM 251.5,272l-26,0 l0-183 l 26,0 l0,183 zM 290.5,220l-26,0 l0-131 l 26,0 l0,131 zM 330,298.5l-26,0 l0-209.5 l 26,0 l0,209.5 zM 330,337.5l-222.5,0 l0-26 l 222.5,0 l0,26 z" horiz-adv-x="425" />
390
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x6c;&#x61;&#x73;&#x74;&#x66;&#x6d;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 283,150.5q 20,0 33.5,11.75t 13.5,29.25q0,17 -8.75,25.5t-27.25,14
391
+ q-13.5,4.5 -22.25,8.25t-8.75,14.75q0,7.5 5.25,12.5t 13.75,5q 11.5,0 20-11l 15,7.5q-11.5,20.5 -34,20.5q-17.5,0 -27.75-9.75t-10.25-25.75t 10.25-24.25t 31.25-15.25q 11.5-4 18-7.75t 6.5-13.75t-8-16.75t-21-6.25q-13.5,0.5 -19,7t-10.5,17.5l-8,18t-7.25,16.5t-5.25,12.75t-2.5,6.25q-9,21 -25.75,32
392
+ t-39.25,11q-14.5,0 -27.25-5.5t-22.25-15t-15-22.25t-5.5-27.25t 5.5-27.25t 15-22.25t 22.25-15t 27.25-5.5q 16.5,0 30.5,7t 24,18.5l-9,21q-6.5-12.5 -18.5-20t-27-7.5q-10.5,0 -19.75,4t-16,11t-10.75,16.25t-4,19.75t 4,19.75t 10.75,16.25t 16,11t 19.75,4q 16,0 28.75-8.5t 18.25-22l 22-51l 3-5.5
393
+ q 7-16 17.5-24.75t 29-8.75z" horiz-adv-x="425" />
394
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x73;&#x63;&#x72;&#x69;&#x62;&#x64;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 242.5,115q 1.5,1.5 3,3.25t 3,3.25q-7,12.5 -7,26q0,12.5 4.75,22.75
395
+ t 13.25,17.25l0,1.5 q-3.5,11 -12,21.5q-8,10 -20,18.5q-11.5,8 -34,18q-11.5,5 -19,9.5t-12.5,8.5q-9,8 -9,19q0,12 10.5,20.5q 10.5,7.5 27.5,7.5q 12,0 21-4q-2.5-6 -2.5-11q0-11.5 7.75-19.25t 18.75-7.75t 18.5,7.75t 7.5,19.25q0,12 -9,20q-12,13.5 -27.5,20q-19.5,8.5 -37.5,8.5q-28,0 -48-18q-19.5-18 -19.5-43
396
+ q0-11 3.5-20q 2-4.5 4.5-9.25t 6.5-9.25q 8-9.5 18-16q 5.5-3.5 12.5-7.25t 17-7.75q 9.5-4 16.5-7.5t 11.5-7q 8-6 14.5-15.5q 6-10 6-19.5q0-16 -11.5-26.5t-28-10.5q-23.5,0 -39.5,18.5q 8,8 8,19.5t-7.5,19.25t-18.5,7.75t-18.75-7.75t-7.75-19.25q0-4 1.5-7l-1-0.5q 12-31.5 34-48.5
397
+ q 22-16 50.5-16t 50,20.5zM 286.5,116.5q 13,0 21.75,9t 8.75,22t-8.75,22.25t-21.75,9.25q-12.5,0 -21.25-9.25t-8.75-22.25t 8.75-22t 21.25-9z" horiz-adv-x="425" />
398
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x69;&#x74;&#x75;&#x6e;&#x65;&#x73;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 212.5,89q 27,0 50.75,10.25t 41.5,28t 28,41.75t 10.25,51t-10.25,50.75
399
+ t-28,41.5t-41.5,28t-50.75,10.25t-51-10.25t-41.75-28t-28-41.5t-10.25-50.75t 10.25-51t 28-41.75t 41.75-28t 51-10.25zM 212.5,337.5q 24,0 45.5-9.25t 37.5-25.25t 25.25-37.25t 9.25-45.75t-9.25-46t-25.25-37.5t-37.5-25.25t-45.5-9.25q-24.5,0 -46,9.25t-37.5,25.25t-25.25,37.5t-9.25,46t 9.25,45.75
400
+ t 25.25,37.25t 37.5,25.25t 46,9.25zM 172.5,280l 0.5,0 l0-90 q0,1 -4.25,1.25t-7.25-0.25q-9.5-1 -15.75-8.75t-5.25-17.25q 1-10 7.75-16t 16.75-5q 9,1 15,7.75t 5.5,15.75l 0.5,0 l0,82.5 l 65.5,15l0-62.5 q0,1 -4.25,1.25t-7.25-0.25q-9.5-1 -15.75-8.5t-5.25-17.5q 1-9.5 8-15.5t 16.5-5q 9,1 15,7.75t 6,15.75
401
+ l0,118 z" horiz-adv-x="425" />
402
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x73;&#x71;&#x75;&#x69;&#x64;&#x6f;&#x6f;" d="M 212.5,429q 43.5,0 81.5-16.5t 66.25-44.75t 44.75-66.25t 16.5-81.5t-16.5-81.5t-44.75-66.5t-66.25-45t-81.5-16.5t-81.5,16.5t-66.5,45t-45,66.5t-16.5,81.5t 16.5,81.5t 45,66.25t 66.5,44.75t 81.5,16.5zM 262,102q 12.5,0 25.5,7t 23.25,18.75t 15.5,27.5t 2.75,33.75t-11,28.5t-18.75,16t-20.5,7.25t-16.25,2.25q-12.5,0.5 -10.5,11.75
403
+ t 12.5,29.25q 3.5,6.5 4.5,14.5t-1.25,15.25t-7.25,13.5t-13,9.25l-27,0 q 7,0 12.75-6t 9.75-13.5t 1.25-15.5t-7.75-14.5q-6-8 -15-15q-0.5,4 -3.5,12t-9.75,17.5t-17.5,19t-26.75,16l-21,0 q-1.5,0 -3,0.5t-3.5,0.5q 8-8 16.75-13.5t 15.75-9.5q 8-4.5 12.25-12.75t 6.25-16.75q 2-9.5 2.5-20q-6.5,0 -14,2
404
+ q-7,1.5 -15.75,4.25t-19.25,7.25q-8,3.5 -12.5,9.25t-7.25,12.5t-4.5,14.25t-4.25,15q-4-3 -7-6.5t-5.5-7.5q 1.5-4 2.75-8.75t 2.75-10.25q 4.5-19 15.25-32t 22.25-21.5q 13-9.5 29-15.5q-13-3 -26-5q-11-2 -22.5-3.25t-20-0.25q-3,0.5 -6,1.75t-3,3.25l0-27.5 q 14.5-4 33-3t 36,2q 13.5,0.5 18.5-4.75
405
+ t 6.25-13t 1.25-17.25t 3.5-18q 9.5-23.5 27.25-32t 41.75-8.5zM 277,221q 9-3 15.5-9.25t 10-14.5t 3.75-17.75t-3.25-19t-10-17t-14.5-12t-17-5.75t-18,1.75t-15.5,9t-10,14.25t-4,17.75t 3,19.5q 3.5,9.5 10,17t 14.5,12t 17.25,5.75t 18.25-1.75zM 271,152.5q 8.5,0 14.25,6.25t 5.75,15.25q0,7.5 -4.25,13.25
406
+ t-11.25,7.75q-1.5-7.5 -6-10.5q-3-2.5 -7.5-2.75t-9,0.25q-1.5-4 -1.5-8q0-9 5.5-15.25t 14-6.25z" horiz-adv-x="425" />
407
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x73;&#x70;&#x6f;&#x74;&#x69;&#x66;&#x79;" d="M 212.5,429q 43.5,0 81.5-16.5t 66.25-44.75t 44.75-66.25t 16.5-81.5t-16.5-81.5t-44.75-66.5t-66.25-45t-81.5-16.5t-81.5,16.5t-66.5,45t-45,66.5t-16.5,81.5t 16.5,81.5t 45,66.25t 66.5,44.75t 81.5,16.5zM 97,318.5q-7-4.5 -7-12q0-6 4.25-10.25t 10.25-4.25q 1,0 1.5,0.25t 1.5,0.25q 24,9.5 49.25,14.5t 52.25,5
408
+ t 52.25-5t 48.75-14.5q 1,0 1.75-0.25t 1.75-0.25q 6,0 10,4.25t 4,10.25q0,9 -8,12q-25.5,10 -53.25,15.5t-57.25,5.5q-30,0 -58-5.5t-54-15.5zM 209,266q 24,0 46.75-5t 43.75-14q 1,0 1.25-0.25t 1.25-0.25q 2.5,0 4.5,1.25t 3.5,2.75l 1.5,6q0,4.5 -3,7q-23,10 -47.75,15.5t-51.75,5.5t-51.75-5.5
409
+ t-47.75-15.5q-3.5-3.5 -3.5-7l 2-5.5q 2.5-4 7.5-4q 2.5,0 3.5,0.5q 42.5,18.5 90,18.5zM 295.5,208q 2,4 0,7.75t-5,4.75q-18.5,9.5 -39,13.75t-42.5,4.25q-44.5,0 -83-18.5q-1.5-1 -3.5-3.75t0-7.75q 2-5.5 5-6t 5,0.5q 36.5,17 76.5,17q 20,0 38.5-4.25t 36-11.75q 8.5-4 12,4zM 308.5,100q 10,0 18.75,3.75t 15.75,9.75
410
+ q-9,17.5 -22.5,32t-30.25,24.75t-36.25,16t-40.5,5.75q-22,0 -42-6t-37.25-17t-30.75-26.5t-22-34q 12.5-8.5 27.5-8.5l 32,0 q 12.5,17 31.25,27t 41.25,10t 41.5-10t 31-27l 22.5,0 z" horiz-adv-x="425" />
411
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x73;&#x6d;&#x75;&#x67;&#x6d;&#x75;&#x67;" d="M 212.5,429q 43.5,0 81.5-16.5t 66.25-44.75t 44.75-66.25t 16.5-81.5t-16.5-81.5t-44.75-66.5t-66.25-45t-81.5-16.5t-81.5,16.5t-66.5,45t-45,66.5t-16.5,81.5t 16.5,81.5t 45,66.25t 66.5,44.75t 81.5,16.5zM 280,325q-10,0 -16.75-5.25t-6.75-12.75q0-7 6.75-12.25t 16.75-5.25t 16.75,5.25t 6.75,12.25
412
+ q0,7.5 -6.75,12.75t-16.75,5.25zM 174,325q-10,0 -17-5.25t-7-12.75q0-7 7-12.25t 17-5.25t 16.75,5.25t 6.75,12.25q0,7.5 -6.75,12.75t-16.75,5.25zM 199,89q 26,0 46.75,9.5t 36.75,24.25t 27.5,32.5t 18.75,34t 10.75,28.75t 3.5,17q0,6.5 -2.75,10.25t-6.25,5.75q-4,2 -8.5,3l-201.5,0 q-1.5-0.5 -3.5-2
413
+ q-1.5-1.5 -3.75-4t-4.25-7q-11-22 -13.5-48.25t 6.75-49.5t 31.75-38.75t 61.5-15.5zM 132.5,142q-6,10 -8.5,21.75t-2,23.75t 3.75,23t 7.75,20l 185,0 q-1.5-6 -5.5-17t-10.75-24t-16.25-26.75t-22.25-25t-29-18.25t-35.75-7q-8.5,0 -17.75,1.25t-18.25,4.5t-17,9t-13.5,14.75z" horiz-adv-x="425" />
414
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x70;&#x69;&#x63;&#x61;&#x73;&#x61;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 211,350.5q-22.5,0 -45-8.5q 1-1 8.5-7.5t 18.5-16.25t 23.5-21
415
+ t 23.25-21t 17.75-16.75t 7-8l0,87.5 q-10,5.5 -24.5,8.5t-29,3zM 81.5,219.5q0-17.5 5-34q 1,1 9.75,8.75t 21.25,19.5t 27.25,25t 27.25,24.75t 21,19.25t 9,8.25q-1,0.5 -8.5,7.5t-16.5,15.25t-16.5,15t-8,7.25q-33-17 -52-48t-19-68.5zM 147,220.5q-14.5-13.5 -26.5-24q-10-9 -18.5-17t-9-8.5
416
+ q 8-19.5 21.25-35.75t 32.75-27.75l0,113 zM 224,89q 34.5,3.5 62.5,21.5t 43,57l-169.5,0 l0-67.5 q 19-8.5 40-11l 24,0 zM 335.5,180.5q 4,10 5.25,20t 1.25,21q0,34.5 -17.25,63.25t-47.25,46.75l0-151 l 58,0 z" horiz-adv-x="425" />
417
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x66;&#x6f;&#x72;&#x72;&#x73;&#x74;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 320,102l-107.5,235.5l-108-235.5l 97,0 l0,53.5 l-32.5,11l0,10.5 l 32.5-10.5l0,42.5 l 21.5,0
418
+ l0-21 l 21.5,10.5l0-10.5 l-21.5-11l0-21.5 l 43,21.5l0-10.5 l-43-21.5l0-43 l 97,0 z" horiz-adv-x="425" />
419
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x72;&#x65;&#x74;&#x77;&#x65;&#x65;&#x74;" d="M 212.5,429.5q 43.5,0 81.5-16.5t 66.25-44.75t 44.75-66.25t 16.5-81.5t-16.5-81.5t-44.75-66.5t-66.25-45t-81.5-16.5t-81.5,16.5t-66.5,45t-45,66.5t-16.5,81.5t 16.5,81.5t 45,66.25t 66.5,44.75t 81.5,16.5zM 251.5,142l-39,39l-39.5,0 l0,52.5 l 39.5,0 l-65.5,65.5l-65.5-65.5l 39.5,0 l0-78.5 q0-5 4-9t 9-4l 117.5,0 zM 343,207.5l-39,0 l0,80
420
+ q0,5.5 -4,8.5t-9.5,3l-117.5,0 l 39.5-39.5l 39,0 l0-52 l-39,0 l 65-65.5z" horiz-adv-x="425" />
421
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x70;&#x6f;&#x64;&#x63;&#x61;&#x73;&#x74;" d="M 212.5,429.5q 43.5,0 81.5-16.5t 66.25-44.75t 44.75-66.25t 16.5-81.5t-16.5-81.5t-44.75-66.5t-66.25-45t-81.5-16.5t-81.5,16.5t-66.5,45t-45,66.5t-16.5,81.5t 16.5,81.5t 45,66.25t 66.5,44.75t 81.5,16.5zM 212,102.5q 16,0 27.25,14t 11.25,42q0,14 -3.25,21.5t-8.5,11t-12.25,4t-14.5,0.5t-14.5-0.5t-12.25-4t-8.5-11
422
+ t-3.25-21.5q0-28 11.25-42t 27.25-14zM 186,224.5q0-10 7.5-17.25t 18.5-7.25t 18.5,7.25t 7.5,17.25t-7.5,17t-18.5,7t-18.5-7t-7.5-17zM 294.5,211q0,1 0.25,2.25t 0.25,2.25q0,16 -6.5,31t-17.75,26.75t-26.25,18.75t-32,7q-17.5,0 -32.5-7t-26.5-18.75t-18-26.75t-6.5-31q0-1 0.25-2.25t 0.25-2.25
423
+ q 1,15 7.75,26.5t 18,19.25t 26,11.75t 31.25,4t 31-4t 25.5-11.75t 17.75-19.25t 7.75-26.5zM 342.5,215.5q0,25.5 -10.25,47.75t-28,38.75t-41.5,26.25t-50.75,9.75t-50.75-9.75t-41.5-26.25t-28-38.75t-10.25-47.75l0-5 q 1,24.5 11.5,43.5t 28.25,31.75t 41,19.5t 49.75,6.75t 49.75-6.75t 40.75-19.5t 28.25-31.75t 11.75-43.5
424
+ l0,5 z" horiz-adv-x="425" />
425
+ <glyph unicode="&#x73;&#x74;&#x61;&#x63;&#x6b;&#x6f;&#x76;&#x65;&#x72;&#x66;&#x6c;&#x6f;&#x77;" d="M 264.5,205.5l0-117.5 l-157,0 l0,117.5 l-26,0 l0-144 l 209,0 l0,144 l-26,0 l0,0 zM 320,268l-44.5,95l 24,11l 44-95l-23.5-11l0,0 zM 289,244l-64.5,82.5l 20.5,16l 64.5-82.5l-20.5-16l0,0 zM 264,213.5l-81,66l 16.5,20l 81-65.5l-16.5-20.5l0,0 zM 247,178.5l-94,45.5l 11.5,23.5l 94-45.5l-11.5-23.5l0,0 zM 238,140l-101.5,23.5l 5.5,25.5l 102-23.5
426
+ l-6-25.5l0,0 zM 238,101l-104.5,0 l0,26 l 104.5,0 l0-26 l0,0 z" horiz-adv-x="425" />
427
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x62;&#x65;&#x68;&#x61;&#x6e;&#x63;&#x65;" d="M 281,233.5q 9.5,0 15.5-6q 3-3 4.75-6.5t 2.25-13.5l-45,0 q 1,10 2.75,13.25t 4.25,6.25q 6,6.5 15.5,6.5zM 173.5,239.5q-3-2 -6.75-4t-8.75-2l-24,0 l0,39.5 l 20.5,0 q 5.5,0 9.5-1.25t 7.5-2.25q 7.5-4 7.5-15.5q0-11 -5.5-14.5zM 173,206.5q 4.5-2.5 6.75-5.75t 2.25-9.25q0-15 -9.5-20q-5.5-3 -14.5-3l-24,0 l0,39 l 24.5,0
428
+ q 5,0 8.5,0.25t 6-1.25zM 212.5,430q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.5t 16.5-81.75t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.75,16.5t-66.5,45t-44.75,66.5t-16.5,81.5t 16.5,81.75t 44.75,66.5t 66.5,44.75t 81.75,16.5zM 206,164.5q 6.5,11 6.5,25q0,13 -5.5,23q-6,9.5 -17,14q 7,3.5 11,9q 7,8.5 7,23
429
+ q0,14 -7,24q-10.5,16.5 -37,16.5l-69.5,0 l0-157 l 65,0 q 5.5,0 10.5,0.5t 9.5,1.5q 9,2 16.5,8q 6.5,6 10,12.5zM 251.5,273l 52.5,0 l0,26 l-52.5,0 l0-26 zM 330,194.5l0,2.75 l0,6.25 t-0.25,7t-0.25,5.5q-2,12.5 -8,22q-3.5,6 -7.75,10t-9.25,6.5q-11,5.5 -23.5,5.5q-21.5,0 -35.5-15.5q-13.5-15 -13.5-44q0-30.5 15-44.5q 14.5-13 35-13
430
+ q 24,0 37,17q 4.5,5 6.75,9.5t 3.25,12l-26.5,0 q-1-7.5 -2.5-7.75t-3-1.25q-2.5-2.5 -6.25-4.5t-8.25-2q-8,0 -14,4.5q-5,3.5 -7.5,8.75t-3,15.25l 72,0 z" horiz-adv-x="425" />
431
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x72;&#x65;&#x64;&#x64;&#x69;&#x74;" d="M 280.5,287.5q-7.5,0 -13,5.5t-5.5,13.5q0,7.5 5.5,13t 13,5.5t 12.75-5.5t 5.25-13q0-8 -5.25-13.5t-12.75-5.5zM 120,242.5q-17.5-13.5 -25-32q-7.5,6.5 -7.5,15.5q0,8.5 6.25,14.5t 14.75,6q 6.5,0 11.5-4zM 203.5,251.5q 20,0 38-5.25t 31.25-14t 21-20.75t 7.75-25.5t-7.75-25.25t-21-20.75t-31.25-14t-38-5
432
+ q-20.5,0 -38.25,5t-31,14t-21,20.75t-7.75,25.25t 7.75,25.5t 21,20.75t 31,14t 38.25,5.25zM 149.5,205.5q0-6 4.25-10.5t 10.25-4.5q 6.5,0 10.75,4.5t 4.25,10.5q0,6.5 -4.25,11t-10.75,4.5q-6,0 -10.25-4.5t-4.25-11zM 252.5,153.5q 4.5,4.5 0,9t-9,0t-14.5-7.5t-24-3q-14.5,0 -24,3q-10,3 -14.5,7.5t-9,0t0-9
433
+ q 7-7.5 20-11q 13-4 27.5-4t 27.5,4q 12.5,3.5 20,11zM 246,190.5q 6.5,0 10.75,4.5t 4.25,10.5q0,6.5 -4.25,11t-10.75,4.5q-6,0 -10.25-4.5t-4.25-11q0-6 4.25-10.5t 10.25-4.5zM 302.5,246.5q 9,0 15-6t 6-14.5q0-12 -10.5-17.5q-6.5,18 -24,32.5q 5.5,5.5 13.5,5.5zM 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25
434
+ t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 316.5,196q 8.5,4 14,12t 5.5,18q0,14 -9.75,23.75t-23.75,9.75q-7,0 -13.25-3t-10.75-7.5q-14,8.5 -31.25,13.75
435
+ t-36.75,6.25l 6.5,46l 32.5-7.5l0-1 q0-13.5 9-22.75t 22-9.25t 21.75,9.25t 8.75,22.75q0,13 -8.75,22.25t-21.75,9.25q-10,0 -17.5-5.5t-11-14l-38.5,9q-2,0.5 -4.5-1q-2-1 -2-3.5l-8-54q-19.5-0.5 -36.75-5.5t-31.25-13.5q-9.5,9.5 -22.5,9.5q-14,0 -23.75-9.75t-9.75-23.75q0-9 4.5-16.5t 11.5-12
436
+ q-1.5-5.5 -1.5-11.5q0-17.5 9-32.5t 24.5-26.25t 36.25-17.75t 44.25-6.5t 44.25,6.5t 36.25,17.75t 24.5,26.25t 9,32.5q0,2.5 -0.25,5t-0.75,5z" horiz-adv-x="425" />
437
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x67;&#x6f;&#x77;&#x61;&#x6c;&#x6c;&#x61;" d="M 138.5,140l0-9.25 t-1-10.25q-0.5-0.5 -1.5-1t-3.5-0.5q-8,0 -8,6.5q0,5.5 3.75,10.5t 10.25,10.5l0-6.5 zM 199,147.5q-3.5-5 -11-6.5l-3.5,0 l 0.5,1q 2.5,5.5 6.75,7.75t 6.75,2.25l 1,0 q 1-2.5 -0.5-4.5zM 212.5,429q 43.5,0 81.5-16.5t 66.25-44.75t 44.75-66.25t 16.5-81.5t-16.5-81.5t-44.75-66.5t-66.25-45t-81.5-16.5t-81.5,16.5
438
+ t-66.5,45t-45,66.5t-16.5,81.5t 16.5,81.5t 45,66.25t 66.5,44.75t 81.5,16.5zM 339.5,110q 2.5,5.5 3.5,13q-2.5,2.5 -4.75,4.25t-4.75,4.25q-2.5,2 -4.25,3.5t-3.75,3.5q0,3 -0.5,6l-1,6q-9.5,48.5 -42.25,75.5t-92.75,37l0,2.5 q 1.5,11 3.25,24t 2,25t-1.5,22.5t-6.75,17q-5.5,7.5 -15.5,8.5l-2,0 q-8.5,0 -17-6.5t-14-27.5q-5,4 -11,7t-13,3
439
+ q-9.5,0 -19-6q-9-5 -10-16.5q0-8 4.75-17t 12-17.75t 16-16.75t 16.25-14q-6-4 -14-10.75t-16-14.5t-14-16.5t-7.5-17.25q-2.5-13 5-22.5q 7.5-8.5 19.5-8.5q 4,0 10,1.5t 13.75,6.25t 16.75,13.75t 19,23.5q 2-7 1-15t-9.5-14.5l-5.5-3.5q-16.5-12 -28-22.25t-11.5-24.75q0-8.5 5.5-13.75
440
+ t 14.5-5.25q 5.5,0 10.75,2.25t 6.75,7.25q 2.5,7.5 2.5,16q 3.5-1 7.75-1.5t 8.75-1.5q-2-11 -2-24.75t 3.5-26.75l 12.5,0 q-4,11.5 -4,25.75t 2,25.25q 4-0.5 9,0.5q 13.5,2.5 19.5,12q 4,7 1.5,15q-2.5,8.5 -12.5,8.5q-6,0 -13.25-4.25t-11.25-12.75q-1-1.5 -1.5-2.75t-1.5-3.25q-4.5,0.5 -8.75,1.25t-7.75,1.75q-4,1 -7.5,1.5l-7.5,1.5
441
+ q 4,3.5 9,7t 10.5,7.5l 5.5,4q 8,6 11.5,13.75t 3.5,15.5t-2,15t-4.5,11.75l-4.5,9.5l-6-9q-10.5-17.5 -19.75-27.25t-16.5-14.75t-12.5-6.25t-7.25-1.25q-6.5,0 -10,4.5q-3.5,3.5 -2.5,11.5q 1.5,7.5 8,15.75t 15,16.25t 17,14.25t 13.5,9.75l 8,5.5l-8,5q-8.5,6 -17.5,14t-16.25,16.5t-12,16.25t-4.75,13.25q0,4.5 3.5,6.5
442
+ q 10,6 17.75,3.25t 16.75-11.25q-1-7.5 -1.25-13t-0.25-7.5q0-9.5 5-18t 15-8.5q 3,0 7,1.5q 5.5,2.5 7.25,5.5t 2.25,5.5q 3,13.5 -16.5,33l-5.5,5.5q 1,5 2.5,10.75t 4.25,10.75t 6.25,8t 8.5,2.5q 5-1 7-4q 3.5-5 4.75-14.25t 0.75-20.5t-2-23t-3-20.75l-2-15l 6-1q 59.5-8.5 90.75-33.25t 40.25-70.25
443
+ q-2,1 -3.5,1.5l-3,1q-8,2.5 -17.75,4.25t-19.75,1.75q-33,0 -44.5-23.5q-6.5-13 -8.25-28t 1.75-27.5l 12.5,0 q-3.5,10.5 -2.25,24.25t 7.25,25.75q 7.5,16.5 33.5,16.5q 9,0 18.25-1.75t 16.25-3.75q 5-1.5 11-6.5q-0.5-14.5 -6.75-23.5t-13.75-14t-13.75-6.75t-6.75-1.75l-13-2.5l 7-6l 20.5,0 q 11.5,4.5 23,15.25t 14.5,29.75
444
+ q 0.5,0 0.5-0.25t 0.5-0.25q 3.5-3 6.75-6.25t 7.25-5.75zM 146,302.5q 8-8.5 10.25-13.75t 1.75-6.75q0-1 -2-2q-1,0 -1.5-0.25t-1-0.25q-3.5,0 -5.5,4.5t-2,9.5l0,9 z" horiz-adv-x="425" />
445
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x6d;&#x79;&#x73;&#x70;&#x61;&#x63;&#x65;" d="M 212,429.5q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.25t 16.5-81.5t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.5,16.5t-66.25,45t-44.75,66.5t-16.5,81.5t 16.5,81.5t 44.75,66.25t 66.25,44.75t 81.5,16.5zM 253,338q-14.5,0 -25-10.25t-10.5-24.75t 10.5-25t 25-10.5t 24.75,10.5t 10.25,25t-10.25,24.75t-24.75,10.25z
446
+ M 184.5,330q-11.5,0 -19.25-8t-7.75-19q0-11.5 7.75-19.5t 19.25-8t 19.25,8t 7.75,19.5q0,11 -7.75,19t-19.25,8zM 132.5,323.5q-8.5,0 -14.5-6t-6-14.5t 6-14.75t 14.5-6.25t 14.5,6.25t 6,14.75t-6,14.5t-14.5,6zM 303.5,206q0,10 -4,18.75t-10.75,15.25t-15.75,10.25t-19,3.75t-18.75-3.75t-15.25-10.25
447
+ q-3.5,11.5 -13,19t-22,7.5q-8.5,0 -15.75-3.5t-12.25-9q-2,8 -8.75,13.25t-15.75,5.25q-10,0 -17.5-7.25t-7.5-17.75l0-40 l 39.5,0 l0-39.5 l 52,0 l0-52 l 104.5,0 l0,90 z" horiz-adv-x="425" />
448
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x61;&#x62;&#x6f;&#x75;&#x74;&#x6d;&#x65;" d="M 295.5,261q 13.5,0 22.5-10.5q 6-7.5 6.5-20l-59,0 q 0.5,13.5 9,22q 9.5,8.5 21,8.5zM 212.5,430.5q 43.5,0 81.75-16.5t 66.75-45t 45-66.75t 16.5-81.75t-16.5-81.75t-45-66.75t-66.75-45t-81.75-16.5t-81.75,16.5t-66.75,45t-45,66.75t-16.5,81.75t 16.5,81.75t 45,66.75t 66.75,45t 81.75,16.5zM 225,240
449
+ q0,18.5 -8.5,26.5q-8.5,9 -24.5,9q-19.5,0 -32.5-18.5q-3,9 -10.5,13.5q-8.5,5 -19.5,5t-19-5q-8.5-4.5 -13.5-12l0,14.5 l-16,0 l0-104.5 l 18,0 l0,54 q0,14.5 3,22q 3,8 9.5,11.5q 6.5,4 14,4q 10,0 14.5-6q 4-6.5 4-17.5l0-68 l 18,0 l0,60.5 q0,16 7.5,23.5t 19,7.5q 6,0 10.5-3q 4-3 6.5-7.5q 1.5-4.5 1.5-15l0-66 l 18,0 l0,71.5 zM 343.5,221
450
+ q0,25.5 -13.5,40t-34.5,14.5q-21.5,0 -36-14.5q-13.5-15 -13.5-41t 13.5-40t 37-14q 18.5,0 30.5,9q 11.5,8.5 16,24.5l-18.5,2.5q-3.5-10.5 -11-16.5q-6.5-5 -17-5q-14,0 -22,9q-9.5,10 -10,26.5l 79,0 l0,5 z" horiz-adv-x="425" />
451
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x70;&#x61;&#x79;&#x70;&#x61;&#x6c;" d="M 246,275.5q-4.5-10 -14-17.25t-20-7.25l-1,0 l 5.5,24.5l 29.5,0 zM 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 158,139.5
452
+ l 15.5,62l 45,0 q 16,0 30.75,5.25t 26.5,14.75t 20,23t 11.75,30q 4,18.5 0,32.75t-12.75,23.75t-20.75,14.25t-24,4.75l-107.5,0 l-48-210.5l 63.5,0 zM 328,246q 4,17.5 0.5,30t-11,21.5q 4-8 4.75-17.5t-1.75-22q-3.5-16.5 -11.75-30.75t-20-24.75t-26.5-16.25t-30.75-5.75l-45.5,0 l-15-66l-53.5,0 l-2.5-12.5l 63.5,0 l 15,66.5l 45.5,0
453
+ q 16,0 30.75,5.75t 26.5,16.25t 20,24.75t 11.75,30.75zM 200.5,251l-18,0 l 13.5,62l 31,0 q 10.5,0 16.75-8t 5.25-19q-2.5,1 -4.5,1.5t-4.5,0.5l-31,0 z" horiz-adv-x="425" />
454
+ <glyph unicode="&#x66;&#x69;&#x76;&#x65;&#x68;&#x75;&#x6e;&#x64;&#x72;&#x65;&#x64;&#x70;&#x78;" d="M 302.5,247.5q 22,0 31.25-13.5t 9.25-32q0-18 -9.25-31.75t-31.25-13.75q-11,0 -19.5,4t-14.5,9.5q-7,6 -12.5,14q-5-8 -11.5-14q-5.5-5.5 -14.25-9.5t-20.75-4t-19.5,3.75t-11.5,8.25q-5,5.5 -7,12.5q-3-7 -9-12.5q-5.5-4.5 -14.25-8.25t-23.25-3.75t-23,6t-13,13.5q-5.5,9 -7.5,20l 26,0
455
+ q 1-5 3.5-9q 2.5-3.5 6.25-6.25t 10.75-2.75q 8.5,0 16,7.5t 7.5,16.5t-4.75,16.75t-15.75,7.75q-5.5,0 -9.25-2t-6.25-4.5q-3-2.5 -5-6l-26,0 l 14.5,73l 69.5,0 l0-24 l-52,0 l-6-27.5q 2.5,2.5 6.5,4.5q 3.5,1.5 8.25,3t 11.75,1.5q 10,0 16.5-3.75t 10.5-8.25q 5-5.5 7.5-12q 2,7.5 7,13.5q 4,5 11.5,9.25t 19.5,4.25t 20.75-4.75
456
+ t 14.25-10.25q 6.5-6.5 11.5-15q 5.5,8.5 12.5,15q 6,5.5 14.5,10.25t 19.5,4.75zM 212.5,181q 5.5,0 10.75,3.25t 9.25,7.25q 5,4.5 9,10.5q-4,5.5 -9,10.5q-4,4 -9.25,7.5t-10.75,3.5q-11,0 -17.25-6.25t-6.25-15.25t 6.25-15t 17.25-6zM 299.5,181q 11,0 17,6t 6,15t-6,15.25t-17,6.25q-5.5,0 -10.75-3.5t-9.25-7.5
457
+ q-5-5 -9-10.5q 4-6 9-10.5q 4-4 9.25-7.25t 10.75-3.25z" horiz-adv-x="425" />
458
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x62;&#x6c;&#x6f;&#x67;&#x67;&#x65;&#x72;" d="M 184.5,251q-5.5,0 -9.75,4t-4.25,10q0,5.5 4.25,9.75t 9.75,4.25l 41.5,0 q 6,0 10-4.25t 4-9.75q0-6 -4-10t-10-4l-41.5,0 zM 268.5,194q 6,0 10-4t 4-10q0-5.5 -4-9.75t-10-4.25l-84,0 q-5.5,0 -9.75,4.25t-4.25,9.75q0,6 4.25,10t 9.75,4l 84,0 zM 212,428.5q 43.5,0 81.5-16.5t 66.25-44.75t 44.75-66.25
459
+ t 16.5-81q0-43.5 -16.5-81.5t-44.75-66.25t-66.25-44.5t-81.5-16.25q-43,0 -81,16.25t-66.25,44.5t-44.75,66.25t-16.5,81.5q0,43 16.5,81t 44.75,66.25t 66.25,44.75t 81,16.5zM 344,239l-0.5,3l-2,4.5l-3.5,2.5q-1.5,1.5 -5.75,1.5t-9.5,0.25t-10,0.75t-6.75,2.5q-3,3 -4,8t-2,12q-1,6.5 -1.75,10.5t-1.5,6.5t-1.5,4.25
460
+ t-1.75,4.25q-4,8 -10.75,15t-14.75,12.25t-16.5,8.5t-15.5,4.25l-52,0 q-15.5,0 -29-5.75t-23.75-15.75t-16-23.5t-5.75-29l0-86.5 q0-15 5.75-28.5t 16-23.75t 23.75-16t 29-5.75l 85,0 q 15.5,0 29,5.75t 23.5,16t 16,23.75t 6,28.5z" horiz-adv-x="425" />
461
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x66;&#x6c;&#x69;&#x63;&#x6b;&#x72;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 147,167.5q 11,0 20.5,4t 16.5,11.25t 11,16.75t 4,20.5q0,22 -15,37t-37,15
462
+ q-11,0 -20.5-4t-16.75-11t-11.25-16.5t-4-20.5t 4-20.5t 11.25-16.75t 16.75-11.25t 20.5-4zM 277.5,167.5q 11,0 20.5,4t 16.5,11.25t 11.25,16.75t 4.25,20.5t-4.25,20.5t-11.25,16.5t-16.5,11t-20.5,4q-10.5,0 -20-4t-16.75-11t-11.25-16.5t-4-20.5t 4-20.5t 11.25-16.75t 16.75-11.25t 20-4z" horiz-adv-x="425" />
463
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x6d;&#x72;&#x77;&#x6f;&#x6e;&#x67;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 106,172.5q 8.5,2 18.25,5.5t 19,8t 17,9.75t 12.25,10.75q 4.5,5 3.25,7
464
+ t-5,1.5t-9-2t-8.75-3q-4-1.5 -12.5-5t-17.5-7.5q-10.5-4.5 -22.5-9.5q-4-5.5 -5.5-9.5q-1-3.5 0.75-5.75t 10.25-0.25zM 283,122q 1,15 -0.5,24.25t-4.5,14.75t-7.25,8.25t-7.75,5.25q-4.5,2.5 -14.75,3.5t-21.75,1.5q0,10 -0.25,18.5t-0.75,13.5q 6.5,1 9.5,2q 11,3 15.75,12.25t 5.75,19.25l0,20 q 9,0.5 15.25,0.5l 8.75,0
465
+ q 3,0 7.25,0.25t 8,1t 6,2t 2.25,3.75q-0.5,5 -5,6t-11.5,2q-2.5,0 -11,0.25t-20,0.25q0,7.5 -0.5,15.25t-0.75,14.5t-1,11.75t-1.75,7q-3.5,7 -8,3.5t-4.5-8.5l0-43.5 l-44,0 l-4,0 q 0.5,10 1,19t 1,14.5q 1.5,13 -1.75,17.5t-7.25,5.5t-6-3.5t-3-10q-0.5-2.5 -0.75-15t 0.75-27.5q-11.5,0 -24,0.25t-19.5-0.75q-3,0 -5-2.5
466
+ t-2.75-5.5t-0.25-5.75t 3-3.25q 1.5-0.5 6.75-0.5l 12.25,0 t 15,0.5t 15.5,0.5q 0.5-9 1.5-17.25t 2-14.25q 2.5-11 11.5-15.75t 19-5.75q0-5.5 0.25-13.75t 0.25-18.25l-17,0 q-15.5-0.5 -25.75-8.25t-12.75-15.75q-1.5-4 -2.25-10t-1.25-12q-0.5-7 0-14.5q-0.5-8.5 2-12.5t 5.25-4t 5,4t 1.75,12q-1.5,21 5.5,31.5t 13,11.5
467
+ q 2.5,0.5 10,0.5l 16.5,0 l0-30.5 t-0.5-18q0-4.5 2.25-6.5t 5.25-1.5t 5.5,3.75t 2.5,9.75q0,5 0.25,16.75t-0.25,25.75q 7.5,0 13.75-0.25t 9.75-0.25q 9-0.5 13.25-9.5t 4.75-30.5q0-9.5 2.25-14t 4.75-4.25t 4.75,5.25t 3.25,14zM 311.5,183q 3-0.5 6.25-1.5t 6-1.25t 4.5,0.75t 1.75,4.5q-0.5,3.5 -4.75,6.75t-10.5,6.25t-13.75,6t-14.5,6
468
+ q-14.5,6 -20.5,6t-8-5.5q-1-3.5 0.25-5.75t 4-3.75t 5.75-2.25l 5-1.25t 7-2.75t 11-5t 11.75-4.75t 8.75-2.5zM 239.5,242.5q0-5 -4.25-8.25t-10.5-4.5t-13-0.75t-11.25,3.5q-4.5,2.5 -6.25,11.5t-2.25,20.5q 8,0 21.25,0.25t 26.75,0.25l0-13.5 t-0.5-9z" horiz-adv-x="425" />
469
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x64;&#x72;&#x75;&#x70;&#x61;&#x6c;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 213,102q 21,0 39.75,7.25t 33,20.25t 22.75,31.5t 8.5,41t-7.25,39
470
+ t-16.5,27.75t-17.75,17.5t-11,7.75q-9.5,5.5 -18.25,8.75t-17.25,8.75q-5.5,4 -12.25,11.5t-13.25,14.5q-1-11.5 -4.25-17.25t-7.25-9.25q-9-7 -15.5-10t-14-7q-3-1.5 -12-7.75t-18.5-17t-17-27t-7.5-38.25t 8.75-40.75t 23.25-32.25t 33.5-21.25t 40-7.75zM 230.5,141q-5.5-4.5 -7-2.5q-1.5,2.5 2,5.5
471
+ q 2,2 4.75,4.25t 5.75,3.25q 3,1.5 5,1.5l 4.5,0 q 3,0 5.5-0.25t 5-1.75q 2-1.5 3.25-4t 2.25-4q 1-4 -2-4.5q-1.5-1 -3.5,2.5q-1,2 -3,3.75t-8,1.75t-8.75-1.5t-5.75-4zM 263,129.5q 3,2 3-0.5q 1-2.5 -0.5-4q-1-1 -8-4.75t-16.5-4.75t-20.5-0.25t-19,7.75q-1,1 -1,2.25t 1,2.25q 2,1.5 3.5,1.5t 2-0.5q 3.5-2.5 9.25-4.5t 17.25-2
472
+ q 11,0 18.5,2.5t 11,5zM 190,210q 10,0 18.75-4.25t 16-9t 13.25-8.75t 11.5-4q 4.5,0 10.25,3.5t 12,7.5t 12,7.5t 9.75,3.5q 8.5,0 11.75-6.5t 3.25-12t-2-13.75t-6-14.25q-4-5.5 -7.25-8t-8.25-2q-3,0 -7.5,4.25t-9.25,9t-9.75,9t-9,4.25q-5,0 -12.5-4.25t-16.25-9.5t-18.25-9.5t-18-4.25
473
+ q-10.5,0 -14.75,1.25t-7.75,3.75q-11,7 -10,22q0,6.5 3,12.75t 8.25,11t 12,7.75t 14.75,3zM 191,284.5q-7-7.5 -14-13t-19.5-13q-13-7 -19-8t-6.5-0.5t-1.75,2.25t 1.25,5.75q 4,6.5 9.75,11.75t 11.5,9.25t 10.5,6.75t 7.25,3.75q 1.5,1 8.25,4.5t 14.25,9q 5,4 8.25,8.5t 4.75,16q 2-6.5 2-15.5
474
+ q-0.5-4 -3.25-6.5t-3.75-3.5t-3.5-2.25l-3.5-1.75q-2-0.5 0-1.5q 3-1 3-2.5q0-1 -1-3.25t-5-6.25z" horiz-adv-x="425" />
475
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x65;&#x6d;&#x61;&#x69;&#x6c;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 94.5,165l 63,45l-63,45l0-90 zM 330,145.5l-76.5,55l-41-29.5
476
+ l-41.5,29.5l-76.5-55l0-30 l 235.5,0 l0,30 zM 330,255l-63-45l 63-45l0,90 zM 330,324.5l-235.5,0 l0-30.5 l 118-84l 117.5,84l0,30.5 z" horiz-adv-x="425" />
477
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x6d;&#x65;&#x65;&#x74;&#x75;&#x70;" d="M 194,208q-2.5,0 -3.5,1.5q 0.5,4 1.5,6.75t 2,5.75q 1,2 2,5l 1,2l 0.5-2q 1-4 0.75-9.5t-2.25-9.5l-2,0 zM 352,216q-2.5-7 -7.75-12.5t-12.25-7.5q 2.5,11.5 5.75,23.5t 11.75,19.5l 0.5,1l 0.5-1q 3.5-6.5 3.25-12.75t-1.75-10.25zM 155.5,211.5q-0.5,0.5 -2,0.5l-1.5,0 l0,1 q 1.5,8 6,14q 1-4 1.25-8t-0.25-7l-1-0.5l-0.5,0 l-2,0 zM 212,429.5
478
+ q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.25t 16.5-81.5t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.5,16.5t-66.25,45t-44.75,66.5t-16.5,81.5t 16.5,81.5t 44.75,66.25t 66.25,44.75t 81.5,16.5zM 135.5,187q-2.5,8 -4.5,16.75t-3.5,17.25l-5,22t-6.5,20l-2,0 q-3,0 -5,0.5q-1,0 -2.25,0.25t-2.25,0.25l-0.5,0 l-1.5,0
479
+ q-6-8.5 -9-20.75t-5.5-24.25q-2,3 -3.25,6t-2.75,6q-2.5,5 -5.25,10.25t-5.75,9.25l-3,0 q-7,0 -12.5-2l0-10.5 q-0.5-13.5 0-25.5t 3.5-23q 1-0.5 2.5-0.5q 4,0 7.5,1.5t 5,2.5q0,3.5 -0.25,6.25t-0.75,5.75q0,1.5 -0.25,3t 0.75,3.5q 5-6.5 8.5-13q 1-2.5 2.5-4.5t 2.5-4l 2.5,0 q 1.5,0 3,0.25t 2.5,0.25q 2,0.5 6,0.5l 1.5-0.5
480
+ q 2,4.5 2.25,10.25t 0.25,11.75q0,5.5 0.5,11t 3,9.5q 2.5-12.5 6-24.25t 8.5-24.25q 1.5,0 3.25,0.5t 3.75,1q 1.5,1 4,1l 1.5,0 zM 159.5,179.5q 5,0 10,1.25t 9,2.75q-1.5,3 -5,3q-2.5,0 -6.5-1q-3-1.5 -6-1.5q-1,0 -1.5,0.5q-4,0 -5.5,3.5q-4,6.5 -1,17.5q 2.5-0.5 5.75-1t 7.25-0.5l 1,0 l 3.5,0 q 2,7.5 1.25,17t-2.25,15.5q-2,0 -4,1q-4,1.5 -7.5,1.5l-1.5,0
481
+ q-7.5-1 -12-9.5t-5.5-18q-1-9 1.25-18.25t 10.75-12.75q 2-0.5 4-0.75t 4.5-0.25zM 202,181q 9.5,0 14.5,5q-1,3 -5,4q-3-5.5 -9.5-5.5t-11,6q-4,5.5 -1,12.5l 5-1t 5-0.5q 3,0 7,1q-0.5,5.5 -0.25,10t 1.25,9q 1,3.5 1.25,7.25t 0.75,8.25q-7,5.5 -14,6q-19.5-15 -18-47q 1-7 8.5-11t 15.5-4z
482
+ M 249.5,213q 3.5,0.5 6.5,0.75t 4.5,1.75q-2.5,1.5 -4.5,4.5l-3.75,3.75t-4.75,2.75q-1,0 -1-2.5q-0.5-1 -0.75-2.25t-1.75-1.25l-1.5,0 l0,0.5 q 0.5,5 0.25,10.75t-0.75,12.25q-0.5,9 -0.75,18t 1.25,16.5q-2,2.5 -5.25,4.75t-8.75,2.25q-1.5,0 -1.5,0.5q-3-9.5 -2.25-20.5t 1.75-22q 1-6.5 1.5-12.5t-0.5-11.5q-3,0 -4.5,0.5l-3.5,0 q-3,0 -4.5-1.5q-1-1 -1-4.5
483
+ q 2.5-1.5 5.75-2t 7.25-0.5l 3.5-0.5q0-4 0.25-7t 0.25-6.5q 0.5-4.5 0.75-9.25t 0.25-10.25l 3.5,0 q 2.5,0.5 7,0.5q0,4 -0.25,7.5t-0.25,7q0,5 -0.25,9.5t 0.25,9.5q 2.5,1 7.5,1zM 300.5,198q 3,5 5,10.25t 1,13.75q-2.5,2 -5.25,4t-5.75,2l-1,0 l-1,0 l-0.5-3.5q0-5 -0.25-10.5t-1.5-10.5t-3.75-8.75t-7-5.25q-1,5.5 -1.25,11.75
484
+ t-0.75,12.25l0,10 q-1,0.5 -1.75,1t-1.75,1q-2.5,1.5 -4.5,2.5t-6,1.5q-2.5-33.5 6.5-43.5q 3.5-4 10-4q 4,0 8.5,1.5l 1.5,2q 3,5 6.5,8zM 365,209q 3,6 4,15t-4,20q-5,3.5 -9.5,4.75t-8.5,1.25q-9.5,0 -17-9q-4-4.5 -6.25-11t-3.75-13.25t-2.25-13.25t-1.25-11q-0.5-0.5 -1.5-0.5q-3.5-1 -4-2q 4-4.5 5-11.75t 2-14.25
485
+ q 1-6 1.5-11.5t 2.5-9.5q 1-0.5 5-0.5l 3.5,0 q 3.5,0 5-0.5q-2.5,7 -3.75,16.5t-0.25,23q 11,2.5 20,10t 13.5,17.5z" horiz-adv-x="425" />
486
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x6d;&#x72;&#x77;&#x6f;&#x6e;&#x67;" d="M 212,429.5q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.25t 16.5-81.5t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.5,16.5t-66.25,45t-44.75,66.5t-16.5,81.5t 16.5,81.5t 44.75,66.25t 66.25,44.75t 81.5,16.5zM 100.5,188.5q-4-5.5 -5.5-9.5q-1-3.5 0.75-5.75t 10.25-0.25t 18.25,5.5t 19,8t 17,9.75t 12.25,10.75q 4.5,5 3.25,7
487
+ t-5,1.5t-9-2t-8.75-3q-4-1.5 -12.5-5t-17.5-7.5q-10.5-4.5 -22.5-9.5zM 283,122.5q 1,15 -0.5,24.25t-4.5,14.75t-7.25,8.25t-7.75,5.25q-4.5,2.5 -14.75,3.5t-21.75,1.5q0,10 -0.25,18.5t-0.75,13.5q 2.5,0.5 5,0.75t 4.5,1.25q 11,3 15.75,12.25t 5.25,19.25q 0.5,2.5 0.5,7.75l0,12.25 q 8.5,0.5 15,0.5l 9,0 q 3,0 7,0.25t 7.75,1t 6.25,2
488
+ t 2.5,3.75q-0.5,5 -5,6t-11.5,2q-2.5,0 -11,0.25t-20,0.25q0,7.5 -0.5,15.25t-0.75,14.5t-1,11.75t-1.75,7q-4,7 -8.5,3.5t-4.5-8.5q0-2.5 0.25-15.75t 0.25-27.75l-44.5,0 l-3.5,0 q 0.5,10 1,19t 1,14.5q 1,13 -2.25,17.5t-7.25,5.5t-5.75-3.5t-2.75-10q-1-2.5 -1-15t 0.5-27.5q-11.5,0 -23.75,0.25t-19.25-0.75q-3,0 -5-2.5
489
+ t-2.75-5.5t-0.25-5.75t 2.5-3.25t 7.25-0.5l 12.25,0 t 14.75,0.5t 15.25,0.5q 1-9 1.75-17.25t 2.25-14.25q 2.5-11 11.5-15.75t 19-5.75l0-32 l-16.5,0 q-16-0.5 -26-8.25t-12.5-15.75q-1.5-4 -2.25-10t-1.25-12q-0.5-7 -0.5-14.5q0-8.5 2.25-12.5t 5.25-4t 5.25,4t 1.75,12q-1.5,21 5.25,31.5t 12.75,11.5q 3,0.5 10.25,0.5l 16.25,0
490
+ q 0.5-16.5 0.5-30.5t-0.5-18q0-4.5 2.25-6.5t 5.25-1.5t 5.5,3.75t 2.5,9.75l0,42.5 q 7.5,0 13.75-0.25t 9.75-0.25q 8.5-0.5 13-9.5t 5-30.5q0-9.5 2.25-14t 4.75-4.25t 4.75,5.25t 3.25,14zM 311,183.5q 3-0.5 6.5-1.5t 6.25-1.25t 4.5,0.75t 1.75,4.5q-0.5,3.5 -4.75,6.75t-10.5,6.25t-14,6t-14.75,6q-14,6 -20,6t-8-5.5
491
+ q-1-3.5 0.25-5.75t 3.75-3.75t 5.5-2.25l 5-1.25t 7.25-2.75t 11.25-5t 11.5-4.75t 8.5-2.5zM 239.5,243q0-5 -4.5-8.25t-10.5-4.5t-12.75-0.75t-11.25,3.5q-4.5,2.5 -6.25,11.5t-2.25,20.5q 8,0 21.25,0.25t 26.75,0.25q0-7.5 -0.25-13.5t-0.25-9z" horiz-adv-x="425" />
492
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x71;&#x75;&#x6f;&#x72;&#x61;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 294.5,125.5q-3.5-1 -8,1q-4,1.5 -9.25,5.25t-10.75,11.25
493
+ q 22,14.5 35.75,37.5t 14.75,51q 0.5,22 -7,41.25t-21.25,33.75t-32.5,22.75t-40.25,8.25q-22,0 -41.25-8.25t-33.75-22.75t-23.5-33.75t-9.5-41.25q-1-22 6.5-41.25t 21.25-33.75t 32.5-22.75t 40.25-8.25q 15.5,0 30,4.5q 4.5-7.5 11-15.5q 7-8.5 14.75-10.75t 14.75-1.25q 8,1 15.5,4.5l0,18.5 zM 217,311.5q 11,0 20.5-6.25
494
+ t 16.5-16.75t 10.75-24.75t 3.25-30.25q-0.5-17.5 -5.75-32.25t-13.75-25.75q-7.5,11 -15.75,15t-15.25,4.5q-8.5,0.5 -16.5-2.5l0-18.5 q 3.5,1 6.5,0.5q 2.5-0.5 5.75-2.25t 6.25-5.75q 1.5-2 2.75-4t 2.25-4.5q-7.5-2.5 -13-2.5q-11.5,0 -21,6.25t-16.5,16.75t-10.75,24.75t-3.25,30.25t 5.25,30.25t 12.5,24.75t 17.75,16.75t 21.5,6.25z
495
+ " horiz-adv-x="425" />
496
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x70;&#x61;&#x79;&#x70;&#x61;&#x6c;" d="M 246,276q-4.5-10 -14-17.25t-20-7.25l-1,0 l 5,24.5l 30,0 zM 200.5,251.5l-18.5,0 l 14,62l 30.5,0 q 11,0 17.25-8t 4.75-19q-5,2 -9,2l-31,0 zM 212,429.5q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.25t 16.5-81.5t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.5,16.5t-66.25,45t-44.75,66.5t-16.5,81.5t 16.5,81.5t 44.75,66.25
497
+ t 66.25,44.75t 81.5,16.5zM 94.5,140l 63,0 l 15.5,62l 45.5,0 q 16,0 30.5,5.25t 26.25,14.75t 20,23t 12.25,30q 4,18.5 0,32.75t-12.75,23.75t-20.75,14.25t-24,4.75l-108,0 zM 328,246.5q 4,17.5 0.5,30t-11,21.5q 4-8 4.75-17.5t-1.75-22q-4-16.5 -12.25-30.75t-20-24.75t-26.25-16.25t-31-5.75l-45,0 l-15.5-66l-53,0 l-2.5-12.5l 63,0
498
+ l 15.5,66.5l 45,0 q 16.5,0 31,5.75t 26.25,16.25t 20,24.75t 12.25,30.75z" horiz-adv-x="425" />
499
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x70;&#x69;&#x63;&#x61;&#x73;&#x61;" d="M 212.5,430q 43.5,0 81.5-16.5t 66.25-44.75t 44.75-66.25t 16.5-81.5t-16.5-81.5t-44.75-66.5t-66.25-45t-81.5-16.5t-81.5,16.5t-66.5,45t-45,66.5t-16.5,81.5t 16.5,81.5t 45,66.25t 66.5,44.75t 81.5,16.5zM 211,351.5q-22.5,0 -45-8.5q 1-1 8.5-7.5t 18.5-16.25t 23.5-21t 23.25-21t 17.75-16.75t 7-8l0,87.5
500
+ q-10,5.5 -24.5,8.5t-29,3zM 81.5,220.5q0-17.5 5-34q 1,1 9.75,9t 21.25,19.5t 27.25,24.75t 27.25,24.75t 21,19.25t 9,8.25q-1,0.5 -8.5,7.5t-16.5,15.25t-16.5,15t-8,7.25q-33-17 -52-48t-19-68.5zM 147,221.5q-14.5-13.5 -26.5-24q-10-9 -18.5-17t-9-8.5q 8-19.5 21.25-35.75t 32.75-27.75l0,113 zM 224,90
501
+ q 34.5,3.5 62.5,21.5t 43,57l-169.5,0 l0-67.5 q 19-8.5 40-11l 24,0 zM 335.5,181.5q 4,10 5.25,20t 1.25,21q0,34.5 -17.25,63.25t-47.25,46.75l0-151 l 58,0 z" horiz-adv-x="425" />
502
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x61;&#x6d;&#x61;&#x7a;&#x6f;&#x6e;" d="M 194,222.5q0,12 6.25,18.25t 14.75,8.75q 8.5,2 21,2l0-6 q0-8.5 -0.5-15.75t-5-14.75q-4.5-11 -15.5-13.5q-1,0 -2-0.25t-2-0.25q-8,0 -12.5,6t-4.5,15.5zM 212,430q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.25t 16.5-81.5t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.5,16.5t-66.25,45t-44.75,66.5t-16.5,81.5
503
+ t 16.5,81.5t 44.75,66.25t 66.25,44.75t 81.5,16.5zM 232.5,300q 3-4.5 3.25-10t 0.25-11l0-4 q-5-0.5 -10.25-0.75t-10.75-1.25q-8.5-1 -16.5-2.75t-15-5.25q-13.5-6 -21.75-18t-8.25-29.5q0-22.5 12-33.75t 29.5-11.25q 11,0 20,2.5q 7,2.5 13.25,6.75t 13.25,11.75q 4-5.5 6.5-9.25t 9.5-9.75q 4-1.5 7,0.5
504
+ q 4,4 10.5,9.5t 10.5,9.5q 2,1.5 1.75,3.5t-1.25,4q-4,5.5 -7.25,11.25t-3.25,15.75l0,45.5 q0,14.5 -1,27.25t-11,22.75q-8.5,8 -20.5,11.25t-22,3.25l-6,0 q-9-0.5 -18.25-3t-17.25-7.75t-13.75-13.5t-7.75-20.25q-1-3 0.75-4.25t 3.25-1.75l 27.5-3.5q 3.5,0.5 4.5,5.5q 2,8.5 8,12.75t 13,5.25l 2,0 q 10,0 15.5-8zM 318,137
505
+ q 3.5,2.5 1.5,5.5t-6,1.5q-1.5-1 -3.25-1.5t-3.25-1.5q-23-9 -46.25-13.5t-45.75-4.5q-35.5,0 -68.5,9.5t-61,26q-2.5,1.5 -3.75-0.25t 1.25-3.75q 25.5-24 58.5-37.5t 70.5-13.5q 23.5,0 48.75,6.5t 46.25,19.5q 2.5,2 5.5,3.75t 5.5,3.75zM 343,156q0,3 -1,5q-2,2.5 -12.75,3.5t-22.25-2.5q-6-2 -11.5-6q-2-1 -1.75-2.5t 2.25-1.5
506
+ q 5,1 11,1.5q 7,1 13.75,0.5t 8.75-3q 1.5-1.5 1-5.75t-2-9.5t-3.25-10.25t-3.25-8q-1-2.5 0.5-3t 3,1q 9,8 13,19.75t 4.5,19.25l0,1.5 z" horiz-adv-x="425" />
507
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x67;&#x69;&#x74;&#x68;&#x75;&#x62;" d="M 212,429.5q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.25t 16.5-81.5t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.5,16.5t-66.25,45t-44.75,66.5t-16.5,81.5t 16.5,81.5t 44.75,66.25t 66.25,44.75t 81.5,16.5zM 205.5,87.5q 15,0 28,4.5t 22.75,12t 15.5,17.5t 5.75,21.5q0,11 -5.75,21t-15.5,17.5t-22.75,12t-28,4.5q-1.5,0 -3-0.25
508
+ t-2.5-0.25q-2.5,6 -2.5,12q0,3.5 0.5,7.75t 1.5,4.25l 2,0 q 12.5,0 23.25,4.75t 19,12.75t 13,18.75t 4.75,22.75q0,5.5 -2.25,12.25t-5.75,9.75l 21,11.5l0,39 l-43-23.5q-14.5,10 -31.5,10q-12.5,0 -23.25-4.75t-18.75-12.75t-12.5-18.75t-4.5-22.75q0-14 6-25.75t 16-19.75q-5.5-12.5 -5.5-25.5q0-6 1.25-11.75t 3.75-11.25
509
+ q-13-7.5 -21-19t-8-24.5q0-11.5 5.75-21.5t 15.5-17.5t 22.75-12t 28-4.5zM 205.5,164q 13.5,0 22.75-6.25t 9.25-14.75q0-9 -9.25-15.25t-22.75-6.25q-13,0 -22.5,6.25t-9.5,15.25q0,8.5 9.5,14.75t 22.5,6.25zM 201.5,253q-11.5,0 -19.75,8t-8.25,19.5t 8.25,19.5t 19.75,8t 19.75-8t 8.25-19.5t-8.25-19.5
510
+ t-19.75-8z" horiz-adv-x="425" />
511
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x72;&#x65;&#x64;&#x64;&#x69;&#x74;" d="M 280.5,287.5q-7.5,0 -13,5.5t-5.5,13.5q0,7.5 5.5,13t 13,5.5t 12.75-5.5t 5.25-13q0-8 -5.25-13.5t-12.75-5.5zM 120,242.5q-17.5-13.5 -25-32q-7.5,6.5 -7.5,15.5q0,8.5 6.25,14.5t 14.75,6q 6.5,0 11.5-4zM 212.5,429q 43.5,0 81.5-16.5t 66.25-44.75t 44.75-66.25t 16.5-81.5t-16.5-81.5t-44.75-66.5t-66.25-45
512
+ t-81.5-16.5t-81.5,16.5t-66.5,45t-45,66.5t-16.5,81.5t 16.5,81.5t 45,66.25t 66.5,44.75t 81.5,16.5zM 316.5,196q 8.5,4 14,12t 5.5,18q0,14 -9.75,23.75t-23.75,9.75q-7,0 -13.25-3t-10.75-7.5q-14,8.5 -31.25,13.75t-36.75,6.25l 6.5,46l 32.5-7.5l0-1 q0-13.5 9-22.75t 22-9.25t 21.75,9.25t 8.75,22.75
513
+ q0,13 -8.75,22.25t-21.75,9.25q-10,0 -17.5-5.5t-11-14l-38.5,9q-2,0.5 -4.5-1q-2-1 -2-3.5l-8-54q-19.5-0.5 -36.75-5.5t-31.25-13.5q-9.5,9.5 -22.5,9.5q-14,0 -23.75-9.75t-9.75-23.75q0-9 4.5-16.5t 11.5-12q-1.5-5.5 -1.5-11.5q0-17.5 9-32.5t 24.5-26.25t 36.25-17.75t 44.25-6.5t 44.25,6.5t 36.25,17.75
514
+ t 24.5,26.25t 9,32.5q0,2.5 -0.25,5t-0.75,5zM 203.5,251.5q 20,0 38-5.25t 31.25-14t 21-20.75t 7.75-25.5t-7.75-25.25t-21-20.75t-31.25-14t-38-5q-20.5,0 -38.25,5t-31,14t-21,20.75t-7.75,25.25t 7.75,25.5t 21,20.75t 31,14t 38.25,5.25zM 149.5,205.5q0-6 4.25-10.5t 10.25-4.5q 6.5,0 10.75,4.5t 4.25,10.5
515
+ q0,6.5 -4.25,11t-10.75,4.5q-6,0 -10.25-4.5t-4.25-11zM 252.5,153.5q 4.5,4.5 0,9t-9,0t-14.5-7.5t-24-3q-14.5,0 -24,3q-10,3 -14.5,7.5t-9,0t0-9q 7-7.5 20-11q 13-4 27.5-4t 27.5,4q 12.5,3.5 20,11zM 246,190.5q 6.5,0 10.75,4.5t 4.25,10.5q0,6.5 -4.25,11t-10.75,4.5q-6,0 -10.25-4.5t-4.25-11q0-6 4.25-10.5
516
+ t 10.25-4.5zM 302.5,246.5q 9,0 15-6t 6-14.5q0-12 -10.5-17.5q-6.5,18 -24,32.5q 5.5,5.5 13.5,5.5z" horiz-adv-x="425" />
517
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x73;&#x63;&#x72;&#x69;&#x62;&#x64;" d="M 212.5,429q 43.5,0 81.5-16.5t 66.25-44.75t 44.75-66.25t 16.5-81.5t-16.5-81.5t-44.75-66.5t-66.25-45t-81.5-16.5t-81.5,16.5t-66.5,45t-45,66.5t-16.5,81.5t 16.5,81.5t 45,66.25t 66.5,44.75t 81.5,16.5zM 242.5,115q 1.5,1.5 3,3.25t 3,3.75q-7,11.5 -7,25.5q0,12.5 4.75,22.75t 13.25,17.25l0,1.5 q-3.5,11 -12,21.5q-8,10 -20,18.5
518
+ q-11.5,8 -34,18q-11.5,5 -19,9.5t-12.5,8.5q-9,8 -9,19q0,12 10.5,20.5q 10.5,7.5 27.5,7.5q 12,0 21-4q-2.5-6 -2.5-11q0-11.5 7.75-19.25t 18.75-7.75t 18.5,7.75t 7.5,19.25q0,12 -9,20q-12,13.5 -27.5,20q-19.5,8.5 -37.5,8.5q-28,0 -48-18q-19.5-18 -19.5-43q0-11 3.5-20q 2-4.5 4.5-9.25t 6.5-9.25
519
+ q 8-9.5 18-16q 5.5-3.5 12.5-7.25t 17-7.75q 9.5-4 16.5-7.5t 11.5-7q 8-6 14.5-15.5q 6-10 6-19.5q0-16 -11.5-26.5t-28-10.5q-23.5,0 -39.5,18.5q 8,8 8,19.5t-7.5,19.25t-18.5,7.75t-18.75-7.75t-7.75-19.25q0-4 1.5-7l-1-0.5q 12-31.5 34-48.5q 22-16 50.5-16t 50,20.5zM 286.5,116.5q 13,0 21.75,9
520
+ t 8.75,22t-8.75,22.25t-21.75,9.25q-12.5,0 -21.25-9.25t-8.75-22.25t 8.75-22t 21.25-9z" horiz-adv-x="425" />
521
+ <glyph unicode="&#x66;&#x6f;&#x6f;&#x64;&#x73;&#x70;&#x6f;&#x74;&#x74;&#x69;&#x6e;&#x67;" d="M 121,204l-26.5,0 l0,131 l 26.5,0 l0-131 zM 100.5,101l0,77 l 47.5,0 l0-13 l-33.5,0 l0-18 l 29,0 l0-13.5 l-29,0 l0-32.5 l-14,0 zM 156.5,129.5q0,7.5 3,14.5q 4,7 9.5,10.5t 13.5,3.5q 11,0 18.5-8q 7.5-8.5 7.5-21q0-13 -7.5-21q-7.5-8.5 -18.5-8.5q-5.5,0 -13.5,3.5q-5.5,3.5 -9.5,10.5q-3,6.5 -3,16zM 170,129q0-8 3.5-13q 3.5-4.5 9-4.5t 8.5,4.5q 3.5,4 3.5,13
522
+ q0,8.5 -3.5,12.5q-3,4.5 -8.5,4.5t-9-4.5q-3.5-5.5 -3.5-12.5zM 216,129.5q0,7.5 3,14.5q 3,6.5 9.5,10.5q 5.5,3.5 13,3.5q 11.5,0 19-8q 7.5-8.5 7.5-21q0-13 -7.5-21q-7.5-8.5 -18.5-8.5q-4,0 -7,1t-6.5,2.5q-6.5,4 -9.5,10.5t-3,16zM 229.5,129q0-9 3.5-13q 3.5-4.5 9-4.5q 4.5,0 8.5,4.5q 3.5,4 3.5,13q0,8.5 -3.5,12.5q-4,4.5 -8.5,4.5
523
+ q-5.5,0 -9-4.5q-3.5-4 -3.5-12.5zM 324.5,101l-12.5,0 l0,8 q-3.5-5 -7.5-7q-4-2.5 -8.5-2.5q-8.5,0 -14.5,8q-6.5,8 -6.5,21.5q0,14 6,21.5t 15.5,7.5q 8.5,0 14.5-7.5l0,27.5 l 13.5,0 l0-77 zM 289,130q0-9 2-13q 2.5-5.5 9-5.5q 5,0 8,4q 3,4.5 3,13q0,9.5 -3,14t-8,4.5t-8-4.5q-3-4 -3-12.5zM 304,335q 11,0 18.5-7.75
524
+ t 7.5-18.25l0-78.5 q0-11 -7.5-18.75t-18.5-7.75l-131,0 q-10.5,0 -18.25,7.75t-7.75,18.75l0,78.5 q0,10.5 7.75,18.25t 18.25,7.75l 26.5,0 l 13,26l 52,0 l 13-26l 26.5,0 zM 238.5,217.5q 11,0 20.5,4t 16.5,11t 11.25,16.5t 4.25,20.5t-4.25,20.5t-11.25,16.5t-16.5,11.25t-20.5,4.25t-20.5-4.25t-16.75-11.25t-11.25-16.5t-4-20.5t 4-20.5t 11.25-16.5
525
+ t 16.75-11t 20.5-4zM 264.5,269.5q0-11 -7.5-18.5t-18.5-7.5t-18.5,7.5t-7.5,18.5t 7.5,18.5t 18.5,7.5t 18.5-7.5t 7.5-18.5z" horiz-adv-x="425" />
526
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x66;&#x6f;&#x72;&#x72;&#x73;&#x74;" d="M 212,429q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.25t 16.5-81.5t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.5,16.5t-66.25,45t-44.75,66.5t-16.5,81.5t 16.5,81.5t 44.75,66.25t 66.25,44.75t 81.5,16.5zM 320,102l-108,235.5l-107.5-235.5l 97,0 l0,53.5 l-32.5,11l0,10.5 l 32.5-10.5l0,42.5 l 21.5,0 l0-21 l 21.5,10.5l0-10.5 l-21.5-11l0-21.5 l 43,21.5l0-10.5
527
+ l-43-21.5l0-43 l 97,0 z" horiz-adv-x="425" />
528
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x69;&#x74;&#x75;&#x6e;&#x65;&#x73;" d="M 212,430q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.25t 16.5-81.5t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.5,16.5t-66.25,45t-44.75,66.5t-16.5,81.5t 16.5,81.5t 44.75,66.25t 66.25,44.75t 81.5,16.5zM 212,90q 27,0 51,10.25t 41.75,28t 28,41.75t 10.25,51t-10.25,50.75t-28,41.5t-41.75,28t-51,10.25
529
+ t-50.75-10.25t-41.5-28t-28-41.5t-10.25-50.75t 10.25-51t 28-41.75t 41.5-28t 50.75-10.25zM 212,338.5q 24.5,0 46-9.25t 37.5-25.25t 25.25-37.25t 9.25-45.75t-9.25-46t-25.25-37.5t-37.5-25.25t-46-9.25t-45.75,9.25t-37.25,25.25t-25.25,37.5t-9.25,46t 9.25,45.75t 25.25,37.25t 37.25,25.25t 45.75,9.25
530
+ zM 172.5,281l 0.5,0 l0-90 q0,1 -4.25,1.25t-7.25-0.25q-9.5-1 -15.75-8.75t-5.25-17.25q 0.5-10 7.5-16t 16.5-5q 9,1 15.25,7.75t 5.75,15.75l 0.5,0 l0,82.5 l 65.5,15l0-62.5 q0,1 -4.25,1.25t-7.25-0.25q-9.5-1 -15.75-8.5t-5.25-17.5q 1-9.5 8-15.5t 16.5-5q 9,1 15,7.75t 6,15.75l0,118 z" horiz-adv-x="425" />
531
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x68;&#x79;&#x76;&#x65;&#x73;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 309,131.5q 3.5,5.5 -0.25,12.25t-8.25,8.25q-2,0.5 -5.75,0.25
532
+ t-5.25,1.25q-1,1 -0.75,7.5t 0.25,10.5l0,97 q0,9.5 -0.5,20.75t 3,15.75q 1,1 3.75,2t 5.5,2.25t 5,2.5t 2.75,2.75q 0.5,2.5 -0.5,6.5t-2.75,7.75t-4.5,6.25t-4.75,2.5l-16.5,0 q-10-2 -19.25-3.5t-17.75-5.5q-2.5-1 -5-2.75t-3.5-3.75q-2.5-8 2.5-13.25t 10.5-7.75q 2-1 5.75-1.25t 5.25-1.75q 2-2 1.5-8t-1-10q-1-10 -1-18.5
533
+ t 1-19.5q 0.5-3.5 1.25-9.25t-2.25-8.25q-1-1 -3.75-1.25t-6-0.5l-6.5-0.5t-5.25-0.75q-8-1 -14.25-1.75t-12.25-2l-12-2.5t-13.5-2.75l-5-1.25t-5.5,0.25q-1.5,0.5 -2.25,5.25t-0.75,6.75q-1,14.5 0,25.5t 1,25l0,9 t 1,6t 3.75,2.5t 6,1.75t 6,1.75t 4.25,3q 1.5,2.5 1.25,6t-1.25,6q-2.5,6 -7,8.75t-10.5,3.25
534
+ t-13.25-0.5t-14.75-2.5q-11-2 -20-4.75t-13-9.75l0-4.5 q 2.5-5.5 5.25-8.5t 7.25-5.5q 2.5-1 6.25-1.25t 4.75-1.75q 1.5-1.5 1.25-7.75t-0.25-10.75q0-16.5 0.75-29.5t 0.75-29q 0.5-13.5 1-28.5t 2-28q 1-4.5 1.25-10.25t-1.25-7.75q-1-1 -2.75-1.25t-2.75-0.75q-4-1 -8.5-3.5t-5-6.5q-0.5-5 4.25-10.25
535
+ t 9.75-6.25q 3-1 5.5-1t 6.5,0.5q 5.5,0.5 13.25,1.5t 15,3t 12.5,5.25t 5.75,7.75q 0.5,5.5 -3.25,10t-7.75,6q-1.5,0.5 -6,0t-6,2q-1,2 -0.75,5.75t 0.25,6.25t-0.5,6.5t-0.75,8.25t0,7.75t 1.25,5q 2.5,3.5 8.5,5t 9.5,2.5q 11.5,4 20.5,5.25t 22.5,3.25q 1.5,0 5.25,0.5t 7.5,0.75t 7,0t 4.25-1.25t 0.75-4.75t-0.25-6.25l0-12.5
536
+ q0-5.5 1-12.75t-1.5-9.75q-2-1.5 -5.75-1.5t-5.75-1q-7.5-3.5 -8-7.5q-1-6 6-12.5t 13-7q 10-1 21.5,2t 18.5,6.5l 6.75,2.25t 4.75,2.75z" horiz-adv-x="425" />
537
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x66;&#x6c;&#x69;&#x63;&#x6b;&#x72;" d="M 212,429.5q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.25t 16.5-81.5t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.5,16.5t-66.25,45t-44.75,66.5t-16.5,81.5t 16.5,81.5t 44.75,66.25t 66.25,44.75t 81.5,16.5zM 147,168q 10.5,0 20,4t 16.75,11.25t 11.25,16.75t 4,20.5t-4,20.5t-11.25,16.5t-16.75,11t-20,4q-11,0 -20.5-4
538
+ t-16.75-11t-11.25-16.5t-4-20.5t 4-20.5t 11.25-16.75t 16.75-11.25t 20.5-4zM 277.5,168q 11,0 20.5,4t 16.5,11.25t 11.25,16.75t 4.25,20.5t-4.25,20.5t-11.25,16.5t-16.5,11t-20.5,4t-20.5-4t-16.75-11t-11.25-16.5t-4-20.5t 4-20.5t 11.25-16.75t 16.75-11.25t 20.5-4z" horiz-adv-x="425" />
539
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x74;&#x75;&#x6d;&#x62;&#x6c;&#x72;" d="M 212.5,429q 43.5,0 81.5-16.5t 66.25-44.75t 44.75-66.25t 16.5-81.5t-16.5-81.5t-44.75-66.5t-66.25-45t-81.5-16.5t-81.5,16.5t-66.5,45t-45,66.5t-16.5,81.5t 16.5,81.5t 45,66.25t 66.5,44.75t 81.5,16.5zM 290.5,152q-19-11.5 -37.5-11.5q-10.5,0 -18.5,4.5q-6.5,4 -9,10.5q-1,3 -0.5,9t 0.5,16.5l0,65 l 52,0 l0,39.5 l-52,0 l0,52 l-38,0
540
+ q-2-17.5 -8.5-30q-6.5-12 -17-20q-5.5-4.5 -13.25-7.5t-14.75-5.5l0-28.5 l 39,0 l0-87.5 q0-13 1.5-22.75t 10-17.75q 4-4 9.75-6.75t 12.25-4.75q 7-2.5 12.75-3.5t 14.25-1q 15,0 28,3q 7,1.5 14,4t 15,6l0,37 z" horiz-adv-x="425" />
541
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x79;&#x61;&#x68;&#x6f;&#x6f;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 292,270l 2.5,1.25t 3.5,0.75l 19,0 l 3,4l 10,9.5l-104.5,0 l 4-13.5l 28,0 l-47-44.5
542
+ q-3.5,5.5 -9.25,13.5t-12.25,17.5t-13.25,19.75t-12.75,20.25l 36,0 l0,8.5 l 0.5,3l-0.5,0 l0,1.5 l-117.5,0 l0-13 l 34.5,0 q 5-5 15.75-18.75t 22-28.75t 19.75-27.75t 9.5-15.25q0-2.5 0.25-10t 0.25-15.75t-0.25-15.25t-1.25-8q-2-2 -6.75-3t-10-1.5t-10-0.5l-6.75,0 l-2-12l 11,0 l 15.5,0 t 15.5,0.25t 11.5,0.25l 17.25,0 l 18.75,0 t 15.75-0.25
543
+ t 8.75-0.25l 0.5,12.5q-2,0.5 -7.5,0.5l-11.5,0 l-11,0 t-6.5,0.5q-0.5,2 -0.75,9.75t-0.5,16.5t-0.25,16t 0.5,8.75q 1.5,4.5 11.25,14.75t 21.75,20.75t 22.5,18.75t 13,9.25zM 325.5,160l-9,0 l-10,1.5l0-18.5 l 8-1l 8.5-0.5zM 343,249q-1,0 -6,0.5t-10.75,1.25t-11,1.25t-6.75,1l 0.5-79l 15.5-1.5z" horiz-adv-x="425" />
544
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x64;&#x72;&#x75;&#x70;&#x61;&#x6c;" d="M 212.5,430q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.5t 16.5-81.75t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.75,16.5t-66.5,45t-44.75,66.5t-16.5,81.5t 16.5,81.75t 44.75,66.5t 66.5,44.75t 81.75,16.5zM 213.5,103q 21,0 39.75,7t 33,20.25t 22.5,31.5t 8.25,40.75t-7.25,39.25t-16.25,27.75t-17.5,17.25t-11.5,7.75
545
+ q-9,5.5 -17.75,9t-17.25,9q-5.5,4 -12.5,11.25t-13,14.75q-1-11.5 -4.5-17.25t-7.5-9.25q-9-7 -15.5-10.25t-14-7.25q-3-1.5 -12-7.5t-18.5-17t-17-27.25t-7.5-38.25t 8.75-40.5t 23.5-32t 33.75-21.25t 40-7.75zM 190,210.5q 10,0 18.75-4t 16-8.75t 13.5-9t 11.25-4.25q 4.5,0 10.25,3.5t 12,7.75
546
+ t 12.25,7.75t 10,3.5q 8.5,0 11.5-6.75t 3-12.25t-1.75-13.5t-5.75-14t-7.25-8.5t-8.25-2q-3,0 -7.5,4.25t-9.5,9t-9.75,9t-8.75,4.25q-5,0 -12.75-4.25t-16.5-9.5t-18.25-9.5t-18-4.25q-10,0 -14.5,1.25t-8,3.75q-10.5,7.5 -10,22q0,13.5 11,24t 27,10.5zM 191,285q-7-7 -13.75-12.5t-19.75-13
547
+ t-18.75-8.25t-6.75-0.25q-0.5,0.5 -1.75,2t 1.25,5.5q 4,6.5 9.75,11.75t 11.5,9.5t 10.5,7t 7.25,3.75q 1.5,1 8.25,4.5t 14.75,9q 4.5,4 7.75,8.5t 4.75,16q 1-4 1.75-7.5t 0.25-8q-0.5-4 -3.25-6.75l-3.75-3.75l-7-3.5q-1.5-1.5 0-1.5q 3-1 3-3q0-1 -1-3.25t-5-6.25zM 230.5,141.5q-3-2.5 -4.25-3.25t-2.25,0.75
548
+ q-2,2.5 1.5,6q 2,1.5 4.75,3.75t 5.75,3.75q 3,1 5,1l 5,0 q 2.5,0 5.25-0.25t 4.75-1.75q 2.5-1 3.5-3.5t 2-4.5q 1-3 -2-4.5q-1-1 -1.5-0.5t-2,3q-1,2.5 -3,4.25t-8,1.75t-8.75-1.75t-5.75-4.25zM 263,130.5q 2,1.5 3.5-1l0-1.75 t-1-2.25q-1-1 -8-4.75t-16.5-4.75q-9-1 -20.25-0.25t-18.75,7.75q-1.5,1 -1.25,2.5t 1.25,2
549
+ q 2,2 3.5,2q 1,0 1.5-0.5q 3.5-3 9.25-4.75t 17.25-1.75q 11,0 18.5,2.5t 11,5z" horiz-adv-x="425" />
550
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x68;&#x65;&#x61;&#x72;&#x74;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 215.5,115.5q 8,0 20.5,7.5t 26.75,20.25t 27.75,29.25t 23.25,34.25t 14,35.75
551
+ t-0.25,34q-7.5,25.5 -24.5,36.5t-35,11.5q-15,0 -25.25-6.25t-16.75-13.75t-9.75-13.75t-4.25-6.25t-4,6.25t-9,13.75t-16.25,13.75t-25.25,6.25q-18.5,0 -35.75-11t-24.75-37q-5-16 -0.25-34t 15.5-35.75t 25.25-34.25t 29.25-29.25t 27.75-20.25t 21-7.5z" horiz-adv-x="425" />
552
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x6c;&#x61;&#x73;&#x74;&#x66;&#x6d;" d="M 212,429q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.25t 16.5-81.5t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.5,16.5t-66.25,45t-44.75,66.5t-16.5,81.5t 16.5,81.5t 44.75,66.25t 66.25,44.75t 81.5,16.5zM 283,150.5q 20,0 33.5,11.75t 13.5,29.25q0,17 -8.75,25.5t-27.25,14q-13.5,4.5 -22.25,8.25t-8.75,14.75q0,7.5 5.25,12.5
553
+ t 13.75,5q 11.5,0 20-11l 15,7.5q-11.5,20.5 -34,20.5q-17.5,0 -27.75-9.75t-10.25-25.75t 10.25-24.25t 31.25-15.25q 11.5-4 18-7.75t 6.5-13.75t-8.25-16.75t-21.25-6.25t-18.75,7t-10.25,17.5l-8,18t-7.25,16.5t-5.25,12.75t-2.5,6.25q-9,21 -25.75,32t-39.25,11q-14.5,0 -27.25-5.5t-22.25-15t-15-22.25
554
+ t-5.5-27.25t 5.5-27.25t 15-22.25t 22.25-15t 27.25-5.5q 16.5,0 30.5,7t 24,18.5l-9,21q-7-12.5 -19-20t-26.5-7.5q-10.5,0 -19.75,4t-16.25,11t-11,16.25t-4,19.75t 4,19.75t 11,16.25t 16.25,11t 19.75,4q 16,0 28.5-8.5t 18-22l 22.5-51l 2.5-5.5q 7-16 17.75-24.75t 29.25-8.75z" horiz-adv-x="425" />
555
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x73;&#x6b;&#x79;&#x70;&#x65;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 226,102.5q 18.5,1 35.25,9.25t 28,20.75t 15.5,28t-2.25,31.5
556
+ q-6.5,15.5 -18.25,25t-26.75,15.25t-31.75,9.5t-33.75,7.75t-21.75,12.5t-1,16.75t 14.5,14.5t 24.25,6.25t 23.75-6.25t 18.5-13.25t 14.75-12.75t 12.5-4.75q 6,0.5 11,5.25t 6.75,11.5t-1,15t-12.25,16.75q-16.5,14.5 -38.25,21.5t-53.75,4q-12.5-1 -24.25-5.75t-21.25-13t-15.75-20.5t-7.75-28.25t 6.25-28t 20.25-20.75
557
+ t 28.25-14t 30.25-7.25q 10.5-1.5 21.5-4.75t 18.5-8.75t 9.25-13t-6.75-17.5q-7.5-9 -18-11.5t-20.75-1.25t-19,4.5t-12.25,5.75q-4,2.5 -8.25,7.5t-9,9.75t-10.75,8.5t-13,3.25q-7.5-0.5 -12.5-5.25t-6.5-12t 1.5-15.75t 12-17q 8-7.5 16.75-13.5t 19.75-9.75t 25-5.25t 32.5-0.5z" horiz-adv-x="425" />
558
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x76;&#x69;&#x6d;&#x65;&#x6f;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 328.5,264.5q 3.5,17.5 -1.75,28.25t-15.5,15.25t-23.25,3t-25-8t-21.5-17.75
559
+ t-12-26.75q 10,6 17.5,5.25t 11.5-5.5t 3.75-13t-5.25-17.25q-10-18.5 -18.75-29.5t-14.25-11q-5,0 -9.25,11.5t-9.75,33.5q-3,11 -5,25.25t-5.75,26.5t-10.5,19.75t-18.75,5.5q-11.5-2.5 -23.75-10.75t-22.75-17.25q-12.5-10.5 -24-23.5l 9.5-12q 5.5,4 11,6.5q 4.5,2.5 8.75,3t 6.75-2q 1.5-2 4.5-10t 6.75-19.25
560
+ t 8-24.25t 8-25t 7.25-21.5t 5.5-13.5q 3-5.5 8-11.25t 11.5-9.25t 14-4t 16,4.5q 8,5 24.25,18.25t 33.25,32.5t 31.5,43.25t 19.5,50.5z" horiz-adv-x="425" />
561
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x61;&#x64;&#x64;&#x6d;&#x65;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 317,246l-78.5,0 l0,78.5 l-52.5,0 l0-78.5 l-78.5,0 l0-52 l 78.5,0 l0-78.5 l 52.5,0 l0,78.5 l 78.5,0
562
+ l0,52 z" horiz-adv-x="425" />
563
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x64;&#x61;&#x79;&#x74;&#x75;&#x6d;" d="M 212,429q 43.5,0 81.5-16.5t 66.25-44.75t 44.75-66.25t 16.5-81q0-43.5 -16.5-81.5t-44.75-66.25t-66.25-44.5t-81.5-16.25q-43,0 -81,16.25t-66.25,44.5t-44.75,66.25t-16.5,81.5q0,43 16.5,81t 44.75,66.25t 66.25,44.75t 81,16.5zM 134,168l-26,0 l0-78 l 26,0 l0,78 zM 173,220.5l-26,0 l0-130.5 l 26,0 l0,130.5 zM 212,194.5
564
+ l-26,0 l0-104.5 l 26,0 l0,104.5 zM 251.5,272.5l-26.5,0 l0-182.5 l 26.5,0 l0,182.5 zM 290.5,220.5l-26,0 l0-130.5 l 26,0 l0,130.5 zM 329.5,298.5l-26,0 l0-208.5 l 26,0 l0,208.5 zM 329.5,338l-221.5,0 l0-26.5 l 221.5,0 l0,26.5 z" horiz-adv-x="425" />
565
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x61;&#x70;&#x70;&#x6c;&#x65;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 225,319.5q-6-6.5 -10.25-16.25t-2.75-19.75q 10-1 19.5,4t 16,12.5
566
+ t 10.25,17.5t 2.25,20q-9-0.5 -18.75-5.5t-16.25-12.5zM 293.5,131.5q 8.5,12.5 12.5,22.5t 4.5,11l-5.25,2.5t-11.25,8t-11,14.5t-5,22.5q0,11 3.75,19.5t 8.75,14t 9,8.25t 4.5,3.25q-5.5,7.5 -11.75,12t-12.5,7t-11.5,3.25t-8.25,0.75q-7,0.5 -13.75-1t-12.75-3.5t-11-4t-8.5-2t-8,1.75t-9.75,3.5t-10.75,3.25t-11.5,1.5
567
+ q-15.5,0 -28.5-8t-21-21.5t-9.5-29.5t 1.25-32.25t 9.25-31t 14-25.75q 3.5-5.5 7.75-11t 9-9.75t 10-6.75t 11.25-2q 6,0 10.25,1.5t 8.5,3.25t 9,3.25t 11.75,1.5t 11.75-1.5t 9-3.25t 8.75-3.25t 10.5-1.5q 12,0.5 20.5,9.25t 16,19.75z" horiz-adv-x="425" />
568
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x79;&#x61;&#x68;&#x6f;&#x6f;" d="M 212.5,429q 43.5,0 81.5-16.5t 66.25-44.75t 44.75-66.25t 16.5-81.5t-16.5-81.5t-44.75-66.5t-66.25-45t-81.5-16.5t-81.5,16.5t-66.5,45t-45,66.5t-16.5,81.5t 16.5,81.5t 45,66.25t 66.5,44.75t 81.5,16.5zM 292,270l 2.5,1.25t 3.5,0.75l 19,0 l 3,4l 10,9.5l-104.5,0 l 4-13.5l 28,0 l-47-44.5q-3.5,5.5 -9.25,13.5t-12.25,17.5t-13.25,19.75
569
+ t-12.75,20.25l 36,0 l0,8.5 l 0.5,3l-0.5,0 l0,1.5 l-117.5,0 l0-13 l 34.5,0 q 5-5 15.75-18.75t 22-28.75t 19.75-27.75t 9.5-15.25q0-2.5 0.25-10t 0.25-15.75t-0.25-15.25t-1.25-8q-2-2 -6.75-3t-10-1.5t-10-0.5l-6.75,0 l-2-12l 11,0 l 15.5,0 t 15.5,0.25t 11.5,0.25l 17.25,0 l 18.75,0 t 15.75-0.25t 8.75-0.25l 0.5,12.5q-2,0.5 -7.5,0.5l-11.5,0 l-11,0 t-6.5,0.5
570
+ q-0.5,2 -0.75,9.75t-0.5,16.5t-0.25,16t 0.5,8.75q 1.5,4.5 11.25,14.75t 21.75,20.75t 22.5,18.75t 13,9.25zM 325.5,160l-9,0 l-10,1.5l0-18.5 l 8-1l 8.5-0.5zM 343,249q-1,0 -6,0.5t-10.75,1.25t-11,1.25t-6.75,1l 0.5-79l 15.5-1.5z" horiz-adv-x="425" />
571
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x65;&#x62;&#x61;&#x79;" d="M 166,201.5l0,35 q 13-5.5 16-14.5t 2-20.5l-18,0 zM 119.5,179.5q-7,0 -11,2.25t-6,5.5t-2.25,7t-0.25,7.25l 66,0 l0-8.5 l-13,0 l-14.5,0 q0-5 -3.5-9.25t-15.5-4.25zM 261,274q 16-2.5 20-10t 4-17.5l0-20 zM 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5
572
+ t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 369,285.5l-32,0 l-24.5-51l-22.5,51l-34.5,0 l 5.5-11.5q-2.5,0.5 -5.25,0.5l-5.75,0 q-7,0 -12.75-1.25t-9.75-4.25q-9-5.5 -9-20.5l 24,0 q0,5 1.25,9t 7.75,4q 7,0 8.5-3.5t 1.5-9l0-6.5
573
+ q-10.5,0.5 -20-0.5t-15.5-6q-3,2.5 -6.75,4.25t-9.25,1.75q-12.5,0 -19.5-9.5l-0.5,0 l0,44 l-24,0 l0-40 q-2.5,1.5 -5.75,2.25t-7.25,1.75q-6.5,1 -14.75,1.75t-18.75,0.75q-22,0 -34.5-3t-19.25-8t-8.5-12t-1.75-14.5q0-8.5 2-15.75t 8.75-12.5t 19.25-8.25t 34-3q 10,0 18.25,1t 15.25,2.5t 13,4l0-17 l 23,0 l0,9 l 0.5,0
574
+ q 5.5-11 20-11q 7.5,0 12.25,3t 7.25,7.75t 3.5,10.5t 1.5,11.75q 1.5-0.5 5.5-0.5q 15,0 22.5,13l 0.5,0 l 1-11.5l 23,0 l-1,8t-0.5,8l0,22 l 10-19.5l0-41 l 32,0 l0,41 zM 119.5,230.5q 8,0 12.25-1.75t 6-4.5t 2-5.75t 0.25-5.5l-40,0 q0,2 0.25,5.25t 2,5.75t 5.75,4.5t 11.5,2zM 240.5,215q0,5.5 1.5,8.5t 4.5,4t 6.75,1.25t 8.25,0.75l0-8.25 t-0.75-9.25
575
+ t-3.5-7.5t-7.75-3q-6,0 -7.5,4.5t-1.5,9zM 200,227.5q 8,0 9-8t 1-20.5q0-16 -1.75-23t-8.25-7t-8.25,7t-1.75,23q0,12.5 1.25,20.5t 8.75,8zM 183.5,193q-1-12 -17-19q0-0.5 -0.5-0.5l0,19.5 l 17.5,0 zM 226,236q-9.5-6.5 -9.5-22q0-10 4-17.25t 13.5-9.25l0,11 q0,9 -1,20t-7,17.5z" horiz-adv-x="425" />
576
+ <glyph unicode="&#x70;&#x68;&#x6f;&#x74;&#x6f;&#x62;&#x75;&#x63;&#x6b;&#x65;&#x74;" d="M 330,298.5q 5.5,0 9.25-4t 3.75-9.5l0-130.5 q0-5.5 -3.75-9.25t-9.25-3.75l-39,0 l-13.5,0 l-18,0 q-21.5-13 -47-13q-26.5,0 -47,13l-70.5,0 q-5.5,0 -9.5,3.75t-4,9.25l0,130.5 q0,5.5 4,9.5t 9.5,4q0,5.5 3.75,9.25t 9.25,3.75l 26,0 q 5.5,0 9.25-3.75t 3.75-9.25l 13,0 l 5.5,0 q 10,6 22,9.5t 25,3.5t 24.75-3.5t 22.25-9.5l 70.5,0 z
577
+ M 148.5,154.5q-13,12.5 -20.25,29.5t-7.25,36t 7.25,35.75t 20.25,29.25l-1.5,0 l-13,0 l-26,0 l-13,0 l0-130.5 l 13,0 l 40.5,0 zM 202,142q 2.5-0.5 5.25-0.5l 5.25,0 l 5.25,0 t 5.25,0.5q 1,0.5 2.5,0.5l 5,1t 5,1.5q 6,1.5 9.5,3.5q 0.5,0.5 1,0.5t 1,0.5q 2.5,1 4.5,2.25t 4,2.75q 16,10.5 25.75,27.5t 9.75,38q0,20.5 -9.75,37.5t-25.75,27.5q-2,1.5 -4,2.75t-4.5,2.25q-1,1 -2,1
578
+ q-2.5,1 -4.75,2t-4.75,2q-4,1 -10,2q-1,0 -1.25,0.25t-1.25,0.25q-2.5,0.5 -5.25,0.75t-5.25,0.25t-5.25-0.25t-5.25-0.75q-1,0 -1.5-0.25t-1-0.25q-2.5-0.5 -5-0.75t-5-1.25l-5-2l-5-2q-0.5,0 -1.5-1q-2.5-1 -4.5-2.25t-4.5-2.75q-16-10.5 -25.5-27.5t-9.5-37.5q0-21 9.5-38t 25.5-27.5q 2.5-1.5 4.5-2.75
579
+ t 4.5-2.25q 0.5-0.5 0.75-0.5t 0.75-0.5q 4.5-2 10-3.5q 5.5-2 10-2.5q 1.5,0 2.5-0.5zM 330,285l-13,0 l-35.5,0 l-5,0 q 13-12.5 20.25-29.25t 7.25-35.75t-7.25-36t-20.25-29.5l 1,0 l 4,0 l 5.5,0 l 4,0 l 26,0 l 13,0 l0,130.5 zM 264.5,220q0,22 -15,37t-37,15l0,13 q 13.5,0 25.25-5t 20.75-14t 14-20.75t 5-25.25l-13,0 z" horiz-adv-x="425" />
580
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x71;&#x75;&#x6f;&#x72;&#x61;" d="M 212.5,429.5q 43.5,0 81.5-16.5t 66.25-44.75t 44.75-66.25t 16.5-81.5t-16.5-81.5t-44.75-66.5t-66.25-45t-81.5-16.5t-81.5,16.5t-66.5,45t-45,66.5t-16.5,81.5t 16.5,81.5t 45,66.25t 66.5,44.75t 81.5,16.5zM 294.5,126q-3.5-1 -8,1q-4,1.5 -9.25,5.25t-10.75,11.25q 22,14.5 35.75,37.5t 14.75,51q 0.5,22 -7,41.25
581
+ t-21.25,33.75t-32.5,22.75t-40.25,8.25q-22,0 -41.25-8.25t-33.75-22.75t-23.5-33.75t-9.5-41.25q-1-22 6.5-41.25t 21.25-33.75t 32.5-22.75t 40.25-8.25q 15.5,0 30,4.5q 4.5-7.5 11-15.5q 7-8.5 14.75-10.75t 14.75-1.25q 8,1 15.5,4.5l0,18.5 zM 217,312q 11,0 20.5-6.25t 16.5-16.75t 10.75-24.75t 3.25-30.25
582
+ q-0.5-17.5 -5.75-32.25t-13.75-25.75q-7.5,11 -15.75,15t-15.25,4.5q-8.5,0.5 -16.5-2.5l0-18.5 q 3.5,1 6.5,0.5q 2.5-0.5 5.75-2.25t 6.25-5.75q 1.5-2 2.75-4t 2.25-4.5q-7.5-2.5 -13-2.5q-11.5,0 -21,6.25t-16.5,16.75t-10.75,24.75t-3.25,30.25t 5.25,30.25t 12.5,24.75t 17.75,16.75t 21.5,6.25z" horiz-adv-x="425" />
583
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x64;&#x69;&#x67;&#x67;" d="M 147,159q 5.5,0 9.25-3.25t 3.75-7.75l0-11 l-43.5,0 l0,11 q0,4.5 3.75,7.75t 9.25,3.25l 17.5,0 zM 107.5,262q 9.5,8.5 18.75,13.75t 14.25,5.25q 4.5,0 13.75-5.25t 18.75-13.75l0-42 l-65.5,0 l0,42 zM 277.5,259l-39,0 l0,39.5 l 39,0 l0-39.5 zM 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5
584
+ t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 343,270l-39,0 l0,54.5 l-91.5,0 l0-54.5 l-13.5,0 l0,1.5 q-10.5,8.5 -20.5,15.5q-9,5.5 -19.25,10.5t-18.75,5q-9,0 -19.25-5t-19.25-10.5q-10.5-7 -20.5-15.5l0-77.5 l 52.5,0 l0-13.5
585
+ q-7-0.5 -14-3.25t-12.75-7t-9.25-10t-3.5-12.25l0-24.5 q0-3.5 2.5-5.75t 6.5-2.25l 69.5,0 q 8.5,0 8.5,8l0,16.5 l0,8 q0,13 -10.5,22.25t-24,10.25l0,13.5 l 21.5,0 l 22,0 l 11,0 l0-78.5 l 115.5,0 l0,78.5 l 26,0 l0,76 zM 304,248l 13,0 l0-28 l-26.5,0 l0-78.5 l-26,0 l0,39 l-11,0 l0-39 l-28,0 l0,78.5 l-26.5,0 l0,26 l 13.5,0 l0-13 l 91.5,0 l0,15 z" horiz-adv-x="425" />
586
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x6d;&#x69;&#x78;&#x78;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 308.5,205.5q-12.5-24 -37-41.25t-56.5-21.75q-28.5-4 -53.75,3
587
+ t-43.75,23q 15-18 37-28.5t 48.5-10.5q 19,0 36,5.75t 31,16t 24,24t 14.5,30.25zM 263.5,229.5q-6.5-14.5 -19.75-27.25t-31.75-19.75q-16-6.5 -31.5-7.5t-28.5,3q 8.5-5.5 18.75-8.5t 21.75-3q 14.5,0 27.5,5t 22.75,13.5t 15.25,20t 5.5,24.5zM 148.5,341.5q-3-7 -1-13.5l 47.5-113.5q 2.5-7.5 5.5-11.5t 4-4l 3.5,1.5q 1,0.5 1.75,4.5t-1.25,12.5
588
+ l-28.5,120q-1.5,5.5 -6,9.25t-10,3.75q-3.5,0 -5-0.5q-7.5-2.5 -10.5-8.5zM 209.5,89q 27.5,0 51.75,11t 42.5,29.75t 28.75,44t 10.5,53.75q0,8.5 -1,16.25t-2.5,15.25q0-2.5 0.25-5.5t 0.25-5.5q0-29.5 -10.75-55.25t-29.25-44.75t-43.25-30.25t-52.75-11.25q-20.5,0 -39,6t-34.5,16.75t-28.5,25.75t-20.5,33
589
+ q 6-21.5 18.25-39.5t 29.25-31.25t 37.5-20.75t 43-7.5z" horiz-adv-x="425" />
590
+ <glyph unicode="&#x74;&#x77;&#x69;&#x74;&#x74;&#x65;&#x72;&#x62;&#x69;&#x72;&#x64;" d="M 336.5,301.5q-11-16 -25.5-26l0-7 q0-25 -9.5-50.75t-27.75-46.5t-45.25-34t-62-13.25q-22,0 -41.5,6t-36.5,17q 3-0.5 6-0.75t 6-0.25q 18,0 34.25,6t 29.25,16q-17,0.5 -29.75,10.25t-17.75,25.25q 2.5-1 4.75-1l 4.75,0 q 7,0 13,1.5q-17.5,4 -29,17.75t-11.5,32.25l0,0.5 q 5.5-2.5 11-4.25t 12-1.75
591
+ q-10,7 -16.25,18t-6.25,24q0,14 7,25.5q 19-23 46-37.25t 58.5-15.75q-1.5,6 -1.5,11.5q0,10.5 4,19.75t 11,16.25t 16.25,11t 19.75,4q 11,0 20.5-4.25t 16.5-11.75q 9,1.5 17,4.75t 15.5,7.75q-6-18.5 -22.5-28.5q 16,2.5 29.5,8z" horiz-adv-x="425" />
592
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x65;&#x6d;&#x61;&#x69;&#x6c;" d="M 212.5,431q 43.5,0 81.75-16.5t 66.75-45t 45-66.75t 16.5-81.75t-16.5-81.75t-45-66.75t-66.75-45t-81.75-16.5t-81.75,16.5t-66.75,45t-45,66.75t-16.5,81.75t 16.5,81.75t 45,66.75t 66.75,45t 81.75,16.5zM 94.5,166.5l 63,45l-63,45l0-90 zM 330.5,146.5l-77,55l-41-29.5l-41.5,29.5l-76.5-55l0-30.5
593
+ l 236,0 l0,30.5 zM 330.5,256.5l-63-45l 63-45l0,90 zM 330.5,326l-236,0 l0-30.5 l 118-84l 118,84l0,30.5 z" horiz-adv-x="425" />
594
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x61;&#x64;&#x64;&#x6d;&#x65;" d="M 212.5,430.5q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.5t 16.5-81.75t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.75,16.5t-66.5,45t-44.75,66.5t-16.5,81.5t 16.5,81.75t 44.75,66.5t 66.5,44.75t 81.75,16.5zM 317,247.5l-78.5,0 l0,78.5 l-52.5,0 l0-78.5 l-78.5,0 l0-52.5 l 78.5,0 l0-78.5 l 52.5,0 l0,78.5 l 78.5,0 l0,52.5 z" horiz-adv-x="425" />
595
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x76;&#x69;&#x6d;&#x65;&#x6f;" d="M 212.5,429q 43.5,0 81.5-16.5t 66.25-44.75t 44.75-66.25t 16.5-81.5t-16.5-81.5t-44.75-66.5t-66.25-45t-81.5-16.5t-81.5,16.5t-66.5,45t-45,66.5t-16.5,81.5t 16.5,81.5t 45,66.25t 66.5,44.75t 81.5,16.5zM 328.5,264.5q 3.5,17.5 -1.75,28.25t-15.5,15.25t-23.25,3t-25-8t-21.5-17.75t-12-26.75q 10,6 17.5,5.25t 11.5-5.5
596
+ t 3.75-13t-5.25-17.25q-10-18.5 -18.75-29.5t-14.25-11q-5,0 -9.25,11.5t-9.75,33.5q-3,11 -5,25.25t-5.75,26.5t-10.5,19.75t-18.75,5.5q-11.5-2.5 -23.75-10.75t-22.75-17.25q-12.5-10.5 -24-23.5l 9.5-12q 5.5,4 11,6.5q 4.5,2.5 8.75,3t 6.75-2q 1.5-2 4.5-10t 6.75-19.25t 8-24.25t 8-25t 7.25-21.5t 5.5-13.5
597
+ q 3-5.5 8-11.25t 11.5-9.25t 14-4t 16,4.5q 8,5 24.25,18.25t 33.25,32.5t 31.5,43.25t 19.5,50.5z" horiz-adv-x="425" />
598
+ <glyph unicode="&#x73;&#x74;&#x75;&#x6d;&#x62;&#x6c;&#x65;&#x75;&#x70;&#x6f;&#x6e;" d="M 292,136l-17,0 q-9,0 -17.75,4.25t-16,11.5t-11.5,16.25t-4.25,18l0,60.5 q0,4.5 -1,5.5q-0.5,0 -2,0.5q-3,1 -8.5,1l-71.5,0 q-4-3 -5.5-8q 1-1 3-2.75t 6.5-4.25l 32.5-13q 13-7.5 21.75-21.75t 8.75-27.25q0-8 -3.5-15.25t-9.5-13t-14-9t-17-3.25l-84,0 l0,39 l 84,0 q 1.5,0 2.5,0.75t 2,1.75q-1,2.5 -3.5,6.75
599
+ t-6.5,7.25l-32.5,12.5q-4,2.5 -9.25,6t-9.75,8.5t-7.75,11.25t-3.25,14.75q0,7.5 3.25,15.75t 9.25,15.5t 14,12t 17.5,4.75l 72.5,0 q 17,0 27-5.25t 15.25-12.5t 6.75-15.25t 1.5-13l0-60.5 q 0.5-2.5 4.5-6.5t 6.5-4.5l 16.5,0 q 2.5,1 6.75,5.5t 5.25,7.5l0,131 l 39,0 l0-131.5 q0-9 -4.5-18.25t-12-16.5t-16.5-12t-18-4.75z" horiz-adv-x="425" />
600
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x73;&#x74;&#x61;&#x72;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 323.5,242q 9,10 5.5,17.5t-17,7.5l-58,0 l-28,58q-5.5,12.5 -13.75,12.5
601
+ t-13.75-12.5l-28-58l-58,0 q-14,0 -17.25-7.5t 5.75-17.5l 0.5-0.5l 44.5-54l-22.5-65.5q-4.5-13 1-17.75t 18,1.25l 70,35l 69.5-35q 12.5-6 18-1.25t 1,17.75l-22.5,65.5l 44.5,54z" horiz-adv-x="425" />
602
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x67;&#x64;&#x67;&#x74;" d="M 147,298.5l 91.5,0 l0-78.5 l-91.5,0 l0,78.5 zM 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 317,324.5l-39.5-77l0,77 l-13,13
603
+ l-143.5,0 l-13.5-13l0-130.5 l 13.5-13.5l 117.5,0 l0-39 l-117.5,0 l0-26 l 13-13.5l 130.5,0 l 13,13.5l0,65 l 39.5,65.5l0,78.5 z" horiz-adv-x="425" />
604
+ <glyph unicode="&#x67;&#x72;&#x6f;&#x6f;&#x76;&#x65;&#x73;&#x68;&#x61;&#x72;&#x6b;" d="M 212.5,350.5q 27,0 50.75-10.25t 41.5-28t 28-41.5t 10.25-50.75t-10.25-51t-28-41.75t-41.5-28t-50.75-10.25t-51,10.25t-41.75,28t-28,41.75t-10.25,51t 10.25,50.75t 28,41.5t 41.75,28t 51,10.25zM 212.5,337.5q-24.5,0 -45.75-9.25t-37.25-25.25t-25.25-37.25t-9.25-45.75q0-21 7-41
605
+ q 12-1 27,2.75t 24.5,12.25q 10,9 14.5,20.75t 6,25t 1,27.5t0,28.75q 27-8 45.75-22t 37.75-35q 4-4 10.25-13.75t 14-20.75t 16.5-21.75t 17.75-17.25q 6,12.5 9.5,26.25t 3.5,28.25q0,24.5 -9.25,45.75t-25.25,37.25t-37.25,25.25t-45.75,9.25z" horiz-adv-x="425" />
606
+ <glyph unicode="&#x61;&#x70;&#x70;&#x73;&#x74;&#x6f;&#x72;&#x65;&#x61;&#x6c;&#x74;" d="M 212.5,351q 27,0 50.75-10.25t 41.5-28t 28-41.5t 10.25-50.75t-10.25-51t-28-41.75t-41.5-28t-50.75-10.25t-51,10.25t-41.75,28t-28,41.75t-10.25,51t 10.25,50.75t 28,41.5t 41.75,28t 51,10.25zM 212.5,102.5q 24.5,0 45.75,9.25t 37.25,25.25t 25.25,37.5t 9.25,46t-9.25,45.75t-25.25,37.25t-37.25,25.25
607
+ t-45.75,9.25t-46-9.25t-37.5-25.25t-25.25-37.25t-9.25-45.75t 9.25-46t 25.25-37.5t 37.5-25.25t 46-9.25zM 186,299l 52.5,0 l0-91.5 l 39,0 l-65-65.5l-65.5,65.5l 39,0 l0,91.5 z" horiz-adv-x="425" />
608
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x65;&#x74;&#x73;&#x79;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 317,167.5l-7.5,0 q-5.5-10 -11.25-20t-11.25-16q-4.5-4.5 -9-7.75
609
+ t-9-4.75q-5-1.5 -12.5-2.5t-18-1l-41,0 q-11,0 -15,2.5q-4.5,2.5 -6,6.5q-1,2 -2.25,7.25t-1.25,14.25l0,74 l 58,0 q 15,0 22.5-4.5q 7.5-4 10.5-10.5q 1.5-3 2.75-8.75t 2.25-15.75l 8.5,0 l0,91.5 l-8.5,0 q-0.5-10 -3-18.75t-7.5-12.75q-7.5-7.5 -27.5-7.5l-58,0 l0,91.5 l 71,0 q 19,0 25.5-2.5q 9-4 13.5-11q 2.5-4 4.5-9.75t 4-15.75l 7,0
610
+ l-2.5,52l-188.5,0 l0-13 l 9,0 q 7.5,0 14-0.5t 9.5-4.5q 2.5-2.5 4.75-8.75t 2.25-18.75l0-143.5 q0-10 -1.75-15.5t-2.75-8.5t-4-4.5l-6-3q-4-2.5 -8-2t-8,0.5l-9,0 l0-13.5 l 188.5,0 z" horiz-adv-x="425" />
611
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x73;&#x6b;&#x79;&#x70;&#x65;" d="M 212.5,429q 43.5,0 81.5-16.5t 66.25-44.75t 44.75-66.25t 16.5-81.5t-16.5-81.5t-44.75-66.5t-66.25-45t-81.5-16.5t-81.5,16.5t-66.5,45t-45,66.5t-16.5,81.5t 16.5,81.5t 45,66.25t 66.5,44.75t 81.5,16.5zM 226,102.5q 18.5,1 35.25,9.25t 28,20.75t 15.5,28t-2.25,31.5q-6.5,15.5 -18.25,25t-26.75,15.25t-31.75,9.5t-33.75,7.75
612
+ t-21.75,12.5t-1,16.75t 14.5,14.5t 24.25,6.25t 23.75-6.25t 18.5-13.25t 14.75-12.75t 12.5-4.75q 6,0.5 11,5.25t 6.75,11.5t-1,15t-12.25,16.75q-16.5,14.5 -38.25,21.5t-53.75,4q-12.5-1 -24.25-5.75t-21.25-13t-15.75-20.5t-7.75-28.25t 6.25-28t 20.25-20.75t 28.25-14t 30.25-7.25q 10.5-1.5 21.5-4.75t 18.5-8.75
613
+ t 9.25-13t-6.75-17.5q-7.5-9 -18-11.5t-20.75-1.25t-19,4.5t-12.25,5.75q-4,2.5 -8.25,7.5t-9,9.75t-10.75,8.5t-13,3.25q-7.5-0.5 -12.5-5.25t-6.5-12t 1.5-15.75t 12-17q 8-7.5 16.75-13.5t 19.75-9.75t 25-5.25t 32.5-0.5z" horiz-adv-x="425" />
614
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x78;&#x69;&#x6e;&#x67;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 147,167.5l 39,66l-26,52l-52.5,0 l 26.5-52l-39.5-66l 52.5,0 zM 317,337.5
615
+ l-52.5,0 l-78.5-143.5l 52.5-92l 52,0 l-52,92z" horiz-adv-x="425" />
616
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x76;&#x69;&#x72;&#x62;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 277.5,311.5l-52,0 l-39.5-117.5l-41,117.5l-50.5,0 l 65.5-183l 52.5,0 zM 317,259
617
+ q 11,0 18.5,7.75t 7.5,18.75q0,10.5 -7.5,18.25t-18.5,7.75t-18.75-7.75t-7.75-18.25q0-11 7.75-18.75t 18.75-7.75z" horiz-adv-x="425" />
618
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x61;&#x70;&#x70;&#x6c;&#x65;" d="M 212.5,430.5q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.5t 16.5-81.75t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.75,16.5t-66.5,45t-44.75,66.5t-16.5,81.5t 16.5,81.75t 44.75,66.5t 66.5,44.75t 81.75,16.5zM 225,321q-6-6.5 -10-16.5t-3-20q 10-1 19.75,4.25t 16.25,12.75t 10,17.25t 2.5,20.25q-9-0.5 -19-5.5
619
+ t-16.5-12.5zM 294,132.5q 8.5,12.5 12.5,22.75t 4,10.75q-9,4 -16,10.5q-6,5.5 -11,14.75t-5,22.75q0,11 3.75,19.25t 8.5,13.75t 9,8.5t 4.75,3q-5.5,7.5 -12,12.25t-12.75,7t-11.5,3.25t-8.25,1q-7,0.5 -13.75-1t-12.75-3.75t-11-4.25t-8.5-2q-7,0 -17.5,5.25t-22.5,5.25q-15.5-0.5 -28.5-8.25t-21-21.25t-9.5-29.75
620
+ t 1.25-32.25t 9.25-31t 14-26q 7.5-10.5 17-20.25t 21-9.25q 6,0 10.25,1.5t 8.5,3.25t 9,3.25t 11.75,1.5t 11.75-1.5t 9-3.25t 8.75-3.25t 10.5-1.5q 12.5,0.5 21,9.25t 16,19.75z" horiz-adv-x="425" />
621
+ <glyph unicode="&#x66;&#x72;&#x69;&#x65;&#x6e;&#x64;&#x73;&#x66;&#x65;&#x65;&#x64;" d="M 227.5,262.5q0,12 4,22.25t 11,18t 16.5,12.25t 20,4.5l 34,0 l0-38 l-34,0 q-5,0 -9.25-5.25t-4.25-13.75l0-22.5 l 38,0 l0-38 l-38,0 l0-91.5 l-38,0 l0,91.5 l-1,0 l-19,0 l-19,0 l0-91.5 l-38.5,0 l0,91.5 l-38,0 l0,38 l 38,0 l0,22.5 q0,12 4,22.25t 11,18t 16.5,12.25t 20,4.5l 34.5,0 l0-38 l-34.5,0 q-5,0 -9-5.25t-4-13.75l0-22.5 l 19,0 l 19,0 l 1,0 l0,22.5 z" horiz-adv-x="425" />
622
+ <glyph unicode="&#x64;&#x65;&#x73;&#x69;&#x67;&#x6e;&#x66;&#x6c;&#x6f;&#x61;&#x74;" d="M 149,194q 2.5-10 6.75-16t 9.25-9.75t 10.5-6.25t 10.5-5l0-26 q-14.5,3 -25,7.75t-18,12.25t-12.25,18t-7.75,25l 26,0 zM 186,284q-10-5.5 -21-18.25t-16-32.25l-26,0 q 6,29 19.75,49.5t 43.25,27l0-26 zM 276,233.5q-10.5,40 -50.5,50.5l0,26 q 29.5-6.5 49.75-26.75t 26.75-49.75l-26,0 zM 266,220.5
623
+ q0-11.5 -4.25-21.25t-11.5-17t-17-11.5t-20.75-4.25q-11.5,0 -21.25,4.25t-17,11.5t-11.5,17t-4.25,21.25q0,11 4.25,20.75t 11.5,17t 17,11.5t 21.25,4.25q 11,0 20.75-4.25t 17-11.5t 11.5-17t 4.25-20.75zM 212.5,178.5q 17.5,0 29.5,12.25t 12,29.75t-12,29.5t-29.5,12t-29.75-12t-12.25-29.5t 12.25-29.75t 29.75-12.25zM 212.5,338
624
+ q 24.5,0 45.75-9.25t 37.25-25.25t 25.25-37.25t 9.25-45.75t-9.25-46t-25.25-37.5t-37.25-25.25t-45.75-9.25t-46,9.25t-37.5,25.25t-25.25,37.5t-9.25,46t 9.25,45.75t 25.25,37.25t 37.5,25.25t 46,9.25zM 212.5,114.5q 22,0 41.25,8.25t 33.5,22.75t 22.5,33.75t 8.25,41.25t-8.25,41.25t-22.5,33.75t-33.5,22.75t-41.25,8.25
625
+ t-41.25-8.25t-33.75-22.75t-22.75-33.75t-8.25-41.25t 8.25-41.25t 22.75-33.75t 33.75-22.75t 41.25-8.25zM 225.5,157q 9.5,2.5 17.75,5t 14.5,6.25t 11,9.75t 7.25,16l 26,0 q-6.5-29.5 -27-43.25t-49.5-19.75l0,26 z" horiz-adv-x="425" />
626
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x68;&#x79;&#x76;&#x65;&#x73;" d="M 212,429.5q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.25t 16.5-81.5t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.5,16.5t-66.25,45t-44.75,66.5t-16.5,81.5t 16.5,81.5t 44.75,66.25t 66.25,44.75t 81.5,16.5zM 308.5,132q 2,3 1.75,6.25t-1.75,6.25t-3.75,5t-4.25,3t-5.75,0.5t-5.25,1q-1,1 -1,7.5l0,10.5 l0,97
627
+ q0,9.5 -0.25,20.75t 3.25,15.75q 1,1 3.5,2t 5.25,2.25t 5,2.5t 2.75,2.75q 1,2.5 0,6.5t-2.75,7.75t-4.5,6.25t-4.75,2.5l-16.5,0 q-10-2 -19.5-3.5t-18-5.5q-2.5-1 -5-2.75t-3-3.75q-2.5-8 2.5-13.25t 10.5-7.75q 1.5-1 5.5-1.25t 5.5-1.75q 2-2 1.5-8t-1-10q-1-10 -1.25-18.5t 1.25-19.5q 0.5-3.5 1.25-9.25t-2.25-8.25
628
+ q-1-1 -3.75-1.25t-6-0.5l-6.5-0.5t-5.25-0.75q-16-1.5 -27-3.75t-25-5.25q-2-0.5 -5.25-1.25t-5.25,0.25q-1.5,0.5 -2.25,5.25t-0.75,6.75q-1,14.5 0,25.5t 1,25l0,9 t 1,6t 3.75,2.5t 6,1.75t 6,1.75t 4.25,3q 1,2.5 1,6t-1,6q-2.5,6 -7,8.75t-10.5,3.25t-13.25-0.5t-14.75-2.5q-11-2 -20-4.75t-13-9.75l0-4.5
629
+ q 2.5-5.5 5.25-8.5t 7.25-5.5q 2.5-1 6.25-1.25t 4.75-1.75t 1-7.75l0-10.75 q0-16.5 0.75-29.5t 0.75-29q 0.5-13.5 1-28.5t 2-28q 0.5-4.5 1-10.25t-1-7.75q-1-1 -2.75-1.25t-3.25-0.75q-4-1 -8.25-3.5t-4.75-6.5q-1-4.5 4-10t 10-6.5q 3-1 5.25-1t 6.75,0.5q 5.5,0.5 13.25,1.5t 14.75,3t 12.25,5.25t 6.25,7.75
630
+ q 0.5,5.5 -3.5,10t-7.5,6q-1.5,0.5 -6,0t-6,2q-1,2 -0.75,5.75t 0.25,6.25q-1,5.5 -1.75,14.75t 1.75,12.75t 8.5,5t 9.5,2.5q 11.5,4 20.25,5.25l 22.75,3.25q 1.5,0 5,0.5t 7.5,0.75t 7.25,0t 4.25-1.25q 0.5-1 0.5-4.75l0-6.25 q0-4 -0.25-6.75t 0.25-5.75q0-5.5 1-12.75t-1.5-9.75q-2-1.5 -5.75-1.5t-6.25-1
631
+ q-7-3.5 -7.5-7.5q-1-6 6-12.5t 13-7q 10-1 21.5,2t 18.5,6.5q 3,1 6.5,2.25t 4.5,2.75z" horiz-adv-x="425" />
632
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x62;&#x6c;&#x69;&#x70;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 173,115.5l-65.5,65l0-39 l-13-13l 26.5-26.5l 13,13.5l 39,0 zM 254.5,115.5
633
+ q0,30 -11.75,56.75t-31.75,46.75t-46.75,31.75t-56.75,11.75l0-42.5 q 21,0 40.5-8t 34-22.5t 22.25-33.75t 7.75-40.25l 42.5,0 zM 330,115.5q0,45.5 -17.5,86t-48,70.75t-71,47.75t-86,17.5l0-42.5 q 37,0 69.75-14.25t 57.25-38.5t 38.75-57t 14.25-69.75l 42.5,0 z" horiz-adv-x="425" />
634
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x62;&#x69;&#x6e;&#x67;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 212.5,102q 24,0 45.5,6.5t 37.5,18t 25.25,26.5t 9.25,32.5q0,17 -9.25,32.25
635
+ t-25.25,26.5t-37.5,17.75t-45.5,6.5q-10.5,0 -20-1t-18.75-4t-19-8t-20.75-12.5l0,94.5 l-39.5,0 l0-154.5 l 0.5,0 q 0.5-16.5 10-31.25t 25.25-25.75t 37-17.5t 45.25-6.5zM 212.5,241q 15.5,0 29-4.5t 23.5-12t 16-17.5t 6-21.5t-6-21.75t-16-17.75t-23.5-11.75t-29-4.25t-29.25,4.25t-23.75,11.75t-16,17.75t-6,21.75t 6,21.5t 16,17.5
636
+ t 23.75,12t 29.25,4.5zM 212.5,150q 10,0 19,2.75t 15.75,7.75t 10.75,11.5t 4,14q0,15.5 -14.5,26t-35,10.5q-21,0 -35.5-10.5t-14.5-26q0-7.5 4-14t 10.75-11.5t 15.75-7.75t 19.5-2.75z" horiz-adv-x="425" />
637
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x79;&#x65;&#x6c;&#x70;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 151.5,331q-6-4.5 -8-7.5t-1.75-5.25t 1.75-4t 3-3.75l 44.5-72.5
638
+ q 2.5-4 6.75-6.75t 7.75-2.25q 3,1 5.25,4.75t 2.25,9.25l-0.5,84.5q0,11 -15,14q-4,0.5 -9.75,0.25t-12.25-1.5t-13-3.5t-11-5.75zM 121.5,180q 1-5.5 5.75-8.75t 9.25-1.25l 45,15.5q 5,2 8.5,6t 4,8q 1,4 -2.25,8t-7.75,6l-47.5,18.5q-4.5,2 -9.25-1.75t-5.75-10.75q-0.5-9.5 -0.5-17.5q0-7 -0.25-13.25
639
+ t 0.75-8.75zM 215,162q 0.5,5 -2,8.75t-6,4.25q-3.5,0 -8-2.25t-7.5-6.25l-31.5-37.5q-3.5-4 -2.25-10.75t 6.25-8.75l 33-11q 4.5-2 10.75,1.75t 6.25,9.25zM 301.5,153q 2,6.5 -0.75,11.5t-7.25,6l-39.5,11.5q-5,1 -9.5,1t-6.5-1.5t-1.75-5.75t 2.75-8.75l 25-45q 1-2.5 3.75-3.25t 5.75-0.75t 5.75,1.25
640
+ t 4.25,3.75q 4.5,6.5 8,12l 6,10t 4,8zM 296.5,217q 6,1 6.75,7t-0.25,10q-1,2 -3.25,6t-5.25,8.25t-6.5,8t-6,6.25q-5,4 -10,4t-8.5-4l-25.5-30q-3-4 -4-9t 1.5-9q 2.5-3.5 7.25-5.25t 9.75-0.75z" horiz-adv-x="425" />
641
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x62;&#x65;&#x62;&#x6f;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 237,102q 19,0 36,6.75t 29.75,18.25t 20,27t 7.25,33q0,18 -5.5,33.5
642
+ t-15,27t-22.25,18t-27.25,6.5l-46.5,0 q-9.5,0 -16.25-5t-6.75-14.5t 6.75-14.5t 16.25-5l 46.5,0 q 8.5,0 16-11.25t 7.5-27.75q0-8.5 -3.75-15.75t-10-12.5t-14.75-8.25t-18-3l-23.5,0 q-19,0 -29.75,11.75t-10.75,30.75l0,117.5 q0,10 -8.25,16.5t-17.75,6.5q-10,0 -18-6.5t-8-16.5l0-117.5 q0-19 7.25-36
643
+ t 19.75-30.25t 29.5-21t 36-7.75l 23.5,0 z" horiz-adv-x="425" />
644
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x68;&#x65;&#x61;&#x72;&#x74;" d="M 212,429.5q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.25t 16.5-81.5t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.5,16.5t-66.25,45t-44.75,66.5t-16.5,81.5t 16.5,81.5t 44.75,66.25t 66.25,44.75t 81.5,16.5zM 215.5,116q 8,0 20.5,7.5t 26.75,20.25t 27.75,29.25t 23.25,34.25t 14,35.75t-0.25,34q-8,25.5 -24.75,36.5t-35.25,11.5
645
+ q-15,0 -25.25-6.25t-16.5-13.75t-9.5-13.75t-4.25-6.25t-4,6.25t-9,13.75t-16.25,13.75t-25.25,6.25q-18.5,0 -35.75-11t-25.25-37q-4.5-16 0.25-34t 15.25-35.75t 25.25-34.25t 29.5-29.25t 27.75-20.25t 21-7.5z" horiz-adv-x="425" />
646
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x77;&#x77;&#x77;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 318,145.5q 12,16.5 12,41.5q0,10 -2.75,18.75t-7.25,16.25
647
+ q-4,7.5 -11.5,12.5t-16,8l 28,57.5l0,11.5 l-53.5,0 l-23,0 l-31-111.5l-31.5,111.5l-22.5,0 l 10.5-36.5l-21-75l-31.5,111.5l-22.5,0 l 52-173.5l 2,0 l 32,113l 32.5-113l 2,0 l 44.5,153l 2,0 l 36.5,0 l-36.5-57l0-4 l 15,0 q 8.5,0 14.25-4.25t 9.75-9.75q 3.5-4.5 5.25-12.5t 1.75-16.5q0-14 -6.5-25.5q-6-10.5 -15.5-10.5q-8.5,0 -14.5,6q-6.5,6 -10.5,16
648
+ l-17.5-7.5q 5-17.5 16.5-27q 10.5-10 26-10q 20,0 32.5,17z" horiz-adv-x="425" />
649
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x62;&#x6c;&#x69;&#x70;" d="M 212.5,430.5q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.5t 16.5-81.75t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.5,16.5t-66.5,45t-45,66.5t-16.5,81.5t 16.5,81.75t 45,66.5t 66.5,44.75t 81.5,16.5zM 173,116.5l-65.5,65.5l0-39.5 l-13-13l 26.5-26l 13,13l 39,0 zM 255,116.5q0,30 -11.75,56.75t-31.75,46.75t-46.75,31.75
650
+ t-57.25,11.75l0-42.5 q 21,0 40.5-7.75t 34-22.25t 22.5-34t 8-40.5l 42.5,0 zM 330,116.5q0,45.5 -17.5,86t-47.75,71t-70.75,48t-86.5,17.5l0-42.5 q 37,0 69.75-14.25t 57.25-38.75t 38.75-57.25t 14.25-69.75l 42.5,0 z" horiz-adv-x="425" />
651
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x61;&#x6f;&#x6c;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 241.5,337.5q-13,0 -22.5-9.25t-9.5-22.25t 9.5-22t 22.5-9
652
+ q 13.5,0 22.75,9t 9.25,22t-9.25,22.25t-22.75,9.25zM 310.5,125.5l-2.5,4q-25,50 -72.5,73.5q-0.5,0 -1,0.5l-0.5,0 l-0.5,0.5l-0.5,0.5q-1.5,0.5 -1.5,1.5q 1,3 1.75,3.5t 1.75,0.5l 4,0 q 4.5-1 9-1.5t 9-0.5q 10,0 21.25,3.25t 25.25,10.25l 4,2.5l-13.5,30l-4.5-2q-5.5-2.5 -13.25-4.5t-16.75-2q-10,0 -19,3l-2,1l-0.5,1.5q-0.5,0.5 -0.5,1.5t-0.5,2l0,1.5 l0,6.5
653
+ l-4,0.5q-7,1.5 -15.5,6l-2.5,1.5l-2.5-1q-16.5-9.5 -24.75-25.25t-10.75-42.75q-1-7 -1.5-9.75t-1-3.75q-5.5-11 -12.5-18.75t-14.75-13t-15-8.25t-12.75-4.5l-5.5-1.5l 15-40l 4.5,1.5q 16.5,4 28.25,10t 20.25,12.75t 14.5,13.75t 11.5,14l 3.5,5q 1,1 2,1l 2-1q 13.5-6 23.5-12.5t 17.25-13t 11.5-12.5t 6.75-10l 2.5-4.5z" horiz-adv-x="425" />
654
+ <glyph unicode="&#x66;&#x72;&#x69;&#x65;&#x6e;&#x64;&#x73;&#x74;&#x61;&#x72;" d="M 323.5,267.5q 4.5-5.5 6-16.25t-1-24.75q-1.5-9.5 -8-23t-19-26.25t-31-22.25t-43.5-10l-2.5,0 q-31.5,0 -52.25,19.75t-29.25,58.25q-2.5,12.5 -10.5,19.75t-13.5,7.25l-24.5,0 l0,24.5 l 33.5,0 q 9.5,0 17.5-4t 14.25-10t 10.75-13t 7-13q 1-2 1.5-3.75t 1.5-4.25q 3-7.5 4.25-16t 5.5-16t 13.25-13t 27.5-7q 17.5-1 28.75,6
655
+ t 18,17.5t 9.75,21.75t 4,18.75q 3,16 6.5,24t 15,9l 1.5,0 q 5.5,0 9-4zM 213,224q-4,0.5 -6.5,2.5t-4,4.5q-4,6.5 -5.25,15.25t 1.25,17.25q 3.5,11.5 7.75,13.5t 7.75,2q 4,0 8-4t 7.25-10.75t 2.75-14.25q-0.5-10 -4.5-18.25t-12.5-8.25q-1,0 -2,0.5zM 255.5,229q-2.5,0 -5,2.5t-4.25,7.25t-2.75,10t-1.25,10.75t-0.25,10
656
+ q 1,11.5 3.5,16.5t 8,6l 1,0 q 3.5,0 7-3t 6-7.75t 4.25-10.75t 1.75-12.5q0-28 -17.5-29l-0.5,0 z" horiz-adv-x="425" />
657
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x64;&#x69;&#x67;&#x67;" d="M 147,160q 5.5,0 9.25-3.25t 3.75-7.75l0-11 l-43.5,0 l0,11 q0,4.5 3.75,7.75t 9.25,3.25l 17.5,0 zM 277.5,260l-39,0 l0,39.5 l 39,0 l0-39.5 zM 303.5,249l 13,0 l0-28 l-26,0 l0-78.5 l-26,0 l0,39 l-11,0 l0-39 l-28.5,0 l0,78.5 l-26,0 l0,26 l 13,0 l0-13 l 91.5,0 l0,15 zM 212,430q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.25t 16.5-81.5t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5
658
+ t-81.5,16.5t-66.25,45t-44.75,66.5t-16.5,81.5t 16.5,81.5t 44.75,66.25t 66.25,44.75t 81.5,16.5zM 343,271l-39.5,0 l0,54.5 l-91.5,0 l0-54.5 l-13,0 l0,1.5 q-10.5,8.5 -20.5,15.5q-9,5.5 -19.25,10.5t-18.75,5q-9,0 -19.25-5t-19.25-10.5q-10.5-7 -20.5-15.5l0-78 l 52,0 l0-13 q-7-0.5 -13.75-3t-12.5-7t-9.25-10.25t-3.5-12.25l0-24.5
659
+ q0-3.5 2.5-5.75t 6-2.25l 70,0 q 3.5,0 6,2.25t 2.5,5.75l0,16.5 l0,8 q0,13 -10.5,22.25t-24,10.25l0,13 l 21.5,0 l 22,0 l 10.5,0 l0-78 l 115.5,0 l0,78 l 26.5,0 l0,76.5 zM 107.5,263q 9.5,8.5 18.75,13.75t 14.25,5.25q 4.5,0 13.75-5.25t 18.75-13.75l0-42 l-65.5,0 l0,42 z" horiz-adv-x="425" />
660
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x79;&#x65;&#x6c;&#x70;" d="M 212.5,429q 43.5,0 81.5-16.5t 66.25-44.75t 44.75-66.25t 16.5-81.5t-16.5-81.5t-44.75-66.5t-66.25-45t-81.5-16.5t-81.5,16.5t-66.5,45t-45,66.5t-16.5,81.5t 16.5,81.5t 45,66.25t 66.5,44.75t 81.5,16.5zM 151.5,331q-6-4.5 -8-7.5t-1.75-5.25t 1.75-4t 3-3.75l 44.5-72.5q 2.5-4 6.75-6.75t 7.75-2.25
661
+ q 3,1 5.25,4.75t 2.25,9.25l-0.5,84.5q0,11 -15,14q-4,0.5 -9.75,0.25t-12.25-1.5t-13-3.5t-11-5.75zM 121.5,180q 1-5.5 5.75-8.75t 9.25-1.25l 45,15.5q 5,2 8.5,6t 4,8q 1,4 -2.25,8t-7.75,6l-47.5,18.5q-4.5,2 -9.25-1.75t-5.75-10.75q-0.5-9.5 -0.5-17.5q0-7 -0.25-13.25t 0.75-8.75zM 215,162
662
+ q 0.5,5 -2,8.75t-6,4.25q-3.5,0 -8-2.25t-7.5-6.25l-31.5-37.5q-3.5-4 -2.25-10.75t 6.25-8.75l 33-11q 4.5-2 10.75,2t 6.25,9zM 301.5,153q 2,6.5 -0.75,11.5t-7.25,6l-39.5,11.5q-5,1 -9.5,1t-6.5-1.5t-1.75-5.75t 2.75-8.75l 25-45q 1-2.5 3.75-3.25t 5.75-0.75t 5.75,1.25t 4.25,3.75q 4.5,6.5 8,12l 6,10
663
+ t 4,8zM 296.5,217q 6,1 6.75,7t-0.25,10q-1,2 -3.25,6t-5.25,8.25t-6.5,8t-6,6.25q-5,4 -10,4t-8.5-4l-25.5-30q-3-4 -4-9t 1.5-9q 2.5-3.5 7.25-5.25t 9.75-0.75z" horiz-adv-x="425" />
664
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x72;&#x73;&#x73;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 121,102q 10.5,0 18.25,7.75t 7.75,18.75q0,10.5 -7.75,18.25
665
+ t-18.25,7.75q-11,0 -18.75-7.75t-7.75-18.25q0-11 7.75-18.75t 18.75-7.75zM 238.5,102q0,30 -11.25,56.25t-30.75,45.75t-45.75,30.75t-56.25,11.25l0-48 q 20,0 37.5-7.5t 30.5-20.5t 20.5-30.5t 7.5-37.5l 48,0 zM 330,102q0,48.5 -18.5,91.5t-50.5,75t-75,50.5t-91.5,18.5l0-49 q 38.5,0 72.5-14.75t 59.25-40t 40-59.25
666
+ t 14.75-72.5l 49,0 z" horiz-adv-x="425" />
667
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x78;&#x69;&#x6e;&#x67;" d="M 212.5,429q 43.5,0 81.5-16.5t 66.25-44.75t 44.75-66.25t 16.5-81.5t-16.5-81.5t-44.75-66.5t-66.25-45t-81.5-16.5t-81.5,16.5t-66.5,45t-45,66.5t-16.5,81.5t 16.5,81.5t 45,66.25t 66.5,44.75t 81.5,16.5zM 147,167.5l 39,66l-26,52l-52.5,0 l 26.5-52l-39.5-66l 52.5,0 zM 238.5,194l 78.5,143.5l-52.5,0 l-78.5-143.5l 52.5-92
668
+ l 52,0 z" horiz-adv-x="425" />
669
+ <glyph unicode="&#x67;&#x6f;&#x6f;&#x67;&#x6c;&#x65;&#x62;&#x75;&#x7a;&#x7a;" d="M 111.5,267.5q 16,21 42.75,33t 58.25,12q 17.5,0 34.75-4t 31.75-12.5l-100-92zM 132,116.5q-5.5,0 -9.75,0.5t-7.25,1.5q 6.5,4 11.25,11t 8.25,14l 0.5,1.5l 82.5,75.5l 73.5-70q-16-11.5 -36.25-17.5t-42.25-6q-8.5,0 -16.5,0.75t-16,2.75l-2.5,0.5l-2.5-1q-20.5-13.5 -43-13.5zM 227.5,230l 63.5,58.5q 19-13 29-31t 10-37.5
670
+ q0-35 -28.5-60.5zM 127,156q-32.5,27 -32.5,64q0,18 9.5,36l 65-61.5z" horiz-adv-x="425" />
671
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x76;&#x69;&#x72;&#x62;" d="M 212.5,429q 43.5,0 81.5-16.5t 66.25-44.75t 44.75-66.25t 16.5-81.5t-16.5-81.5t-44.75-66.5t-66.25-45t-81.5-16.5t-81.5,16.5t-66.5,45t-45,66.5t-16.5,81.5t 16.5,81.5t 45,66.25t 66.5,44.75t 81.5,16.5zM 277.5,311.5l-52,0 l-39.5-117.5l-41,117.5l-50.5,0 l 65.5-183l 52.5,0 zM 317,259q 11,0 18.5,7.75t 7.5,18.75q0,10.5 -7.5,18.25
672
+ t-18.5,7.75t-18.75-7.75t-7.75-18.25q0-11 7.75-18.75t 18.75-7.75z" horiz-adv-x="425" />
673
+ <glyph unicode="&#x64;&#x65;&#x76;&#x69;&#x61;&#x6e;&#x74;&#x61;&#x72;&#x74;" d="M 209.5,186l-108-31q-8,19.5 -7,38q 0.5,8 2.75,16.25t 7.5,16t 14,15t 22.25,12.75l-13.5,28l 33.5,3.5l 11.5-22.5l 1.5,0 q 44,7.5 73.75,2t 48.25-15.5q 21.5-11.5 34-28l-108-31l-25,50.5q 9,2 17.5,1.5t 16-1.5l 10.5-20l 36.5,10q-13.5,8.5 -29,14q-13.5,4.5 -31,6t-37.5-4zM 167,200l-16.5,33q-11.5-7.5 -15.75-15t-5.25-13.5
674
+ q-1-7 1.5-14z" horiz-adv-x="425" />
675
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x65;&#x74;&#x73;&#x79;" d="M 212,430.5q 43.5,0 81.75-16.5t 67-45t 45.25-66.75t 16.5-81.75t-16.5-81.75t-45.25-67t-67-45.25t-81.75-16.5t-81.75,16.5t-66.75,45.25t-45,67t-16.5,81.75t 16.5,81.75t 45,66.75t 66.75,45t 81.75,16.5zM 317,168l-7,0 q-6-10 -11.75-20.25t-11.25-16.25q-4.5-4.5 -8.75-7.75t-9.25-4.75
676
+ t-12.5-2.5t-18-1l-41.5,0 q-10.5,0 -14.5,2.5q-4.5,2.5 -6,6.5q-1,2 -2.25,7.5t-1.25,14l0,74.5 l 58,0 q 15,0 22.5-4.5q 7-3.5 10.5-11q 2.5-4.5 5.5-24l 8.5,0 l0,92 l-8.5,0 q-1-10 -3.5-18.75t-7-13.25q-4-3.5 -10.75-5.5t-17.25-2l-58,0 l0,92 l 71,0 q 20,0 25.5-2.5q 10-4 14-11q 4.5-7.5 8-26l 7.5,0 l-3,52.5l-189,0 l0-13 l 9,0 q 7.5,0 14-0.5
677
+ t 9.5-4.5q 2.5-2.5 4.75-8.75t 2.25-18.75l0-144.5 q0-10 -1.5-15.5t-2.5-8.5t-4.25-4.5t-5.75-3.5q-4-2 -8.25-1.5t-8.25,0.5l-9,0 l0-13.5 l 189,0 z" horiz-adv-x="425" />
678
+ <glyph unicode="&#x66;&#x6f;&#x75;&#x72;&#x73;&#x71;&#x75;&#x61;&#x72;&#x65;" d="M 330,323l0-3.5 l0-8 l0-66.5 l0-10.5 l-50-40l 7.5-8l-75-79l-65,68.5q-11,0 -20.5,4.75t-16.75,12.25t-11.5,17.75t-4.25,21.75q0,12 4.25,22.25t 11.75,18t 17.25,12.25t 20.75,4.5q 17.5,0 31.5-10.75t 19.5-27.75l 13,14l 32.5-33.5l 76.5,82zM 321.5,302l-111-120.5l-19,34q 3,7.5 3,17q0,10 -3.5,19t-9.75,15.75
679
+ t-14.75,10.5t-18,3.75t-18-3.75t-14.75-10.5t-9.75-15.75t-3.5-19t 3.5-18.75t 9.75-15.5t 14.75-10.5t 18-3.75q 4,0 7.75,1t 7.75,2l 45-43l 112.5,93.5l0,64.5 z" horiz-adv-x="425" />
680
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x73;&#x74;&#x61;&#x72;" d="M 212.5,429q 43.5,0 81.5-16.5t 66.25-44.75t 44.75-66.25t 16.5-81.5t-16.5-81.5t-44.75-66.5t-66.25-45t-81.5-16.5t-81.5,16.5t-66.5,45t-45,66.5t-16.5,81.5t 16.5,81.5t 45,66.25t 66.5,44.75t 81.5,16.5zM 323.5,242q 9,10 5.5,17.5t-17,7.5l-58,0 l-28,58q-5.5,12.5 -13.75,12.5t-13.75-12.5l-28-58l-58,0
681
+ q-14,0 -17.25-7.5t 5.75-17.5l 0.5-0.5l 44.5-54l-22.5-65.5q-4.5-13 1-17.75t 18,1.25l 70,35l 69.5-35q 12.5-6 18-1.25t 1,17.75l-22.5,65.5l 44.5,54z" horiz-adv-x="425" />
682
+ <glyph unicode="&#x74;&#x65;&#x63;&#x68;&#x6e;&#x6f;&#x72;&#x61;&#x74;&#x69;" d="M 212.5,321q 24.5,0 45.75-8t 37.25-21.5t 25.25-32t 9.25-39.5t-9.25-39.25t-25.25-31.75t-37.25-21.5t-45.75-8q-21.5,0 -40,6l-55.5-40l 8.5,67q-14.5,13.5 -22.5,30.75t-8,36.75q0,21 9.25,39.5t 25.25,32t 37.25,21.5t 45.75,8zM 212.5,164q 15,0 28.25,4.5t 23,12t 15.5,17.75t 5.75,21.75t-5.75,21.75t-15.5,17.75
683
+ t-23,12t-28.25,4.5t-28.5-4.5t-23.25-12t-15.5-17.75t-5.75-21.75t 5.75-21.75t 15.5-17.75t 23.25-12t 28.5-4.5z" horiz-adv-x="425" />
684
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x62;&#x69;&#x6e;&#x67;" d="M 212.5,430q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.5t 16.5-81.75t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.5,16.5t-66.5,45t-45,66.5t-16.5,81.5t 16.5,81.75t 45,66.5t 66.5,44.75t 81.5,16.5zM 212.5,103q 24.5,0 45.75,6.5t 37.25,17.75t 25.25,26.25t 9.25,32.5q0,17 -9.25,32.25t-25.25,26.75t-37.25,18t-45.75,6.5
685
+ q-10.5,0 -20-1t-18.75-4t-19-8t-20.75-12.5l0,94.5 l-39.5,0 l0-154.5 l 0.5,0 q 0.5-17 10-31.75t 25.25-25.75t 37-17.25t 45.25-6.25zM 212.5,241.5q 15.5,0 29.25-4.25t 23.75-11.75t 16-17.75t 6-21.75t-6-21.5t-16-17.5t-23.75-12t-29.25-4.5t-29.25,4.5t-23.75,12t-16,17.5t-6,21.5t 6,21.75t 16,17.75t 23.75,11.75
686
+ t 29.25,4.25zM 212.5,150.5q 10.5,0 19.5,3t 15.75,7.75t 10.5,11.5t 3.75,14.25t-3.75,14.25t-10.5,11.5t-15.75,7.75t-19.5,3t-19.5-3t-15.75-7.75t-10.5-11.5t-3.75-14.25t 3.75-14.25t 10.5-11.5t 15.75-7.75t 19.5-3z" horiz-adv-x="425" />
687
+ <glyph unicode="&#x67;&#x6f;&#x6f;&#x67;&#x6c;&#x65;&#x74;&#x61;&#x6c;&#x6b;" d="M 212.5,333q 27,0 50.75-7.5t 41.5-20.25t 28-29.75t 10.25-36.5q0-27.5 -19.75-49.75t-51.25-33.75q 26,11.5 40,31.75t 14,45.75q0,19 -8.5,35.75t-23.75,29.5t-36,20.25t-44.75,7.5t-45.5-7.25t-37.25-20t-25-29.5t-9.25-35.25q0-11 3-20.5q 10-21.5 32.5-38t 52.5-23.5l 0.5,0 q-1.5-6 -3.5-13q-2.5-6 -6-13.5
688
+ t-9.5-15.5q 20.5,1.5 35.75,8t 25.25,13.5q 12,8.5 20,18.5q-11.5-23.5 -30.25-34.75t-36.25-14.75q-20.5-4.5 -43-2q 14,9 22,22t 12,23.5q-31.5,7 -53.5,25.5t-30.5,42.5q0,0.5 -1,2.5q-2,6 -3.25,12t-1.25,12.5q0,19.5 10.25,36.5t 28,29.75t 41.75,20.25t 51,7.5zM 205,309q 21,0 39.5-5.75t 32-15.75t 21.5-23.25t 8-28.25
689
+ q0-21.5 -15-38.75t-39.5-26.25q 17,11 27,26.5t 10,34q0,14.5 -6.75,27.75t-18.25,23.5t-27.25,17t-34.25,8.75q 1,0.5 3,0.5z" horiz-adv-x="425" />
690
+ <glyph unicode="&#x64;&#x65;&#x73;&#x69;&#x67;&#x6e;&#x62;&#x75;&#x6d;&#x70;" d="M 199,264.5l0,26 l-26,0 l 52.5,52.5l 52-52.5l-26,0 l0-78 zM 199,160l0,52.5 l 52.5,0 zM 199,134l 26.5,0 l0-26.5 l-26.5,0 l0,26.5 zM 212.5,225.5l-26.5,0 l0-118 l-52,0 l0,118 l-26.5,0 l 52.5,52zM 317,147l-26.5,0 l0-39.5 l-52,0 l0,39.5 l-26,0 l 52,52z" horiz-adv-x="425" />
691
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x71;&#x69;&#x6b;" d="M 141.5,236.5q 2.5,0.5 5.75,0t 5.25-2q 3.5-2.5 4.5-7.25t 0.25-10t-3.25-10t-5.5-7.25t-8.75-3t-10.25,2.5q-4,2.5 -5,7.25t0,10t 3.25,9.75t 5.25,7t 8.5,3zM 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25
692
+ t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 180,188q 1.5,8.5 3,16.5t 2.5,16.5q 1,17 -7.5,26t-23.5,10q-16.5,1 -28-3.75t-18.5-12.75q-5.5-6 -9-13.25t-4.5-17.25q-1-15.5 9.5-25.75t 29.5-8.25q 2.5,0.5 4.5,1t 4,1.5q 3,1 5.25,3.25t 4.75,3.75q-1-4.5 -1.75-10t-0.25-10
693
+ t 3.25-7.75t 8.75-3.25l 0.5,0 l 12.5,0 q 1.5,9 2.75,17.25t 2.25,16.25zM 226.5,229.5q 1,4.5 1.5,9t-1.5,8q-2.5,5 -9.5,5.5t-15.5,0.5q-0.5,0 -0.5-1q-1.5-11.5 -3.5-24.75t-4-26.25q-1-4.5 -1.25-9.5t 1.75-8q 2.5-4 10-4.5t 15,0q 2,11.5 3.75,24.75t 3.75,26.25zM 223,260.5q 5,2 8.5,6.25t 1,11.25q-1.5,5 -9.5,7.5l-5.5,0 q-7-2.5 -11.75-6.25
694
+ t-2.75-11.75q 1.5-6 8-7.75t 12,0.75zM 293.5,219.5q 2,2.5 7.25,7.5t 11,10.25t 11,10.25t 7.25,7.5q-8.5-1 -17,0t-14-1.5q-2.5-1 -4.75-3t-4.25-3.5q-4-4 -7.5-8t-7.5-8q-2-2.5 -3.75-4.25l-3.75-3.75q 1,9 3.25,21t 3.25,22q 0.5,11 -7,13.25t-19.5,1.75q-0.5,0 -0.5-1q-1-7.5 -3.25-21t-4.5-27.25t-4-25
695
+ t-1.75-13.75q-0.5-5.5 1.5-8.5t 5.75-4.5t 8.75-1.75t 10.5-0.25q 2,9 3,18.25t 3,17.75q 2.5-3.5 5-8l 5-9q 2.5-4 5.5-8.75t 6-7.25q 4-3 9.25-3.5t 10.25,1t 8.5,4.5t 4.5,7.5q-6,1.5 -10,4.5t-6.75,7.25t-5,8.75t-4.75,8.5z" horiz-adv-x="425" />
696
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x67;&#x64;&#x67;&#x74;" d="M 212,429.5q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.25t 16.5-81.5t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.5,16.5t-66.25,45t-44.75,66.5t-16.5,81.5t 16.5,81.5t 44.75,66.25t 66.25,44.75t 81.5,16.5zM 316.5,325l-39-77l0,77 l-13,13l-144,0 l-13-13l0-130.5 l 13-13.5l 118,0 l0-39 l-118,0 l0-26 l 13-13.5l 131,0 l 13,13.5l0,65
697
+ l 39,65.5l0,78.5 zM 147,299l 91.5,0 l0-78.5 l-91.5,0 l0,78.5 z" horiz-adv-x="425" />
698
+ <glyph unicode="&#x67;&#x6f;&#x6f;&#x67;&#x6c;&#x65;&#x70;&#x6c;&#x75;&#x73;" d="M 194,226q0-7.5 7.5-13.75t 16.25-13.75t 16.25-18.25t 7.5-27.25q0-25.5 -22-45q-24.5-20.5 -66.5-20.5q-11.5,0 -24,2.5t-23.5,8.25t-18,15.25t-7,23.5q0,10.5 5.5,21.5q 5.5,10 15.5,17.25t 23,11.25q 24.5,7.5 48.5,8q-10.5,12.5 -10.5,23.5q0,4 1.5,7q 0.5,1 1,3.25t 1,3.25q-3,0 -5.75-0.25t-5.25-0.25q-24.5,0 -40.5,15.5
699
+ q-17,15.5 -17,39q0,22 15,39.5q 15,18 37.5,22.5q 7.5,1.5 14.75,2.5t 14.75,1l 69.5,0 l-21.5-12.5l-21.5,0 q 12-8 17.5-20q 6-13 6-27q0-11.5 -3.5-20.75t-9-14.75q-8-8.5 -15.5-15.25t-7.5-15.25zM 170.5,239.5q 15.5,0 22.25,9.5t 6.75,25.5q0,20 -10,41q-5,10 -13.5,16.5t-19,6.5q-14.5,0 -22.5-11t-8-26q0-9 2.75-20
700
+ t 8.5-20.25t 14-15.5t 18.75-6.25zM 168.5,100.5q 9,0 18,2t 16.25,6.25t 11.5,11.25t 4.25,17.5q0,3.5 -0.5,6.75t-1.5,5.75t-3,5.5q-2,2.5 -3.25,4.5t-4.25,5q-2,1.5 -4.5,4q-1,0.5 -2,1.5t-3,2.5l-5,3.5q-1.5,1 -5,3.5l-5,3.5q-1,0 -3.25,0.25t-4.75,0.25q-17,0 -33.5-5q-13-4 -22-12.75t-9-23.75q0-11 5.5-19.25t 15-13.25
701
+ q 17.5-9.5 39-9.5zM 344.5,311l0-20.5 l-41,0 l0-40.5 l-20,0 l0,40.5 l-40.5,0 l0,20.5 l 40.5,0 l0,40.5 l 20,0 l0-40.5 l 41,0 z" horiz-adv-x="425" />
702
+ <glyph unicode="&#x67;&#x6f;&#x77;&#x61;&#x6c;&#x6c;&#x61;&#x70;&#x69;&#x6e;" d="M 212.5,332q 17.5,0 32.75-6.75t 26.75-18.25t 18.25-26.75t 6.75-32.75q0-15 -5-28.75t-14-24.5t-21-18.5t-26-10.75l-18.5-72l-18.5,72q-14.5,3 -26.5,10.75t-20.75,18.5t-13.75,24.5t-5,28.75q0,17.5 6.5,32.75t 18,26.75t 27,18.25t 33,6.75zM 212.5,184.5q 13,0 24.5,5t 20,13.5t 13.5,20t 5,24.5t-5,24.5t-13.5,20
703
+ t-20,13.5t-24.5,5t-24.5-5t-20-13.5t-13.5-20t-5-24.5t 5-24.5t 13.5-20t 20-13.5t 24.5-5zM 247,247.5q0-14.5 -10-24.75t-24.5-10.25t-24.75,10.25t-10.25,24.75t 10.25,24.75t 24.75,10.25t 24.5-10.25t 10-24.75z" horiz-adv-x="425" />
704
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x69;&#x63;&#x71;" d="M 242,236l 34.5,28l 4,1.5q 9,4 18,2.5q 8.5-1 11.5-7l 1.5-4.5l-0.5-3.5q-3.5-9 -16-14q-2.5-1.5 -5.25-2t-6.25-1l-41.5-5l-0.5,2.5l-0.5,1zM 298.5,214q 8.5-2.5 12.5-9.5q 5-6.5 5-14.5l-1-6.5q-3-10 -11.5-14.5q-10-5 -19-1.5q-6.5,1.5 -9,5.5l-35.5,29l 2,4.5l 1,4l 38.5,3.5l 13.5,0.5zM 191.5,189.5q 2.5-1 5-2.25t 5.5-1.25
705
+ q 0.5-8.5 1.75-17.5t 1.25-19l0-13 l0-3.5 q-4-10 -12.5-13.5q-8.5-5 -18.5-2.5q-10.5,3 -14.5,11q-3,5 -3,11.5l 1.5,7.5q 0.5,4 5,9.5zM 252.5,162q 2.5-4 3.75-8.25t 0.25-9.25q-1-9 -6.5-12q-3-2 -8-1q-9.5,2 -15,14.5l-4,11l-5,29l 5.5,2l 4.5,2l 14-14l 9-11zM 219,289l-0.5,13.5l 0.5,3q 1,5 4.5,8.75t 8,6.25
706
+ q 9,5.5 19,1.5q 10.5-2 15.5-11q 2.5-5 2.5-11.5l-1-7q-2-5.5 -5-10l-30.5-36.5q-5,3.5 -10,5.5zM 164.5,287q-2,4.5 -3,8.75t-0.5,8.75q 1,9 7,12.5q 3.5,2.5 7.5,0q 9-2 15.5-14l 2-5t 2-5.5l 6.5-39.5l-5-1.5l-30,32zM 124,225.5q-8.5,1.5 -12.5,9q-4.5,6.5 -1,14.5q 4,10.5 13.5,14q 9,5 19,3l 9-4l 29.5-21
707
+ q-4.5-6 -5.5-10l-48.5-6zM 178.5,202.5q-4-3 -7-6t-6-5.5l-10-8.5l-3-1.5q-9-4.5 -17.5-3.5q-8,1 -11,5l-1,3.5l 1,3q 2.5,8.5 13.5,13.5q 3.5,1.5 5.75,2.5t 4.75,1.5l 27,5l 2-6.5zM 232.5,218.5q0-4.5 -1.5-8.75t-5.5-7.25q-7.5-6.5 -15.5-6.5q-9.5,0 -16,6.5q-6.5,6 -6.5,16q0,9 6.5,15.5q 7,6 16,6
708
+ q 9.5,0 15.5-6q 7-6.5 7-15.5zM 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 328.5,179.5q 4,16 -3,29l-2,2.5
709
+ q-2,3 -4.25,5.75t-5.25,4.75q-2.5,2 -5.5,3.25t-5.5,2.75q 8,4 13.5,8.75t 8,11.75q 2,5.5 0.5,10.25t-1.5,9.25l0,0.5 q-7.5,5 -9.75,8.25t-8.75,5.25q-4,1 -8,1t-8-0.5l-11.5-2.5l 4,8.5q 5,15.5 -3.5,30.5l-1,1.5q-7,12 -22.5,16q-16,4.5 -30-3q-7-4 -13.25-9.75t-6.25-13.25l0-0.5 l0-2 l-1.5,2l-3.5,6q-7.5,12.5 -20.5,15.5
710
+ q-10,2.5 -20-2q-10.5-6.5 -12.5-20.5q-3-14 5-28l 2.5-3.5l-8.5,2.5q-14.5,3.5 -29-4q-14-6.5 -20-21.5q-5.5-14.5 1.5-26.5q 3-5 8-8.5q 6-6 15-7.5l 2.5-0.5l-5-4.5q-4-3 -6-6.25t-3.5-7.25q-2.5-9.5 2.5-18q 2.5-4.5 6-6.5q 2.5-1.5 4.75-2.75t 5.25-1.25q 11.5-3 24,0.5l-6-9.5l-2-4.5q-5-14.5 3-29.5
711
+ q 1.5-2.5 3.5-5l 4-5q 6-5.5 15.5-7.5q 15.5-4.5 30,2.5q 14,7 18.5,23l 0.5,2q 10-10.5 19-13.5q 11-3 19.5,2.5q 9,5 12,16q 2,10.5 0,23q 5-3.5 11-5q 15.5-5 29.5,2q 14,8 18.5,23z" horiz-adv-x="425" />
712
+ <glyph unicode="&#x73;&#x6f;&#x75;&#x6e;&#x64;&#x63;&#x6c;&#x6f;&#x75;&#x64;" d="M 82.5,196.5q0,13 10.5,22l0-43.5 q-10.5,8 -10.5,21.5zM 104,224q 2,0.5 3.75,0.75t 4.25,0.25l 2.5,0 l0-57 l-2.5,0 q-2.5,0 -4.25,0.25t-3.75,0.75l0,55 zM 128,220.5q 1.5,11 8.5,19.5l0-72 l-11,0 l0,53.5 q 0.5,0 2.5-1zM 147.5,250q 4,3 10.5,5.5l0-87.5 l-10.5,0 l0,82 zM 169,257.5l 4,0 q 5,0 7-0.5l0-89 l-11,0 l0,89.5 zM 197,251q 2,3.5 5,6.5l0-89.5 l-16.5,0 l0,88
713
+ q 7-1.5 11.5-5zM 207,263q 7.5,6.5 17,10.25t 20,3.75q 21.5,0 37-14.25t 18-34.75q 3,1 5.75,1.75t 6.75,0.75q 13,0 21.75-9.25t 8.75-22.25q0-12 -7.5-21t-24-10l-103.5,0 l0,95 z" horiz-adv-x="425" />
714
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x62;&#x65;&#x62;&#x6f;" d="M 212.5,431q 43.5,0 81.75-16.5t 66.75-45t 45-66.75t 16.5-81.75t-16.5-81.75t-45-66.75t-66.75-45t-81.75-16.5t-81.75,16.5t-66.75,45t-45,66.75t-16.5,81.75t 16.5,81.75t 45,66.75t 66.75,45t 81.75,16.5zM 237,103q 19.5,0 36.5,6.75t 29.75,18.25t 20,27t 7.25,33.5q0,17.5 -5.5,33t-15,27t-22.25,18.25
715
+ t-27.25,6.75l-46.5,0 q-10,0 -16.75-5t-6.75-14.5t 6.75-14.75t 16.75-5.25l 46.5,0 q 8.5,0 16-11t 7.5-28q0-16.5 -13.75-28t-33.25-11.5l-23,0 q-19.5,0 -30.25,11.75t-10.75,30.75l0,118.5 q0,9.5 -8.25,16t-17.75,6.5q-10,0 -18.25-6.5t-8.25-16l0-118.5 q0-19 7.25-36t 20-30.25t 29.75-21t 36.5-7.75l 23,0 z" horiz-adv-x="425" />
716
+ <glyph unicode="&#x72;&#x6f;&#x75;&#x6e;&#x64;&#x65;&#x64;&#x6d;&#x73;&#x6e;" d="M 317,429q 21.5,0 40.5-8.25t 33.25-22.5t 22.5-33.25t 8.25-40.5l0-209 q0-21.5 -8.25-40.75t-22.5-33.5t-33.25-22.5t-40.5-8.25l-209.5,0 q-21.5,0 -40.5,8.25t-33.25,22.5t-22.5,33.5t-8.25,40.75l0,209 q0,21.5 8.25,40.5t 22.5,33.25t 33.25,22.5t 40.5,8.25l 209.5,0 zM 125.5,206.5q 16.5-22 31.5-33q-1.5,10.5 0,21.5t 8.5,21q 7.5,11.5 15.25,16
717
+ t 13.25,5.5l0,1.5 q-8.5,10 -18.75,17.25t-21.25,14.25q-8.5,5.5 -18.75,10.75t-20,9.5t-18.5,7t-14.75,2.75q-4,0 -5-1q-0.5-1 -0.75-5.5t 4-15t 14.5-28t 30.75-44.5zM 171,212.5q-7-10.5 -8-22t 1.5-22.5q 9.5-6.5 17.25-9t 13.25-2.5q 4.5,0 6.5,1q 4.5,1.5 8.5,6t 6.5,9.5q-2.5,4.5 -4.5,9t-4.5,10q-9,21.5 -12,39
718
+ q-5-1 -11.25-4.75t-13.25-13.75zM 229.5,96q 1.5,1 3,5.5t 2.5,11t 1.75,13.5t 0.25,12.5q0,1 -0.25,2t-0.25,2q-7.5,6.5 -16.5,24q-3-5 -7-9t-9.5-6.5q-2.5-1 -8.5-1q-12.5,0 -28,8.5q 5-13.5 11.5-21q 3-4.5 8.75-11.5t 12.5-13.75t 14-11.75t 13.75-5q 1.5,0 2,0.5zM 210.5,193.5q 10-24 18.5-36.25t 12.5-14.75l0,4
719
+ q-0.5,8 -3,23t-10.5,33.5q-7,16 -12.25,26.5t-9.25,17q-3.5,5.5 -5.5,7.75t-3,2.75q-1-1 -1-2q-0.5-1 -0.5-3l0-0.5 l0-4.75 t 0.5-6.25q 1-8.5 4.25-20.5t 9.25-26.5zM 215.5,237q 4-7 7.75-15t 7.75-18q 2.5-5.5 4.25-10.25t 2.75-9.75q 2.5-1.5 12.75-6.25t 29.25-4.75l 7,0 t 7.5,0.5q 13,2 22.25,11.25t 15.75,23.25
720
+ q-1,4 -2,5.5q-3,7 -10.5,13t-17.5,10.5t-21.75,7.25t-23.75,2.75q-23,0 -41.5-10zM 311,122q 5,6 10.25,14.5t 8.75,18.75t 5,21.25t0,21.5q-7-12.5 -16.75-20.75t-22.75-10.25q-4-0.5 -8-0.75t-7.5-0.25q-14.5,0 -24.25,3t-15.25,6q 4-18.5 4-27.5q 8-12 16.5-18q 12-8.5 20-13.25t 13.5-4.75q 2.5,0 6.25,1.75
721
+ t 10.25,8.75zM 348,277.5q 1,18.5 -2.75,34.25t-12.25,24.25q-7.5,8 -18.5,8q-2.5,0 -7.5-1q-11.5-2.5 -26.25-12.25t-29-23.25t-25.5-29.75t-15.75-31.75q 0.5-1 1-1.5t 1-1.5q 20,10.5 44.5,10.5q 13,0 25.5-2.75t 23.25-7.75t 18.75-11.75t 12-14.75q 5,14 7.75,29.75t 3.75,31.25z" horiz-adv-x="425" />
722
+ <glyph unicode="&#x66;&#x65;&#x65;&#x64;&#x62;&#x75;&#x72;&#x6e;&#x65;&#x72;" d="M 303.5,190q 12.5-7 19.5-15t 7-17.5q0-10.5 -9.25-19.75t-25.25-16.25t-37.5-11t-45.5-4q-24.5,0 -46,4t-37.5,11t-25.25,16.25t-9.25,19.75q0,10 7.75,18.25t 21.25,15.25q 10-33 32.25-51.25t 52.25-18.75q 15.5,0 30.75,5.5t 28,14.75t 22.5,22t 14.25,26.75zM 241.5,289q 10.5-6 20-13t 16.75-16.5t 11.75-22.5
723
+ t 4.5-31q0-16 -7.5-31t-19.5-27t-27.75-19.25t-32.25-7.25q-17,0 -31.5,7.75t-25,21.75t-16.5,33.75t-6,44.25q0,17.5 5.5,37.5t 14.25,38.5t 20.25,34t 23.5,24q-5.5-14 -4.25-23.75t 5.25-18.25t 8.75-16.5t 6.5-18.25t-1.25-23.75t-14.5-32.5q 12-3.5 22.25-0.5t 17.25,11t 9.75,20.25t-0.25,28.25zM 207.5,138.5
724
+ q 25.5,0.5 41.25,12t 21.75,27.75t 1.75,33.5t-19.75,29.25q-5.5-23.5 -17-39.75t-30.5-15.75q-8.5,0 -16.75,5.25t-14,14.75t-8,22.5t 1.25,28q-16-26.5 -18-48.25t 5.25-37.25t 21.5-24t 31.25-8z" horiz-adv-x="425" />
725
+ <glyph unicode="&#x73;&#x6c;&#x69;&#x64;&#x65;&#x73;&#x68;&#x61;&#x72;&#x65;" d="M 252,120.5q-10.5,0 -17.75,2.75t-11.75,6.5t-6.25,7.5t-1.75,6.25l0,77.5 q0,4 8.25,6t 15.75,2l 41.5,0 q 2,0 9.25,2.25t 15.75,5.5t 16.25,7.25t 11.25,8q 5,5.5 8,5.5q 1,0 2-1q 0.5-1 0.5-4t-4-11q-5.5-11.5 -15.75-17.75t-21.75-12.25q-3.5-1.5 -6.75-3t-6.75-3.5l-0.5-0.5l0-43.5 q0-2 -1.5-8.5t-5.5-13.75
726
+ t-11-12.75t-17.5-5.5zM 252.5,245q-11.5,0 -19.75,8.5t-8.25,20.5q0,12.5 8.25,21t 19.75,8.5t 19.75-8.5t 8.25-21q0-12 -8.25-20.5t-19.75-8.5zM 180.5,127.5q-5,0 -12,3.25t-13.25,8.25t-10.75,11t-4.5,11l0,47.5 l-1,0 q-11,4 -20,9q-8,4 -15.5,8.75t-10.5,8.75l-2.5,2.5q-5.5,7 -7.5,10.75t-0.5,7.75q0,0.5 0.5,0.5
727
+ q 2.5,0 7.25-2.75t 10.25-6.25q 7-4.5 14.5-8.75t 13.5-5.75q 11-2.5 26.75-4t 27.25-1.5l 4,0 l 1.5,0 q 8.5,0 13.75-3.25t 9.75-7.75q 4-3.5 11.25-7.5t 15.75-4q 9,0 15,6q 9.5,8.5 14,8.5l 1-0.5q 0.5-1 0.5-3.25t-2.5-7.75q-4-9 -16.5-16.75t-27-7.75q-9,0 -17,4l-1.5,1l0-45 q0-5 -7-10.5t-17-5.5zM 176,245
728
+ q-11.5,0 -20,8.5t-8.5,20.5q0,12.5 8.5,21t 20,8.5t 19.75-8.5t 8.25-21q0-12 -8.25-20.5t-19.75-8.5z" horiz-adv-x="425" />
729
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x6d;&#x69;&#x78;&#x78;" d="M 212,430q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.25t 16.5-81.5t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.5,16.5t-66.25,45t-44.75,66.5t-16.5,81.5t 16.5,81.5t 44.75,66.25t 66.25,44.75t 81.5,16.5zM 263.5,230.5q-7-14.5 -20-27.25t-31.5-19.75q-16-6.5 -31.5-7.5t-29,3q 9-5.5 19.25-8.5t 21.75-3q 14.5,0 27.5,5
730
+ t 22.5,13.5t 15.25,20t 5.75,24.5zM 148.5,342.5q-3-7 -1-13.5l 47-113.5q 2.5-7.5 5.75-11.5t 4.25-4l 3.5,1.5q 1,0.5 1.75,4.5t-1.25,12.5l-28.5,120q-1.5,5.5 -6,9.25t-10,3.75q-3.5,0 -5.5-0.5q-7-2.5 -10-8.5zM 215,143.5q-28.5-4 -53.75,3t-43.75,23q 14.5-18 36.75-28.5t 48.75-10.5q 19,0 36,5.75t 31,16t 23.75,24t 14.25,30.25
731
+ q-12.5-24 -36.75-41.25t-56.25-21.75zM 209.5,90q 27.5,0 51.75,11t 42.5,29.75t 28.75,44t 10.5,53.75q0,15.5 -4,31.5q 0.5-2.5 0.5-5.5l0-5.5 q0-29.5 -10.75-55.25t-29-44.75t-43-30.25t-52.75-11.25q-20.5,0 -39,6t-34.5,16.75t-28.5,25.75t-20.5,33q 6-21.5 18.25-39.5t 29.25-31.25t 37.5-20.75t 43-7.5z" horiz-adv-x="425" />
732
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x65;&#x62;&#x61;&#x79;" d="M 183.5,194q-0.5-12 -17-19.5l-0.5,0 l0,19.5 l 17.5,0 zM 226,237q-9-7 -9-22.5q0-9.5 3.75-16.75t 13.25-9.75l0,11.5 q0,9 -0.75,19.75t-7.25,17.75zM 200,228q 8,0 9-7.75t 1-20.75q0-16 -1.5-23t-8.5-7q-6.5,0 -8.25,7t-1.75,23q0,13 1.25,20.75t 8.75,7.75zM 212.5,430q 43.5,0 81.5-16.5t 66.5-44.75
733
+ t 45-66.5t 16.5-81.75t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.5,16.5t-66.5,45t-45,66.5t-16.5,81.5t 16.5,81.75t 45,66.5t 66.5,44.75t 81.5,16.5zM 369.5,286l-32,0 l-24.5-50.5l-23,50.5l-34.5,0 l 6-11q-2.5,0 -5.25,0.25t-5.75,0.25q-15.5,0 -22.5-5.5q-9.5-5.5 -9.5-20.5l 24,0 q0,5 1.25,9t 8.25,4q 6.5,0 8-3.5t 1.5-9
734
+ l0-6.5 q-10,0 -19.5-0.75t-16-5.75q-5.5,5.5 -16,5.5q-12.5,0 -19.5-9.5l-0.5,0 l0,44 l-24,0 l0-39.5 q-2.5,1 -5.75,1.75t-7.25,1.75q-13,3 -33.5,3q-22,0 -34.5-3t-19.25-8.25t-8.5-12t-1.75-14.25q0-9 2-16.25t 8.75-12.5t 19.25-8t 34-2.75q 10,0 18.25,1t 15.25,2q 8,1.5 13,4.5l0-17.5 l 23,0 l0,9 l 0.5,0 q 6-11 20.5-11
735
+ q 7.5,0 12,3t 7,7.75t 3.5,10.5t 1.5,11.75q 2-0.5 6-0.5q 15,0 22.5,13l 0.5,0 l 1-11.5l 22.5,0 q-0.5,4 -0.75,8t-0.25,8l0,22.5 l 10-19.5l0-41.5 l 31.5,0 l0,41.5 zM 261.5,275q 16-2.5 20-10.25t 4-17.75l0-19.5 zM 240.5,215.5q0,5.5 1.5,8.5t 4.5,4.25t 6.75,1.5t 8.25,0.25q0-3.5 0.25-8.25t-0.75-9t-3.5-7.25t-8-3q-6,0 -7.5,4.25t-1.5,8.75zM 119.5,180.5
736
+ q-7,0 -11,2.25t-6,5.5t-2.25,7t-0.25,7.25l 66,0 l0-8.5 l-13,0 l-14.5,0 q0-5 -3.5-9.25t-15.5-4.25zM 166,202.5l0,35 q 13-5.5 16.25-14.5t 2.25-20.5l-18.5,0 zM 119.5,231q 8,0 12.25-1.75t 6-4.25t 2-5.5t 0.25-5.5l-40,0 q0,2 0.25,5t 2,5.75t 5.75,4.5t 11.5,1.75z" horiz-adv-x="425" />
737
+ <glyph unicode="&#x77;&#x6f;&#x72;&#x64;&#x70;&#x72;&#x65;&#x73;&#x73;" d="M 95,221q0,25 10,48l 56-154q-29.5,14.5 -47.75,42.75t-18.25,63.25zM 292,227q0-15.5 -9-38l-12-39.5l-42.5,126.5q 2.5,0 5,0.25t 4.5,0.25t 4,0.5q 5,1 4.5,5.5t-5,4.5q-6-0.5 -11.5-1q-5-0.5 -10.25-0.5l-9.75,0 l-9.75,0 t-10.25,0.5l-11,1q-5,0 -5.25-4.75t 4.25-5.25q 2-0.5 4-0.5t 4-0.25t 4.5-0.25l 18.5-50
738
+ l-26-77.5l-42.5,127.5q 2.5,0 5,0.25t 4.5,0.25t 4,0.5q 4.5,1 4.25,5.5t-5.25,4.5l-11-1q-5-0.5 -10.5-0.5l-10,0 l-7.5,0 q 16,24 41.75,38.5t 56.75,14.5q 23,0 43.25-8.25t 36.25-22.75l-1.5,0 q-8.5,0 -14.25-6.25t-5.75-14.25q0-7.5 3.5-14t 8-14q 3.5-5.5 6.75-13.25t 3.25-18.75zM 250.5,111.5q 0.5-0.5 0.5-0.75t 0.5-0.75
739
+ q-19.5-7 -39-7q-8.5,0 -17,1.25t-16.5,3.75l 35.5,102.5zM 315.5,277.5q 14.5-26 14.5-56.5q0-33 -16-59.75t-42.5-42.25l 36,104q 5,13 7,23.25t 2,18.75q0,3.5 -0.25,6.5t-0.75,6z" horiz-adv-x="425" />
740
+ <glyph unicode="&#x79;&#x61;&#x68;&#x6f;&#x6f;&#x62;&#x75;&#x7a;&#x7a;" d="M 212.5,248q 16,0 30.25-6.25t 25-16.75t 17-24.75t 6.25-30.75q0-16 -6.25-30.25t-17-25t-25-17t-30.25-6.25q-16.5,0 -30.75,6.25t-24.75,17t-16.75,25t-6.25,30.25l0,157 l 39,0 l0-117.5 l0-39.5 q0-16 11.75-27.5t 27.75-11.5t 27.5,11.5t 11.5,27.5q0,16.5 -11.5,28t-27.5,11.5l-26,0 l0,39 l 26,0 l0,0 z" horiz-adv-x="425" />
741
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x71;&#x69;&#x6b;" d="M 141.5,237q 2.5,0.5 5.75,0t 5.25-2q 3.5-2.5 4.5-7.25t 0.25-10t-3.25-10t-5.5-7.25t-8.75-3t-10.25,2.5q-4,2.5 -5,7.25t0,10t 3.25,9.75t 5.25,7t 8.5,3zM 212.5,429.5q 43.5,0 81.5-16.5t 66.25-44.75t 44.75-66.25t 16.5-81.5t-16.5-81.5t-44.75-66.5t-66.25-45t-81.5-16.5t-81.5,16.5t-66.5,45t-45,66.5t-16.5,81.5
742
+ t 16.5,81.5t 45,66.25t 66.5,44.75t 81.5,16.5zM 180,188.5q 1.5,8.5 3,16.5t 2.5,16.5q 1,17 -7.5,26t-23.5,10q-16.5,1 -28-3.75t-18.5-12.75q-5.5-6 -9-13.25t-4.5-17.25q-1-15.5 9.5-25.75t 29.5-8.25q 2.5,0.5 4.5,1t 4,1.5q 3,1 5.25,3.25t 4.75,3.75q-1-4.5 -1.75-10t-0.25-10t 3.25-7.75t 8.75-3.25l 0.5,0 l 12.5,0 q 1.5,9 2.75,17.25
743
+ t 2.25,16.25zM 226.5,230q 1,4.5 1.5,9t-1.5,8q-2.5,5 -9.5,5.5t-15.5,0.5q-0.5,0 -0.5-1q-1.5-11.5 -3.5-24.75t-4-26.25q-1-4.5 -1.25-9.5t 1.75-8q 2.5-4 10-4.5t 15,0q 2,11.5 3.75,24.75t 3.75,26.25zM 223,261q 5,2 8.5,6.25t 1,11.25q-1.5,5 -9.5,7.5l-5.5,0 q-7-2.5 -11.75-6.25t-2.75-11.75q 1.5-6 8-7.75t 12,0.75z
744
+ M 293.5,220q 2,2.5 7.25,7.5t 11,10.25t 11,10.25t 7.25,7.5q-8.5-1 -17,0t-14-1.5q-2.5-1 -4.75-3t-4.25-3.5q-4-4 -7.5-8t-7.5-8q-2-2.5 -3.75-4.25l-3.75-3.75q 1,9 3.25,21t 3.25,22q 0.5,11 -7,13.25t-19.5,1.75q-0.5,0 -0.5-1q-1-7.5 -3.25-21t-4.5-27.25t-4-25t-1.75-13.75q-0.5-5.5 1.5-8.5t 5.75-4.5
745
+ t 8.75-1.75t 10.5-0.25q 2,9 3,18.25t 3,17.75q 2.5-3.5 5-8l 5-9q 2.5-4 5.5-8.75t 6-7.25q 4-3 9.25-3.5t 10.25,1t 8.5,4.5t 4.5,7.5q-6,1.5 -10,4.5t-6.75,7.25t-5,8.75t-4.75,8.5z" horiz-adv-x="425" />
746
+ <glyph unicode="&#x67;&#x69;&#x74;&#x68;&#x75;&#x62;&#x61;&#x6c;&#x74;" d="M 268,213q 7,0 12.25-6t 7.25-13q 3.5-10.5 2.25-21.5t-9.25-20q-5.5-6 -12.5-6q-7.5,0 -12.75,6t-7.75,13q-2.5,10.5 -1.25,21.5t 8.75,20q 6,6 13,6zM 157,213q 7,0 12.25-6t 7.75-13q 3-10.5 1.75-21.5t-9.25-20q-5.5-6 -12.5-6q-7.5,0 -12.75,6t-7.75,13q-2.5,10.5 -1.25,21.5t 8.75,20
747
+ q 6,6 13,6zM 333,274q 23.5-27 23.5-69q0-36 -10.5-57.5q-7-13 -18.5-22.75t-24.5-14.75q-6.5-2.5 -13.75-4.75t-15.75-3.75t-15.75-2.25t-13.75-1.25t-13.75-0.75t-15.25-0.25l-13,0 t-11.5,0.5t-12,0.75t-13.5,1.25q-13.5,1.5 -26.5,5.5q-18,5 -34.75,15t-24.75,27.5q-11,21.5 -11,57.5q0,41 23.5,69
748
+ q-4.5,14 -4.5,29q0,20 9,38q 19,0 32.5-7q 7.5-3.5 15.5-8.75t 17.5-12.25q 25.5,6 53.5,6q 25,0 48.5-5.5q 17.5,14 32.5,21q 13.5,6.5 33,6.5q 8.5-18.5 8.5-38q0-15 -4.5-29zM 298,135q 8.5,7 14,18.25t 5.5,26.25q0,21 -12,35.5q-11,14.5 -32,14.5q-4,0 -12.25-0.75t-21.75-2.75q-6-1 -13-1.5t-14-0.5q-7.5,0 -14.5,0.5
749
+ t-13,1.5q-13,2 -21.25,2.75t-12.25,0.75q-21,0 -32.5-14.5q-12-14.5 -12-35.5q0-15 5.5-26.25t 14-18.25q 9-6.5 21-10q 13-4 24.5-5.25t 25.5-1.25l 29.5,0 q 14.5,0 25.75,1.25t 24.25,5.25q 12,3.5 21,10z" horiz-adv-x="425" />
750
+ <glyph unicode="&#x64;&#x65;&#x6c;&#x69;&#x63;&#x69;&#x6f;&#x75;&#x73;" d="M 317,220.5l-104.5,0 l0,104.5 l 104.5,0 l0-104.5 l0,0 zM 212.5,116l-105,0 l0,104.5 l 105,0 l0-104.5 l0,0 z" horiz-adv-x="425" />
751
+ <glyph unicode="&#x73;&#x68;&#x61;&#x72;&#x65;&#x74;&#x68;&#x69;&#x73;" d="M 288.5,186q 17.5,0 29.5-12.25t 12-29.75q0-17 -12-29.25t-29.5-12.25t-29.5,12.25t-12,29.25q0,2 0.5,2.5l-84.5,42.5q-11.5-10 -26.5-10q-17.5,0 -29.5,12t-12,29.5t 12,29.5t 29.5,12q 7.5,0 14.25-2.75t 12.25-7.25l 84.5,42q-0.5,1 -0.5,2.5q0,17.5 12,29.5t 29.5,12t 29.5-12t 12-29.5t-12-29.5t-29.5-12q-15,0 -26.5,10l-84.5-42.5
752
+ q0-0.5 0.25-1t 0.25-1q0-1 -0.25-1.25t-0.25-1.25l 84.5-42q 11.5,10 26.5,10z" horiz-adv-x="425" />
753
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x72;&#x73;&#x73;" d="M 212.5,430q 43.5,0 81.5-16.5t 66.25-44.75t 44.75-66.25t 16.5-81.5t-16.5-81.5t-44.75-66.5t-66.25-45t-81.5-16.5t-81.5,16.5t-66.5,45t-45,66.5t-16.5,81.5t 16.5,81.5t 45,66.25t 66.5,44.75t 81.5,16.5zM 121,103q 10.5,0 18.25,7.75t 7.75,18.75q0,10.5 -7.75,18.25t-18.25,7.75q-11,0 -18.75-7.75t-7.75-18.25
754
+ q0-11 7.75-18.75t 18.75-7.75zM 238.5,103q0,30 -11.25,56.25t-30.75,45.75t-45.75,30.75t-56.25,11.25l0-48 q 20,0 37.5-7.5t 30.5-20.5t 20.5-30.5t 7.5-37.5l 48,0 zM 330,103q0,48.5 -18.5,91.5t-50.5,75t-75,50.5t-91.5,18.5l0-49 q 38.5,0 72.5-14.75t 59.25-40t 40-59.25t 14.75-72.5l 49,0 z" horiz-adv-x="425" />
755
+ <glyph unicode="&#x69;&#x6e;&#x73;&#x74;&#x61;&#x67;&#x72;&#x61;&#x6d;" d="M 303.5,237.5l-20.5,0 q 2.5-9 2.5-18q0-15 -5.75-28.5t-15.75-23.5t-23.5-15.75t-28.5-5.75t-28.25,5.75t-23.25,15.75t-15.75,23.5t-5.75,28.5q0,9 2.5,18l-21,0 l0-100.5 q0-4 2.75-6.5t 6.75-2.5l 164.5,0 q 4,0 6.5,2.5t 2.5,6.5l0,100.5 zM 303.5,301.5q0,4 -2.5,6.75t-6.5,2.75l-27.5,0 q-4,0 -6.5-2.75t-2.5-6.75l0-27 q0-4 2.5-6.75
756
+ t 6.5-2.75l 27.5,0 q 4,0 6.5,2.75t 2.5,6.75l0,27 zM 212,265q-19,0 -32.25-13.25t-13.25-32.25q0-9.5 3.5-18t 9.75-14.75t 14.5-9.75t 17.75-3.5t 18,3.5t 14.75,9.75t 9.75,14.75t 3.5,18t-3.5,17.75t-9.75,14.5t-14.75,9.75t-18,3.5zM 120.5,100.5q-11.5,0 -19.25,8t-7.75,19.5l0,183 q0,11.5 7.75,19.5t 19.25,8l 183,0 q 11.5,0 19.5-8
757
+ t 8-19.5l0-183 q0-11.5 -8-19.5t-19.5-8l-183,0 z" horiz-adv-x="425" />
758
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x69;&#x63;&#x71;" d="M 178,203q-4-3 -6.75-6t-5.75-5.5l-10.5-8.5l-2.5-1.5q-9-4.5 -17.5-3.5q-8,1 -11,5l-1,3.5l 0.5,3q 3.5,8.5 14,13.5q 6.5,3.5 10,4l 27.5,5l 2-6.5zM 124,226q-8.5,1.5 -13,9q-3.5,6.5 -0.5,14.5q 4,10 13,14q 9.5,5 19,3l 9.5-4l 29.5-21q-4.5-6 -5.5-10l-48.5-6zM 191.5,190q 2.5-1 5-2.25t 5.5-1.25
759
+ q 0.5-8.5 1.75-17.5t 1.25-19l0-13 l0-3.5 q-4-10 -12.5-13.5q-9-5 -18.5-2.5q-10,3 -15,11q-1,2.5 -2,5.5t-1,6l 2,7.5q 0.5,5 5,9.5zM 164.5,287.5q-2,4.5 -3.25,8.75t-0.25,8.75q 0.5,9 6.5,12.5q 3,2.5 8,0q 9-2.5 15-14q 1.5-2.5 2.5-5t 1.5-5.5l 7-39.5l-5-1.5l-30,32zM 242,236.5l 34,28l 4,1.5q 10,4 18,2.5q 9-0.5 12-7
760
+ l 1.5-4.5l-1-3.5q-3-8.5 -15.5-14q-5-2 -11.5-3l-41.5-5l-0.5,2.5l-1,1zM 218.5,289.5l0,13.5 l0,3 q 3,9.5 12.5,15q 9.5,5 19.5,1.5q 10.5-2.5 15-11q 3-4.5 3-11.5l-1-7q-2-5.5 -5-10l-30.5-36.5q-5,3.5 -10,5.5zM 232,219q0-10 -6.5-16q-7.5-6.5 -15.5-6.5q-9.5,0 -16,6.5q-6.5,6 -6.5,16q0,9 6.5,15.5q 7,6 16,6
761
+ q 9.5,0 15.5-6q 6.5-6.5 6.5-15.5zM 298,214.5q 4-1 7.25-3.25t 5.25-6.25q 5-5.5 5-14.5l-1-6.5q-2.5-10 -11.5-14.5q-9.5-5 -18.5-1.5q-3.5,1 -5.5,2.25t-4,3.25l-35.5,29l 2.5,4.5l 1,4l 38.5,3.5l 13.5,0.5zM 212,429.5q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.25t 16.5-81.5t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.5,16.5
762
+ t-66.25,45t-44.75,66.5t-16.5,81.5t 16.5,81.5t 44.75,66.25t 66.25,44.75t 81.5,16.5zM 328,180q 4.5,15.5 -3,29l-1.5,2.5q-2,3 -4.25,5.75t-5.25,4.75q-2.5,2 -5.5,3.25t-5.5,2.75q 8,4 13.5,8.75t 8,11.75q 2,5.5 0.5,10.25t-1.5,9.25l0,0.5 q-7.5,5.5 -9.75,8.5t-8.75,5q-4,1 -8,1t-8-0.5l-11.5-2.5l 4,8.5q 4.5,16.5 -3.5,30.5l-1,1.5
763
+ q-7,12 -23,16q-15.5,4.5 -29.5-3q-7-4 -13.25-9.75t-6.25-13.25l0-0.5 l0-2 l-1.5,2l-3.5,6q-8,12.5 -20.5,15.5q-10,2.5 -20-2q-10-6.5 -13-20.5q-2.5-15 5.5-28l 2-3.5l-8,2.5q-14.5,3.5 -29-4q-14-6.5 -20-21.5q-5.5-14.5 1.5-26.5q 1.5-2.5 3.5-4.75t 4-3.75q 6-6 15.5-7.5l 2-0.5l-5-4.5q-7-6 -9-13.5
764
+ q-2.5-9.5 2.5-18q 2-3.5 6-6.5q 2-1.5 4.5-2.75t 5.5-1.25q 11.5-3 24,0.5l-6.5-9.5l-1.5-4.5q-5-15 2.5-29.5l 4-5l 4-5q 6-5.5 15-7.5q 16-4.5 30.5,2.5q 14,7.5 18.5,23l0,2 q 10-11 19.5-13.5q 11-3 19.5,2.5q 9,5 12,16q 2,10.5 0,23q 5-3.5 10.5-5q 16.5-5 30,2q 13.5,7.5 18,23zM 252.5,162.5q 2.5-4 3.75-8.25t 0.25-9.25
765
+ q-1-9 -6.5-12q-3-2 -8-1q-9.5,2 -15,14.5l-4,11l-5.5,29l 6,2l 4.5,2l 14-14l 9-11z" horiz-adv-x="425" />
766
+ <glyph unicode="&#x70;&#x69;&#x6e;&#x74;&#x65;&#x72;&#x65;&#x73;&#x74;" d="M 203.5,150q-2,1.5 -3.5,4.75t-4,1.25q-4.5-18 -10.5-37.5t-14.5-34l-16,0 l0,0.5 q-1.5,7.5 -0.75,19.5t 1.75,19q 1.5,9 4.5,19.25t 6.5,20.75t 5.75,21t 2.25,19.5q0,8 -2.5,16.25t-1,16.75q 1,8 6.75,15t 13,10.5t 14.25,1.75t 11-10.75q 4.5-10.5 1.25-22t-7.25-22.5t-5.5-20.5t 6.5-17q 3.5-3 10.5-4.75t 14-0.25q 11,2 19,10.5t 12.75,20
767
+ t 6,25.25t-0.75,26.5t-7.75,23t-14.75,15.75q-20,11.5 -40,9.5t-35.75-12.5t-24.75-27.25t-7-35.25q 0.5-7 4-12.75t 5.75-11t 2-10.5t-6.75-11.25q-18.5,7 -26.25,20t-7.25,34q0,22 9.75,39.5t 26,29.25t 37.5,17t 44.25,2.75q 15-1.5 28.5-7.75t 24-15.75t 17.25-21.75t 8.25-25.25q 1.5-12 0-24.75t-5.5-25.25
768
+ t-10.5-23t-15.5-18q-6-5 -15.5-9t-20-5.5t-21-0.25t-18.5,7.25z" horiz-adv-x="425" />
769
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x61;&#x6f;&#x6c;" d="M 212,429q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.25t 16.5-81.5t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.5,16.5t-66.25,45t-44.75,66.5t-16.5,81.5t 16.5,81.5t 44.75,66.25t 66.25,44.75t 81.5,16.5zM 241,337.5q-13,0 -22.25-9.25t-9.25-22.25t 9.25-22t 22.25-9q 13.5,0 22.75,9t 9.25,22t-9.25,22.25
770
+ t-22.75,9.25zM 310,125.5l-2,4q-26,50.5 -73,73.5q-0.5,0.5 -1,0.5l-0.5,0.5l-1,0.5q-1,1 -1,1.5q 1,3 1.75,3.5t 1.75,0.5l 4,0 q 4.5-1 8.75-1.5t 9.25-0.5q 10,0 21.25,3.25t 25.25,10.25l 4,2.5l-14,30l-4.5-2q-5-2.5 -12.75-4.5t-16.75-2q-11,0 -19,3l-2,1l-0.5,1.5q-0.5,0.5 -0.5,1.5t-0.5,2l0,1.5 l0,6.5 l-4,0.5q-6.5,1.5 -16,6l-2.5,1.5l-2.5-1
771
+ q-16.5-9.5 -24.5-25.25t-10.5-42.75q-1-7 -1.5-9.75t-1-3.75q-5.5-11 -12.75-18.75t-14.75-13t-14.75-8.25t-12.75-4.5l-5.5-1.5l 15-40l 4.5,1.5q 16.5,4 28.25,9.75t 20.25,12.5t 14.5,14t 11.5,14.25l 3.5,5q 1,1 2,1l 2-1q 13.5-6 23.5-12.5t 17.25-13t 11.5-12.5t 6.75-10l 2.5-4.5z" horiz-adv-x="425" />
772
+ <glyph unicode="&#x70;&#x6f;&#x73;&#x74;&#x65;&#x72;&#x6f;&#x75;&#x73;" d="M 125,87.5l0,197.5 q0,17.5 -0.5,32t-1,28l 27,0 l 2-32.5l 2.5,0 l 1.5,1q 20.5,35.5 66,35.5q 17.5,0 32-7t 25-19.25t 16.25-29.5t 5.75-38.25q0-26 -7.5-45t-19.5-31.25t-27.25-18.25t-30.75-6q-19,0 -33.75,7.75t-23.25,21.25l-0.5,1l-3,0 l-0.5-2l0-95 l-30.5,0 zM 212,325.5q-19.5,0 -34.5-12.25t-20-31.75q-2-8 -2-14l0-33
773
+ q0-8.5 1.5-14.5q 5-19 19.75-30.5t 33.75-11.5q 27,0 43.25,20.25t 16.25,54.75q0,16 -4.25,29.25t-12,23t-18.5,15t-23.25,5.25z" horiz-adv-x="425" />
774
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x77;&#x77;&#x77;" d="M 212.5,429q 43.5,0 81.5-16.5t 66.25-44.75t 44.75-66.25t 16.5-81.5t-16.5-81.5t-44.75-66.5t-66.25-45t-81.5-16.5t-81.5,16.5t-66.5,45t-45,66.5t-16.5,81.5t 16.5,81.5t 45,66.25t 66.5,44.75t 81.5,16.5zM 318,145.5q 12,16.5 12,41.5q0,10 -2.75,18.75t-7.25,16.25q-4,7.5 -11.5,12.5t-16,8l 28,57.5l0,11.5 l-53.5,0 l-23,0
775
+ l-31-111.5l-31.5,111.5l-22.5,0 l 10.5-36.5l-21-75l-31.5,111.5l-22.5,0 l 52-173.5l 2,0 l 32,113l 32.5-113l 2,0 l 44.5,153l 2,0 l 36.5,0 l-36.5-57l0-4 l 15,0 q 8.5,0 14.25-4.25t 9.75-9.75q 3.5-4.5 5.25-12.5t 1.75-16.5q0-14 -6.5-25.5q-6-10.5 -15.5-10.5q-8.5,0 -14.5,6q-6.5,6 -10.5,16l-17.5-7.5q 5-17.5 16.5-27q 10.5-10 26-10
776
+ q 20,0 32.5,17z" horiz-adv-x="425" />
777
+ <glyph unicode="&#x63;&#x69;&#x72;&#x63;&#x6c;&#x65;&#x6d;&#x73;&#x6e;" d="M 212,429.5q 43.5,0 81.5-16.5t 66.5-44.75t 45-66.25t 16.5-81.5t-16.5-81.5t-45-66.5t-66.5-45t-81.5-16.5t-81.5,16.5t-66.25,45t-44.75,66.5t-16.5,81.5t 16.5,81.5t 44.75,66.25t 66.25,44.75t 81.5,16.5zM 125.5,207q 8-11 16-19.25t 15.5-13.75q-1.5,10.5 0,21.5t 8.5,21q 7.5,11.5 15,16t 13.5,5.5l0,1.5 q-9,10 -19,17.25
778
+ t-21,14.25q-8.5,5.5 -18.75,10.75t-20,9.5t-18.5,7t-14.75,2.75q-5,0 -5-1q-0.5-1 -0.75-5.5t 4-15t 14.5-28t 30.75-44.5zM 171,213q-7-10.5 -8-22t 1.5-22.5q 9.5-6.5 17.25-9t 13.25-2.5q 4.5,0 6,1q 5,1.5 9,6t 6.5,9.5q-2.5,4.5 -4.5,9t-4.5,10q-9,21.5 -12,39q-5.5-1 -11.75-4.75t-12.75-13.75zM 229.5,96.5
779
+ q 1.5,1 3,5.5t 2.5,11t 1.75,13.5t 0.25,12.5q-0.5,1 -0.5,4q-7.5,6.5 -16.5,24q-3-5 -7-9t-9.5-6.5q-2.5-1 -8.5-1q-12.5,0 -28,8.5q 4.5-13 11-21q 3.5-4.5 9.25-11.5t 12.5-13.75t 14-11.75t 13.75-5q 1,0 2,0.5zM 210.5,194q 10-24 18.25-36.25t 12.75-14.75l0,4 q-0.5,8 -3,23t-10.5,33.5q-7,16 -12.25,26.5t-9.25,17
780
+ q-3.5,5.5 -5.75,7.75t-3.25,2.75q0-0.5 -0.25-0.75t-0.25-1.25q-0.5-1 -0.5-3l0-0.5 q-0.5-2 -0.25-4.75t 0.75-6.25q 1-8.5 4.25-20.5t 9.25-26.5zM 215.5,237.5q 4-7 7.75-15t 7.75-18q 2.5-5.5 4-10.25t 3-9.75q 2-1.5 12.25-6.25t 29.75-4.75l 7,0 t 7.5,0.5q 13,2 22.25,11.25t 15.75,23.25l-1,3t-1,2.5q-3,7 -10.5,13
781
+ t-17.5,10.5t-21.75,7.25t-23.75,2.75q-23,0 -41.5-10zM 311,122.5q 5,6 10,14.5t 8.75,18.75t 5.25,21.25t0,21.5q-7-12.5 -16.75-20.75t-22.75-10.25q-4-0.5 -8-0.75t-7.5-0.25q-14.5,0 -24.25,3t-15.25,6q 4-18.5 4-27.5q 8-12 16.5-18q 12-8.5 20-13.25t 13.5-4.75q 2.5,0 6.25,1.75t 10.25,8.75zM 348,278
782
+ q 1,18.5 -3,34.25t-12,24.25q-7.5,8 -18.5,8q-2.5,0 -7.5-1q-11.5-2.5 -26.25-12.25t-29-23.25t-25.5-29.75t-15.75-31.75q 0.5-1 1-1.5t 1-1.5q 20,10.5 44.5,10.5q 13,0 25.5-2.75t 23.25-7.75t 18.75-11.75t 11.5-14.75q 5.5,14 8.25,29.75t 3.75,31.25z" horiz-adv-x="425" />
783
+ <glyph unicode="&#x77;&#x69;&#x6b;&#x69;&#x70;&#x65;&#x64;&#x69;&#x61;" d="M 183.5,270q-1,2.5 -2,4.5t-1.5,3.5t-1,2.5q-3,6.5 -4.75,10t-3.25,5.5t-3.25,2.75t-4.75,1.25q-3,0 -3,1.5l0,5.5 l 0.5,1l 46.5,0 l 1.5-0.5l0-5.5 q0-2 -2.5-2l-3.5-0.5q-6.5-1 -6-4.25t 4.5-12.75l 54-122l 2-0.5l 47.5,125.5q 3,7 -0.5,10.5q-2,1.5 -3.75,2.5t-5.75,1l-4.5,0.5q-1,0 -1.5,0.5t-0.5,1.5l0,5.5 l 0.5,0.5l 54,0 l 0.5-0.5l0-5.5 q0-2 -2-2
784
+ q-11-1 -16-5q-2.5-2.5 -4.5-5.75t-3-7.25l-24-60q-5-12 -10-24.75t-9.75-24.5t-8.75-21.75t-7-17q-8-18.5 -16,0q-4,9 -10.5,25.25t-13.5,32.25q-8,18.5 -16.5,39.5zM 270,308l-44,0 l-0.5-0.5l0-5.5 q0-1 0.5-1.5t 1.5-0.5l 2.5-0.5q 7,0 8.5-2.5q 1-1.5 1.25-3.75t-2.25-7.75l-57-125.5l-1.5,0.5
785
+ q-11.5,27.5 -21.5,51.5q-4.5,10.5 -9,21.25t-8.5,20.75t-7.5,18.5t-5.5,14.5q-2,4.5 -2,7.5q0,5 8,5l 6,0.5q 2.5,0 2.5,2l0,5 l-0.5,0.5l-25.5,0 l-33.5,0 l-0.5-0.5l0-5.5 q0-1.5 3.5-1.5q 10-1 12.5-3.5q 1-1.5 2.75-4.75t 3.75-8.75q 5.5-15 13.75-34.5t 16.75-40t 16.75-40.25t 14.25-34.75q 3.5-8.5 7.5-9t 9,9.5q 4,9 11.5,25t 14.5,32
786
+ q 8.5,18.5 17.5,39.5l 24.5,51.5q 2.5,4 4.25,7.5t 2.75,5q 2.5,3.5 4.25,4.25t 7.25,1.25q 2,0 2,2l0,5.5 z" horiz-adv-x="425" />
787
+ <glyph unicode="&#x6c;&#x69;&#x6e;&#x6b;&#x65;&#x64;&#x69;&#x6e;" d="M 95,291l 52,0 l0-170 l-52,0 l0,170 zM 294.5,280.5q 15.5-8.5 25.5-25.75t 10-35.25l0-98.5 l-52.5,0 l0,98.5 q0,4 -3,9t-5.5,6.5q-4,2.5 -11,2.5t-11-2l-21.5-10.5l0-104 l-52.5,0 l0,170 l 52.5,0 l0-8 q 15.5,7 35,6.5t 34-9zM 121,356.5q 11,0 18.5-7.5t 7.5-18.5t-7.5-18.75t-18.5-7.75t-18.5,7.75t-7.5,18.75t 7.5,18.5t 18.5,7.5z" horiz-adv-x="425" />
788
+ <glyph unicode="&#x65;&#x6d;&#x62;&#x65;&#x72;&#x61;&#x70;&#x70;" d="M 296.5,195l 7,8q-2.5-10.5 -6.75-21t-11.75-19.5q-23.5-30.5 -73-32q-54.5,2 -81,52l0,2.5 q 1,9 3.75,22.75t 12.75,26.75q 8.5,11.5 19.75,21.75t 22.25,19.75q 10.5,8.5 19,16.25t 13.5,15.25q 9.5-7.5 21.5-17.75t 22.75-22.25t 18.5-24.5t 8.75-24zM 313,264q-0.5,2.5 1.5-7.75t 2.25-27.25t-3-37.5t-14.25-38.5t-32-30.75
789
+ t-55.5-13.75q-9.5,0.5 -23.75,3.25t-29.25,12t-28.75,27.25t-22.75,48.5q 1.5-2 3.5-3q 3.5-2.5 7-1q 2,0.5 2.5,6.75t 2,15.75t 5,20.75t 11.5,22.25q 10,13.5 23.25,25t 25.25,21.75t 20.75,19.25t 9.25,17q 22.5-16.5 41-34q 16-15 29.5-33.5t 16-36q 3,4 5,8q 2,3.5 3.25,7.5t 0.75,8zM 304,206q0,6 1,11.25t 0.5,10.75l 1-0.5
790
+ l-10-12l-3,24q-1,11.5 -8.75,24t-18.5,24.5t-22.75,22.5t-21.5,18q-5-7.5 -13.5-15.5t-19-16.5q-11-9.5 -22-19.5t-19.5-21.5q-10-13.5 -12.75-27.25t-3.75-22.75q-1-5.5 -1.25-9.25t-2.75-6.25l0-0.5 q-1-1 -1-1.5t-1.5-1.5q 1.5-3.5 5.25-6.75t 3.75-6.75q 10-26 30.75-39.75t 49.25-14.75q 25,1 41.75,9
791
+ t 28.75,23q 9.5,12 14.5,26.5t 5,29z" horiz-adv-x="425" />
792
+ <glyph unicode="&#x73;&#x6c;&#x61;&#x73;&#x68;&#x64;&#x6f;&#x74;" d="M 264.5,323l-91.5-209l-52,0 l 91.5,209l 52,0 zM 271,179q 14,0 23.5-9.5t 9.5-23t-9.5-23t-23.5-9.5q-13.5,0 -23,9.5t-9.5,23t 9.5,23t 23,9.5z" horiz-adv-x="425" />
793
+ <glyph unicode="&#x69;&#x63;&#x6f;&#x6e;&#x64;&#x6f;&#x63;&#x6b;" d="M 212.5,99q-6,0 -11,5l-70.5,77.5q-4.5,5 -7,6l-3,2.5l-1.5-3.5q-1-2.5 -3.5-6.25t-5.5-6.75t-5-3q-2.5,0 -4.25,2t-2.25,7.5l-4,37.5q-1,6.5 3,10.5q 3.5,4 10,4l 2,0 l 38.5-3.5q 8-1 9.5-5q 0.5-1 0.25-2.5t-2.75-3.5q-6.5-7 -13.5-9l-3.5-1.5l 2-3q 1-1 2.75-2.5t 4.25-4l 32.5-28q 4-3 7-3q 5.5,0 5.5,8.5l0,75
794
+ l-1.5,0.5q-11.5,6 -18,16.5t-6.5,23q0,9 3.5,17.25t 9.75,14.25t 14.75,9.5t 18,3.5t 18-3.5t 14.75-9.5t 9.75-14.25t 3.5-17.25q0-12 -6-22t-17-16.5l-1.5-0.5l0-74.5 q0-8.5 6-8.5q 2,0 3.75,1t 2.75,2l 31,26.5q 5,4.5 6.5,6.5l 2.5,3l-4,1.5q-6.5,2 -13.5,9q-3.5,3.5 -2,6q 1,4 9,5l 39,3.5l 1.5,0 q 6.5,0 10-4q 4.5-4.5 3.5-10.5l-4-37.5
795
+ q-1.5-9.5 -6.5-9.5q-2.5,0 -5,3q-3.5,3 -6,6.75t-3.5,6.25l-1,3.5l-3.5-2.5q-2.5-1 -6.5-6l-70.5-77.5q-5-5 -11-5zM 212.5,317q-11.5,0 -19.75-8t-8.25-19q0-11.5 8.25-19.25t 19.75-7.75t 19.5,7.75t 8,19.25q0,11 -8,19t-19.5,8z" horiz-adv-x="425" />
796
+ <glyph unicode="&#x69;&#x64;&#x65;&#x6e;&#x74;&#x69;&#x63;&#x61;" d="M 191.5,332q 15.5,0 29.25-6.25t 24-16.75t 16.25-24.5t 6-30t-6-30.25t-16.25-24.75t-24-16.5t-29.25-6q-17,0 -30,6.5l-53.5-17.5l 14,57.5q-6,14 -6,31q0,16 6,30t 16.25,24.5t 24,16.75t 29.25,6.25zM 192.5,201q 10.5,0 19.75,4t 16,11t 10.75,16.5t 4,20.5q0,10.5 -4,20t-10.75,16.75t-16,11.25t-19.75,4
797
+ t-19.75-4t-16-11.25t-10.75-16.75t-4-20q0-11 3.5-18.5l-11.5-42.5l 36,14.5q 10-5.5 22.5-5.5zM 266.5,236q 10.5,0 19.75-4t 16-11t 10.75-16.5t 4-20.5q0-14.5 -7.5-26.75t-19.5-18.75l-11.5-34.5l-22.5,30q-17.5,4 -28.5,17.75t-11,32.25q0,11 4,20.5t 10.75,16.5t 15.75,11t 19.5,4zM 279,161.5q 6.5,3.5 10.25,9.5t 3.75,14
798
+ q0,11.5 -7.75,19.25t-18.75,7.75t-18.5-7.75t-7.5-19.25q0-10 6-17.5t 15.5-9l 10-17z" horiz-adv-x="425" />
799
+ <glyph unicode="&#x69;&#x6d;&#x65;&#x73;&#x73;&#x61;&#x67;&#x65;" d="M 212.5,337.5q 24.5,0 45.75-8t 37.25-21.75t 25.25-32.5t 9.25-39.75t-9.25-39.75t-25.25-32.75t-37.25-22t-45.75-8q-10.5,0 -20.5,1.75t-19.5,4.75q-15.5-11 -39.5-11q-9,0 -16.5,1.5q 10,1 17.5,7.25t 9.5,15.75q-22.5,14 -35.5,35.5t-13,47q0,21 9.25,39.75t 25.25,32.5t 37.25,21.75t 45.75,8z" horiz-adv-x="425" />
800
+ <glyph unicode="&#x6d;&#x6f;&#x62;&#x69;&#x6c;&#x65;&#x6d;&#x65;" d="M 312.5,222.5q 10.5-3.5 20.5-11t 10-23q0-7.5 -3.5-16.25t-9.25-16.25t-13.75-12.25t-17-4.75l-174,0 q-9,0 -17,4.25t-14,11.25t-9.5,16t-3.5,18q0,9.5 4.25,16.25t 10.5,11.25t 13.5,6.5t 13.25,2q 4.5,0 6.5-0.5l0,2.5 q0,17 10.75,29t 25.75,12q 8,0 14.75-3.5t 12.25-9.5q 5.5,18 22,29.75t 37.5,11.75q 12.5,0 24-4.75
801
+ t 19.75-12.75t 13.25-18.75t 5-22.75q0-4 -0.5-7.5t-1.5-7z" horiz-adv-x="425" />
802
+ <glyph unicode="&#x6e;&#x65;&#x77;&#x73;&#x76;&#x69;&#x6e;&#x65;" d="M 225.5,89l-26,0 l0,55 l-31.5,23.5q-4-2.5 -8.5-2.5q-8,0 -13.25,5.25t-5.25,13.25q0,7.5 5.25,13t 13.25,5.5q 7.5,0 12.75-5.5t 5.25-13q0-1 -0.25-1.5t-0.25-1.5l 22.5-17l0,55 l-31.5,23.5q-4-2.5 -8.5-2.5q-8,0 -13.25,5.25t-5.25,13.25q0,7.5 5.25,13t 13.25,5.5q 7.5,0 12.75-5.5t 5.25-13q0-1 -0.25-1.5
803
+ t-0.25-1.5l 22.5-17l0,52 l-32,23q-3.5-2 -8-2q-8,0 -13.25,5.25t-5.25,13.25q0,7.5 5.25,13t 13.25,5.5q 7.5,0 12.75-5.5t 5.25-13q0-1 -0.25-1.75t-0.25-1.75l 22.5-16.5l0,41 l 26,0 l0-78 l 22,16.5q0,1 -0.25,1.25t-0.25,1.25q0,7.5 5.25,13t 13.25,5.5q 7.5,0 13-5.5t 5.5-13t-5.25-13t-13.25-5.5q-5,0 -9,2.5
804
+ l-31-22.5l0-51.5 l 22,16.5q0,0.5 -0.25,1t-0.25,1q0,8 5.25,13.25t 13.25,5.25q 7.5,0 13-5.25t 5.5-13.25q0-7.5 -5.25-13t-13.25-5.5q-5,0 -9.5,3l-30.5-23l0-54.5 l 22,16.5q0,0.5 -0.25,1t-0.25,1q0,7.5 5.25,13t 13.25,5.5q 7.5,0 13-5.5t 5.5-13t-5.25-13t-13.25-5.5q-5,0 -9.5,3l-30.5-22.5l0-18.5 z" horiz-adv-x="425" />
805
+ <glyph unicode="&#x6d;&#x65;&#x74;&#x61;&#x63;&#x61;&#x66;&#x65;" d="M 274,139l-34.5-26.5l 13.5,43l-34.5,26l 42.5,0 l 13,40l 13.5-40l 42.5,0 l-34.5-26l 13-43zM 243,153q-1-3 -4-12.25t-6.5-19.25l-137.5,99l 137,0 l 42,127.5l 53-157l-33.5,0 q-1,0 -4.25,9t-6.75,20q-4,13 -8.5,29.5q-4.5-16.5 -8.5-29.5q-3.5-11 -6.5-20t-4-9l-62.5,0 q 12.5-9 22.5-17q 8.5-7 16.75-13t 11.25-8z" horiz-adv-x="425" />
806
+ <glyph unicode="&#x61;&#x70;&#x70;&#x73;&#x74;&#x6f;&#x72;&#x65;" d="M 208.5,280q 2.5-1 3-3.5t-0.5-4.5l-72-125q-3-5.5 -8-2l-15.5,8.5q-2,1.5 -2.75,3.75t 0.75,4.75l 71.5,124.5q 1,2.5 3.5,3t 4.5-0.5zM 126,138q 5.5-3 0-6.5l-19.5-13.5q-2.5-1.5 -3.75-0.75t-0.75,3.25l 2.5,23.5q 1,5.5 6,3zM 228.5,245l 22.5-52.5l-71.5,0 l 33.5,52.5l 15.5,0 zM 114.5,192.5l-27,0 q-2.5,0 -4.25,1.5t-1.75,4l0,42.5 q0,2.5 1.75,3.5t 4.25,1
807
+ l 59.5,0 zM 337,245q 6,0 6-4.5l0-42.5 q0-5.5 -6-5.5l-26,0 l-26.5,52.5l 52.5,0 zM 295,199q 3-5 -0.75-9t-6.75-5q-3.5-1.5 -6-2.25t-7,1.75q-2.5,1 -8.5,13.25t-13.25,27.5t-13.75,30.25t-9.5,22t-8.25,18.5t-9.75,23t-6.75,20.25t 0.75,10.25q 2,1 6.5-5t 10-15.25t 11.75-20t 11.75-19.25q 5.5-9 13.5-23.25
808
+ t 15.5-28.5t 13.25-25.5t 7.25-13.75zM 304,149.5q-2.5-1 -5.25-0.5t-3.75,3l-9.5,14.5q-1.5,2.5 -1,5t 3,3.5l 9,4.5q 5.5,3 9-3l 7-14q 1.5-2.5 0.75-5.25t-3.25-3.75zM 307,145.5q 10,5.5 14.75,1.25t 6.25-11.75q 2-9 1-22q-1,2.5 -3.75,4t-6.25,3t-7.25,3.5t-6.25,5.5q-5,7 -2.75,11t 4.25,5.5z" horiz-adv-x="425" />
809
+ <glyph unicode="&#x66;&#x61;&#x63;&#x65;&#x62;&#x6f;&#x6f;&#x6b;" d="M 245.5,275q-3.5,0 -8.5-3.25t-5-9.75l0-13 l 39.5,0 l0-52 l-39.5,0 l0-105 l-52,0 l0,105 l-39.5,0 l0,52 l 39.5,0 l0,26 q0,10 4.5,19.5t 12.75,16.75t 19.25,11.75t 24,4.5l 44,0 l0-52.5 l-39,0 z" horiz-adv-x="425" />
810
+ <glyph unicode="&#x63;&#x6f;&#x72;&#x6f;&#x66;&#x6c;&#x6f;&#x74;" d="M 264,223.5q 20,0 34-14t 14-34q0-9.5 -3.5-18t-9.75-14.75t-14.5-10.25t-17.75-4.5q 2,6.5 2,15.5q0,21 -11.75,37.75t-30.75,23.75q 7,8.5 16.75,13.5t 21.25,5zM 203,195q 10.5,0 20-4t 16.5-11t 11-16.5t 4-20t-4-20t-11-16.5t-16.5-11t-20-4t-20,4t-16.5,11t-11,16.5t-4,20t 4,20t 11,16.5t 16.5,11t 20,4z
811
+ M 187.5,152q 5,0 8.25,3.25t 3.25,8.25q0,4.5 -3.25,7.75t-8.25,3.25t-8.25-3.25t-3.25-7.75q0-5 3.25-8.25t 8.25-3.25zM 182,205.5q 0.5,16.5 -2.25,30.25t-7.5,23.25t-11.25,14.5t-14,4.5q-14.5-1.5 -25-0.5t-9,8.5q 0.5,3.5 3.5,4.25t 6.25,0.75t 6.25,1t 3.5,6q 0.5,4.5 -0.25,8t-1,6.5t 1.25,5.5t 6.5,5q 4.5,2.5 7.75,1.25
812
+ t 5-5.25t 2.25-9.75t0-11.75q 17,4 32.75-2.5t 28.25-17.75t 21.75-23.5t 13.75-19.75q-2.5-1 -4.75-1.5t-4.75-1.5q-12.5,19.5 -24,31t-21.5,17.5t-18.5,7.25t-14.5,0.75q 11-8.5 17.75-20.25t 10.5-23.25t 5-21.25t 1.25-13.75q-9-1 -15-3.5z" horiz-adv-x="425" />
813
+ <glyph unicode="&#x62;&#x6c;&#x6f;&#x67;&#x67;&#x65;&#x72;" d="M 330,235.5l-0.5-60q0-15.5 -6-29t-16-23.5t-23.5-15.75t-29-5.75l-85.5,0 q-15.5,0 -29,5.75t-23.75,15.75t-16.25,23.5t-6,29l0,86.5 q0,15.5 6,29t 16.25,23.5t 23.75,16t 29,6l 52,0 q 7-1 15.5-4.25t 16.5-8.5t 14.75-12.5t 10.75-15.25q 1-2.5 2-4t 1.75-4t 1.5-6.5t 1.75-10.5l 1.75-12.25t 4.25-8.25q 2-2 6.75-2.5
814
+ t 9.75-0.5t 9.5-0.25t 6-1.75l 3.5-2.5l 2-4zM 170.5,276q-6,0 -10.25-4.25t-4.25-10.25q0-5.5 4.25-9.75t 10.25-4.25l 41,0 q 6,0 10.25,4.25t 4.25,9.75q0,6 -4.25,10.25t-10.25,4.25l-41,0 zM 254.5,162.5q 5.5,0 9.75,4.25t 4.25,9.75q0,6 -4.25,10.25t-9.75,4.25l-84,0 q-6,0 -10.25-4.25t-4.25-10.25
815
+ q0-5.5 4.25-9.75t 10.25-4.25l 84,0 z" horiz-adv-x="425" />
816
+ <glyph unicode="&#x74;&#x77;&#x69;&#x74;&#x74;&#x65;&#x72;" d="M 304,129q0-10 -8.25-18.25t-18.25-8.25l-78,0 q-15,0 -29,5t-25,14.75t-17.75,24.5t-6.75,34.25l0,131 q0,10 8,18t 18,8t 18-8t 8-18l0-39.5 l 104.5,0 q 10,0 18.25-8t 8.25-18t-8.25-18t-18.25-8l-104.5,0 l0-39.5 q0-10 8.25-18t 17.75-8l 78.5,0 q 10,0 18.25-8t 8.25-18z" horiz-adv-x="425" />
817
+ <glyph unicode="&#x64;&#x69;&#x67;&#x67;&#x61;&#x6c;&#x74;" d="M 121,305.5l 26,0 l0-39 l0-91.5 l-65.5,0 l0,91.5 l 39.5,0 l0,39 zM 121,201l0,39 l-13.5,0 l0-39 l 13.5,0 zM 186,279.5l-26,0 l0,26 l 26,0 l0-26 l0,0 zM 186,175l-26,0 l0,91.5 l 26,0 l0-91.5 l0,0 zM 199,266.5l 65.5,0 l0-91.5 l0-13 l0-26.5 l-65.5,0 l0,26.5 l 39.5,0 l0,13 l-39.5,0 l0,91.5 zM 225.5,201l 13,0 l0,39 l-13,0 l0-39 zM 277.5,266.5l 65.5,0 l0-91.5 l0-13 l0-26.5 l-65.5,0 l0,26.5 l 39.5,0 l0,13 l-39.5,0 l0,91.5 zM 304,201l 13,0 l0,39 l-13,0
818
+ l0-39 z" horiz-adv-x="425" />
819
+ <glyph unicode="&#x73;&#x71;&#x75;&#x69;&#x64;&#x6f;&#x6f;" d="M 329,186q 2.5-18 -3-33.75t-15.75-27.5t-23.25-18.75t-25.5-7q-24,0 -41.75,8.5t-27.25,32q-3.5,8.5 -3.5,18t-1.25,17.25t-6.25,13t-18.5,4.75q-17-1 -35.75-2t-32.75,3l0,27.5 q0-2 2.75-3.25t 5.75-1.75q 8.5-1 20.25,0.25t 22.75,3.25q 13,2 26,5q-16,6 -29,15.5q-11.5,8.5 -22.5,21.5t-15.5,32
820
+ q-1.5,5.5 -2.75,10.25t-2.75,8.75q 5,8 12.5,14q 2.5-7.5 4.25-15t 4.5-14.25t 7.25-12.5t 12.5-9.25q 10.5-4.5 19.25-7.25t 15.75-4.25q 7.5-2 14-2q-0.5,10.5 -2.5,20q-2,8.5 -6,16.75t-12.5,12.75q-7,4 -15.5,9.5t-16.5,13.5q 1.5,0 3-0.5t 3.5-0.5l 20.5,0 q 16-6.5 26.75-16t 17.5-19t 10-17.5t 3.25-12q 9,7 15,15q 5.5,6.5 8.25,14.5
821
+ t-1.25,15.5t-10,13.5t-13,6l 27,0 q 8-3.5 13-9.5t 7.25-13.25t 1.25-15.25t-4.5-14.5q-10-18 -12.25-29.25t 10.25-11.75q 6-0.5 16.25-2.25t 20.75-7.25t 19-16t 11-28.5zM 302.5,157.5q 3.5,9.5 3.25,19t-3.75,17.75t-10,14.25t-15.5,9t-18,2t-17.25-5.5t-14.5-12t-9.75-17q-3.5-10 -3.25-19.5t 3.75-17.75t 10-14.25
822
+ t 15.5-9t 18-1.75t 17.25,5.75t 14.5,11.75t 9.75,17.25zM 275.5,192q 6.5-2 10.75-7.75t 4.25-13.25q0-9 -5.5-15.25t-14-6.25t-14.25,6.25t-5.75,15.25q0,4 1.5,8q 4.5-0.5 9-0.25t 7.5,2.75q 4,2.5 6.5,10.5z" horiz-adv-x="425" />
823
+ <glyph unicode="&#x73;&#x70;&#x6f;&#x74;&#x69;&#x66;&#x79;" d="M 213.5,188.5q 21.5,0 41-5.75t 36.25-16t 30-24.75t 22.25-32q-14.5-13.5 -34-13.5l-23,0 q-12,17 -31,27t-41.5,10t-41.25-10t-30.75-27l-32.5,0 q-15,0 -27.5,8.5q 8.5,18.5 22,33.75t 30.75,26.25t 37.25,17.25t 42,6.25zM 122.5,204.5q-2,5.5 0,8.25t 3.5,3.75q 19,8.5 39.75,13.5t 43.25,5q 22,0 42.5-4.25t 39-13.75
824
+ q 3-1 5-4.75t0-7.75q-3.5-8 -12-4q-17,7.5 -35.75,11.75t-38.75,4.25q-40.5,0 -76-17q-2-1 -5.25-0.5t-5.25,5.5zM 328,303q0-6 -4.25-10.25t-10.25-4.25q-1,0 -1.5,0.25t-1.5,0.25q-24,9.5 -49.25,14.5t-52.25,5t-52.25-5t-49.25-14.5q-1,0 -1.5-0.25t-1.5-0.25q-6,0 -10,4.25t-4,10.25
825
+ q0,8 6.5,12q 26.5,10 54.25,15.5t 57.75,5.5q 29.5,0 57.25-5.5t 53.75-15.5q 8-3.5 8-12zM 308.5,260q 3.5-3.5 3.5-7l-2-6q-3-4 -8-4q-1,0 -1.25,0.25t-1.25,0.25q-21,9 -43.5,14t-47,5q-47.5,0 -90-18.5q-1-0.5 -3-0.5q-5,0 -8,4l-2,5.5q0,3.5 3.5,7q 23,10 47.75,15.5t 51.75,5.5t 51.75-5.5t 47.75-15.5z
826
+ " horiz-adv-x="425" />
827
+ <glyph unicode="&#x73;&#x6d;&#x75;&#x67;&#x6d;&#x75;&#x67;" d="M 189,330q0-7 -6.75-12.25t-16.75-5.25t-17,5.25t-7,12.25q0,7.5 7,12.75t 17,5.25t 16.75-5.25t 6.75-12.75zM 271.5,348q-10,0 -16.75-5.25t-6.75-12.75q0-7 6.75-12.25t 16.75-5.25t 16.75,5.25t 6.75,12.25q0,7.5 -6.75,12.75t-16.75,5.25zM 317,277l-201.5,0 q-2-0.5 -4-2t-3.75-4
828
+ t-4.25-7q-10.5-22 -13-48.25t 6.75-49.5t 31.5-38.75t 61.25-15.5q 26,0 46.75,9.5t 36.75,24.25t 27.75,32.5t 19,34t 10.75,28.75t 3.5,17q0,6.5 -2.75,10.25t-6.25,5.75q-4,2 -8.5,3zM 190,135.5q-8,0 -17.25,1.25t-18.25,4.5t-17,9t-13.5,14.75q-6,10 -8.5,21.75t-2,23.75t 3.75,23t 7.75,20l 185,0 q-1.5-6 -5.5-17
829
+ t-10.75-24t-16.5-26.75t-22.5-25t-29-18.25t-35.75-7z" horiz-adv-x="425" />
830
+ <glyph unicode="&#x61;&#x62;&#x6f;&#x75;&#x74;&#x6d;&#x65;" d="M 81.5,168l0,104.5 l 16,0 l0-14.5 q 5.5,8 13.5,12q 8,5 18.5,5q 12.5,0 19.5-5q 7.5-4.5 10.5-13.5q 12.5,18.5 32.5,18.5q 16,0 24.5-8.5q 8.5-9.5 8.5-26.5l0-72 l-18,0 l0,66 q0,10.5 -1.5,15q-2.5,5.5 -6.5,7.5q-4.5,3 -11,3q-11,0 -18.5-7.5q-7-6.5 -7-23l0-61 l-18,0 l0,68 q0,11.5 -4.5,17.5t-14.5,6q-7,0 -14-4q-7-4.5 -9-11.5
831
+ q-3-7.5 -3-21.5l0-54.5 l-18,0 zM 324,202l 18.5-2.5q-4.5-16 -16-25q-12.5-8.5 -30.5-8.5q-23.5,0 -37,14t-13.5,39.5q0,26.5 14,41q 13.5,14.5 35.5,14.5q 21,0 34.5-14.5t 13.5-40l0-4.5 l-79,0 q 0.5-17.5 10-26.5q 9-9 22-9q 10.5,0 17,5t 11,16.5zM 265,230.5l 59,0 q-0.5,12 -6.5,19.5q-9,10.5 -22.5,10.5q-12,0 -20.5-8.5q-9-9 -9.5-21.5z
832
+ " horiz-adv-x="425" />
833
+ <glyph unicode="&#x76;&#x69;&#x64;&#x64;&#x6c;&#x65;&#x72;" d="M 273,327.5q 12,0 22.25-4.5t 18-12.5t 12.25-18.5t 4.5-23t-4.5-23.25t-12.25-18.5t-18-12.25t-22.25-4.5l-45.5,0 l 28-91.5l-95.5,0 l0,28 l-65-20.5l0,79.5 l 65-18.5l0,23 l-13,0 q-10,0 -19,4.5t-16,12t-11.25,18t-4.25,22.5q0,12.5 5.25,23.25t 14,19t 20,13t 23.25,4.75q 10.5,0 20-4.25t 17-11.5t 12.5-16.5t 6.5-19.25l 2,0
834
+ q 1.5,10 6.5,19.25t 12.5,16.5t 17,11.5t 20,4.25zM 159,251q 7,0 11.5,5t 4.5,12t-4.5,11.75t-11.5,4.75t-11.5-4.75t-4.5-11.75t 4.5-12t 11.5-5zM 274.5,251q 7,0 11.5,5t 4.5,12t-4.5,11.75t-11.5,4.75t-11.5-4.75t-4.5-11.75t 4.5-12t 11.5-5z" horiz-adv-x="425" />
835
+ <glyph unicode="&#x72;&#x65;&#x74;&#x77;&#x65;&#x65;&#x74;" d="M 173,299l 118,0 q 5.5,0 9.25-3t 3.75-8.5l0-80 l 39,0 l-65.5-65.5l-65,65.5l 39,0 l0,52 l-39,0 zM 134,142q-5,0 -9,4t-4,9l0,78.5 l-39.5,0 l 65.5,65.5l 65.5-65.5l-39.5,0 l0-52.5 l 39.5,0 l 39-39l-117.5,0 z" horiz-adv-x="425" />
836
+ <glyph unicode="&#x6d;&#x79;&#x73;&#x70;&#x61;&#x63;&#x65;" d="M 139.5,286q-8.5,0 -14.5,6t-6,14.5t 6,14.5t 14.5,6t 14.5-6t 6-14.5t-6-14.5t-14.5-6zM 191.5,279.5q-11.5,0 -19.25,7.75t-7.75,19.25t 7.75,19.25t 19.25,7.75t 19.25-7.75t 7.75-19.25t-7.75-19.25t-19.25-7.75zM 260,271q-14.5,0 -25,10.5t-10.5,25t 10.5,24.75t 25,10.25t 24.75-10.25t 10.25-24.75t-10.25-25
837
+ t-24.75-10.5zM 261,257.5q 10,0 19-3.75t 15.75-10.25t 10.75-15.25t 4-18.75l0-90 l-104.5,0 l0,52.5 l-52,0 l0,39 l-39.5,0 l0,40.5 q0,10 7.5,17.5t 18,7.5q 8.5,0 15.25-5.25t 8.75-13.75q 10.5,13 28,13q 12.5,0 22-7.75t 13-19.25q 6.5,6.5 15.25,10.25t 18.75,3.75z" horiz-adv-x="425" />
838
+ <glyph unicode="&#x77;&#x69;&#x6e;&#x64;&#x6f;&#x77;&#x73;" d="M 176,138.5q-8.5,5.5 -18.75,9.75t-24.25,4.25q-17.5,0 -38-8l 20.5,71.5l 3,1l 3,1q 5.5,2 14,4t 18,3q 1.5,0.5 4.5,0.5q 14.5,0 31.5-8.5q 2.5-1 4.25-2.5t 4.25-2.5q-1.5-5 -4.25-14.5t-6-20.5t-6.5-21.5t-5.25-17zM 238,112.5q-6,0 -12.5,1.75t-12.5,4.25t-10.75,4.75t-6.75,3.75l 20.5,72q 7.5-5.5 19.25-9.75t 28.25-4.25
839
+ q 19,0 38.5,6.5l-20-69q-23.5-10 -44-10zM 203.5,236q-8,5 -18,9.25t-23.5,4.25q-17.5,0 -39.5-8l 20.5,71q 11,4.5 20.75,6.5t 18.75,2.5q 10,0 17.5-2q 7-1.5 14.25-5.25t 10.75-5.75zM 268.5,208.5q-25,0 -45.5,14l 21,72.5q 7.5-5.5 19.25-9.75t 27.75-4.25q 18.5,0 39,7.5l-20.5-70l-0.5,0 l0-0.5 q-20.5-9.5 -40.5-9.5z" horiz-adv-x="425" />
840
+ <glyph unicode="&#x64;&#x72;&#x69;&#x62;&#x62;&#x6c;&#x65;" d="M 212.5,102q-24.5,0 -46,9.25t-37.5,25.25t-25.25,37.5t-9.25,46q0,24 9.25,45.5t 25.25,37.5t 37.5,25.25t 46,9.25q 24,0 45.5-9.25t 37.5-25.25t 25.25-37.5t 9.25-45.5q0-24.5 -9.25-46t-25.25-37.5t-37.5-25.25t-45.5-9.25zM 155.5,140q 24.5-18 57-18q 16,0 30.5,5q-3,36.5 -14.5,71q-22.5-7.5 -41.25-22.25
841
+ t-31.75-35.75zM 248,203q 5-16 8.5-33t 5.5-34.5q 18,10.5 30.25,27.25t 16.25,37.75q-9,2.5 -17.75,3.75t-17.25,1.25q-11.5,0 -25.5-2.5zM 114.5,215.5q 1.5-36 26-62q 14.5,22.5 35.5,38.5t 46,24.5q-2,6.5 -5.5,14q-21.5-8 -43.75-11.75t-44.75-3.75l-6.25,0 t-7.25,0.5zM 273.5,225q 18,0 37-4.5q0,30 -17.5,54.5
842
+ q-27-23.5 -58.5-37.5q 2-4 3.5-8t 3.5-8q 8,2 16,2.75t 16,0.75zM 115.5,235q 3-0.5 6-0.5l 6.5,0 q 41,0 79.5,13.5q-17,31.5 -40,59q-21-11 -34.75-30t-17.25-42zM 187,314.5q 11.5-14 21.25-28.75t 17.75-30.25q 14.5,6.5 28,15.25t 26.5,19.25q-14,13.5 -31.5,20.75t-36.5,7.25q-6.5,0 -13-1t-12.5-2.5z" horiz-adv-x="425" />
843
+ <glyph unicode="&#x62;&#x65;&#x68;&#x61;&#x6e;&#x63;&#x65;" d="M 201,281.5q 6.5-9.5 6.5-24t-6.5-23q-2-2.5 -4.5-4.5t-6.5-4.5q 11.5-4.5 16.5-14q 6-9 6-22.5t-6.5-25q-4.5-8 -10-12.5q-6.5-5.5 -16.5-8q-4.5-1 -9.5-1.5t-10.5-0.5l-65,0 l0,157 l 69.5,0 q 26.5-1 37-17zM 134,272l0-39 l 24,0 q 5,0 8.75,1.75t 6.75,3.75q 5.5,4 5.5,15q0,5.5 -1.75,9.5t-5.75,5.5q-3.5,1.5 -7.5,2.5t-9.5,1
844
+ l-20.5,0 zM 134,207l0-39.5 l 24,0 q 8.5,0 14.5,3.5q 9.5,5 9.5,19.5q0,6.5 -2.25,9.75t-6.75,5.75q-2.5,1 -6.25,1l-8.25,0 l-24.5,0 zM 304,254q 10-5 17-16.5q 3-5 5-10.25t 3-12.25q0-2 0.25-5.5t 0.25-7q0-4.5 0.5-9l-72,0 q 0.5-10 3-15.25t 7.5-8.75q 2.5-2 6.25-3.25t 7.75-1.25q 4.5,0 8,2t 6.5,4.5q 1.5,1.5 2.75,1.75
845
+ t 2.25,7.25l 26.5,0 q-0.5-7 -3-11.5t-6.5-10q-7-8 -16.25-12.5t-20.75-4.5q-20,0 -35,13.5t-15,44q0,28.5 13.5,44.5q 13.5,15 35.5,15q 13,0 23-5zM 265.5,226.5q-2.5-3.5 -4.25-6.5t-2.75-13l 44.5,0 q-0.5,10 -2,13.25t-5,6.25q-6,6 -15,6q-10.5,0 -15.5-6zM 304,272l-52.5,0 l0,26.5 l 52.5,0 l0-26.5 z" horiz-adv-x="425" />
846
+ <glyph unicode="&#x70;&#x6f;&#x64;&#x63;&#x61;&#x73;&#x74;" d="M 212.5,298.5q-24,0 -45-7.5t-36.75-20.75t-25.25-31.75t-10.5-40.5l0,4.5 q0,22.5 9.25,42.25t 25.25,34.75t 37.25,23.5t 45.75,8.5t 45.75-8.5t 37.25-23.5t 25.25-34.75t 9.25-42.25l0-4.5 q-1,22 -10.5,40.5t-25.25,31.75t-36.75,20.75t-45,7.5zM 212.5,259q-15,0 -28.25-4.5t-23.25-12.25t-16-19t-7-24.75l0,4
847
+ q0,14 5.75,26.75t 16,22.25t 23.75,15t 29,5.5t 29-5.5t 23.5-15t 16-22.25t 6-26.75q0-2.5 -0.5-4q-1,13.5 -7,24.75t-16,19t-23,12.25t-28,4.5zM 212.5,199q-10,0 -16.75,6.25t-6.75,15.25t 6.75,15.25t 16.75,6.25q 9.5,0 16.25-6.25t 6.75-15.25t-6.75-15.25t-16.25-6.25zM 212.5,102.5q-14.5,0 -24.5,17.25
848
+ t-10,41.75q0,12.5 2.75,19.25t 7.5,10t 11,3.75t 13.25,0.5t 13.25-0.5t 11-3.75t 7.5-10t 2.75-19.25q0-24.5 -10-41.75t-24.5-17.25z" horiz-adv-x="425" />
849
+ <glyph unicode="&#x79;&#x6f;&#x75;&#x74;&#x75;&#x62;&#x65;" d="M 107,343.5l 21.5,0 l 14-48.5l 1.5,0 l 13.5,48.5l 21.5,0 l-25-71l0-50 l-21.5,0 l0,48 zM 180.5,291.5q0,10.5 8,16.5q 7.5,6 20.5,6q 12.5,0 19.5-6.5q 7.5-7 7.5-16.5l0-46.5 q0-11.5 -7-17.5q-8-7 -20.5-7t-20.5,7q-7.5,6.5 -7.5,18l0,46.5 zM 200.5,243.5q0-4 2-6q 1-1 2.25-1.5t 3.75-0.5q 3.5,0 6,2.5q 2,1.5 2,5.5l0,48.5 q0,3 -2,4.5q-2,2 -6,2
850
+ t-6-2q-2-1.5 -2-4.5l0-48.5 zM 306.5,312l0-89.5 l-19.5,0 l0,10 q-4.5-5.5 -11-8.5q-5.5-3 -11-3q-6,0 -10,4q-3.5,5 -3.5,12l0,75 l 19.5,0 l0-68.5 q0-4 1-4.5q 1.5-1.5 4-1.5q 1.5,0 5.5,1.5q 4,3 5.5,5l0,68 l 19.5,0 zM 153.5,220l-58.5,0 l0-15.5 l 19.5,0 l0-94 l 19,0 l0,94 l 20,0 l0,15.5 zM 192.5,130q-2-3 -5.5-4.5q-2.5-1.5 -4.5-1.5q-1.5,0 -3.5,1q-1,2 -1,4.5l0,62
851
+ l-17,0 l0-68 q0-7 3-10.5q 3-4 9-4q 5,0 9.5,3q 5.5,2.5 10,7.5l0-9 l 17,0 l0,81 l-17,0 l0-61.5 zM 267,187.5q-5,5 -12.5,5q-4,0 -8-2q-2.5-1 -7-5.5l0,35 l-17,0 l0-109.5 l 17,0 l0,6 q 1.5-2 3.25-3.25t 3.75-2.25q 4.5-1.5 9-1.5q 7.5,0 11.5,4.5q 4,4 4,13l0,45 q0,10 -4,15.5zM 253.5,129.5q0-4 -1.5-5.5q-1.5-2 -4.5-2q-1,0 -4,1
852
+ q-1.5,0.5 -4,3l0,50.5 q 1.5,1.5 3.5,2.5q 1,0.5 3.5,0.5q 3.5,0 5.5-2q 1.5-2.5 1.5-6.5l0-41.5 zM 330,149l0,20.5 q0,11 -6,18q-7,6 -18,6q-12,0 -18.5-6.5q-7.5-7 -7.5-17.5l0-36 q0-11 6.5-18.5q 7-7 18-7q 12.5,0 19,6.5q 6.5,6 6.5,19l0,4 l-17.5,0 l0-4 q0-7 -1.5-9q-2-2 -6-2t-6,2.5q-1.5,2 -1.5,8.5l0,15.5 l 32.5,0 zM 297.5,170q0,5 2,7
853
+ q 1.5,2.5 5.5,2.5q 3.5,0 6-2.5q 1.5-2.5 1.5-7l0-8.5 l-15,0 l0,8.5 z" horiz-adv-x="425" />
854
+ <glyph unicode="&#x67;&#x6f;&#x77;&#x61;&#x6c;&#x6c;&#x61;" d="M 181.5,155.5q-2.5-11 -2.5-25t 4-26l-12.5,0 q-3.5,13 -3.5,27t 2,25q-4.5,1 -8.75,1.5t-7.75,1.5q0-8.5 -2.5-16q-1.5-5 -6.75-7.25t-10.75-2.25q-9,0 -14.5,5.25t-5.5,13.75q0,14.5 11.5,24.75t 28,22.25l 5.5,3.5q 8.5,6 9.5,14.25t-0.5,15.25q-10.5-14.5 -19.5-23.5t-16.75-13.75t-13.75-6.25t-10-1.5q-12,0 -19,8.5
855
+ q-8,9.5 -5.5,22.5q 1.5,8.5 7.5,17.25t 14,16.5t 16.25,14.5t 13.75,10.75q-7.5,6 -16.25,14t-16,16.75t-11.75,17.75t-4.5,17q0,11.5 9.5,16.5q 9.5,6 19,6q 7,0 13-3t 11-7q 5,20.5 14,27.25t 17,6.75l 2.5,0 q 9.5-1 15.5-8.5q 5-6.5 6.5-17t 1.25-22.5t-1.75-25t-3-24l-0.5-2.5q 60-10 92.75-37t 42.25-75.5
856
+ q 1.5-6 1.5-12q 2-2 4-3.75t 4-3.25q 2.5-2.5 4.75-4.25t 4.75-4.25q-1-7.5 -3.5-13q-3.5,2.5 -7,5.75t-7,6.25l-0.5,0.5q-3.5-19 -15-29.75t-23-15.75l-20,0 l-7.5,6.5l 13,2.5q 0.5,0 6.75,1.75t 13.75,6.75t 13.75,14t 6.75,23.5q-6,5 -11,6.5q-7,2 -16,3.75t-18.5,1.75q-25.5,0 -33.5-16.5q-6-12 -7.25-25.75
857
+ t 2.25-24.75l-12.5,0 q-3.5,13 -1.75,28t 8.25,28q 11.5,23.5 44.5,23.5q 10,0 19.75-1.75t 17.75-4.25l 3-1t 3.5-1.5q-8.5,45.5 -40,70.25t-91,33.25l-6,0.5l 2,15.5q 1.5,9 3,20.75t 2,23t-0.5,20.5t-5,14.25q-2,3 -6.5,4q-5,0.5 -8.75-2.5t-6.5-8t-4.25-10.75t-2.5-10.75l 5.5-5.5q 19.5-20.5 16.5-33q-0.5-2.5 -2.25-5.5t-6.75-5.5
858
+ q-4-1.5 -7.5-1.5q-10,0 -15,8.25t-5,18.25q0,2 0.25,7.5t 1.25,13q-9,8.5 -16.75,11.25t-17.75-3.25q-3.5-2 -3.5-6.5q0-5.5 4.75-13.5t 12-16.5t 16.25-16.5t 17.5-13.5l 8.5-5l-8.5-5.5q-5-3.5 -13.5-9.75t-17-14.25t-15-16.25t-8-15.75q-1-7 2.5-12q 4-4 10-4q 2,0 7.25,1.25t 12.5,6.25t 16.5,14.75
859
+ t 20.25,27.25l 5.5,9l 5-9.5q 2.5-4.5 4.5-11.75t 1.75-15t-3.75-15.5t-11.5-13.75l-5.5-4q-5.5-4 -10.5-7.5t-9-7l 7.5-1.5q 0.5,0 8-1.75t 16.5-2.75q 0.5,2 2.5,6q 4,8.5 11.25,12.75t 13.25,4.25q 10,0 12.5-8.5q 1.5-4 1-7.75t-2.5-7.25q-6-10 -19.5-12q-5-1 -8.5-1zM 185,169.5q0-1 -0.5-1l 3.5,0 q 7.5,1.5 11,6.5
860
+ q 1.5,2 0.5,4.5l-1,0 q-2.5,0 -6.75-2.25t-6.75-7.75zM 146,321q0-5 2-9.5t 5.5-4.5q 1,0 1.5,0.25t 1.5,0.25l 1.25,1.25l 0.75,0.75q0,1.5 -2.25,6.5t-10.25,13.5l0-8.5 zM 137.5,148q 1,4 1,10.25l0,9.25 l0,6.5 q-13.5-11 -13.5-21q0-6.5 7.5-6.5q 2.5,0 3.5,0.5t 1.5,1z" horiz-adv-x="425" />
861
+ <glyph unicode="&#x70;&#x69;&#x63;&#x61;&#x73;&#x61;" d="M 265.5,338.5l0-87.5 q0,1 -7,8t-17.75,16.75t-23.5,21t-23.75,21t-18.5,16.5t-8.5,7.25q 22.5,8.5 45.5,8.5q 14,0 28.75-3t 24.75-8.5zM 147.5,107.5l0,112.5 q-14.5-13.5 -26.5-24q-10-9 -18.5-17t-9-8.5q 8-19.5 21.25-35.75t 32.75-27.25zM 82,219q0-8.5 1.25-17t 3.75-17q 1,0.5 9.75,8.5t 21.5,19.75t 27.25,25t 27,24.75
862
+ t 21.25,19.25t 9.25,8.25q-1,0.5 -8.5,7.5t-16.5,15.25t-16.5,15t-8,7.25q-33-17 -52.25-48t-19.25-68.5zM 160.5,167l0-67.5 q 20-9 40.5-11l 24,0 q 34,3.5 62.25,21.5t 43.25,57l-170,0 zM 278.5,331l0-151 l 58,0 q 3.5,10 4.75,20t 1.25,21q0,34.5 -17.25,63.25t-46.75,46.75z" horiz-adv-x="425" />
863
+ <glyph unicode="&#x74;&#x75;&#x6d;&#x62;&#x6c;&#x72;" d="M 225.5,343.5l0-52.5 l 52,0 l0-39 l-52,0 l0-65 q0-10.5 -0.5-16.5t 0.5-9q 3.5-7 9-10.5q 8-4.5 19-4.5q 18.5,0 37.5,11.5l0-37 q-8.5-3.5 -15.5-6t-13.5-4q-13.5-3 -28-3q-8.5,0 -14.5,1t-12.5,3.5q-7,2 -12.75,4.75t-9.75,6.75q-8.5,8 -10,17.75t-1.5,22.75l0,87.5 l-39,0 l0,28.5 q 7.5,2.5 15,5.5t 13,7.5q 11.5,9 17,20q 6.5,12.5 8.5,30l 38,0 z
864
+ " horiz-adv-x="425" />
865
+ <glyph unicode="&#x66;&#x6f;&#x72;&#x72;&#x73;&#x74;" d="M 320,113l-97,0 l0,43 l 43.5,21.5l0,10.5 l-43.5-21.5l0,21.5 l 21.5,11l0,10.5 l-21.5-10.5l0,21 l-21.5,0 l0-42.5 l-32.5,10.5l0-10.5 l 32.5-11l0-53.5 l-97,0 l 108,235.5l 107.5-235.5l0,0 z" horiz-adv-x="425" />
866
+ <glyph unicode="&#x6d;&#x65;&#x65;&#x74;&#x75;&#x70;" d="M 123,187q-4.5,12.5 -8,24.5t-6,24q-2.5-4 -3-9.25t-0.5-10.75q-0.5-6 -0.75-12t-2.25-10l-1,0.5q-2,0 -3.25-0.25t-2.75-0.25q-2-0.5 -6-0.5l-2.5,0 q-1,2 -2.25,4t-2.25,4q-2.5,3.5 -4.5,6.75t-4.5,6.75q-1-2.5 0-6.5q 0.5-3 0.75-5.75t-0.25-6.75q-1.5-1 -4.75-2.25t-7.25-1.25l-2.5,0 q-3.5,11.5 -3.75,23.25
867
+ t 0.25,25.75l0,10.5 q 3,1 6,1.5t 6.5,0.5q 2,0 3-0.5q 3-4 5.5-9t 5-10.5l 3-6t 3-5.5q 3,11.5 5.75,24t 9.25,21q0-0.5 1-0.5l 0.5,0 q 3.5,0 5-0.5q 1,0 2.25-0.25t 2.75-0.25l 2,0 q 4-8.5 6.25-19.5t 4.75-22.5q 2-8.5 3.75-17.25t 4.75-16.75q-0.5,0.5 -1.5,0.5q-1.5,0 -4.5-1q-1.5-0.5 -3.25-1t-3.75-1zM 202,184q-7.5,0 -15,4t-9,11
868
+ q-0.5,31.5 18,46.5q 8.5-1 14-5.5q0-4.5 -0.5-8.25t-1-7.75q-1-4 -1.5-8.5t0-10.5q-1.5,0 -3-0.25t-3.5-0.25q-2.5,0 -5,0.25t-5,0.75q-2-3.5 -1.5-6.5t 2-5.5q 5-6 11-6t 10,5.5q 4-1.5 4.5-4q-5-5 -14.5-5zM 196.5,229.5q-0.5-1 -1-2.5t-1-2.5q-1-2.5 -2.25-5.5t-1.25-7q 1-1.5 3.5-1.5l 2,0 q 1.5,4 1.75,9.5
869
+ t-0.75,9.5l-0.5,2zM 159.5,182q-5,0 -8.5,1.5q-8.5,3.5 -10.75,12.5t-1.25,18q 1,10 5.75,18.5t 11.75,9.5l 1.5,0 q 2.5,0 4.25-0.5t 3.25-1l 4.5-1.5q 1.5-6 2-15.5t-1.5-17q-0.5,0.5 -3,0.5l-1,0 q-7.5,0 -13.5,1.5q-3-11.5 1-17.5q 2.5-3 5.5-4l 1.5,0 q 2.5,0 6.5,1t 6,1q 3,0 5.5-3q-4-1.5 -9.25-2.75t-10.25-1.25zM 154,215q 0.5,0 0.75-0.25
870
+ t 0.75-0.25t 0.75-0.25t 1.25-0.25l 0.5,0 l 1,0.5q 1,3.5 0.75,7.25t-1.25,7.75q-5.5-6 -6-14l0-0.5 l 1.5,0 zM 336,144.5q-3,1 -5.5,1l-3.5,0 l-5,0 q-1.5,4 -2.25,9.75t-1.25,11.25q-1,7.5 -2.25,14.5t-5.25,12q 1,0.5 4,1.5q 0.5,0.5 2,0.5l 1.25,11.25t 2.25,13.5t 3.75,13t 5.75,10.75q 7.5,9.5 17.5,9.5q 7.5,0 17.5-6q 5.5-11 4.25-20.25t-3.75-15.25
871
+ q-5-10 -13.75-17.25t-19.75-9.75q-1.5-27 4-40zM 349.5,242q-8-8 -11.5-20t-5.5-23.5q 6.5,2 11.75,7.75t 7.75,12.75q 1.5,4 2,10t-3.5,13l-0.5,0.5zM 281,184.5q-6,0 -9.5,4.5q-9.5,10.5 -6.5,43.5q 3.5-0.5 5.75-1.75t 4.75-2.25q 1-1 3-2l0-4.75 t 0.5-5.75q0-12 1.5-24q 9,3.5 10.75,14.25t 2.25,20.75l0,4 q0-0.5 1-0.5
872
+ l 1,0 q 3.5,0 6.25-1.75t 5.25-3.75q 1-8.5 -1.25-13.75t-5.25-10.25q-1-1 -1.25-2.25t-1.25-2.25q-2.5-2 -3.75-4t-3.25-4.5l-1-1.5q-4-2 -9-2zM 232,180.5q 0.5,5.5 0.25,10.25t-0.75,9.75q-0.5,3 -0.75,6.25t-0.25,6.75l-3,0.5q-4,0.5 -7.5,0.75t-6,1.75q0,3.5 1.5,5q 0.5,1.5 4,1.5q 1,0 2-0.25t 2-0.25l 4.5,0 q 1,5.5 0.5,11.5
873
+ t-1.5,12.5q-1.5,11 -2.25,21.75t 2.25,20.25q 0.5-0.5 1.5-0.5l 0.5,0 q 5.5,0 8.75-2t 5.25-4.5q-1.5-8 -1.5-16.75t 0.5-17.75q 1-6.5 1-12.25t-0.5-10.75l0-1 l 1.5,0 q 2,0 2.25,1.5t 0.25,2.5q0,2 1,2q 3-1 5-2.5t 4-4q 1-1 2-2.25t 2-2.25q-1.5-1 -4.5-1.5t-6-0.5q-3.5,0 -7.5-1q-0.5-9.5 0-19l0-14.5 q-1.5-0.5 -3.25-0.5l-3.25,0
874
+ q-1,0 -2-0.25t-2-0.25z" horiz-adv-x="425" />
875
+ <glyph unicode="&#x70;&#x61;&#x79;&#x70;&#x61;&#x6c;" d="M 240,270l-31,0 l-13.5-61.5l 10,0 l 11,49.5l 31,0 q 8,0 14-4.5q-2,7 -7.5,11.75t-14,4.75zM 317.5,280q 7.5-9 11-21.75t-0.5-30.25q-3.5-16.5 -11.75-30.75t-20.25-24.5t-26.5-16.25t-31-6l-45,0 l-15-66l-63.5,0 l 2.5,12.5l 53.5,0 l 15,66l 45.5,0 q 16,0 30.75,5.75t 26.5,16.25t 20,24.5t 11.75,30.5q 2.5,13 1.75,22.25t-4.75,17.75z
876
+ M 250,332q 12,0 24-4.75t 20.75-14t 12.75-23.5t0-33.25q-3.5-16.5 -11.75-30t-20-23t-26.5-14.75t-30.75-5.25l-45,0 l-15.5-62l-63.5,0 l 48,210.5l 107.5,0 zM 248,264q 3.5,12.5 -3,21.75t-18,9.25l-31,0 l-13.5-62l 29.5,0 q 12,0 22.75,9.25t 13.25,21.75z" horiz-adv-x="425" />
877
+ <glyph unicode="&#x6c;&#x61;&#x73;&#x74;&#x66;&#x6d;" d="M 236.5,184.5l-2.5,5.5l-22.5,51q-5.5,13.5 -18.25,22t-28.25,8.5q-10.5,0 -20-4t-16.25-11t-10.75-16.25t-4-19.75q0-21.5 14.75-36.25t 36.25-14.75q 14.5,0 26.5,7.5t 18.5,20l 9-21q-10-12 -24-19t-30-7q-14.5,0 -27.25,5.5t-22.25,15t-15,22.5t-5.5,27.5t 5.5,27.25t 15,22.25t 22.25,15t 27.25,5.5
878
+ q 22,0 38.75-11.25t 25.75-32.25q 0.5-1 2.75-6t 5.5-12.5t 7-16.5t 7.75-18q 5-11 10.75-17.5t 18.75-7t 21,6.25t 8,16.75t-6.25,13.75t-17.75,7.75q-21,7 -31.5,15.25t-10.5,24.25t 10.25,25.75t 27.75,9.75q 23,0 34-20.5l-15-7.5q-7.5,11 -20,11q-8.5,0 -13.5-5t-5-13q0-10.5 8.75-14.25
879
+ t 22.25-8.25q 18.5-6 27-14.25t 8.5-25.25q0-17.5 -13.5-29.25t-33.5-11.75q-18.5,0 -29,8.75t-17.5,24.75z" horiz-adv-x="425" />
880
+ <glyph unicode="&#x69;&#x74;&#x75;&#x6e;&#x65;&#x73;" d="M 212.5,350.5q 27,0 50.75-10.25t 41.5-28t 28-41.5t 10.25-50.75t-10.25-51t-28-41.75t-41.5-28t-50.75-10.25t-51,10.25t-41.75,28t-28,41.75t-10.25,51t 10.25,50.75t 28,41.5t 41.75,28t 51,10.25zM 212.5,102q 24.5,0 45.75,9.25t 37.25,25.25t 25.25,37.5t 9.25,46t-9.25,45.75t-25.25,37.25t-37.25,25.25
881
+ t-45.75,9.25t-45.75-9.25t-37.25-25.25t-25.25-37.25t-9.25-45.75t 9.25-46t 25.25-37.5t 37.25-25.25t 45.75-9.25zM 264.5,182q 1-10 -5.25-17t-15.75-8t-16.5,5t-8,15.5q-0.5,9.5 5.75,17.25t 15.75,8.75q 3,0.5 7,0.25t 4-1.25l0,62.5 l-65.5-15l0-82.5 l0,1.5 q 1-10 -5.25-17t-15.75-8t-16.5,5t-8,16
882
+ q-1,9.5 5.25,17.25t 15.75,8.75q 3,0.5 7.25,0.25t 4.25-1.25l0,90 l 91.5,18.5l0-118 l0,1.5 z" horiz-adv-x="425" />
883
+ <glyph unicode="&#x66;&#x6c;&#x69;&#x63;&#x6b;&#x72;" d="M 330,220q0-11 -4.25-20.5t-11.25-16.75t-16.5-11.25t-20.5-4q-10.5,0 -20,4t-16.75,11.25t-11.25,16.75t-4,20.5t 4,20.5t 11.25,16.5t 16.75,11t 20,4q 11,0 20.5-4t 16.5-11t 11.25-16.5t 4.25-20.5zM 199.5,220q0-11 -4.25-20.5t-11.25-16.75t-16.5-11.25t-20.5-4t-20.5,4t-16.75,11.25t-11.25,16.75t-4,20.5t 4,20.5
884
+ t 11.25,16.5t 16.75,11t 20.5,4t 20.5-4t 16.5-11t 11.25-16.5t 4.25-20.5z" horiz-adv-x="425" />
885
+ <glyph unicode="&#x64;&#x61;&#x79;&#x74;&#x75;&#x6d;" d="M 127.5,99.5l-26,0 l0,78.5 l 26,0 l0-78.5 zM 167,99.5l-26.5,0 l0,130.5 l 26.5,0 l0-130.5 zM 206,99.5l-26,0 l0,104.5 l 26,0 l0-104.5 zM 245.5,99.5l-26.5,0 l0,183 l 26.5,0 l0-183 zM 284.5,99.5l-26,0 l0,130.5 l 26,0 l0-130.5 zM 323.5,99.5l-26,0 l0,209 l 26,0 l0-209 zM 323.5,322q0-0.5 -0.5-0.5l-221,0 l-0.5,0.5l0,25.5 q0,0.5 0.5,0.5l 221,0 l 0.5-0.5l0-25.5 z" horiz-adv-x="425" />
886
+ <glyph unicode="&#x64;&#x72;&#x75;&#x70;&#x61;&#x6c;" d="M 264.5,309.5q 2.5-2 11-8t 17.75-17.25t 16.5-27.75t 7.25-39t-8.5-41t-22.75-31.5t-33-20.25t-39.75-7.25t-40,7.75t-33.5,21.25t-23.25,32.25t-8.75,40.75t 7.5,38.25t 17,27t 18.5,17t 12,7.75q 7.5,4 14,7t 15.5,10q 4,3.5 7.25,9.25t 4.75,17.25q 6-7 12.75-14.5t 12.25-11.5q 8.5-5.5 17.25-8.75t 18.25-8.75
887
+ zM 132,265.5q 1-0.5 6.75,0.5t 18.75,8q 13,7.5 19.75,13t 13.75,13q 4,4 5,6.25t 1,3.25q0,1.5 -3,2.5q-2,1 0,1.5l 3.5,1.75t 3.5,2.25q 1,0.5 3.75,3.25t 3.25,6.75q0,8 -2,15.5q-1.5-11.5 -4.75-16t-8.25-8.5q-7.5-5.5 -14.25-9t-8.25-4.5q-2.5-1 -7.25-3.75t-10.5-6.75t-11.5-9.25t-9.75-11.75q-2.5-4 -1.25-5.75
888
+ t 1.75-2.25zM 265.5,140.5q 1,1 1,2l0,2 q-1,2.5 -3.5,0.5q-3.5-2.5 -11-5t-18.5-2.5q-11.5,0 -17.25,2t-9.25,4.5q-0.5,0.5 -2,0.5t-3.5-1.5q-1-1 -1-2.25t 1-2.25q 8-7 19-7.75t 20.5,0.25t 16.5,4.75t 8,4.75zM 225.5,159.5q-4-3 -1.5-5.5q 1-2 6.5,2.5q 3,2.5 5.75,4t 8.75,1.5t 8-1.75t 3-3.75q 2-3.5 3.5-2.5q 3,0.5 2,4.5q-1,1.5 -2,4t-3.5,4
889
+ q-2,1.5 -4.75,1.75t-5.75,0.25q-2.5,0 -4.5-0.25t-5-1.25t-5.75-3.25t-4.75-4.25zM 285.5,165q 4.5-0.5 7.75,2t 7.25,8q 4,6 6,14.25t 2,13.75t-3,12t-11.5,6.5q-4,0 -10-3.5t-12.25-7.5t-12-7.75t-10.25-3.75q-5.5,0 -11.5,4.25t-13.25,9t-16,9t-18.75,4.25q-8,0 -14.75-3t-12-7.75t-8.25-11
890
+ t-3-12.75q-1-15 10-22q 3.5-2.5 8-3.75t 14.5-1.25q 8.5,0 18,4.25t 18.25,9.5t 16.5,9.5t 12.75,4.25q 4,0 8.75-4.25t 9.75-9t 9.5-9t 7.5-4.25z" horiz-adv-x="425" />
891
+ <glyph unicode="&#x61;&#x6d;&#x61;&#x7a;&#x6f;&#x6e;" d="M 318,141q-5.5-5 -11-7.5q-21-13 -46-19.75t-49-6.75q-37.5,0 -70.5,13.75t-58.5,37.75q-2.5,2 -1.25,3.75t 3.75,0.25q 28-16.5 61-26t 68.5-9.5q 22.5,0 45.75,4.25t 46.25,13.75q 1.5,1 3.25,1.5t 3.25,1.5q 4,1.5 6-1.5t-1.5-5.5zM 342,165q-2,2.5 -12.75,3.5t-22.25-2.5q-6.5-2.5 -11.5-6q-2-1.5 -1.75-2.75t 2.25-1.25
892
+ q 2.5,0.5 5.25,0.75t 5.75,0.75q 7,0.5 13.75,0.25t 9.25-2.75q 1.5-1.5 0.75-5.75t-2.25-9.5t-3.25-10.25t-3.25-8.5q-1-2 0.5-2.5t 3.5,1q 8.5,7.5 12.5,19.5t 4.5,19.5l0,1.5 q0,3 -1,5zM 286,198q-4-4 -10.5-9.5t-11-9.5q-3-2 -7-0.5q-7,6 -9.5,9.75t-6.5,9.25q-12.5-14 -26-18.5q-10-2.5 -20-2.5q-17.5,0 -29.75,11.25
893
+ t-12.25,33.75q0,17.5 8.25,29.5t 21.75,18q 7,3.5 15.25,5.25t 16.75,2.75q 5.5,1 10.75,1.25t 9.75,0.75l0,4 q0,5.5 -0.25,11t-2.75,10q-2.5,4 -7,5.75t-9,1.75l-1.5,0 q-7.5-1 -13.25-5t-7.75-12.5q-1-5 -5-5.5l-27.5,3.5q-1,0.5 -2.75,1.75t-0.75,4.25q 2,12 7.75,20.25t 13.5,13.5t 17,7.75t 18.75,3l 5.5,0 q 10,0 22-3.25
894
+ t 20.5-11.25q 10-10 11-22.75t 1-27.25l0-45.5 q0-10 3.5-15.75t 7.5-11.25q 1-2 1.25-4t-1.75-3.5zM 236,249.5l0,6 q-5.5,0 -10.75-0.5t-9.75-1.5q-9-2.5 -15-8.75t-6-18.25q0-10 4.25-15.75t 12.75-5.75q 1,0 2,0.25t 2,0.25q 10,2.5 15.5,13.5q 4,7.5 4.5,14.75t 0.5,15.75z" horiz-adv-x="425" />
895
+ <glyph unicode="&#x72;&#x65;&#x64;&#x64;&#x69;&#x74;" d="M 262.5,323q0,6 2.5,11l-44.5,10.5q-3.5,0 -4.5-1q-2.5-1.5 -2.5-4l-9-59q0-6 5-7l 1,0 q 4.5,0 5.5,5l 7.5,53zM 287,291q-13,0 -22,9.5t-9,22.5t 9,22.5t 22,9.5t 21.75-9.5t 8.75-22.5t-8.75-22.5t-21.75-9.5zM 287,342q-7.5,0 -12.75-5.5t-5.25-13.5t 5.25-13.5t 12.75-5.5t 12.75,5.5t 5.25,13.5t-5.25,13.5
896
+ t-12.75,5.5zM 309.5,276q-9,0 -16.5-4.25t-12-11.25q 2.5-1.5 5.25-3.25t 5.25-3.75q 2.5,4 7.25,6.75t 10.75,2.75q 8.5,0 14.75-5.75t 6.25-14.25q0-7.5 -4.75-13t-11.75-7l 2-6t 1.5-6.5q 11,2.5 18.25,11.5t 7.25,21q0,14 -9.75,23.5t-23.75,9.5zM 107,224q-5.5,2.5 -9.25,7.5t-3.75,11.5q0,8.5 6.25,14.25
897
+ t 14.75,5.75q 10,0 16.5-8l 10.5,7.5q-4.5,6 -11.5,9.75t-15.5,3.75q-14,0 -23.75-9.5t-9.75-23.5q0-11 6-19.25t 16-12.25q 1,7 3.5,12.5zM 210.5,119.5q-23.5,0 -44.25,6.5t-36.25,18t-24.5,26.5t-9,32.5q0,17 9,32.25t 24.5,26.5t 36.25,17.75t 44.25,6.5t 44.25-6.5t 36-17.75t 24.25-26.5t 9-32.25q0-17.5 -9-32.5t-24.25-26.5
898
+ t-36-18t-44.25-6.5zM 210.5,273q-21,0 -39.5-5.5t-32.25-15t-21.75-22.25t-8-27.25t 8-27.25t 21.75-22.25t 32.25-15t 39.5-5.5t 39.25,5.5t 32,15t 21.75,22.25t 8,27.25t-8,27.25t-21.75,22.25t-32,15t-39.25,5.5zM 250,179.5q-4.5-4.5 -14-7.5q-5.5-1.5 -11.5-2.5t-13-1t-12.75,1t-11.25,2.5q-10.5,3.5 -14,7.5
899
+ q-4.5,4.5 -9,0q-2-2 -2-4.75t 2-4.75q 3.5-4 8.5-6.5t 11-4.5t 13-2.75t 14.5-0.75q 17,0 28,3.5q 12.5,4 19.5,11q 2,2 2,4.75t-2,4.75q-4.5,4.5 -9,0zM 185.5,222.5q0-6.5 -4.25-10.75t-10.25-4.25t-10.5,4.25t-4.5,10.75t 4.5,10.75t 10.5,4.25t 10.25-4.25t 4.25-10.75zM 267.5,222.5q0-6.5 -4.25-10.75t-10.25-4.25t-10.5,4.25
900
+ t-4.5,10.75t 4.5,10.75t 10.5,4.25t 10.25-4.25t 4.25-10.75z" horiz-adv-x="425" />
901
+ <glyph unicode="&#x73;&#x63;&#x72;&#x69;&#x62;&#x64;" d="M 241.5,149.5q0-13.5 7-26q-1.5-1.5 -3-3.25t-3-3.25q-20-20.5 -50-20.5q-28.5,0 -50.5,16q-22.5,17 -33.5,48.5l 0.5,0.5q-1,4 -1,7q0,11.5 7.5,19.25t 18.5,7.75t 18.5-7.75t 7.5-19.25t-8-19.5q 15.5-18.5 39.5-18.5q 17,0 28.5,10.5q 11,10.5 11,26.5q0,9.5 -6,19.5q-3,4.5 -6.5,8.5t-8,7q-8,6 -28,14.5q-19.5,8.5 -29.5,15
902
+ q-5.5,3.5 -9.75,7.5t-8.25,8.5t-6.5,9.25t-4.5,9.25q-1.5,4.5 -2.5,9.5t-1,10.5q0,25 20,43q 19.5,18 47.5,18q 18,0 38-8.5q 15-6.5 27-20q 9-8 9-20q0-11.5 -7.5-19.5t-18.5-8t-18.5,8t-7.5,19.5q0,6.5 2,11q-8,4 -21,4q-17.5,0 -27.5-8q-10.5-7.5 -10.5-20q0-10.5 9.5-19q 9-8 31-18q 22.5-10 34-18
903
+ q 6.5-4 11.25-8.75t 8.75-9.75q 8.5-10.5 12-21.5q0-1 0.5-1.5q-8.5-7 -13.5-17.25t-5-22.75zM 317,149.5q0-13 -8.75-22t-21.25-9q-13,0 -21.75,9t-8.75,22t 8.75,22.25t 21.75,9.25q 12.5,0 21.25-9.25t 8.75-22.25z" horiz-adv-x="425" />
904
+ <glyph unicode="&#x6d;&#x72;&#x77;&#x6f;&#x6e;&#x67;" d="M 263,173q 4-2.5 8-5.25t 7-8.25t 4.5-14.75t 0.5-24.25q-0.5-9 -3-14t-5-5.25t-4.75,4.25t-2.25,14q-0.5,21.5 -4.75,30.5t-13.25,9.5q-3.5,0 -9.5,0.25t-13.5,0.25l0-25.75 t-0.5-17.25q0-6 -2.5-9.25t-5.25-3.75t-5,1.5t-2.25,6.5l0,48.5 l-16.5,0 t-10-0.5q-6-1 -12.75-11.5t-5.25-32q 0.5-8 -1.75-11.75
905
+ t-5.25-3.75t-5.25,4t-2.25,12q-0.5,7.5 0,14.5q 0.5,6 1.25,12.25t 2.25,10.25q 3,8 13,15.75t 25.5,8.25l 17,0 l0,32 q-10,1 -19.25,5.75t-11.75,15.75q-1,6 -1.75,14t-1.75,17.5q-7.5,0 -15.25-0.5t-14.75-0.5l-12.25,0 t-7.25,0.5q-2.5,0.5 -3,3.25t 0.25,5.75t 2.75,5.5t 5,2.5q 7,1 19.5,0.75t 24-0.25q-1,15 -0.75,27.5t 0.75,15
906
+ q 1,5.5 3,10t 6,3.5t 7.25-5.5t 1.75-17.5q-0.5-5.5 -1-14.5t-1-19l 4,0 l 44,0 l0,43.5 q0,5 4.5,8.5t 8-3.5q 1-2 1.75-7t 1.25-11.75t 0.75-14.5t 0.25-15.25q 11.5,0 20-0.25t 11-0.75q 7-0.5 11.75-1.75t 4.75-5.75q0-2.5 -2.25-3.75t-6-2t-8-1t-7.25-0.25l-8.75,0 t-14.75-0.5q0-7 -0.25-12.25t-0.25-7.75
907
+ q-1-10 -5.75-19.25t-15.25-12.25q-3.5-1 -9.5-2q0-5 0.25-13.5t 0.25-18.5q 12-0.5 22.25-1.5t 14.25-3.5zM 192,263q 0.5-11.5 2.5-20.5t 6-11.5q 5-3 11.75-3.5t 12.75,0.75t 10.5,4.5t 4.5,8.25l0,22.5 q-13.5,0 -26.5-0.25t-21.5-0.25zM 106,171q-8.5-2 -10.25,0.25t-0.75,5.75q 1.5,4 6,9.5q 12,5 22.5,9.5q 9,4 17.25,7.5
908
+ t 12.25,5q 3.5,1.5 8.75,3t 9,2t 5-1.5t-3.25-7q-4-5.5 -11.75-10.75t-17.25-9.75t-19.25-8t-18.25-5.5zM 330,184q 0.5-3.5 -1.25-4.5t-4.5-0.75t-6.25,1t-6.5,1.25t-8.5,2.75t-11.5,5t-11.25,5t-7.25,2.75l-5,1.25t-5.75,2.25t-4,3.75t-0.25,5.75q 2,5.5 8.25,5.25t 20.25-5.75q 7-3 14.5-6.25
909
+ t 13.75-6.25t 10.5-6t 4.75-6.5z" horiz-adv-x="425" />
910
+ <glyph unicode="&#x67;&#x69;&#x74;&#x68;&#x75;&#x62;" d="M 212.5,203.5q 15,0 28-4.5t 22.75-12t 15.5-17.5t 5.75-21.5t-5.75-21.5t-15.5-17.5t-22.75-11.75t-28-4.25t-28,4.25t-22.75,11.75t-15.5,17.5t-5.75,21.5q0,13.5 8,25t 21,19q-2.5,5.5 -3.75,11.25t-1.25,11.75q0,13 5.5,25.5q-10,8 -16,19.75t-6,25.75q0,12 4.5,22.75t 12.5,18.75t 18.75,12.75t 23.25,4.75q 17,0 31.5-10
911
+ l 42.5,23.5l0-39.5 l-20.5-11q 3.5-3 5.75-9.75t 2.25-12.25q0-12 -4.75-22.75t-13-18.75t-19-12.75t-23.25-4.75l-2,0 q-1,0 -1.5-4.25t-0.5-7.75t 0.5-6.5t 1.5-5.5q 1.5,0 3,0.25t 3,0.25zM 208.5,313.5q-11.5,0 -19.75-8t-8.25-19.5t 8.25-19.5t 19.75-8t 19.75,8t 8.25,19.5t-8.25,19.5t-19.75,8zM 212.5,127
912
+ q 13.5,0 22.75,6.25t 9.25,14.75q0,9 -9.25,15.25t-22.75,6.25q-13,0 -22.5-6.25t-9.5-15.25q0-8.5 9.5-14.75t 22.5-6.25z" horiz-adv-x="425" />
913
+ <glyph unicode="&#x65;&#x6d;&#x61;&#x69;&#x6c;" d="M 157.5,219.5l-63-45l0,90 zM 330,303.5l-117.5-84l-118,84l0,30.5 l 235.5,0 l0-30.5 zM 330,264.5l0-90 l-63,45zM 253.5,210l 76.5-55l0-30 l-235.5,0 l0,30 l 76.5,55l 41.5-29.5z" horiz-adv-x="425" />
914
+ <glyph unicode="&#x61;&#x70;&#x70;&#x6c;&#x65;" d="M 278,233.5q0-13.5 5-22.5t 11-14.5t 11.25-8l 5.25-2.5q-0.5-1 -4.25-11t-12.75-22.5q-7.5-11 -15.75-19.75t-20.75-9.25q-6,0 -10.5,1.25t-8.75,3.25t-9,3.5t-11.75,1.5t-11.75-1.5t-9-3.25t-8.5-3.25t-10.25-2q-11.5-0.5 -21,9.25t-17,20.75t-14,25.75t-9.25,30.75t-1.25,32.25t 9.5,29.75t 21,21.25
915
+ t 28.5,8.25q 6,0 11.75-1.5t 10.75-3.25t 9.5-3.5t 8-1.75t 8.5,2t 11,4t 12.75,3.5t 13.75,1q 3,0 8.25-0.75t 11.5-3.25t 12.5-7t 11.75-12q-0.5-0.5 -4.5-3.25t-9-8.25t-8.75-14t-3.75-19.5zM 247.5,321q-6-7.5 -15.75-12.5t-19.75-4q-1.5,10 2.75,19.75t 10.25,16.25q 6.5,7.5 16.25,12.5t 19.25,5.5q 1-10.5 -2.75-20.25
916
+ t-10.25-17.25z" horiz-adv-x="425" />
917
+ <glyph unicode="&#x61;&#x64;&#x64;&#x6d;&#x65;" d="M 317,249l0-52.5 l-78.5,0 l0-78 l-52.5,0 l0,78 l-78.5,0 l0,52.5 l 78.5,0 l0,78.5 l 52.5,0 l0-78.5 l 78.5,0 l0,0 z" horiz-adv-x="425" />
918
+ <glyph unicode="&#x79;&#x61;&#x68;&#x6f;&#x6f;" d="M 292.5,261q-2.5-1 -13-9.25t-22.5-18.75t-22-20.75t-11.5-14.75q-0.5-1.5 -0.5-9t 0.25-16t 0.5-16.25t 0.75-9.75q 1.5-0.5 6.75-0.5l 11.25,0 l 11.5,0 t 7.5-0.5l-1-12.5q-2,0 -8.75,0.25t-15.75,0.25l-18.75,0 l-17.25,0 q-4,0 -11.25-0.25t-15.25-0.5t-15.5-0.25l-11.5,0 l 2,12q 2,0 6.75,0.25t 10,0.5t 10,1.25t 6.75,3.5q 1,1 1.5,8
919
+ t 0.5,15.25t-0.25,15.75t-0.75,10q-0.5,1.5 -4.75,8t-10.5,15.5t-14,19.25t-15,19.75t-13.25,16.75t-9.5,10.75l-34.5,0 l0,13 l 118,0 l0-1 l0-3 l0-9 l-36.5,0 q 6-10 12.75-20.25t 13.25-19.5t 12.25-17.5t 9.25-13.25l 47,44.5l-27.5,0 l-4,13l 104,0 l-9.5-9.5q-0.5,0 -0.5,0.5l-3-4l-18.5,0 q-2,0 -3.5-1t-2.5-1zM 309,243.5q 1.5,0 6.5-0.75t 10.75-1.25
920
+ t 10.75-1t 6-0.5l-18-77l-16,1.5l0,79 zM 316.5,151l 9-0.5l-2.5-18.5l-8.5,1l-8,0.5l0,19 z" horiz-adv-x="425" />
921
+ <glyph unicode="&#x76;&#x69;&#x6d;&#x65;&#x6f;" d="M 94.5,246q 11.5,13 23.5,23.5q 10,9 22.5,17t 24,10.5q 12,2 18.75-5.5t 10.5-19.5t 5.75-26.5t 5-25.5q 5.5-21.5 10-33.25t 9.5-11.75t 13.75,11t 18.75,29.5q 5,9 5.25,17.25t-3.75,13.25t-11.5,5.75t-17.5-5.25q 2.5,15.5 12,26.75t 21.5,17.75t 25.25,8t 23.25-3t 15.25-15.5t 2.25-28.5q-5-26.5 -19.5-50.5t-31.5-43
922
+ t-33.25-32.25t-24.75-18.25q-8.5-5.5 -16-5t-14,4t-11.5,9.25t-8,11.25q-2,4 -5.5,13.5t-7.25,21.5t-8,25.25t-8,24.5t-6.75,19t-4.5,9.75q-2.5,2.5 -7,2t-8.5-2.5q-5-2 -10.5-6.5l-9.5,12l0,0 z" horiz-adv-x="425" />
923
+ <glyph unicode="&#x73;&#x6b;&#x79;&#x70;&#x65;" d="M 190,341q 32,3 53.75-4t 38.25-21.5q 9.5-8.5 12.25-16.75t 1-15t-6.75-11.5t-11-5.25q-6-1 -12.5,4.75t-14.75,12.75t-18.5,13t-23.75,6.5q-13.5,0 -24.25-6.25t-14.5-14.5t 1-16.75t 21.75-12.5t 34-7.75t 31.75-9.5t 26.5-15.25t 18.25-25q 6.5-16 2.25-31.5t-15.5-28t-28-20.75t-35.25-9.25t-32.5,0.5
924
+ t-25,5.25t-19.75,9.75t-16.75,13.5q-9,8.5 -12,17t-1.5,15.75t 6.5,12t 12.5,5.25q 7,0.5 13-3.25t 11-8.5t 9-9.75t 8-7.5t 12.5-5.75t 18.75-4.5t 20.75,1.25t 18,11.5q 8.5,10 6.75,17.5t-9.25,13t-18.5,8.75t-21.5,4.75q-14.5,2 -30.25,7.25t-28.25,14t-20,20.75t-6,28t 7.75,28.25t 15.5,20.5t 21,13t 24.25,5.75z" horiz-adv-x="425" />
925
+ <glyph unicode="&#x68;&#x65;&#x61;&#x72;&#x74;" d="M 327.5,276q 5-15.5 0.5-33.75t-14.25-36t-23.25-34.25t-27.75-29.25t-26.75-20.25t-20.5-7.5q-7.5,0 -20.75,7.5t-28,20.25t-29.25,29.25t-25,34.25t-15.5,35.75t0,34q 8,26 25,37t 35.5,11q 15,0 25.25-6.25t 16.5-13.75t 9.25-13.75t 4-6.25t 4,6.25t 9.5,13.75t 16.75,13.75t 25.25,6.25q 18-0.5 35-11.5
926
+ t 24.5-36.5z" horiz-adv-x="425" />
927
+ <glyph unicode="&#x71;&#x75;&#x6f;&#x72;&#x61;" d="M 317,226q-1-28 -14.5-51t-35.5-37.5q 5.5-7.5 10.5-11.25t 9-5.25q 4.5-2 8-1l0-18.5 q-7.5-3.5 -15.5-4.5q-7-1 -14.75,1.25t-14.75,10.75q-6.5,8 -11,15.5q-14.5-4.5 -30-4.5q-21.5,0 -40.25,8.25t-32.25,22.75t-21.25,33.75t-6.75,41.25q 0.5,22 9.5,41.25t 23.75,33.75t 34,22.75t 40.75,8.25t 40.5-8.25t 32.5-22.75
928
+ t 21-33.75t 7-41.25zM 268.5,228q 0.5,16 -3.25,30.25t-10.75,24.75t-16.75,16.75t-20.75,6.25q-11.5,0 -21.5-6.25t-17.75-16.75t-12.5-24.75t-5.25-30.25t 3.25-30.25t 10.75-24.75t 16.5-16.75t 21-6.25q 8,0 13,2.5q-1,2.5 -2.25,4.5t-2.25,4q-3,4 -6.25,5.75t-6.25,2.25q-3.5,0.5 -6.5-0.5l0,18.5 q 8,3 16.5,2.5
929
+ q 7-0.5 15.5-4.5t 15.5-15q 8.5,11 13.75,25.75t 6.25,32.25z" horiz-adv-x="425" />
930
+ <glyph unicode="&#x68;&#x79;&#x76;&#x65;&#x73;" d="M 279.5,336l 16.5,0 q 2,0 4.75-2.5t 4.75-6.25t 3-7.5t0-6.25q-0.5-2 -2.75-3.25t-5-2.5t-5.25-2.25t-3.5-2.5q-2-2 -2.75-6.25t-0.75-9.25t 0.25-10.5t 0.25-10l0-97 q0-4 -0.25-10.5t 1.25-7.5q 1-1.5 4.75-1.25t 5.75-0.25q 4.5-1.5 8.25-8.25t 0.25-12.25q-1-1.5 -4.5-2.75t-7-2.25q-7-3.5 -18.25-6.75
931
+ t-21.75-2.25q-3,0.5 -6.25,2.5t-6.25,5t-5,6.25t-1.5,6.25q 0.5,4 8,7.5q 2,1 5.75,1t 5.75,1.5q 2.5,2.5 1.75,9.75t-1.25,12.75l0,12 q0,3 0.25,6.75t-0.75,4.75t-4.25,1.25t-7,0t-7.5-0.75t-5.25-0.5q-13.5-2 -22.5-3.25t-20.5-5.25q-3.5-1 -9.5-2.5t-8.5-5q-1-1.5 -1.25-5t0-7.75t 0.75-8.25t 0.5-6.5
932
+ q 0.5-2.5 0-6.25t 0.5-5.75q 1.5-2.5 6.25-2t 5.75,0q 4-1.5 8-6t 3-10q-0.5-4.5 -5.75-7.75t-12.5-5.25t-15-3t-13.25-1.5q-4-0.5 -6.25-0.5t-5.25,1q-5,1 -10,6.25t-4.5,10.25q 0.5,4 5,6.5t 8.5,3.5q 1,0.5 3,0.75t 2.5,1.25q 1.5,2 1.25,7.75t-1.25,10.25q-1.5,13 -2,28t-0.5,28.5q-0.5,16 -1,29t-0.5,29.5l0,10.75 t-1,7.75
933
+ q-1.5,1.5 -5.25,1.75t-6.25,1.25q-4.5,2 -7,5.25t-5,8.75l0,4.5 q 4,7 13,9.75t 19.5,4.75q 7.5,1.5 15,2.5t 13.5,0.5t 10.5-3.25t 6.5-8.75q 1-2.5 1.25-6t-1.25-6q-1.5-2 -4.25-3t-6-1.75t-6-1.75t-3.75-2.5t-1-6l0-9 q0-14 -1-25t0-25.5q 0.5-2 1-6.75t 2-5.75q 2.5-1 5.5,0t 5.5,1.5q 14.5,3 25,5.25t 26.5,3.75
934
+ q 2,0.5 5.25,0.75l 6.5,0.5t 6,0.5t 3.75,1.25q 3,2.5 2.25,8.25t-1.25,9.25q-1,11 -1,19.5t 1,18.5l 1.25,10t-1.75,8q-1,1.5 -5,1.75t-5.5,1.25q-5.5,2.5 -10.75,7.75t-2.75,13.25q 1,2 3.5,3.75t 5,2.75q 8.5,4 17.75,5.5t 19.25,3.5z" horiz-adv-x="425" />
935
+ <glyph unicode="&#x62;&#x65;&#x62;&#x6f;" d="M 224,116.5l-23.5,0 q-19,0 -36,7.75t-29.75,20.75t-20,30.25t-7.25,36.25l0,117.5 q0,10 8.25,16.5t 18.25,6.5q 9.5,0 17.75-6.5t 8.25-16.5l0-117.5 q0-19 10.75-30.75t 29.75-11.75l 23.5,0 q 9.5,0 18,3t 14.75,8.25t 10,12.25t 3.75,15.5q0,17 -7.5,28.25t-16,11.25l-46.5,0 q-9.5,0 -16.25,5t-6.75,14.5t 6.75,14.5t 16.25,5l 46.5,0
936
+ q 14.5,0 27.25-6.5t 22.25-18t 15-27t 5.5-33.5q0-17.5 -7.25-33t-20-27t-29.75-18.25t-36-6.75z" horiz-adv-x="425" />
937
+ <glyph unicode="&#x76;&#x69;&#x72;&#x62;" d="M 88,301l 50.5,0 l 40.5-118l 39.5,118l 52.5,0 l-65.5-183l-52,0 zM 336.5,274.5q0-10.5 -7.75-18.25t-18.75-7.75t-18.5,7.75t-7.5,18.25q0,11 7.5,18.75t 18.5,7.75t 18.75-7.75t 7.75-18.75z" horiz-adv-x="425" />
938
+ <glyph unicode="&#x62;&#x6c;&#x69;&#x70;" d="M 107.5,263q 30,0 57-11.75t 47-31.75t 31.75-46.75t 11.75-56.75l-43,0 q0,21 -7.75,40.25t-22.25,33.75t-34,22.5t-40.5,8l0,42.5 zM 107.5,338q 45.5,0 86-17.5t 71-47.75t 48-70.75t 17.5-86l-42.5,0 q0,37 -14.25,69.75t-38.75,57t-57.25,38.5t-69.75,14.25l0,42.5 zM 94.5,129l 13,13l0,39 l 65.5-65l-39,0 l-13-13.5z
939
+ " horiz-adv-x="425" />
940
+ <glyph unicode="&#x64;&#x69;&#x67;&#x67;" d="M 343,279l0-76.5 l-26,0 l0-78 l-115.5,0 l0,78 l-11,0 l-21.5,0 l-22,0 l0-13 q 13.5-1 24.25-10.25t 10.75-22.25l0-8 l0-16.5 q0-3.5 -2.5-5.75t-6.5-2.25l-69.5,0 q-4,0 -6.5,2.25t-2.5,5.75l0,24.5 q0,6.5 3.5,12.25t 9.25,10t 12.75,7t 14,3.25l0,13 l-52.5,0 l0,78 q 10,8.5 20.5,15.5q 9,5.5 19.25,10.5t 19.25,5q 8.5,0 19-5t 19-10.5q 10-7 20.5-15.5
941
+ l0-1.5 l 13.5,0 l0,54.5 l 91.5,0 l0-54.5 l 39,0 zM 160,157q0,4.5 -3.75,7.75t-9.25,3.25l-17.5,0 q-5.5,0 -9.25-3.25t-3.75-7.75l0-11 l 43.5,0 l0,11 zM 173,271q-9.5,8.5 -18.5,13.75t-14,5.25t-14-5.25t-19-13.75l0-42 l 65.5,0 l0,42 zM 238.5,268l 39,0 l0,39.5 l-39,0 l0-39.5 zM 317,257l-13,0 l0-15 l-91.5,0 l0,13 l-13.5,0 l0-26 l 26.5,0 l0-78.5 l 28,0 l0,39 l 11,0 l0-39 l 26,0 l0,78.5 l 26.5,0 l0,28 z
942
+ " horiz-adv-x="425" />
943
+ <glyph unicode="&#x65;&#x62;&#x61;&#x79;" d="M 369,286l-42-78l0-41 l-32,0 l0,41 l-9.5,19.5l0,20 q0,10 -4.25,17.5t-20.25,10l-5.5,11l 34.5,0 l 22.5-50.5l 24.5,50.5l 32,0 zM 249.5,202.5q 5,0 7.75,3t 3.5,7.5t 0.75,9.25l0,8.25 q-4.5-0.5 -8.25-0.75t-6.75-1.25t-4.5-4t-1.5-8.5q0-4.5 1.5-9t 7.5-4.5zM 250.5,275.5l 5.5,0 t 5-0.5l 24.5-47.5l0-22 q0-4 0.25-8t 0.75-8l-23,0 l-1,11
944
+ q-4-6 -9.25-9.25t-13.75-3.25q-4,0 -5.5,0.5l0,11 q0,9 -1,20t-7,17.5q 6,5 15.5,6t 20,0.5l0,6.5 q0,5.5 -1.5,9t-8.5,3.5q-6.5,0 -7.75-4t-1.25-9l-24,0 q0,15 9,20.5q 7.5,5.5 23,5.5zM 210,200q0,12.5 -1,20.5t-9,8q-7.5,0 -8.75-8t-1.25-20.5q0-16 1.75-23t 8.25-7t 8.25,7t 1.75,23zM 216.5,215
945
+ q0-10 4-17.25t 13.5-9.25q-0.5-6 -1.5-11.75t-3.5-10.5t-7-7.75t-12-3q-15,0 -20.5,11l-0.5,0 l0-9 l-23,0 l0,17 q 0.5,0 0.5,0.5q 16,6.5 17,19l-17.5,0 l0,8.5 l 18,0 q 1,11.5 -2,20.5t-16,14.5l0,40 l 24,0 l0-44.5 l 0.5,0 q 4,5.5 8.5,7.5t 11,2q 5.5,0 9.25-1.5t 6.75-4q-9.5-6.5 -9.5-22zM 119.5,231.5q-7.5,0 -11.5-2t-5.75-4.5t-2-5.75t-0.25-5.25
946
+ l 40,0 q0,2.5 -0.25,5.5t-2,5.75t-6,4.5t-12.25,1.75zM 166,194l0-19.5 q-6-2.5 -12.5-4q-7-1.5 -15.5-2.5t-18.5-1q-21.5,0 -34,3t-19.25,8.25t-8.75,12.5t-2,15.75q0,7.5 1.75,14.5t 8.5,12t 19.25,8t 34.5,3q 10.5,0 18.75-0.75t 14.75-1.75q 7-1.5 13-4l0-35 l-66,0 q0-3.5 0.25-7.25t 2.25-7t 6-5.5t 11-2.25q 12,0 15.5,4.25
947
+ t 3.5,9.25l 15,0 l 12.5,0 z" horiz-adv-x="425" />
948
+ <glyph unicode="&#x6d;&#x69;&#x78;&#x78;" d="M 282.5,202.5q0-1.5 0.25-3t 0.25-3q0-16 -6-29.75t-16-24t-23.75-16.25t-29.25-6q-22.5,0 -40.5,12.25t-27,31.75q 7-23.5 26.25-38.5t 44.25-15q 15,0 28.5,5.75t 23.5,16t 15.75,23.75t 5.75,29q0,9.5 -2,17zM 214,140q-15.5-2.5 -29.5,1.5t-24,12.5q 8.5-10 20.5-15.5t 26.5-5.5q 21,0 36.75,11.75t 21.25,29.25
949
+ q-7-13 -20.5-22.25t-31-11.75zM 212.5,161.5q-8.5-3.5 -17.25-4t-15.75,1.5q 4.5-2.5 10.25-4.25t 12.25-1.75q 16,0 27.25,9.75t 11.75,23.75q-4-8 -11.25-14.5t-17.25-10.5zM 203.5,181q-1,0 -3,2.75t-4,8.25l-49.5,138.5q-1.5,4.5 1,9.5q 2,4.5 7,6q 1.5,0.5 4,0.5q 9,0 11.5-9.5l 33.5-142.5q 1.5-5.5 1.25-9.25t-1.25-4.25l-0.5,0 z
950
+ " horiz-adv-x="425" />
951
+ <glyph unicode="&#x67;&#x64;&#x67;&#x74;" d="M 108,313.5l 13,13l 143.5,0 l 13-13l0-77 l 39.5,77l0-78.5 l-39.5-65.5l0-65 l-13-13.5l-130.5,0 l-13,13.5l0,26 l 117.5,0 l0,39 l-117.5,0 l-13,13l0,131 zM 147,209l 91.5,0 l0,78.5 l-91.5,0 l0-78.5 z" horiz-adv-x="425" />
952
+ <glyph unicode="&#x73;&#x74;&#x61;&#x72;" d="M 101,251q-9,10 -5.5,17.5t 17,7.5l 58.5,0 l 27.5,58q 5.5,12.5 13.75,12.5t 13.75-12.5l 28-58l 58,0 q 14,0 17.25-7.5t-5.75-17.5l-0.5-0.5l-44-54l 22.5-65.5q 4.5-13 -1.25-17.75t-17.75,1.25l-70,35l-70-35q-12.5-6 -18-1.25t-1,17.75l 22.5,65.5l-44.5,54l-0.5,0.5l0,0 z" horiz-adv-x="425" />
953
+ <glyph unicode="&#x62;&#x69;&#x6e;&#x67;" d="M 212.5,277.5q 24.5,0 45.75-6.5t 37.25-17.75t 25.25-26.5t 9.25-32.25q0-17.5 -9.25-32.5t-25.25-26.5t-37.25-18t-45.75-6.5q-24,0 -45.25,6.25t-37,17.25t-25.25,25.75t-10,31.75l-0.5,0 l0,154.5 l 39.5,0 l0-94.5 q 11,7.5 20.75,12.5t 19,8t 18.75,4t 20,1zM 212.5,139q 15.5,0 29,4.5t 23.5,12t 16,17.5t 6,21.5t-6,21.5t-16,17.5t-23.5,12
954
+ t-29,4.5t-29.25-4.5t-23.75-12t-16-17.5t-6-21.5t 6-21.5t 16-17.5t 23.75-12t 29.25-4.5zM 262,195q0-7.5 -4-14t-10.75-11.5t-15.75-7.75t-19-2.75q-10.5,0 -19.5,2.75t-15.75,7.75t-10.5,11.5t-3.75,14q0,15.5 14.25,26t 35.25,10.5q 20.5,0 35-10.5t 14.5-26z" horiz-adv-x="425" />
955
+ <glyph unicode="&#x79;&#x65;&#x6c;&#x70;" d="M 146.5,312q-1.5,2 -3,3.75t-1.75,3.75t 1.75,5t 8,7.5q 4.5,3.5 11,6t 13,3.75t 12.5,1.5t 9.5-0.25q 15-3 15-14l 0.5-85q 0.5-5 -1.75-8.75t-5.75-4.75q-3.5-0.5 -7.5,2.25t-6.5,6.75zM 235.5,216q-2,4 -1.25,9t 4.25,9l 25,30q 3.5,4 8.5,4t 10.5-4q 2.5-2.5 5.75-6.25t 6.25-8t 5.25-8.25t 3.25-6q 1.5-4 0.5-10
956
+ t-7-7l-44-8.5q-5-1 -9.75,0.75t-7.25,5.25zM 239.5,168.5q-2.5,4.5 -3,8.75t 1.5,5.75t 6.5,1.5t 9.5-1l 39.5-11.5q 5-1 7.5-6t 0.5-11.5q-1-3 -4-8l-6-10q-3.5-5.5 -8-12q-2.5-4.5 -9.75-5t-9.75,4zM 191.5,168q 3,4 7.75,6.25t 8.25,2.25q 3.5-0.5 5.75-4.25t 2.25-8.75l-1-52.5q-0.5-5.5 -6.75-9.25
957
+ t-10.75-1.75l-33,11q-4.5,2 -6,8.75t 2,10.75zM 184,215q 5-2 8-6t 2.5-8q-1-4 -4.5-8t-8-6l-45.5-15.5q-4.5-2 -9.25,1.25t-5.75,8.75q-0.5,2.5 -0.5,8.75l0,13.25 q0,8 0.5,17.5q 1.5,7 6,10.75t 9,1.75z" horiz-adv-x="425" />
958
+ <glyph unicode="&#x65;&#x74;&#x73;&#x79;" d="M 173,318.5l0-91.5 l 58,0 q 10.5,0 17.25,2t 10.75,5.5q 4.5,4 7,12.75t 3,18.75l 8.5,0 l0-91.5 l-8.5,0 q-2,19 -5,24.5q-3,6.5 -10.5,10.5q-7.5,4.5 -22.5,4.5l-58,0 l0-74 q0-9 1.25-14.25t 2.25-7.25t 2.75-3.75t 3.25-2.75q 4-2.5 15-2.5l 41.5,0 q 10,0 17.5,1t 12.5,2.5q 4.5,1.5 9,4.75t 9,7.75q 5.5,6 11.25,16t 11.25,20l 7.5,0 l-21-65.5l-188.5,0 l0,13.5
959
+ l 9,0 q 4,0 8.25-0.5t 8.25,2q 2.5,1.5 5.75,3t 4.25,4.5t 2.5,8.5t 1.5,15.5l0,143.5 q0,12.5 -2.25,18.75t-4.75,8.75q-3,4 -9.5,4.5t-14,0.5l-9,0 l0,13 l 188.5,0 l 2.5-52.5l-7,0 q-2,10 -4,16t-4.5,10q-4.5,7 -13.5,11q-5.5,2.5 -25.5,2.5l-71,0 z" horiz-adv-x="425" />
960
+ <glyph unicode="&#x78;&#x69;&#x6e;&#x67;" d="M 297,95l-52,0 l-52.5,91.5l 78.5,144l 52.5,0 l-78.5-144zM 101,160.5l 39,65.5l-26,52l 52.5,0 l 26-52l-39-65.5l-52.5,0 l0,0 z" horiz-adv-x="425" />
961
+ <glyph unicode="&#x72;&#x73;&#x73;" d="M 121,155q 11,0 18.5-7.75t 7.5-18.25q0-11 -7.5-18.75t-18.5-7.75t-18.5,7.75t-7.5,18.75q0,10.5 7.5,18.25t 18.5,7.75zM 95,338q 48.5,0 91.25-18.5t 74.75-50.5t 50.5-75t 18.5-91.5l-49,0 q0,38.5 -14.75,72.5t-40,59.25t-59,40t-72.25,14.75l0,49 zM 95,246.5q 29.5,0 55.75-11.25t 45.75-30.75t 30.75-45.75
962
+ t 11.25-56.25l-48,0 q0,20 -7.5,37.5t-20.5,30.5t-30.5,20.5t-37,7.5l0,48 z" horiz-adv-x="425" />
963
+ <glyph unicode="&#x69;&#x63;&#x71;" d="M 325.5,211q 7-13 3-29q-4.5-15.5 -18.5-23q-13.5-7 -29.5-2q-5.5,1.5 -11,4.5q 3-12 0-22.5t-11.5-16q-9-5.5 -20-2.5q-9,3 -19,13.5l-0.5-2q-4.5-16 -18.5-23q-14.5-7 -30-2.5q-8.5,2 -15.5,7.5q-2,2.5 -3.75,5t-3.75,5q-7.5,14.5 -2.5,29.5l 1.5,4.5l 6,9.5q-11.5-3.5 -23.5-1q-6.5,1 -10,4.5q-2.5,1 -3.75,2.75
964
+ t-2.75,3.75q-5,9.5 -2,17.5q 1,4 3,7.5t 6,6.5l 5,4.5l-2.5,0.5q-9,1.5 -15,7.5q-5,3.5 -8,8.5q-7,13 -1,26.5q 5.5,14 19.5,21.5q 14.5,7.5 29.5,4l 8-2.5l-2.5,3.5q-7.5,13 -5,28q 2,14 13,20.5q 9.5,5 20,2q 12.5-3 20.5-15.5l 3-6l 1.5-2.5l 0.5,2.5l0,0.5 q0,7.5 6,13.25t 13,9.75q 14,6.5 30,3q 15.5-4 22.5-16l 1-1.5q 9-14 3.5-30.5
965
+ l-3.5-8.5l 11,2.5q 4,0.5 8.25,0.5t 8.25-1q 6-2 8.5-5.25t 9.5-8.25l0-0.5 q0-4.5 1.75-9.25t-0.25-10.25q-5-12.5 -22-20.5q 3-1.5 6-2.75t 5.5-3.25q 3-2 5-4.75t 4-5.75zM 242.5,238.5l-1.5-1.5l 0.5-1.5l 1-2l 41.5,5q 3,0.5 5.75,1t 5.25,2q 12.5,5 16,14l 0.5,3.5l-1.5,4.5q-3,6 -11.5,7q-10,1 -18-2.5l-4-1.5zM 218.5,305
966
+ l 0.5-13.5l 3.5-37.5q 5-2.5 9.5-5.5l 30.5,36.5q 1.5,2.5 2.75,4.75t 2.25,5.25l 1,7q0,6.5 -2.5,11.5q-4.5,9 -15.5,11q-9.5,4 -19-1.5q-4.5-2.5 -8-6.25t-4.5-8.75zM 161,307q-0.5-8 4-17.5l 1.5-3.5l 30-32l 5,1.5l-6.5,39.5q-0.5,3 -1.75,5.5t-2.25,5q-6,11.5 -15.5,14q-4,2.5 -7.5,0q-6.5-4 -7-12.5zM 111.5,237q 3.5-7.5 13-9l 3-0.5
967
+ l 49,6q 1.5,5 5,10l-29.5,21l-9,4q-10,2 -19-3q-10-4 -13-14q-3-8 0.5-14.5zM 155.5,185l 10,8.5q 3,2.5 6,5.5t 7,6l-1,2.5l-2.5,6.5l-27-5q-3.5-0.5 -10-4q-11.5-5 -14-13.5l-0.5-3l 1-3.5q 2-4 10.5-5q 9-1 17.5,3.5zM 205.5,152q0,10 -1.5,19t-2,17.5q-2.5,0 -5.25,1.25t-5.25,2.25l-28.5-33
968
+ q-3.5-4 -5-9.5l-1.5-7.5q0-3 1-6t 2-5.5q 4-8 14.5-11q 10-2.5 18.5,2.5q 8.5,3.5 12.5,13.5l 0.5,3.5l0,13 zM 194.5,205q 6.5-6.5 15.5-6.5t 15.5,6.5q 4,3 5.5,7.25t 1.5,8.75q0,8.5 -7,15.5q-6,6 -15.5,6q-8.5,0 -15.5-6q-3.5-4 -5.25-7.5t-1.75-8q0-10 7-16zM 257,147q 0.5,9 -4,17.5l-2,3l-8.5,11l-14.5,14l-4.5-2
969
+ l-5.5-2l 5-29l 4-11q 6-12.5 15.5-14.5q 4.5-1 7.5,1q 5.5,2.5 7,12zM 316,192.5q0,9 -5,14.5q-4,7 -12.5,9.5l-3.5,0.5l-13.5-0.5l-38-3.5l-1-4l-2.5-5l 35.5-28.5q 2.5-4 9-5.5q 9.5-3.5 19,1.5t 11.5,14.5z" horiz-adv-x="425" />
970
+ <glyph unicode="&#x77;&#x77;&#x77;" d="M 182,304l 31-111.5l 31.5,111.5l 22.5,0 l 53.5,0 l0-11.5 l-27.5-57.5q 8.5-3 15.75-8t 11.75-12.5q 4-7.5 6.75-16.25t 2.75-18.75q0-12.5 -2.75-23t-9.25-19q-13-16.5 -32.5-16.5q-15.5,0 -26,10q-11.5,9.5 -16.5,27l 17.5,7.5q 2.5-5 4.75-9t 5.75-7q 6-6 15-6t 15,10.5q 6.5,10 6.5,25.5q0,8.5 -1.75,16.5t-5.25,12.5
971
+ q-4,5.5 -9.75,9.5t-14.25,4l-15,0 l0,4.5 l 36.5,57l-36.5,0 l-2,0 l-44-153l-2.5,0 l-32,113l-32.5-113l-2,0 l-51.5,173.5l 22.5,0 l 31-111.5l 21,75l-10,36.5l 22.5,0 z" horiz-adv-x="425" />
972
+ <glyph unicode="&#x6d;&#x73;&#x6e;" d="M 261,135.5q-8.5,6 -16,17.5q-0.5,5.5 -1.25,12.5t-3.25,15.5q 5.5-3 15.25-6t 24.25-3q 4,0 7.75,0.25t 7.75,0.75q 13,2 22.75,10.25t 16.75,20.75q 1.5-10.5 0-21.5t-5-21.25t-8.75-18.75t-10.25-14.5q-6-7 -10-8.75t-6.5-1.75q-5.5,0 -13.5,4.75t-20,13.25zM 211,199.5q-6.5,14.5 -9.5,26.5t-4,20.5q-1,3.5 -1,6.25
973
+ l0,4.75 l0,0.5 q0,1 0.25,1.5t 0.25,1.5q 0.5,1.5 1,1.5q 1,0 3-2.25t 6-8.25t 9.25-16.5t 12.25-26.5q 7.5-18.5 10-33.75t 3-23.25l0-4 q-4,2.5 -12.25,15t-18.25,36.5zM 294.5,179.5q-4-0.5 -7.25-0.75t-7.25-0.25q-19,0 -29.25,5t-12.25,6.5q-1.5,5 -3.25,9.75t-3.75,10.25q-4,10 -8,18l-7.5,15q 17.5,10 41,10q 12,0 23.75-2.75
974
+ t 21.75-7.25t 17.5-10.5t 10.5-13q 1-1 1.25-2.5t 1.25-3q-7-14 -16.25-23.25t-22.25-11.25zM 195.5,162.5q-6,0 -13.75,2.5t-17.25,9q-2.5,11 -1.5,22.5t 8,22q 7,10 13.25,13.75t 11.25,4.75q 2-8.5 5-18.5t 7.5-20.5q 2-5.5 4-10t 4.5-9q-2.5-5 -6.25-9.5t-8.75-6q-2-1 -6-1zM 194.5,243.5q-6-1 -13.5-5.5
975
+ t-15.5-16q-6.5-10 -8.25-21t-0.25-21.5q-14.5,11 -31.5,32.5q-20.5,27.5 -30.75,45t-14.5,28t-4,14.75t 0.75,5.25q 0.5,1.5 5,1.5q 6,0 14.75-2.75t 18.75-7t 20-9.75t 19-11q 10.5-7 20.75-14t 18.75-17q0-1 0.5-1.5zM 348.5,283.5q-1-15.5 -3.75-31.25t-8.25-29.75q-4,8 -11.75,14.75t-18.5,11.75t-23.5,7.75
976
+ t-25.75,2.75q-24.5,0 -44.5-10.5q-1,2 -2,3q 4.5,15.5 16,31.75t 25.5,29.75t 28.75,23.25t 26.25,12.25q 2.5,0.5 4.25,0.75t 3.75,0.25q 10.5,0 18.5-8q 8-8.5 12-24.25t 3-34.25zM 237,144.5q 0.5-5.5 -0.25-12.5t-1.75-13.5t-2.5-11t-3-5.5q-0.5-0.5 -2-0.5q-6.5,0 -13.75,5t-14,11.75t-12.5,13.75t-8.75,11.5q-6.5,8 -11,21
977
+ q 15.5-9 28-9q 4.5,0 8.5,1.5q 5.5,2.5 9.25,6.5t 6.75,9q 4.5-8.5 8.75-14.5t 7.75-9.5q0-1 0.25-2t 0.25-2z" horiz-adv-x="425" />
978
+ <glyph unicode="&#x71;&#x69;&#x6b;" d="M 293.5,219.5q 2.5-4 4.75-8.5t 5.25-8.75t 6.75-7.25t 9.75-4.5q-0.5-4.5 -4.25-7.5t-8.5-4.5t-10-1t-9.25,3.5q-3.5,2 -6.25,7t-5.25,9q-3,4.5 -5.5,8.75t-5,8.25q-1.5-8.5 -2.75-17.75t-3.25-18.25q-5.5,0 -10.5,0.25t-8.75,1.75t-5.75,4.5t-1.5,8.5q0,2.5 1.75,13.75t 4,25t 4.5,27.25t 3.25,21q0,1 0.5,1
979
+ q 12,1 19.75-1.25t 6.75-13.75q-1-10 -3.25-22t-3.25-21q 4.5,3.5 8,8q 3.5,4 7,7.75t 7.5,7.75q 2,2 4.25,4t 4.75,3q 6,2.5 14.25,1.5t 16.75-0.5q-2-2.5 -7.25-7.25t-11-10t-11-10.25t-7.25-7.5zM 223,285q 8-1.5 9.5-7.5q 2.5-6.5 -1-10.75t-8-6.25q-6-2.5 -12.5-0.75t-7.5,7.75q-2.5,8 2.25,11.75
980
+ t 11.75,5.75l 5.5,0 zM 201.5,252.5q 8.5,0 15.75-0.5t 9.75-5.5q 1.5-3.5 1-8.25t-1-8.75q-2-13 -4-26.25t-4-24.75q-7.5-0.5 -14.75,0t-10.25,4.5q-2,3 -1.75,8t 1.25,9.5q 2,13 4,26.25t 4,24.75l0,1 zM 154.5,257q 15-1 23.5-10t 7.5-26q-1-8.5 -2.5-16.5t-2.5-16.5q-1.5-8.5 -2.75-16.5t-2.25-17l-13,0 l-0.5,0 q-6,0 -8.75,3.25
981
+ t-3.25,7.75t 0.25,10t 1.75,10q-2.5-1.5 -4.5-3.75t-5-3.25q-2.5-1 -4.5-1.5l-4-1q-19-2 -29.5,8.25t-9.5,25.75q 0.5,10 4,17.25t 9,13.25q 7,8 18.5,12.75t 28,3.75zM 148.5,200q 3,2.5 5.5,7.25t 3.25,10t-0.25,10t-4.5,7.25q-2,1 -5.25,1.75t-5.75,0.25q-4.5-0.5 -8.5-3q-3-2.5 -5.25-7t-3.25-9.75t0-10.25
982
+ t 5-7.5q 4.5-2.5 10.25-2t 8.75,3z" horiz-adv-x="425" />
983
+ <glyph unicode="&#x61;&#x6f;&#x6c;" d="M 241.5,352.5q 13.5,0 22.75-9.25t 9.25-22.25t-9.25-22t-22.75-9q-13,0 -22.5,9t-9.5,22t 9.5,22.25t 22.5,9.25zM 114.5,157l 5,1.5q 5.5,1.5 12.75,4.5t 15,8.25t 14.75,13t 12.5,18.75q 1,1 1.25,3.5t 1.25,9.5q 2.5,27.5 10.75,43.25t 24.75,25.25l 2.5,1l 2.5-1.5q 8.5-4.5 15.5-6l 4-0.5l0-6.5 l0-0.5 q0-1 0.5-1q0-3 0.5-3.5l 0.5-1.5l 2-1
984
+ q 9-3 19-3q 9,0 16.75,2t 13.25,4.5l 4.5,2l 13.5-30.5l-4-2q-14-7 -25-10.25t-21-3.25q-5,0 -9.25,0.5t-8.75,1l-2,0 q-1,0 -1.5,0.25t-1,0.25q-1,0 -1.75-0.5t-1.25-3.5q-0.5-0.5 1-1.5l 0.5-0.5l 0.5-0.5q 1,0 1.5-0.5q 47.5-23.5 72.5-73.5l 2.5-4l-33.5-19l-2.5,4.5q-2.5,4 -6.75,10t-11.5,12.5t-17.25,13t-23.5,12.5l-2,1
985
+ q-1.5,0 -2-1.5l-3.5-4.5q-5.5-7 -11.5-14.25t-14.5-14t-20.25-12.5t-28.25-9.75l-4.5-1.5z" horiz-adv-x="425" />
986
+ <glyph unicode="&#x20;" horiz-adv-x="256" />
987
+ <glyph unicode="&#x63;" d="M0 0" horiz-adv-x="0" />
988
+ <glyph unicode="&#x69;" d="M0 0" horiz-adv-x="0" />
989
+ <glyph unicode="&#x72;" d="M0 0" horiz-adv-x="0" />
990
+ <glyph unicode="&#x6c;" d="M0 0" horiz-adv-x="0" />
991
+ <glyph unicode="&#x65;" d="M0 0" horiz-adv-x="0" />
992
+ <glyph unicode="&#x66;" d="M0 0" horiz-adv-x="0" />
993
+ <glyph unicode="&#x76;" d="M0 0" horiz-adv-x="0" />
994
+ <glyph unicode="&#x68;" d="M0 0" horiz-adv-x="0" />
995
+ <glyph unicode="&#x75;" d="M0 0" horiz-adv-x="0" />
996
+ <glyph unicode="&#x6e;" d="M0 0" horiz-adv-x="0" />
997
+ <glyph unicode="&#x64;" d="M0 0" horiz-adv-x="0" />
998
+ <glyph unicode="&#x70;" d="M0 0" horiz-adv-x="0" />
999
+ <glyph unicode="&#x78;" d="M0 0" horiz-adv-x="0" />
1000
+ <glyph unicode="&#x61;" d="M0 0" horiz-adv-x="0" />
1001
+ <glyph unicode="&#x62;" d="M0 0" horiz-adv-x="0" />
1002
+ <glyph unicode="&#x6f;" d="M0 0" horiz-adv-x="0" />
1003
+ <glyph unicode="&#x74;" d="M0 0" horiz-adv-x="0" />
1004
+ <glyph unicode="&#x6d;" d="M0 0" horiz-adv-x="0" />
1005
+ <glyph unicode="&#x7a;" d="M0 0" horiz-adv-x="0" />
1006
+ <glyph unicode="&#x73;" d="M0 0" horiz-adv-x="0" />
1007
+ <glyph unicode="&#x67;" d="M0 0" horiz-adv-x="0" />
1008
+ <glyph unicode="&#x77;" d="M0 0" horiz-adv-x="0" />
1009
+ <glyph unicode="&#x6b;" d="M0 0" horiz-adv-x="0" />
1010
+ <glyph unicode="&#x79;" d="M0 0" horiz-adv-x="0" />
1011
+ <glyph unicode="&#x71;" d="M0 0" horiz-adv-x="0" />
1012
+ <glyph class="hidden" unicode="&#xf000;" d="M0,480L 512 -32L0 -32 z" horiz-adv-x="0" />
1013
+ </font></defs></svg>
skin/frontend/base/default/neklo/sharebuttons/fonts/social-font.ttf ADDED
Binary file
skin/frontend/base/default/neklo/sharebuttons/fonts/social-font.woff ADDED
Binary file